diff options
author | Chris Lahey <clahey@src.gnome.org> | 2000-01-21 08:35:45 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-01-21 08:35:45 +0800 |
commit | 07af9adcd6731f65e158d8807e85a19dab7bb736 (patch) | |
tree | d06237f56820a6c4bd8200be622559b101fa6a2f /addressbook/gui/contact-editor/e-contact-editor.h | |
parent | 73107b49d42b02754e6facd890c3ed16eebe0a47 (diff) | |
download | gsoc2013-evolution-07af9adcd6731f65e158d8807e85a19dab7bb736.tar.gz gsoc2013-evolution-07af9adcd6731f65e158d8807e85a19dab7bb736.tar.zst gsoc2013-evolution-07af9adcd6731f65e158d8807e85a19dab7bb736.zip |
Changed some line spacing.
* widgets/e-text-event-processor-types.h: Changed some line
spacing.
* widgets/test-reflow.c: Connected to the resize signal of the
reflow.
* widgets/e-minicard.c: Made width argument set function only
update if width is different.
* widgets/e-reflow.h, widgets/e-reflow.c: Added draggable column dividers.
* addressbook/contact-editor/test-editor.c: Open two dialogs for
more interesting testing.
* addressbook/contact-editor/e-contact-editor.h,
addressbook/contact-editor/e-contact-editor.c: Modified to use
glade. Added menus to change which phone/address/email entries to
view. Added images to the dialog.
* addressbook/contact-editor/e-contact-editor-strings.h,
addressbook/contact-editor/contact-editor.glade: Glade files for
the contact editor dialog.
* addressbook/contact-editor/Makefile.am: Added images and added
glade stuff.
* addressbook/contact-editor/arrow.png,
addressbook/contact-editor/briefcase.png,
addressbook/contact-editor/netfreebusy.png,
addressbook/contact-editor/netmeeting.png: Image files for the
contact editor dialog.
svn path=/trunk/; revision=1599
Diffstat (limited to 'addressbook/gui/contact-editor/e-contact-editor.h')
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor.h | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-editor.h b/addressbook/gui/contact-editor/e-contact-editor.h index 45f3ae5597..7b914967ee 100644 --- a/addressbook/gui/contact-editor/e-contact-editor.h +++ b/addressbook/gui/contact-editor/e-contact-editor.h @@ -22,6 +22,7 @@ #define __E_CONTACT_EDITOR_H__ #include <gnome.h> +#include <glade/glade.h> #ifdef __cplusplus extern "C" { @@ -49,17 +50,26 @@ typedef struct _EContactEditorClass EContactEditorClass; struct _EContactEditor { - GtkNotebook parent; + GtkVBox parent; /* item specific fields */ /* ECard *card; */ - GList *fields; /* Of type GnomeCanvasItem. */ + GladeXML *gui; + GnomeUIInfo *email_info; + GnomeUIInfo *phone_info; + GnomeUIInfo *address_info; + GtkWidget *email_popup; + GtkWidget *phone_popup; + GtkWidget *address_popup; + GList *email_list; + GList *phone_list; + GList *address_list; }; struct _EContactEditorClass { - GtkNotebookClass parent_class; + GtkVBoxClass parent_class; }; |