aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2001-08-14 11:29:02 +0800
committerJP Rosevear <jpr@src.gnome.org>2001-08-14 11:29:02 +0800
commitc437b54b0c24b965a30f1e684b2f71b22340faef (patch)
treedbffbeac6112718245711de657c5c2bb2c50f603 /calendar
parent4870ab018100e23ad0518ee33d00ed72ef397970 (diff)
downloadgsoc2013-evolution-c437b54b0c24b965a30f1e684b2f71b22340faef.tar
gsoc2013-evolution-c437b54b0c24b965a30f1e684b2f71b22340faef.tar.gz
gsoc2013-evolution-c437b54b0c24b965a30f1e684b2f71b22340faef.tar.bz2
gsoc2013-evolution-c437b54b0c24b965a30f1e684b2f71b22340faef.tar.lz
gsoc2013-evolution-c437b54b0c24b965a30f1e684b2f71b22340faef.tar.xz
gsoc2013-evolution-c437b54b0c24b965a30f1e684b2f71b22340faef.tar.zst
gsoc2013-evolution-c437b54b0c24b965a30f1e684b2f71b22340faef.zip
add dialog for feedback (remove_item): ditto (send_item): ditto
2001-08-13 JP Rosevear <jpr@ximian.com> * gui/e-itip-control.c (update_item): add dialog for feedback (remove_item): ditto (send_item): ditto (send_freebusy): ditto svn path=/trunk/; revision=11987
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog13
-rw-r--r--calendar/gui/e-itip-control.c45
2 files changed, 43 insertions, 15 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 2e9fa76858..15079c681d 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,16 @@
+2001-08-13 JP Rosevear <jpr@ximian.com>
+
+ * gui/e-itip-control.c (update_item): add dialog for feedback
+ (remove_item): ditto
+ (send_item): ditto
+ (send_freebusy): ditto
+
+2001-08-13 JP Rosevear <jpr@ximian.com>
+
+ * gui/e-itip-control.c: rewrite the gui to use gtkhtml
+
+ * gui/Makefile.am: define the icon dir
+
2001-08-12 Kjartan Maraas <kmaraas@gnome.org>
* gui/e-itip-control.h: Remove #include <config.h> from here.
diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c
index f1367cfc9d..689e0c6b3e 100644
--- a/calendar/gui/e-itip-control.c
+++ b/calendar/gui/e-itip-control.c
@@ -923,6 +923,7 @@ update_item (EItipControl *itip)
icalcomponent *clone;
CalClient *client;
CalComponentVType type;
+ GtkWidget *dialog;
priv = itip->priv;
@@ -935,12 +936,12 @@ update_item (EItipControl *itip)
clone = icalcomponent_new_clone (priv->ical_comp);
icalcomponent_add_component (priv->top_level, clone);
- if (!cal_client_update_objects (client, priv->top_level)) {
- GtkWidget *dialog;
-
- dialog = gnome_warning_dialog(_("I couldn't update your calendar file!\n"));
- gnome_dialog_run (GNOME_DIALOG(dialog));
- }
+ if (!cal_client_update_objects (client, priv->top_level))
+ dialog = gnome_warning_dialog (_("I couldn't update your calendar file!\n"));
+ else
+ dialog = gnome_ok_dialog (_("Update complete\n"));
+ gnome_dialog_run_and_close (GNOME_DIALOG (dialog));
+
icalcomponent_remove_component (priv->top_level, clone);
}
@@ -951,6 +952,7 @@ remove_item (EItipControl *itip)
CalClient *client;
CalComponentVType type;
const char *uid;
+ GtkWidget *dialog;
priv = itip->priv;
@@ -961,12 +963,11 @@ remove_item (EItipControl *itip)
client = priv->event_client;
cal_component_get_uid (priv->comp, &uid);
- if (!cal_client_remove_object (client, uid)) {
- GtkWidget *dialog;
-
- dialog = gnome_warning_dialog(_("I couldn't remove the item from your calendar file!\n"));
- gnome_dialog_run (GNOME_DIALOG(dialog));
- }
+ if (!cal_client_remove_object (client, uid))
+ dialog = gnome_warning_dialog (_("I couldn't remove the item from your calendar file!\n"));
+ else
+ dialog = gnome_ok_dialog (_("Removal Complete"));
+ gnome_dialog_run_and_close (GNOME_DIALOG (dialog));
}
static void
@@ -976,7 +977,8 @@ send_item (EItipControl *itip)
CalComponent *comp;
CalComponentVType type;
const char *uid;
- CalClientGetStatus status = CAL_CLIENT_GET_NOT_FOUND;
+ CalClientGetStatus status;
+ GtkWidget *dialog;
priv = itip->priv;
@@ -991,10 +993,16 @@ send_item (EItipControl *itip)
status = cal_client_get_object (priv->task_client, uid, &comp);
break;
default:
+ status = CAL_CLIENT_GET_NOT_FOUND;
}
- if (status == CAL_CLIENT_GET_SUCCESS)
+ if (status == CAL_CLIENT_GET_SUCCESS) {
itip_send_comp (CAL_COMPONENT_METHOD_PUBLISH, comp);
+ dialog = gnome_ok_dialog (_("Item sent!\n"));
+ } else {
+ dialog = gnome_warning_dialog (_("The item could not be send!\n"));
+ }
+ gnome_dialog_run_and_close (GNOME_DIALOG (dialog));
}
static void
@@ -1005,6 +1013,7 @@ send_freebusy (EItipControl *itip)
CalComponentDateTime datetime;
CalClientGetStatus status;
time_t start, end;
+ GtkWidget *dialog;
priv = itip->priv;
@@ -1014,8 +1023,14 @@ send_freebusy (EItipControl *itip)
cal_component_get_dtend (priv->comp, &datetime);
end = icaltime_as_timet (*datetime.value);
status = cal_client_get_free_busy (priv->event_client, start, end, &comp);
- if (status == CAL_CLIENT_GET_SUCCESS)
+
+ if (status == CAL_CLIENT_GET_SUCCESS) {
itip_send_comp (CAL_COMPONENT_METHOD_REPLY, comp);
+ dialog = gnome_ok_dialog (_("Item sent!\n"));
+ } else {
+ dialog = gnome_warning_dialog (_("The item could not be send!\n"));
+ }
+ gnome_dialog_run_and_close (GNOME_DIALOG (dialog));
}
static void