diff options
author | Shakti Sen <shprasad@novell.com> | 2005-07-22 15:38:37 +0800 |
---|---|---|
committer | Shakti Prasad Sen <shaktis@src.gnome.org> | 2005-07-22 15:38:37 +0800 |
commit | f29491124b132b0baf7582f482f749c018661717 (patch) | |
tree | c9919d289ca87af5a7c9d93cf841b5132bdbeca9 /calendar/gui/e-tasks.c | |
parent | 3bf056fc656becfb2da3088911770d2e76c9a3b5 (diff) | |
download | gsoc2013-evolution-f29491124b132b0baf7582f482f749c018661717.tar.gz gsoc2013-evolution-f29491124b132b0baf7582f482f749c018661717.tar.zst gsoc2013-evolution-f29491124b132b0baf7582f482f749c018661717.zip |
Creating the tasks-menu. Activated/deactivated the menu. In brief, added
2005-07-21 Shakti Sen <shprasad@novell.com>
* gui/e-tasks.c (e_tasks_init): Creating the tasks-menu.
* gui/tasks-control.c (tasks_control_activate,
tasks_control_deactivate): Activated/deactivated the menu.
In brief, added support for 'Tasks' menu creation.
Fixes bug #310985.
svn path=/trunk/; revision=29841
Diffstat (limited to 'calendar/gui/e-tasks.c')
-rw-r--r-- | calendar/gui/e-tasks.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/calendar/gui/e-tasks.c b/calendar/gui/e-tasks.c index 00b6212124..d7851290ad 100644 --- a/calendar/gui/e-tasks.c +++ b/calendar/gui/e-tasks.c @@ -54,6 +54,7 @@ #include "e-cal-component-preview.h" #include "e-tasks.h" #include "common/authentication.h" +#include "e-cal-menu.h" /* Private part of the GnomeCalendar structure */ @@ -74,6 +75,9 @@ struct _ETasksPrivate { /* Calendar search bar for tasks */ GtkWidget *search_bar; + /* Tasks menu */ + ECalMenu *tasks_menu; + /* Paned widget */ GtkWidget *paned; @@ -97,6 +101,7 @@ static void update_view (ETasks *tasks); static void config_categories_changed_cb (EConfigListener *config_listener, const char *key, gpointer user_data); static void backend_error_cb (ECal *client, const char *message, gpointer data); +ECalMenu *gnome_tasks_get_tasks_menu (ETasks *tasks); /* Signal IDs */ enum { @@ -161,6 +166,15 @@ table_cursor_change_cb (ETable *etable, int row, gpointer data) g_object_unref (comp); } +ECalMenu * +gnome_tasks_get_tasks_menu (ETasks *tasks) +{ + g_return_val_if_fail (E_IS_TASKS (tasks), NULL); + + return tasks->priv->tasks_menu; +} + + /* Callback used when the selection changes in the table. */ static void table_selection_change_cb (ETable *etable, gpointer data) @@ -654,6 +668,7 @@ e_tasks_init (ETasks *tasks) priv->current_uid = NULL; priv->sexp = g_strdup ("#t"); priv->default_client = NULL; + priv->tasks_menu = e_cal_menu_new ("org.gnome.evolution.tasks.view"); update_view (tasks); } |