aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/demo/addressbook-widget.h
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-03-14 00:59:34 +0800
committerChris Lahey <clahey@src.gnome.org>2000-03-14 00:59:34 +0800
commitf59d7438e2498b9a7dcaf3d95e403069338ca0e2 (patch)
tree9c540a5ea870e15c44981b59d4e211d22b5cc356 /addressbook/demo/addressbook-widget.h
parent2e19c1630acc12875081163e20ddd9538dafd741 (diff)
downloadgsoc2013-evolution-f59d7438e2498b9a7dcaf3d95e403069338ca0e2.tar
gsoc2013-evolution-f59d7438e2498b9a7dcaf3d95e403069338ca0e2.tar.gz
gsoc2013-evolution-f59d7438e2498b9a7dcaf3d95e403069338ca0e2.tar.bz2
gsoc2013-evolution-f59d7438e2498b9a7dcaf3d95e403069338ca0e2.tar.lz
gsoc2013-evolution-f59d7438e2498b9a7dcaf3d95e403069338ca0e2.tar.xz
gsoc2013-evolution-f59d7438e2498b9a7dcaf3d95e403069338ca0e2.tar.zst
gsoc2013-evolution-f59d7438e2498b9a7dcaf3d95e403069338ca0e2.zip
Added an E_FOLDER_CONTACTS section to the get_view function.
2000-03-13 Christopher James Lahey <clahey@helixcode.com> * shell/e-shell-view.c: Added an E_FOLDER_CONTACTS section to the get_view function. * addressbook/demo/Makefile.am: Added files for addressbook bonobo component. Changed non bonobo version to compile as test-addressbook. * addressbook/demo/addressbook.c, addressbook/demo/addressbook.gnorba, addressbook/demo/addressbook.h, addressbook/demo/addressbook-factory.c, addressbook/demo/addressbook-widget.c, addressbook/demo/addressbook-widget.h: New factory to create an addressbook bonobo component. svn path=/trunk/; revision=2114
Diffstat (limited to 'addressbook/demo/addressbook-widget.h')
-rw-r--r--addressbook/demo/addressbook-widget.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/addressbook/demo/addressbook-widget.h b/addressbook/demo/addressbook-widget.h
new file mode 100644
index 0000000000..9111713da5
--- /dev/null
+++ b/addressbook/demo/addressbook-widget.h
@@ -0,0 +1,52 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+/*
+ * demo.h
+ * Copyright (C) 2000 Helix Code, Inc.
+ * Author: Chris Lahey <clahey@helixcode.com>
+ *
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2, or (at your option)
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+
+#ifndef __DEMO_H__
+#define __DEMO_H__
+
+#include "e-test-model.h"
+
+typedef struct _View View;
+
+typedef enum {
+ VIEW_TYPE_REFLOW,
+ VIEW_TYPE_TABLE
+} ViewType;
+
+typedef struct {
+ GtkAllocation last_alloc;
+ GnomeCanvasItem *reflow;
+ GtkWidget *canvas;
+ GnomeCanvasItem *rect;
+ int model_changed_id;
+} Reflow;
+
+struct _View {
+ ViewType type;
+ ETestModel *model;
+ GtkWidget *child;
+ GtkWidget *frame;
+ Reflow *reflow;
+
+ GtkWidget *widget;
+};
+
+void change_type(View *view, ViewType type);
+View *create_view(void);
+
+#endif /* __DEMO_H__ */