aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/backend/ebook/e-card.h
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-03-24 07:37:48 +0800
committerChris Lahey <clahey@src.gnome.org>2000-03-24 07:37:48 +0800
commit92f0631a74a1e128e0936b30336ca314fd6fec4c (patch)
tree5ec198dff25bf392e875d81b997a8da2f8d68db9 /addressbook/backend/ebook/e-card.h
parent6e64a7badadb8b24759737385d0331ceca56a69f (diff)
downloadgsoc2013-evolution-92f0631a74a1e128e0936b30336ca314fd6fec4c.tar
gsoc2013-evolution-92f0631a74a1e128e0936b30336ca314fd6fec4c.tar.gz
gsoc2013-evolution-92f0631a74a1e128e0936b30336ca314fd6fec4c.tar.bz2
gsoc2013-evolution-92f0631a74a1e128e0936b30336ca314fd6fec4c.tar.lz
gsoc2013-evolution-92f0631a74a1e128e0936b30336ca314fd6fec4c.tar.xz
gsoc2013-evolution-92f0631a74a1e128e0936b30336ca314fd6fec4c.tar.zst
gsoc2013-evolution-92f0631a74a1e128e0936b30336ca314fd6fec4c.zip
Added parsing and testing for name, full name, birthday, telephone, email,
2000-03-23 Christopher James Lahey <clahey@helixcode.com> * addressbook/backend/ebook/e-card.c, addressbook/backend/ebook/e-card.h, addressbook/backend/ebook/e-card-types.h, addressbook/backend/ebook/e-card-pairs.h, addressbook/backend/ebook/test-card.c: Added parsing and testing for name, full name, birthday, telephone, email, and street address properties. svn path=/trunk/; revision=2157
Diffstat (limited to 'addressbook/backend/ebook/e-card.h')
-rw-r--r--addressbook/backend/ebook/e-card.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/addressbook/backend/ebook/e-card.h b/addressbook/backend/ebook/e-card.h
index 4b04f34c4d..04c3cd2a96 100644
--- a/addressbook/backend/ebook/e-card.h
+++ b/addressbook/backend/ebook/e-card.h
@@ -28,18 +28,22 @@ typedef struct _ECardClass ECardClass;
struct _ECard {
GtkObject object;
-#if 0
+
char *fname; /* The full name. */
ECardName *name; /* The structured name. */
-
- GList *del_addrs; /* Delivery addresses (ECardAddr *) */
+ GList *address; /* Delivery addresses (ECardDeliveryAddress *) */
+#if 0
GList *del_labels; /* Delivery address labels
* (ECardAddrLabel *) */
+#endif
GList *phone; /* Phone numbers (ECardPhone *) */
GList *email; /* Email addresses (char *) */
+#if 0
char *url; /* The person's web page. */
-
+
+#endif
ECardDate *bday; /* The person's birthday. */
+#if 0
ECardOrg *org; /* The person's organization. */
char *title; /* The person's title w/in his org */
@@ -75,6 +79,7 @@ struct _ECard {
struct _ECardClass {
GtkObjectClass parent_class;
+ GHashTable *attribute_jump_table;
};