* gui/component/e-cardlist-model.c: #include <string.h>. * gui/component/addressbook-storage.c: #include <string.h>, <ctype.h>, <unistd.h>. * gui/component/addressbook-factory.c: Removed. * gui/component/addressbook-component.c: #include <bonobo/bonobo-main.h>, <unistd.h> and <string.h>. (create_view): addressbook_new_control() instead of addressbook_factory_new_control(). * gui/component/select-names/e-select-names.c (e_addressbook_create_ebook_table): Removed unused variable. (e_select_names_add_section): Removed unused variable. * gui/component/select-names/e-select-names-manager.c (focus_in_cb): Use g_source_remove() here instead of gtk_timeout_remove(). * gui/widgets/e-minicard-control.c (e_minicard_control_factory_init): Removed. (e_minicard_control_control_factory): Removed. (e_minicard_control_new): New. * gui/component/e-address-widget.c (e_address_widget_factory_init): Removed. (e_address_widget_new_control): Renamed from e_address_widget_factory_new_control(), made public. (e_address_widget_factory): Removed. * gui/component/e-address-popup.c (e_address_popup_new_control): New. (e_address_popup_factory_new_control): Removed. (e_address_popup_factory): Removed. (e_address_popup_factory_init): Removed. * gui/component/addressbook-config.c (addressbook_config_register_factory): Removed. (addressbook_config_create_control): New. * gui/component/addressbook-component.c (addressbook_component_factory_init): Removed. (addressbook_component_get_object): New. (owner_set_cb): Do not call addressbok_config_register_factory(). * gui/component/addressbook.c (addressbook_factory_init): Removed. (addressbook_new_control): Renamed from addressbook_factory_new_control(). svn path=/trunk/; revision=19041
83 lines
2.4 KiB
C
83 lines
2.4 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
|
|
/*
|
|
* e-address-widget.h
|
|
*
|
|
* Copyright (C) 2001 Ximian, Inc.
|
|
*
|
|
* Developed by Jon Trowbridge <trow@ximian.com>
|
|
*/
|
|
|
|
/*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of version 2 of the GNU General Public
|
|
* License as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
* USA.
|
|
*/
|
|
|
|
#ifndef __E_ADDRESS_WIDGET_H__
|
|
#define __E_ADDRESS_WIDGET_H__
|
|
|
|
#include <gtk/gtkeventbox.h>
|
|
#include <gtk/gtkhbox.h>
|
|
#include <gtk/gtkobject.h>
|
|
#include <gtk/gtkwidget.h>
|
|
#include <addressbook/backend/ebook/e-book-util.h>
|
|
#include <addressbook/backend/ebook/e-card.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define E_TYPE_ADDRESS_WIDGET (e_address_widget_get_type ())
|
|
#define E_ADDRESS_WIDGET(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), E_TYPE_ADDRESS_WIDGET, EAddressWidget))
|
|
#define E_ADDRESS_WIDGET_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), E_TYPE_ADDRESS_WIDGET, EAddressWidgetClass))
|
|
#define E_IS_ADDRESS_WIDGET(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), E_TYPE_ADDRESS_WIDGET))
|
|
#define E_IS_ADDRESS_WIDGET_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), E_TYPE_ADDRESS_WIDGET))
|
|
|
|
typedef struct _EAddressWidget EAddressWidget;
|
|
typedef struct _EAddressWidgetClass EAddressWidgetClass;
|
|
|
|
struct _EAddressWidget {
|
|
GtkEventBox parent;
|
|
|
|
gchar *name;
|
|
gchar *email;
|
|
|
|
GtkWidget *name_widget;
|
|
GtkWidget *email_widget;
|
|
GtkWidget *spacer;
|
|
|
|
guint query_idle_tag;
|
|
guint query_tag;
|
|
|
|
ECard *card;
|
|
gboolean known_email;
|
|
};
|
|
|
|
struct _EAddressWidgetClass {
|
|
GtkEventBoxClass parent_class;
|
|
};
|
|
|
|
GType e_address_widget_get_type (void);
|
|
|
|
void e_address_widget_set_name (EAddressWidget *, const gchar *name);
|
|
void e_address_widget_set_email (EAddressWidget *, const gchar *email);
|
|
void e_address_widget_set_text (EAddressWidget *, const gchar *text);
|
|
|
|
void e_address_widget_construct (EAddressWidget *);
|
|
GtkWidget *e_address_widget_new (void);
|
|
|
|
BonoboControl *e_address_widget_new_control (void);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __E_ADDRESS_WIDGET_H__ */
|