aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-view-menu.c
blob: 8e8231d774f51189df958aebea185f648fc32ecc (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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
/*
 * E-shell-view-menu.c: Controls the shell view's menus.
 *
 * This file provides API entry points for changing and updating
 * the menus to reflect the status of Evolution.
 *
 * Authors:
 *   Miguel de Icaza (miguel@helixcode.com)
 *
 * (C) 2000 Helix Code, Inc.
 */

#include <config.h>
#include <gnome.h>
#include "e-shell-view.h"
#include "e-shell-view-menu.h"

static void
esv_cmd_new_folder (GtkWidget *widget, EShellView *esv)
{
    e_shell_view_new_folder (esv);
}

static void
esv_cmd_new_shortcut (GtkWidget *widget, EShellView *esv)
{
    e_shell_view_new_shortcut (esv);
}

static void
esv_cmd_new_mail_message (GtkWidget *widget, EShellView *esv)
{
    e_shell_new_mail_message (esv->eshell);
}

static void
esv_cmd_new_meeting_request (GtkWidget *widget, EShellView *esv)
{
    e_shell_new_meeting_request (esv->eshell);
}

static void
esv_cmd_new_contact (GtkWidget *widget, EShellView *esv)
{
    e_shell_new_contact (esv->eshell);
}

static void
esv_cmd_new_task (GtkWidget *widget, EShellView *esv)
{
    e_shell_new_task (esv->eshell);
}

static void
esv_cmd_new_task_request (GtkWidget *widget, EShellView *esv)
{
    e_shell_new_task_request (esv->eshell);
}

static void
esv_cmd_new_journal_entry (GtkWidget *widget, EShellView *esv)
{
    e_shell_new_journal_entry (esv->eshell);
}

static void
esv_cmd_new_note (GtkWidget *widget, EShellView *esv)
{
    e_shell_new_note (esv->eshell);
}

static void
esv_cmd_open_selected_items (GtkWidget *widget, EShellView *esv)
{
    printf ("Unimplemented open selected items\n");
}

static void
esv_cmd_save_as (GtkWidget *widget, EShellView *esv)
{
}

static void
quit_cmd (GtkWidget *widget, EShellView *esv)
{
    e_shell_quit (esv->eshell);
}

static void
esv_cmd_close_open_items (GtkWidget *widget, EShellView *esv)
{
    printf ("Unimplemented function");
}

/*
 * Fixme
 *
 * This menu is actually pretty dynamic, it changes de values of various entries
 * depending on the current data being displayed
 *
 * This is currently only a placeholder.  We need to figure what to do about this.
 */
static GnomeUIInfo esv_menu_file_new [] = {

    { GNOME_APP_UI_ITEM, N_("_Folder"),
      NULL, esv_cmd_new_folder, NULL,
      NULL, 0, 0, 'e', GDK_CONTROL_MASK | GDK_SHIFT_MASK },

    { GNOME_APP_UI_ITEM, N_("Evolution _Bar Shortcut"),
      NULL, esv_cmd_new_shortcut, NULL,
      NULL, 0, 0, 'e', GDK_CONTROL_MASK | GDK_SHIFT_MASK },
    
    GNOMEUIINFO_SEPARATOR,

    { GNOME_APP_UI_ITEM, N_("_Mail message"),
      N_("Composes a new mail message"), esv_cmd_new_mail_message, NULL,
      NULL, 0, 0, 'n', GDK_CONTROL_MASK | GDK_SHIFT_MASK },
    { GNOME_APP_UI_ITEM, N_("_Appointment"),
      N_("Composes a new mail message"), esv_cmd_new_mail_message, NULL,
      NULL, 0, 0, 'a', GDK_CONTROL_MASK | GDK_SHIFT_MASK },
    { GNOME_APP_UI_ITEM, N_("Meeting Re_quest"), NULL,
      esv_cmd_new_meeting_request, NULL,
      NULL, 0, 0, 'q', GDK_CONTROL_MASK | GDK_SHIFT_MASK },
    { GNOME_APP_UI_ITEM, N_("_Contact"), NULL,
      esv_cmd_new_contact, NULL,
      NULL, 0, 0, 'c', GDK_CONTROL_MASK | GDK_SHIFT_MASK },
    { GNOME_APP_UI_ITEM, N_("_Task"), NULL,
      esv_cmd_new_task, NULL,
      NULL, 0, 0, 'k', GDK_CONTROL_MASK | GDK_SHIFT_MASK },
    { GNOME_APP_UI_ITEM, N_("Task _Request"), NULL,
      esv_cmd_new_task_request, NULL,
      NULL, 0, 0, 'u', GDK_CONTROL_MASK | GDK_SHIFT_MASK },
    { GNOME_APP_UI_ITEM, N_("_Journal Entry"), NULL,
      esv_cmd_new_journal_entry, NULL,
      NULL, 0, 0, 'j', GDK_CONTROL_MASK | GDK_SHIFT_MASK },
    { GNOME_APP_UI_ITEM, N_("_Note"), NULL,
      esv_cmd_new_note, NULL,
      NULL, 0, 0, 'o', GDK_CONTROL_MASK | GDK_SHIFT_MASK },

    GNOMEUIINFO_SEPARATOR,

    GNOMEUIINFO_END
};

static GnomeUIInfo esv_menu_file_open [] = {
    { GNOME_APP_UI_ITEM, N_("_Selected Items"), NULL,
      esv_cmd_open_selected_items, NULL,
      NULL, 0, 0, 'o', GDK_CONTROL_MASK },
    
    GNOMEUIINFO_END
};

static GnomeUIInfo esv_menu_folder [] = {
    { GNOME_APP_UI_ITEM, N_("_New Folder"), NULL,
      esv_cmd_new_folder, NULL,
      NULL, 0, 0, 'e', GDK_CONTROL_MASK | GDK_SHIFT_MASK },
    
    GNOMEUIINFO_END
};

static GnomeUIInfo esv_menu_file [] = {
    GNOMEUIINFO_SUBTREE_STOCK (N_("_New"), esv_menu_file_new, GNOME_STOCK_MENU_NEW),
    GNOMEUIINFO_SUBTREE_STOCK (N_("_Open"), esv_menu_file_open, GNOME_STOCK_MENU_NEW),
    GNOMEUIINFO_ITEM_NONE (N_("Clos_e All Items"), N_("Closes all the open items"), esv_cmd_close_open_items),
    GNOMEUIINFO_SEPARATOR,
    
    GNOMEUIINFO_MENU_SAVE_AS_ITEM (esv_cmd_save_as, NULL),
    
    GNOMEUIINFO_SEPARATOR,

    GNOMEUIINFO_SUBTREE (N_("_Folder"), esv_menu_folder),

    GNOMEUIINFO_SEPARATOR,

    GNOMEUIINFO_MENU_EXIT_ITEM(quit_cmd, NULL),

    GNOMEUIINFO_END
};

static GnomeUIInfo esv_menu_edit [] = {
    GNOMEUIINFO_END
};

static GnomeUIInfo esv_menu_view [] = {
    GNOMEUIINFO_END
};

static GnomeUIInfo esv_menu_tools [] = {
    GNOMEUIINFO_END
};

static GnomeUIInfo esv_menu_actions [] = {
    GNOMEUIINFO_END
};

static GnomeUIInfo esv_menu [] = {
    GNOMEUIINFO_MENU_FILE_TREE (esv_menu_file),
    GNOMEUIINFO_MENU_EDIT_TREE (esv_menu_edit),
    GNOMEUIINFO_MENU_VIEW_TREE (esv_menu_view),

    /* FIXME: add Favorites here */

    { GNOME_APP_UI_SUBTREE, N_("_Tools"), NULL, esv_menu_tools },
    { GNOME_APP_UI_SUBTREE, N_("_Actions"), NULL, esv_menu_actions },
#warning Should provide a help menu here;  Bonobo needs it
    GNOMEUIINFO_END
};

/*
 * Sets up the menus for the EShellView.
 *
 * Creates the Bonobo UI Handler, and then loads the menus from our
 * GnomeUIInfo definitions
 */
void
e_shell_view_setup_menus (EShellView *eshell_view)
{
    BonoboUIHandlerMenuItem *list;

    eshell_view->uih = bonobo_ui_handler_new ();
    bonobo_ui_handler_set_app (eshell_view->uih, GNOME_APP (eshell_view));
    bonobo_ui_handler_create_menubar (eshell_view->uih);

    list = bonobo_ui_handler_menu_parse_uiinfo_list_with_data (esv_menu, eshell_view);
    bonobo_ui_handler_menu_add_list (eshell_view->uih, "/", list);
    bonobo_ui_handler_menu_free_list (list);
}