aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-memo-shell-view-actions.c
blob: 0e574cc6188079801682351cd3422077de369863 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
/* -*- 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"),
      "<Control>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"),
      "<Control>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);
}