From ee413a3fd2c6ee802b6af1286f1cf7a65f52c5f1 Mon Sep 17 00:00:00 2001 From: Eskil Olsen Date: Thu, 4 Nov 1999 14:20:13 +0000 Subject: Uses the PISOCK_LIBDIR, for people with odd install dirs for their 1999-11-04 Eskil Olsen * Makefile.am: Uses the PISOCK_LIBDIR, for people with odd install dirs for their pilot-link. Also install a pretty icon for the calendar-conduit. * calendar-conduit-control-applet.c: Modfied the try/revert/ok/cancel scheme to be more intuitive, also uses a GtkOptionMenu for the possible sync methods. * calendar-conduit-control-applet.desktop: use the nice icon... * calendar-conduit.c: Ack, had to define debug_alarms and alarm_default, otherwise they are undefined. Is gncal code messy or is this considered a way of configuring the cal engine ? Implemented delete_all syncabs methods. * calendar-pilot-sync.c: also had to declare debug_alarms and alarm_defaults, just as ugly. svn path=/trunk/; revision=1367 --- calendar/calendar-conduit-control-applet.c | 215 +++++++++++++++++++---------- 1 file changed, 139 insertions(+), 76 deletions(-) (limited to 'calendar/calendar-conduit-control-applet.c') diff --git a/calendar/calendar-conduit-control-applet.c b/calendar/calendar-conduit-control-applet.c index 57f4a07cc8..fb1aeeadd9 100644 --- a/calendar/calendar-conduit-control-applet.c +++ b/calendar/calendar-conduit-control-applet.c @@ -32,42 +32,68 @@ GtkWidget *dialogWindow=NULL; gboolean activated,org_activation_state; GnomePilotConduitMgmt *conduit; -static void doTrySettings(GtkWidget *widget, GCalConduitCfg *conduitCfg); -static void doRevertSettings(GtkWidget *widget, GCalConduitCfg *conduitCfg); -static void doSaveSettings(GtkWidget *widget, GCalConduitCfg *conduitCfg); - -static void readStateCfg(GtkWidget *w); -static void setStateCfg(GtkWidget *w); +static void doTrySettings(GtkWidget *widget, gpointer); +static void doRevertSettings(GtkWidget *widget, gpointer); +static void doSaveSettings(GtkWidget *widget, gpointer); +static void readStateCfg(GtkWidget *w,GCalConduitCfg *cfg); +static void setStateCfg(GtkWidget *w,GCalConduitCfg *cfg); +void about_cb (GtkWidget *, gpointer); GCalConduitCfg *origState = NULL; GCalConduitCfg *curState = NULL; gint pilotId; CORBA_Environment ev; +/* This array must be in the same order as enumerations + in GnomePilotConduitSyncType as they are used as index. + Custom type implies Disabled state. +*/ +static gchar* sync_options[] ={ N_("Disabled"), + N_("Synchronize"), + N_("Copy From Pilot"), + N_("Copy To Pilot"), + N_("Merge From Pilot"), + N_("Merge To Pilot")}; +#define SYNC_OPTIONS_COUNT 6 + +static void +setSettings(GCalConduitCfg* conduitCfg) +{ + if(conduitCfg->sync_type!=GnomePilotConduitSyncTypeCustom) + gpilotd_conduit_mgmt_enable(conduit,pilotId,conduitCfg->sync_type); + else + gpilotd_conduit_mgmt_disable(conduit,pilotId); + + gcalconduit_save_configuration(conduitCfg); +} + static void -doTrySettings(GtkWidget *widget, GCalConduitCfg *conduitCfg) +doTrySettings(GtkWidget *widget, gpointer whatever) { - readStateCfg(cfgStateWindow); - if(activated) - gpilotd_conduit_mgmt_enable(conduit,pilotId,GnomePilotConduitSyncTypeSynchronize); - else - gpilotd_conduit_mgmt_disable(conduit,pilotId); + readStateCfg(cfgStateWindow,curState); + setSettings(curState); } static void -doSaveSettings(GtkWidget *widget, GCalConduitCfg *conduitCfg) +doSaveSettings(GtkWidget *widget, gpointer whatever) { - doTrySettings(widget, conduitCfg); - gcalconduit_save_configuration(conduitCfg); + doTrySettings(widget,whatever); } +static void +doCancelSettings(GtkWidget *widget, gpointer whatever) +{ + setSettings(origState); +} static void -doRevertSettings(GtkWidget *widget, GCalConduitCfg *conduitCfg) +doRevertSettings(GtkWidget *widget, gpointer whatever) { - activated = org_activation_state; - setStateCfg(cfgStateWindow); + gcalconduit_destroy_configuration(curState); + curState = gcalconduit_dupe_configuration(origState); + setStateCfg(cfgStateWindow,curState); + setSettings(curState); } static void @@ -113,11 +139,11 @@ void about_cb (GtkWidget *widget, gpointer data) { GtkWidget *about; const gchar *authors[] = {_("Eskil Heyn Olsen "),NULL}; - about = gnome_about_new(_("Gpilotd calendar conduit"), VERSION, - _("(C) 1998 the Free Software Foundation"), + about = gnome_about_new(_("GnomeCalendar Conduit"), VERSION, + _("(C) 1998"), authors, _("Configuration utility for the calendar conduit.\n"), - _("gnome-unknown.xpm")); + _("gnome-calendar-conduit.png")); gtk_widget_show (about); return; @@ -128,40 +154,73 @@ static void toggled_cb(GtkWidget *widget, gpointer data) { capplet_widget_state_changed(CAPPLET_WIDGET(capplet), TRUE); } -static GtkWidget -*createStateCfgWindow(void) +/* called by the sync_type GtkOptionMenu */ +static void +sync_action_selection(GtkMenuShell *widget, gpointer unused) { - GtkWidget *vbox, *table; - GtkWidget *entry, *label; - GtkWidget *button; - - vbox = gtk_vbox_new(FALSE, GNOME_PAD); - - table = gtk_table_new(2, 2, FALSE); - gtk_table_set_row_spacings(GTK_TABLE(table), 4); - gtk_table_set_col_spacings(GTK_TABLE(table), 10); - gtk_box_pack_start(GTK_BOX(vbox), table, FALSE, FALSE, GNOME_PAD); + if (!ignore_changes) { + capplet_widget_state_changed(CAPPLET_WIDGET (capplet), TRUE); + } +} - label = gtk_label_new(_("Enabled")); - gtk_table_attach_defaults(GTK_TABLE(table), label, 0, 1, 1,2); +/* called by the sync_type GtkOptionMenu */ +static void +activate_sync_type(GtkMenuItem *widget, gpointer data) +{ + curState->sync_type = GPOINTER_TO_INT(data); + gtk_widget_set_sensitive(cfgOptionsWindow,curState->sync_type!=GnomePilotConduitSyncTypeCustom); + if(!ignore_changes) + capplet_widget_state_changed(CAPPLET_WIDGET(capplet), TRUE); +} - button = gtk_check_button_new(); - gtk_object_set_data(GTK_OBJECT(vbox), "conduit_on_off", button); - gtk_signal_connect(GTK_OBJECT(button), "toggled", - GTK_SIGNAL_FUNC(toggled_cb), - NULL); - gtk_table_attach_defaults(GTK_TABLE(table), button, 1, 2, 1,2); +static GtkWidget +*createStateCfgWindow(void) +{ + GtkWidget *vbox, *table; + GtkWidget *label, *button; + GtkWidget *optionMenu,*menuItem; + GtkMenu *menu; + gint i; + + vbox = gtk_vbox_new(FALSE, GNOME_PAD); + + table = gtk_hbox_new(FALSE, 0); + gtk_box_pack_start(GTK_BOX(vbox), table, FALSE, FALSE, GNOME_PAD); + + label = gtk_label_new(_("Synchronize Action")); + gtk_box_pack_start(GTK_BOX(table), label, FALSE, FALSE, GNOME_PAD); + + optionMenu=gtk_option_menu_new(); + gtk_object_set_data(GTK_OBJECT(vbox), "conduit_state", optionMenu); + menu = GTK_MENU(gtk_menu_new()); + + for (i=0; iactive); ignore_changes = FALSE; +*/ } static void -readStateCfg(GtkWidget *cfg) +readStateCfg(GtkWidget *w,GCalConduitCfg *cfg) { GtkWidget *button; - button = gtk_object_get_data(GTK_OBJECT(cfg), "conduit_on_off"); + button = gtk_object_get_data(GTK_OBJECT(w), "conduit_on_off"); g_assert(button!=NULL); @@ -187,44 +247,47 @@ readStateCfg(GtkWidget *cfg) static void pilot_capplet_setup(void) { - GtkWidget *frame, *table; + GtkWidget *frame, *table; - capplet = capplet_widget_new(); + capplet = capplet_widget_new(); - table = gtk_table_new(1, 2, FALSE); - gtk_container_border_width(GTK_CONTAINER(table), GNOME_PAD); - gtk_container_add(GTK_CONTAINER(capplet), table); + table = gtk_table_new(1, 2, FALSE); + gtk_container_border_width(GTK_CONTAINER(table), GNOME_PAD); + gtk_container_add(GTK_CONTAINER(capplet), table); - frame = gtk_frame_new(_("Conduit state")); - gtk_container_border_width(GTK_CONTAINER(frame), GNOME_PAD_SMALL); - gtk_table_attach_defaults(GTK_TABLE(table), frame, 0, 1, 0, 1); - cfgStateWindow = createStateCfgWindow(); - gtk_container_add(GTK_CONTAINER(frame), cfgStateWindow); + frame = gtk_frame_new(_("Conduit state")); + gtk_container_border_width(GTK_CONTAINER(frame), GNOME_PAD_SMALL); + gtk_table_attach_defaults(GTK_TABLE(table), frame, 0, 1, 0, 1); + cfgStateWindow = createStateCfgWindow(); + gtk_container_add(GTK_CONTAINER(frame), cfgStateWindow); - gtk_signal_connect(GTK_OBJECT(capplet), "try", - GTK_SIGNAL_FUNC(doTrySettings), NULL); - gtk_signal_connect(GTK_OBJECT(capplet), "revert", - GTK_SIGNAL_FUNC(doRevertSettings), NULL); - gtk_signal_connect(GTK_OBJECT(capplet), "ok", - GTK_SIGNAL_FUNC(doSaveSettings), curState); - gtk_signal_connect(GTK_OBJECT(capplet), "help", - GTK_SIGNAL_FUNC(about_cb), NULL); + gtk_signal_connect(GTK_OBJECT(capplet), "try", + GTK_SIGNAL_FUNC(doTrySettings), NULL); + gtk_signal_connect(GTK_OBJECT(capplet), "revert", + GTK_SIGNAL_FUNC(doRevertSettings), NULL); + gtk_signal_connect(GTK_OBJECT(capplet), "ok", + GTK_SIGNAL_FUNC(doSaveSettings), NULL); + gtk_signal_connect(GTK_OBJECT(capplet), "cancel", + GTK_SIGNAL_FUNC(doCancelSettings), NULL); + gtk_signal_connect(GTK_OBJECT(capplet), "help", + GTK_SIGNAL_FUNC(about_cb), NULL); - setStateCfg(cfgStateWindow); + setStateCfg(cfgStateWindow,curState); - gtk_widget_show_all(capplet); + gtk_widget_show_all(capplet); } -void run_error_dialog(gchar *mesg,...) { - char tmp[80]; - va_list ap; - - va_start(ap,mesg); - vsnprintf(tmp,79,mesg,ap); - dialogWindow = gnome_message_box_new(mesg,GNOME_MESSAGE_BOX_ERROR,GNOME_STOCK_BUTTON_OK,NULL); - gnome_dialog_run_and_close(GNOME_DIALOG(dialogWindow)); - va_end(ap); +static void +run_error_dialog(gchar *mesg,...) { + char tmp[80]; + va_list ap; + + va_start(ap,mesg); + vsnprintf(tmp,79,mesg,ap); + dialogWindow = gnome_message_box_new(mesg,GNOME_MESSAGE_BOX_ERROR,GNOME_STOCK_BUTTON_OK,NULL); + gnome_dialog_run_and_close(GNOME_DIALOG(dialogWindow)); + va_end(ap); } gint get_pilot_id_from_gpilotd() { -- cgit v1.2.3