aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-memo-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-memo-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-memo-shell-view-actions.c')
-rw-r--r--calendar/gui/e-memo-shell-view-actions.c52
1 files changed, 52 insertions, 0 deletions
diff --git a/calendar/gui/e-memo-shell-view-actions.c b/calendar/gui/e-memo-shell-view-actions.c
index 5086c0bb69..0e574cc618 100644
--- a/calendar/gui/e-memo-shell-view-actions.c
+++ b/calendar/gui/e-memo-shell-view-actions.c
@@ -45,6 +45,30 @@ action_memo_delete_cb (GtkAction *action,
}
static void
+action_memo_list_copy_cb (GtkAction *action,
+ EMemoShellView *memo_shell_view)
+{
+}
+
+static void
+action_memo_list_delete_cb (GtkAction *action,
+ EMemoShellView *memo_shell_view)
+{
+}
+
+static void
+action_memo_list_new_cb (GtkAction *action,
+ EMemoShellView *memo_shell_view)
+{
+}
+
+static void
+action_memo_list_properties_cb (GtkAction *action,
+ EMemoShellView *memo_shell_view)
+{
+}
+
+static void
action_memo_open_cb (GtkAction *action,
EMemoShellView *memo_shell_view)
{
@@ -98,6 +122,34 @@ static GtkActionEntry memo_entries[] = {
N_("Delete selected memos"),
G_CALLBACK (action_memo_delete_cb) },
+ { "memo-list-copy",
+ GTK_STOCK_COPY,
+ N_("_Copy..."),
+ NULL,
+ NULL, /* XXX Add a tooltip! */
+ G_CALLBACK (action_memo_list_copy_cb) },
+
+ { "memo-list-delete",
+ GTK_STOCK_DELETE,
+ N_("_Delete"),
+ NULL,
+ NULL, /* XXX Add a tooltip! */
+ G_CALLBACK (action_memo_list_delete_cb) },
+
+ { "memo-list-new",
+ "stock_notes",
+ N_("_New Memo List"),
+ NULL,
+ N_("Create a new memo list"),
+ G_CALLBACK (action_memo_list_new_cb) },
+
+ { "memo-list-properties",
+ GTK_STOCK_PROPERTIES,
+ NULL,
+ NULL,
+ NULL, /* XXX Add a tooltip! */
+ G_CALLBACK (action_memo_list_properties_cb) },
+
{ "memo-open",
NULL,
N_("Open Memo"),