aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-cal-shell-view-actions.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@src.gnome.org>2008-09-11 22:44:18 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-09-11 22:44:18 +0800
commit4c8aa5982c0132716f473873d0e1d7601df14607 (patch)
tree1e9cc771988082b22f72bbb3a4fa0dc9bb84184e /calendar/gui/e-cal-shell-view-actions.c
parent6545899a2972546a035da4d73c3625b9e8bb7438 (diff)
downloadgsoc2013-evolution-4c8aa5982c0132716f473873d0e1d7601df14607.tar
gsoc2013-evolution-4c8aa5982c0132716f473873d0e1d7601df14607.tar.gz
gsoc2013-evolution-4c8aa5982c0132716f473873d0e1d7601df14607.tar.bz2
gsoc2013-evolution-4c8aa5982c0132716f473873d0e1d7601df14607.tar.lz
gsoc2013-evolution-4c8aa5982c0132716f473873d0e1d7601df14607.tar.xz
gsoc2013-evolution-4c8aa5982c0132716f473873d0e1d7601df14607.tar.zst
gsoc2013-evolution-4c8aa5982c0132716f473873d0e1d7601df14607.zip
Add popup menu stubs for calendars, tasks and memos.
svn path=/branches/kill-bonobo/; revision=36303
Diffstat (limited to 'calendar/gui/e-cal-shell-view-actions.c')
-rw-r--r--calendar/gui/e-cal-shell-view-actions.c52
1 files changed, 52 insertions, 0 deletions
diff --git a/calendar/gui/e-cal-shell-view-actions.c b/calendar/gui/e-cal-shell-view-actions.c
index 638dc58ad0..e4f9d351c5 100644
--- a/calendar/gui/e-cal-shell-view-actions.c
+++ b/calendar/gui/e-cal-shell-view-actions.c
@@ -21,6 +21,18 @@
#include "e-cal-shell-view-private.h"
static void
+action_calendar_copy_cb (GtkAction *action,
+ ECalShellView *cal_shell_view)
+{
+}
+
+static void
+action_calendar_delete_cb (GtkAction *action,
+ ECalShellView *cal_shell_view)
+{
+}
+
+static void
action_calendar_go_back_cb (GtkAction *action,
ECalShellView *cal_shell_view)
{
@@ -45,6 +57,12 @@ action_calendar_jump_to_cb (GtkAction *action,
}
static void
+action_calendar_new_cb (GtkAction *action,
+ ECalShellView *cal_shell_view)
+{
+}
+
+static void
action_calendar_print_cb (GtkAction *action,
ECalShellView *cal_shell_view)
{
@@ -57,6 +75,12 @@ action_calendar_print_preview_cb (GtkAction *action,
}
static void
+action_calendar_properties_cb (GtkAction *action,
+ ECalShellView *cal_shell_view)
+{
+}
+
+static void
action_calendar_purge_cb (GtkAction *action,
ECalShellView *cal_shell_view)
{
@@ -113,6 +137,20 @@ action_event_open_cb (GtkAction *action,
static GtkActionEntry calendar_entries[] = {
+ { "calendar-copy",
+ GTK_STOCK_COPY,
+ N_("_Copy..."),
+ NULL,
+ NULL, /* XXX Add a tooltip! */
+ G_CALLBACK (action_calendar_copy_cb) },
+
+ { "calendar-delete",
+ GTK_STOCK_DELETE,
+ NULL,
+ NULL,
+ NULL, /* XXX Add a tooltip! */
+ G_CALLBACK (action_calendar_delete_cb) },
+
{ "calendar-go-back",
GTK_STOCK_GO_BACK,
N_("Previous"),
@@ -141,6 +179,13 @@ static GtkActionEntry calendar_entries[] = {
N_("Select a specific date"),
G_CALLBACK (action_calendar_jump_to_cb) },
+ { "calendar-new",
+ "x-office-calendar",
+ N_("_New Calendar"),
+ NULL,
+ N_("Create a new calendar"),
+ G_CALLBACK (action_calendar_new_cb) },
+
{ "calendar-print",
GTK_STOCK_PRINT,
NULL,
@@ -155,6 +200,13 @@ static GtkActionEntry calendar_entries[] = {
N_("Preview the calendar to be printed"),
G_CALLBACK (action_calendar_print_preview_cb) },
+ { "calendar-properties",
+ GTK_STOCK_PROPERTIES,
+ NULL,
+ NULL,
+ NULL, /* XXX Add a tooltip! */
+ G_CALLBACK (action_calendar_properties_cb) },
+
{ "calendar-purge",
NULL,
N_("Purg_e"),