aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/demo/e-test-model.h
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-08-26 14:08:06 +0800
committerChris Lahey <clahey@src.gnome.org>2000-08-26 14:08:06 +0800
commit657730b85aa426f2423dc4223b7646b13456e4cb (patch)
treef1b6e07d5d1627127e596794d02647a8e314081d /addressbook/demo/e-test-model.h
parentbf556f33a21a451f17e76e7133e72b350982d123 (diff)
downloadgsoc2013-evolution-657730b85aa426f2423dc4223b7646b13456e4cb.tar
gsoc2013-evolution-657730b85aa426f2423dc4223b7646b13456e4cb.tar.gz
gsoc2013-evolution-657730b85aa426f2423dc4223b7646b13456e4cb.tar.bz2
gsoc2013-evolution-657730b85aa426f2423dc4223b7646b13456e4cb.tar.lz
gsoc2013-evolution-657730b85aa426f2423dc4223b7646b13456e4cb.tar.xz
gsoc2013-evolution-657730b85aa426f2423dc4223b7646b13456e4cb.tar.zst
gsoc2013-evolution-657730b85aa426f2423dc4223b7646b13456e4cb.zip
demo/* Removed the demo directory since it's no longer used.
2000-08-25 Christopher James Lahey <clahey@helixcode.com> * demo/* Removed the demo directory since it's no longer used. svn path=/trunk/; revision=5052
Diffstat (limited to 'addressbook/demo/e-test-model.h')
-rw-r--r--addressbook/demo/e-test-model.h64
1 files changed, 0 insertions, 64 deletions
diff --git a/addressbook/demo/e-test-model.h b/addressbook/demo/e-test-model.h
deleted file mode 100644
index 871ea11de8..0000000000
--- a/addressbook/demo/e-test-model.h
+++ /dev/null
@@ -1,64 +0,0 @@
-/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
-#ifndef _E_TEST_MODEL_H_
-#define _E_TEST_MODEL_H_
-
-#include "e-table-model.h"
-#include <e-book.h>
-#include <e-book-view.h>
-#include <e-card.h>
-
-#define E_TEST_MODEL_TYPE (e_test_model_get_type ())
-#define E_TEST_MODEL(o) (GTK_CHECK_CAST ((o), E_TEST_MODEL_TYPE, ETestModel))
-#define E_TEST_MODEL_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_TEST_MODEL_TYPE, ETestModelClass))
-#define E_IS_TEST_MODEL(o) (GTK_CHECK_TYPE ((o), E_TEST_MODEL_TYPE))
-#define E_IS_TEST_MODEL_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_TEST_MODEL_TYPE))
-
-/* Virtual Column list:
- 0 Email
- 1 Full Name
- 2 Street
- 3 Phone
-*/
-typedef struct _Address Address;
-typedef enum _Rows Rows;
-
-struct _Address {
- gchar *email;
- gchar *full_name;
- gchar *street;
- gchar *phone;
-};
-
-enum _Rows {
- EMAIL,
- FULL_NAME,
- STREET,
- PHONE,
- LAST_COL
-};
-
-typedef struct {
- ETableModel parent;
-
- EBook *book;
-
- EBookView *book_view;
-
- ECard **data;
- int data_count;
-
- char *uri;
-} ETestModel;
-
-
-typedef struct {
- ETableModelClass parent_class;
-} ETestModelClass;
-
-
-GtkType e_test_model_get_type (void);
-ETableModel *e_test_model_new (char *uri);
-
-void e_test_model_add_column (ETestModel *model, Address *newadd);
-
-#endif /* _E_TEST_MODEL_H_ */