/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ /* e-memo-shell-view-actions.c * * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of version 2 of the GNU General Public * License as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this program; if not, write to the * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ #include "e-memo-shell-view-private.h" static void action_memo_clipboard_copy_cb (GtkAction *action, EMemoShellView *memo_shell_view) { } static void action_memo_clipboard_cut_cb (GtkAction *action, EMemoShellView *memo_shell_view) { } static void action_memo_clipboard_paste_cb (GtkAction *action, EMemoShellView *memo_shell_view) { } static void action_memo_delete_cb (GtkAction *action, EMemoShellView *memo_shell_view) { } 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) { } static void action_memo_preview_cb (GtkToggleAction *action, EMemoShellView *memo_shell_view) { } static void action_memo_print_cb (GtkAction *action, EMemoShellView *memo_shell_view) { } static void action_memo_print_preview_cb (GtkAction *action, EMemoShellView *memo_shell_view) { } static GtkActionEntry memo_entries[] = { { "memo-clipboard-copy", GTK_STOCK_COPY, NULL, NULL, N_("Copy selected memo"), G_CALLBACK (action_memo_clipboard_copy_cb) }, { "memo-clipboard-cut", GTK_STOCK_CUT, NULL, NULL, N_("Cut selected memo"), G_CALLBACK (action_memo_clipboard_cut_cb) }, { "memo-clipboard-paste", GTK_STOCK_PASTE, NULL, NULL, N_("Paste memo from the clipboard"), G_CALLBACK (action_memo_clipboard_paste_cb) }, { "memo-delete", GTK_STOCK_DELETE, NULL, NULL, 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"), "o", N_("View the selected memo"), G_CALLBACK (action_memo_open_cb) }, { "memo-print", GTK_STOCK_PRINT, NULL, NULL, N_("Print the list of memos"), G_CALLBACK (action_memo_print_cb) }, { "memo-print-preview", GTK_STOCK_PRINT_PREVIEW, NULL, NULL, N_("Preview the list of memos to be printed"), G_CALLBACK (action_memo_print_preview_cb) }, }; static GtkToggleActionEntry memo_toggle_entries[] = { { "memo-preview", NULL, N_("Memo _Preview"), "m", N_("Show memo preview pane"), G_CALLBACK (action_memo_preview_cb), TRUE } }; void e_memo_shell_view_actions_init (EMemoShellView *memo_shell_view) { EShellView *shell_view; EShellWindow *shell_window; GtkActionGroup *action_group; GtkUIManager *manager; const gchar *domain; shell_view = E_SHELL_VIEW (memo_shell_view); shell_window = e_shell_view_get_shell_window (shell_view); manager = e_shell_window_get_ui_manager (shell_window); domain = GETTEXT_PACKAGE; e_load_ui_definition (manager, "evolution-memos.ui"); action_group = memo_shell_view->priv->memo_actions; gtk_action_group_set_translation_domain (action_group, domain); gtk_action_group_add_actions ( action_group, memo_entries, G_N_ELEMENTS (memo_entries), memo_shell_view); gtk_action_group_add_toggle_actions ( action_group, memo_toggle_entries, G_N_ELEMENTS (memo_toggle_entries), memo_shell_view); gtk_ui_manager_insert_action_group (manager, action_group, 0); }