aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/contact-list-editor/e-contact-list-editor.h
diff options
context:
space:
mode:
authorH P Nadig <hpnadig@pacific.net.in>2004-06-08 04:19:14 +0800
committerHans Petter <hansp@src.gnome.org>2004-06-08 04:19:14 +0800
commit31c401df882702ae0adfd7b92c8f78c166b20c1e (patch)
tree576e093927625feaa29ec5cfcd6a1177f0b4413e /addressbook/gui/contact-list-editor/e-contact-list-editor.h
parent649a9922018d88db9e5100d6d525aa64771eb974 (diff)
downloadgsoc2013-evolution-31c401df882702ae0adfd7b92c8f78c166b20c1e.tar
gsoc2013-evolution-31c401df882702ae0adfd7b92c8f78c166b20c1e.tar.gz
gsoc2013-evolution-31c401df882702ae0adfd7b92c8f78c166b20c1e.tar.bz2
gsoc2013-evolution-31c401df882702ae0adfd7b92c8f78c166b20c1e.tar.lz
gsoc2013-evolution-31c401df882702ae0adfd7b92c8f78c166b20c1e.tar.xz
gsoc2013-evolution-31c401df882702ae0adfd7b92c8f78c166b20c1e.tar.zst
gsoc2013-evolution-31c401df882702ae0adfd7b92c8f78c166b20c1e.zip
Added few headers needed for select names dialog.
2004-06-07 H P Nadig <hpnadig@pacific.net.in> * gui/contact-list-editor/e-contact-list-editor.h: Added few headers needed for select names dialog. * gui/contact-list-editor/e-contact-list-editor.c (e_contact_list_editor_init): Added select button handler. (select_cb): The callback function for Select Button. (setup_corba): To setup corba for select names dialog. (select_names_ok_cb): Handle Select names dialog entries. (add_to_model): Adds cards to the model. * gui/contact-list-editor/contact-list-editor.glade: New 'Select' Button. Tooltips added for buttons in button Box. svn path=/trunk/; revision=26240
Diffstat (limited to 'addressbook/gui/contact-list-editor/e-contact-list-editor.h')
-rw-r--r--addressbook/gui/contact-list-editor/e-contact-list-editor.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/addressbook/gui/contact-list-editor/e-contact-list-editor.h b/addressbook/gui/contact-list-editor/e-contact-list-editor.h
index 26de00e6f8..5a1074321c 100644
--- a/addressbook/gui/contact-list-editor/e-contact-list-editor.h
+++ b/addressbook/gui/contact-list-editor/e-contact-list-editor.h
@@ -30,6 +30,8 @@
#include <libebook/e-book-async.h>
#include <libebook/e-contact.h>
+#include "addressbook/util/e-destination.h"
+#include "addressbook/gui/component/select-names/Evolution-Addressbook-SelectNames.h"
G_BEGIN_DECLS
@@ -39,6 +41,7 @@ G_BEGIN_DECLS
#define E_IS_CONTACT_LIST_EDITOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), E_TYPE_CONTACT_LIST_EDITOR))
#define E_IS_CONTACT_LIST_EDITOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), E_TYPE_CONTACT_LIST_EDITOR))
+#define SELECT_NAMES_OAFIID "OAFIID:GNOME_Evolution_Addressbook_SelectNames:" BASE_VERSION
typedef struct _EContactListEditor EContactListEditor;
typedef struct _EContactListEditorClass EContactListEditorClass;
@@ -64,6 +67,7 @@ struct _EContactListEditor
GtkWidget *list_name_entry;
GtkWidget *add_button;
GtkWidget *remove_button;
+ GtkWidget *select_button;
GtkWidget *list_image_button;
GtkWidget *visible_addrs_checkbutton;
GtkWidget *list_image;
@@ -71,6 +75,8 @@ struct _EContactListEditor
GtkWidget *ok_button;
GtkWidget *cancel_button;
+ GNOME_Evolution_Addressbook_SelectNames corba_select_names;
+
/* Whether we are editing a new contact or an existing one */
guint is_new_list : 1;