aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/select-names/e-select-names-table-model.h
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-07-06 14:18:47 +0800
committerChris Lahey <clahey@src.gnome.org>2000-07-06 14:18:47 +0800
commit19848dbc6d5c085289af80975e53395443d41ee2 (patch)
tree051f68510fdce778cc2499af21f53f02d282e599 /addressbook/gui/component/select-names/e-select-names-table-model.h
parentaf494c55837bf4d88c421ce6ce3f8378727998c7 (diff)
downloadgsoc2013-evolution-19848dbc6d5c085289af80975e53395443d41ee2.tar
gsoc2013-evolution-19848dbc6d5c085289af80975e53395443d41ee2.tar.gz
gsoc2013-evolution-19848dbc6d5c085289af80975e53395443d41ee2.tar.bz2
gsoc2013-evolution-19848dbc6d5c085289af80975e53395443d41ee2.tar.lz
gsoc2013-evolution-19848dbc6d5c085289af80975e53395443d41ee2.tar.xz
gsoc2013-evolution-19848dbc6d5c085289af80975e53395443d41ee2.tar.zst
gsoc2013-evolution-19848dbc6d5c085289af80975e53395443d41ee2.zip
Changed "FIXME: Save and Close" to "Save and Close". Removed some toolbar
2000-07-06 Christopher James Lahey <clahey@helixcode.com> * contact-editor/e-contact-editor.c: Changed "FIXME: Save and Close" to "Save and Close". Removed some toolbar items that will never be used. * gui/component/select-names/e-select-names-model.c, gui/component/select-names/e-select-names-model.h: Added functions to allow you to modify the model (not implemented yet.) * gui/component/select-names/e-select-names-table-model.c, gui/component/select-names/e-select-names-table-model.h: Finished this. Doesn't support changing the model at all. * gui/component/select-names/e-select-names-text-model.c: Finished this. Changing the model by typing is done, but doesn't work since none of the functions in the base model are implemented. svn path=/trunk/; revision=3918
Diffstat (limited to 'addressbook/gui/component/select-names/e-select-names-table-model.h')
-rw-r--r--addressbook/gui/component/select-names/e-select-names-table-model.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names-table-model.h b/addressbook/gui/component/select-names/e-select-names-table-model.h
index 94cbaff13a..9afc3f7a12 100644
--- a/addressbook/gui/component/select-names/e-select-names-table-model.h
+++ b/addressbook/gui/component/select-names/e-select-names-table-model.h
@@ -21,6 +21,11 @@
#define E_IS_SELECT_NAMES_TABLE_MODEL(obj) (GTK_CHECK_TYPE ((obj), E_TYPE_SELECT_NAMES_TABLE_MODEL))
#define E_IS_SELECT_NAMES_TABLE_MODEL_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), E_TYPE_SELECT_NAMES_TABLE_MODEL))
+typedef struct {
+ char *name;
+ char *email;
+} ESelectNamesTableModelData;
+
typedef struct _ESelectNamesTableModel ESelectNamesTableModel;
typedef struct _ESelectNamesTableModelClass ESelectNamesTableModelClass;
@@ -28,6 +33,10 @@ struct _ESelectNamesTableModel {
ETableModel parent;
ESelectNamesModel *source;
+ int source_changed_id;
+
+ int count;
+ ESelectNamesTableModelData *data; /* This is used as an array. */
};
struct _ESelectNamesTableModelClass {