From 67c50dc234f6ad9366c32ba25acb1971b76a0130 Mon Sep 17 00:00:00 2001 From: Chris Toshok Date: Thu, 28 Sep 2000 00:43:42 +0000 Subject: add SubscribeControl typedef. 2000-09-27 Chris Toshok * mail-types.h: add SubscribeControl typedef. * Makefile.am (evolution_mail_SOURCES): add the subscribe stuff. * subscribe-control-factory.h * subscribe-control-factory.c * subscribe-control.c: * subscribe-control.h: Mostly mocked up subscribe ui. svn path=/trunk/; revision=5610 --- mail/subscribe-control.h | 60 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 mail/subscribe-control.h (limited to 'mail/subscribe-control.h') diff --git a/mail/subscribe-control.h b/mail/subscribe-control.h new file mode 100644 index 0000000000..5124f3a8b7 --- /dev/null +++ b/mail/subscribe-control.h @@ -0,0 +1,60 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ + + +#ifndef _SUBSCRIBE_CONTROL_H_ +#define _SUBSCRIBE_CONTROL_H_ + +#include "mail-types.h" +#include +#include +#include +#include +#include "shell/Evolution.h" + + +#define SUBSCRIBE_CONTROL_TYPE (subscribe_control_get_type ()) +#define SUBSCRIBE_CONTROL(o) (GTK_CHECK_CAST ((o), SUBSCRIBE_CONTROL_TYPE, SubscribeControl)) +#define SUBSCRIBE_CONTROL_CLASS(k) (GTK_CHECK_CLASS_CAST((k), SUBSCRIBE_CONTROL_TYPE, SubscribeControlClass)) +#define IS_SUBSCRIBE_CONTROL(o) (GTK_CHECK_TYPE ((o), SUBSCRIBE_CONTROL_TYPE)) +#define IS_SUBSCRIBE_CONTROL_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), SUBSCRIBE_CONTROL_TYPE)) + +struct _SubscribeControl { + GtkTable parent; + + BonoboPropertyBag *properties; + + Evolution_Shell shell; + + /* This is a kludge for the toolbar problem. */ + int serial; + + /* + * The current URI being displayed by the SubscribeControl + */ + char *uri; + gboolean is_news; + + GtkWidget *description; + GtkWidget *table; + ETreeModel *model; + ETreePath *root; +}; + + +typedef struct { + GtkTableClass parent_class; +} SubscribeControlClass; + +GtkType subscribe_control_get_type (void); +GtkWidget *subscribe_control_new (const Evolution_Shell shell); + +gboolean subscribe_control_set_uri (SubscribeControl *subscribe_control, + const char *uri); + +/* menu/toolbar callbacks */ +void subscribe_select_all (BonoboUIHandler *uih, void *user_data, const char *path); +void subscribe_unselect_all (BonoboUIHandler *uih, void *user_data, const char *path); +void subscribe_folder (GtkWidget *widget, gpointer user_data); +void unsubscribe_folder (GtkWidget *widget, gpointer user_data); + +#endif /* _SUBSCRIBE_CONTROL_H_ */ -- cgit v1.2.3