aboutsummaryrefslogtreecommitdiffstats
path: root/mail/subscribe-dialog.h
diff options
context:
space:
mode:
authorChris Toshok <toshok@helixcode.com>2000-10-03 08:01:24 +0800
committerChris Toshok <toshok@src.gnome.org>2000-10-03 08:01:24 +0800
commit5d8858ccfabb580376c59c9f1ca3672189e2015f (patch)
treecfa191911c8d66297482879145217a31eb4c9501 /mail/subscribe-dialog.h
parent29b9fbe51b2fd15b76617956a5517cb953f1ca29 (diff)
downloadgsoc2013-evolution-5d8858ccfabb580376c59c9f1ca3672189e2015f.tar
gsoc2013-evolution-5d8858ccfabb580376c59c9f1ca3672189e2015f.tar.gz
gsoc2013-evolution-5d8858ccfabb580376c59c9f1ca3672189e2015f.tar.bz2
gsoc2013-evolution-5d8858ccfabb580376c59c9f1ca3672189e2015f.tar.lz
gsoc2013-evolution-5d8858ccfabb580376c59c9f1ca3672189e2015f.tar.xz
gsoc2013-evolution-5d8858ccfabb580376c59c9f1ca3672189e2015f.tar.zst
gsoc2013-evolution-5d8858ccfabb580376c59c9f1ca3672189e2015f.zip
add fields for the storage set Bonobo_Control and Evolution_StorageSetView
2000-10-02 Chris Toshok <toshok@helixcode.com> * subscribe-dialog.h: add fields for the storage set Bonobo_Control and Evolution_StorageSetView interfaces. * subscribe-dialog.c (subscribe_dialog_gui_init): create the uih as early as possible, and add the storage set view to the left side of the hpaned. svn path=/trunk/; revision=5681
Diffstat (limited to 'mail/subscribe-dialog.h')
-rw-r--r--mail/subscribe-dialog.h29
1 files changed, 16 insertions, 13 deletions
diff --git a/mail/subscribe-dialog.h b/mail/subscribe-dialog.h
index 5805c50b5f..282d4ad18f 100644
--- a/mail/subscribe-dialog.h
+++ b/mail/subscribe-dialog.h
@@ -7,6 +7,7 @@
#include "mail-types.h"
#include <gtk/gtktable.h>
#include <gal/e-table/e-tree-model.h>
+#include <bonobo/bonobo-control.h>
#include <bonobo/bonobo-ui-compat.h>
#include <bonobo/bonobo-property-bag.h>
#include "shell/Evolution.h"
@@ -21,19 +22,21 @@
struct _SubscribeDialog {
GtkObject parent;
- Evolution_Shell shell;
-
- BonoboUIHandler *uih;
-
- GtkWidget *app;
-
- GtkWidget *storage_set_view;
- GtkWidget *hpaned;
- GtkWidget *table;
- GtkWidget *description;
- GtkWidget *etable;
- ETreeModel *model;
- ETreePath *root;
+ Evolution_Shell shell;
+ Bonobo_Control storage_set_control;
+ Evolution_StorageSetView storage_set_view;
+
+ BonoboUIHandler *uih;
+
+ GtkWidget *app;
+
+ GtkWidget *storage_set_view_widget;
+ GtkWidget *hpaned;
+ GtkWidget *table;
+ GtkWidget *description;
+ GtkWidget *etable;
+ ETreeModel *model;
+ ETreePath *root;
};