aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Loper <mloper@src.gnome.org>2000-04-08 02:15:29 +0800
committerMatthew Loper <mloper@src.gnome.org>2000-04-08 02:15:29 +0800
commit2eff9b0bd9cd4dcb81eca1725ccad37cf68c42fe (patch)
tree012b180088ef46e0b874d8c5ecce7d9e77ca5401
parent0dfe82940874f1c2ff2e340e2d72ae0e7d060f42 (diff)
downloadgsoc2013-evolution-2eff9b0bd9cd4dcb81eca1725ccad37cf68c42fe.tar
gsoc2013-evolution-2eff9b0bd9cd4dcb81eca1725ccad37cf68c42fe.tar.gz
gsoc2013-evolution-2eff9b0bd9cd4dcb81eca1725ccad37cf68c42fe.tar.bz2
gsoc2013-evolution-2eff9b0bd9cd4dcb81eca1725ccad37cf68c42fe.tar.lz
gsoc2013-evolution-2eff9b0bd9cd4dcb81eca1725ccad37cf68c42fe.tar.xz
gsoc2013-evolution-2eff9b0bd9cd4dcb81eca1725ccad37cf68c42fe.tar.zst
gsoc2013-evolution-2eff9b0bd9cd4dcb81eca1725ccad37cf68c42fe.zip
+ * addressbook/demo/addressbook.c (control_activate_cb): New
+ function. Called when the control is (de)activated. + (control_activate): New function; called when the control is + activated, and sets up toolbar/menu times. + (control_deactivate): New function; removes those toolbar/menu + items. + (do_nothing_cb): Does nothing :-) + (addressbook_factory): Hook up to control_activate_cb(). svn path=/trunk/; revision=2327
-rw-r--r--ChangeLog11
-rw-r--r--addressbook/demo/addressbook.c88
2 files changed, 99 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d10ba5ab59..a7fac81f29 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2000-04-07 Matt Loper <matt@helixcode.com>
+
+ * addressbook/demo/addressbook.c (control_activate_cb): New
+ function. Called when the control is (de)activated.
+ (control_activate): New function; called when the control is
+ activated, and sets up toolbar/menu times.
+ (control_deactivate): New function; removes those toolbar/menu
+ items.
+ (do_nothing_cb): Does nothing :-)
+ (addressbook_factory): Hook up to control_activate_cb().
+
2000-04-07 Chris Toshok <toshok@laptoph.xtoph.org>
* addressbook/backend/pas/pas-backend-file.c
diff --git a/addressbook/demo/addressbook.c b/addressbook/demo/addressbook.c
index 7350e0cd0c..38cb6c7121 100644
--- a/addressbook/demo/addressbook.c
+++ b/addressbook/demo/addressbook.c
@@ -26,6 +26,8 @@
#include "addressbook-widget.h"
#include "addressbook.h"
+
+
#if 0
static void
bonobo_clock_control_prop_value_changed_cb (BonoboPropertyBag *pb, char *name, char *type,
@@ -55,6 +57,89 @@ release_data (GtkObject *object, void *data)
}
#endif
+
+static void
+control_deactivate (BonoboControl *control, BonoboUIHandler *uih)
+{
+ /* how to remove a menu item */
+ bonobo_ui_handler_menu_remove (uih, "/Actions/New Contact");
+
+ /* remove our toolbar */
+ bonobo_ui_handler_dock_remove (uih, "/Toolbar");
+}
+
+static void
+do_nothing_cb (BonoboUIHandler *uih, void *user_data, const char *path)
+{
+ printf ("Yow! I am called back!\n");
+}
+
+static GnomeUIInfo gnome_toolbar [] = {
+ GNOMEUIINFO_ITEM_STOCK (N_("New"), N_("Create a new contact"), do_nothing_cb, GNOME_STOCK_PIXMAP_NEW),
+
+ GNOMEUIINFO_SEPARATOR,
+
+ GNOMEUIINFO_ITEM_STOCK (N_("Find"), N_("Find a contact"), do_nothing_cb, GNOME_STOCK_PIXMAP_SEARCH),
+ GNOMEUIINFO_ITEM_STOCK (N_("Print"), N_("Print contacts"), do_nothing_cb, GNOME_STOCK_PIXMAP_PRINT),
+ GNOMEUIINFO_ITEM_STOCK (N_("Delete"), N_("Delete a contact"), do_nothing_cb, GNOME_STOCK_PIXMAP_TRASH),
+
+ GNOMEUIINFO_END
+};
+
+
+
+
+static void
+control_activate (BonoboControl *control, BonoboUIHandler *uih)
+{
+ Bonobo_UIHandler remote_uih;
+ GtkWidget *toolbar;
+ BonoboControl *toolbar_control;
+
+ remote_uih = bonobo_control_get_remote_ui_handler (control);
+ bonobo_ui_handler_set_container (uih, remote_uih);
+
+ bonobo_ui_handler_menu_new_item (uih, "/Actions/New Contact", N_("_New Contact"),
+ NULL, -1,
+ BONOBO_UI_HANDLER_PIXMAP_NONE, NULL,
+ 0, 0, do_nothing_cb, NULL);
+
+ toolbar = gtk_toolbar_new (GTK_ORIENTATION_HORIZONTAL,
+ GTK_TOOLBAR_BOTH);
+
+ gnome_app_fill_toolbar (GTK_TOOLBAR (toolbar),
+ gnome_toolbar,
+ NULL);
+
+ gtk_widget_show_all (toolbar);
+
+ toolbar_control = bonobo_control_new (toolbar);
+ bonobo_ui_handler_dock_add (
+ uih, "/Toolbar",
+ bonobo_object_corba_objref (BONOBO_OBJECT (toolbar_control)),
+ GNOME_DOCK_ITEM_BEH_LOCKED |
+ GNOME_DOCK_ITEM_BEH_EXCLUSIVE,
+ GNOME_DOCK_TOP,
+ 1, 1, 0);
+}
+
+static void
+control_activate_cb (BonoboControl *control,
+ gboolean activate,
+ gpointer user_data)
+{
+ BonoboUIHandler *uih;
+
+ uih = bonobo_control_get_ui_handler (control);
+ g_assert (uih);
+
+ if (activate)
+ control_activate (control, uih);
+ else
+ control_deactivate (control, uih);
+}
+
+
static BonoboObject *
addressbook_factory (BonoboGenericFactory *Factory, void *closure)
{
@@ -68,6 +153,9 @@ addressbook_factory (BonoboGenericFactory *Factory, void *closure)
/* Create the control. */
view = create_view();
control = bonobo_control_new (view->widget);
+
+ gtk_signal_connect (GTK_OBJECT (control), "activate",
+ control_activate_cb, NULL);
#if 0
/* Create the properties. */
pb = bonobo_property_bag_new ();