aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2001-10-20 00:08:50 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2001-10-20 00:08:50 +0800
commit20115b3d529724db653b8323e195237b33bb3873 (patch)
tree4dc6f5999b8502d63feb7e2952e4a5e79f6fd9df
parent92d0b48b3ca0793ea7f3be32c189302ca6ec60f2 (diff)
downloadgsoc2013-evolution-20115b3d529724db653b8323e195237b33bb3873.tar
gsoc2013-evolution-20115b3d529724db653b8323e195237b33bb3873.tar.gz
gsoc2013-evolution-20115b3d529724db653b8323e195237b33bb3873.tar.bz2
gsoc2013-evolution-20115b3d529724db653b8323e195237b33bb3873.tar.lz
gsoc2013-evolution-20115b3d529724db653b8323e195237b33bb3873.tar.xz
gsoc2013-evolution-20115b3d529724db653b8323e195237b33bb3873.tar.zst
gsoc2013-evolution-20115b3d529724db653b8323e195237b33bb3873.zip
new function (update_query): call set_status_message
2001-10-19 Rodrigo Moya <rodrigo@ximian.com> * gui/calendar-model.c (set_status_message): new function (update_query): call set_status_message (query_query_done_cb): (query_eval_error_cb): clean up status bar messages (get_location, set_location): new functions for setting and retrieving the location in the calendar model svn path=/trunk/; revision=13794
-rw-r--r--calendar/ChangeLog9
-rw-r--r--calendar/gui/calendar-model.c80
2 files changed, 89 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 591f97b60a..3d8ecd62ae 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,5 +1,14 @@
2001-10-19 Rodrigo Moya <rodrigo@ximian.com>
+ * gui/calendar-model.c (set_status_message): new function
+ (update_query): call set_status_message
+ (query_query_done_cb):
+ (query_eval_error_cb): clean up status bar messages
+ (get_location, set_location): new functions for setting and
+ retrieving the location in the calendar model
+
+2001-10-19 Rodrigo Moya <rodrigo@ximian.com>
+
* gui/component-factory.c (owner_set_cb): keep a reference to the
EvolutionShellClient component
diff --git a/calendar/gui/calendar-model.c b/calendar/gui/calendar-model.c
index c83d29d04d..cb152a5e6b 100644
--- a/calendar/gui/calendar-model.c
+++ b/calendar/gui/calendar-model.c
@@ -39,6 +39,7 @@
#include "calendar-config.h"
#include "itip-utils.h"
#include "calendar-model.h"
+#include "evolution-activity-client.h"
/* This specifies how often we refresh the list, so that completed tasks are
hidden according to the config setting, and overdue tasks change color etc.
@@ -84,6 +85,9 @@ struct _CalendarModelPrivate {
/* The id of our timeout function for refreshing the list. */
gint timeout_id;
+
+ /* The activity client used to show messages on the status bar. */
+ EvolutionActivityClient *activity;
};
@@ -104,6 +108,7 @@ static void *calendar_model_initialize_value (ETableModel *etm, int col);
static gboolean calendar_model_value_is_empty (ETableModel *etm, int col, const void *value);
static char * calendar_model_value_to_string (ETableModel *etm, int col, const void *value);
static int remove_object (CalendarModel *model, const char *uid);
+static void set_status_message (CalendarModel *model, const char *message);
static void ensure_task_complete (CalComponent *comp,
time_t completed_date);
static void ensure_task_not_complete (CalComponent *comp);
@@ -213,6 +218,8 @@ calendar_model_init (CalendarModel *model)
priv->addresses = itip_addresses_get ();
priv->zone = NULL;
+
+ priv->activity = NULL;
}
/* Called from g_hash_table_foreach_remove(), frees a stored UID->index
@@ -302,6 +309,11 @@ calendar_model_destroy (GtkObject *object)
itip_addresses_free (priv->addresses);
+ if (priv->activity) {
+ gtk_object_unref (GTK_OBJECT (priv->activity));
+ priv->activity = NULL;
+ }
+
/* Free the private structure */
g_free (priv);
@@ -731,6 +743,15 @@ get_status (CalComponent *comp)
}
}
+static void *
+get_location (CalComponent *comp)
+{
+ const char *location;
+
+ cal_component_get_location (comp, &location);
+ return location;
+}
+
/* value_at handler for the calendar table model */
static void *
calendar_model_value_at (ETableModel *etm, int col, int row)
@@ -860,6 +881,9 @@ calendar_model_value_at (ETableModel *etm, int col, int row)
case CAL_COMPONENT_FIELD_COMPONENT:
return comp;
+ case CAL_COMPONENT_FIELD_LOCATION :
+ return get_location (comp);
+
default:
g_message ("calendar_model_value_at(): Requested invalid column %d", col);
g_assert_not_reached ();
@@ -1262,6 +1286,17 @@ set_status (CalComponent *comp, const char *value)
}
}
+static void
+set_location (CalComponent *comp, const char *value)
+{
+ if (string_is_empty (value)) {
+ cal_component_set_location (comp, NULL);
+ return;
+ }
+
+ cal_component_set_location (comp, value);
+}
+
/* set_value_at handler for the calendar table model */
static void
calendar_model_set_value_at (ETableModel *etm, int col, int row, const void *value)
@@ -1342,6 +1377,10 @@ calendar_model_set_value_at (ETableModel *etm, int col, int row, const void *val
set_status (comp, value);
break;
+ case CAL_COMPONENT_FIELD_LOCATION :
+ set_location (comp, value);
+ break;
+
default:
g_message ("calendar_model_set_value_at(): Requested invalid column %d", col);
g_assert_not_reached ();
@@ -1830,6 +1869,8 @@ query_query_done_cb (CalQuery *query, CalQueryDoneStatus status, const char *err
/* FIXME */
+ set_status_message (model, NULL);
+
if (status != CAL_QUERY_DONE_SUCCESS)
fprintf (stderr, "query done: %s\n", error_str);
}
@@ -1844,6 +1885,8 @@ query_eval_error_cb (CalQuery *query, const char *error_str, gpointer data)
/* FIXME */
+ set_status_message (model, NULL);
+
fprintf (stderr, "eval error: %s\n", error_str);
}
@@ -1965,6 +2008,7 @@ update_query (CalendarModel *model)
g_assert (priv->sexp != NULL);
real_sexp = adjust_query_sexp (model, priv->sexp);
+ set_status_message (model, _("Searching"));
priv->query = cal_client_get_query (priv->client, real_sexp);
g_free (real_sexp);
@@ -2054,6 +2098,42 @@ remove_object (CalendarModel *model, const char *uid)
return n;
}
+/* Displays messages on the status bar */
+#define EVOLUTION_TASKS_PROGRESS_IMAGE "evolution-tasks-mini.png"
+static GdkPixbuf *progress_icon[2] = { NULL, NULL };
+
+static void
+set_status_message (CalendarModel *model, const char *message)
+{
+ extern EvolutionShellClient *global_shell_client; /* ugly */
+ CalendarModelPrivate *priv;
+
+ g_return_if_fail (IS_CALENDAR_MODEL (model));
+
+ priv = model->priv;
+
+ if (!message || !*message) {
+ if (priv->activity) {
+ gtk_object_unref (GTK_OBJECT (priv->activity));
+ priv->activity = NULL;
+ }
+ }
+ else if (!priv->activity) {
+ int display;
+ char *client_id = g_strdup_printf ("%p", model);
+
+ if (progress_icon[0] == NULL)
+ progress_icon[0] = gdk_pixbuf_new_from_file (EVOLUTION_IMAGESDIR "/" EVOLUTION_TASKS_PROGRESS_IMAGE);
+ priv->activity = evolution_activity_client_new (
+ global_shell_client, client_id,
+ progress_icon, message, TRUE, &display);
+
+ g_free (client_id);
+ }
+ else
+ evolution_activity_client_update (priv->activity, message, -1.0);
+}
+
/**
* calendar_model_get_cal_client:
* @model: A calendar model.