aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-menu.c
blob: bb8063e7dc1f26a3d8c780caaca2455a9486285e (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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
/*
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) version 3.
 *
 * 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with the program; if not, see <http://www.gnu.org/licenses/>
 *
 *
 * Authors:
 *      Michael Zucchi <notzed@ximian.com>
 *
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
 *
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <string.h>
#include <stdlib.h>

#include <gtk/gtk.h>

#include "em-menu.h"
#include "libedataserver/e-msgport.h"
#include "em-utils.h"
#include "em-composer-utils.h"

#include <camel/camel-store.h>
#include <camel/camel-folder.h>
#include <camel/camel-mime-message.h>
#include <camel/camel-string-utils.h>
#include <camel/camel-mime-utils.h>
#include <camel/camel-mime-part.h>
#include <camel/camel-url.h>

#include <camel/camel-vee-folder.h>
#include <camel/camel-vtrash-folder.h>

#include <gconf/gconf.h>
#include <gconf/gconf-client.h>

#include <e-util/e-util.h>

static void emp_standard_menu_factory(EMenu *emp, gpointer data);

static GObjectClass *emp_parent;

static void
emp_init(GObject *o)
{
    /*EMMenu *emp = (EMMenu *)o; */
}

static void
emp_finalise(GObject *o)
{
    ((GObjectClass *)emp_parent)->finalize(o);
}

static void
emp_target_free(EMenu *ep, EMenuTarget *t)
{
    switch (t->type) {
    case EM_MENU_TARGET_SELECT: {
        EMMenuTargetSelect *s = (EMMenuTargetSelect *)t;

        if (s->folder)
            camel_object_unref(s->folder);
        g_free(s->uri);
        if (s->uids)
            em_utils_uids_free(s->uids);
        break; }
    }

    ((EMenuClass *)emp_parent)->target_free(ep, t);
}

static void
emp_class_init(GObjectClass *klass)
{
    klass->finalize = emp_finalise;
    ((EMenuClass *)klass)->target_free = emp_target_free;

    e_menu_class_add_factory((EMenuClass *)klass, NULL, (EMenuFactoryFunc)emp_standard_menu_factory, NULL);
}

GType
em_menu_get_type(void)
{
    static GType type = 0;

    if (type == 0) {
        static const GTypeInfo info = {
            sizeof(EMMenuClass),
            NULL, NULL,
            (GClassInitFunc)emp_class_init,
            NULL, NULL,
            sizeof(EMMenu), 0,
            (GInstanceInitFunc)emp_init
        };
        emp_parent = g_type_class_ref(e_menu_get_type());
        type = g_type_register_static(e_menu_get_type(), "EMMenu", &info, 0);
    }

    return type;
}

EMMenu *em_menu_new(const gchar *menuid)
{
    EMMenu *emp = g_object_new(em_menu_get_type(), NULL);

    e_menu_construct(&emp->popup, menuid);

    return emp;
}

/**
 * em_menu_target_new_select:
 * @folder: The selection will ref this for the life of it.
 * @folder_uri:
 * @uids: The selection will free this when done with it.
 *
 * Create a new selection popup target.
 *
 * Return value:
 **/
EMMenuTargetSelect *
em_menu_target_new_select(EMMenu *emp, CamelFolder *folder, const gchar *folder_uri, GPtrArray *uids)
{
    EMMenuTargetSelect *t = e_menu_target_new(&emp->popup, EM_MENU_TARGET_SELECT, sizeof(*t));
    guint32 mask = ~0;
    gint i;
    const gchar *tmp;

    /* NB: This is identical to em-popup-target-new-select function */

    t->uids = uids;
    t->folder = folder;
    t->uri = g_strdup(folder_uri);

    if (folder == NULL) {
        t->target.mask = mask;

        return t;
    }

    camel_object_ref(folder);
    mask &= ~EM_MENU_SELECT_FOLDER;

    if (em_utils_folder_is_sent(folder, folder_uri))
        mask &= ~EM_MENU_SELECT_EDIT;

    if (!(em_utils_folder_is_drafts(folder, folder_uri)
          || em_utils_folder_is_outbox(folder, folder_uri))
        && uids->len == 1)
        mask &= ~EM_MENU_SELECT_ADD_SENDER;

    if (uids->len == 1)
        mask &= ~EM_MENU_SELECT_ONE;

    if (uids->len >= 1)
        mask &= ~EM_MENU_SELECT_MANY;

    for (i = 0; i < uids->len; i++) {
        CamelMessageInfo *info = camel_folder_get_message_info(folder, uids->pdata[i]);
        guint32 flags;

        if (info == NULL)
            continue;

        flags = camel_message_info_flags(info);

        if (flags & CAMEL_MESSAGE_SEEN)
            mask &= ~EM_MENU_SELECT_MARK_UNREAD;
        else
            mask &= ~EM_MENU_SELECT_MARK_READ;

        if (flags & CAMEL_MESSAGE_DELETED)
            mask &= ~EM_MENU_SELECT_UNDELETE;
        else
            mask &= ~EM_MENU_SELECT_DELETE;

        if (flags & CAMEL_MESSAGE_FLAGGED)
            mask &= ~EM_MENU_SELECT_MARK_UNIMPORTANT;
        else
            mask &= ~EM_MENU_SELECT_MARK_IMPORTANT;

        if (flags & CAMEL_MESSAGE_JUNK)
            mask &= ~EM_MENU_SELECT_MARK_NOJUNK;
        else
            mask &= ~EM_MENU_SELECT_MARK_JUNK;

        tmp = camel_message_info_user_tag(info, "follow-up");
        if (tmp && *tmp) {
            mask &= ~EM_MENU_SELECT_FLAG_CLEAR;
            tmp = camel_message_info_user_tag(info, "completed-on");
            if (tmp == NULL || *tmp == 0)
                mask &= ~EM_MENU_SELECT_FLAG_COMPLETED;
        } else
            mask &= ~EM_MENU_SELECT_FLAG_FOLLOWUP;

        if (i == 0 && uids->len == 1
            && (tmp = camel_message_info_mlist(info))
            && tmp[0] != 0)
            mask &= ~EM_MENU_SELECT_MAILING_LIST;

        camel_folder_free_message_info(folder, info);
    }

    t->target.mask = mask;

    return t;
}

/**
 * em_menu_target_new_window:
 * @emp:
 * @window:
 *
 * create a dummy target which references some sort of widget.
 *
 * Return value:
 **/
EMMenuTargetWidget *
em_menu_target_new_widget(EMMenu *emp, GtkWidget *w)
{
    EMMenuTargetWidget *t = e_menu_target_new(&emp->popup, EM_MENU_TARGET_WIDGET, sizeof(*t));
    guint32 mask = ~0;

    t->target.mask = mask;
    t->target.widget = w;

    return t;
}

static void
emp_standard_menu_factory(EMenu *emp, gpointer data)
{
    /* noop */
}

/* ********************************************************************** */

/* menu plugin handler */

/*
<e-plugin
  class="org.gnome.mail.plugin.popup:1.0"
  id="org.gnome.mail.plugin.popup.item:1.0"
  type="shlib"
  location="/opt/gnome2/lib/camel/1.0/libcamelimap.so"
  name="imap"
  description="IMAP4 and IMAP4v1 mail store">
  <hook class="org.gnome.mail.popupMenu:1.0"
        handler="HandlePopup">
  <menu id="any" target="select">
   <item
    type="item|toggle|radio|image|submenu|bar"
    active
    path="foo/bar"
    label="label"
    icon="foo"
    mask="select_one"
    activate="emp_view_emacs"/>
  </menu>
  </extension>

*/

static gpointer emph_parent_class;
#define emph ((EMMenuHook *)eph)

static const EMenuHookTargetMask emph_select_masks[] = {
    { "one", EM_MENU_SELECT_ONE },
    { "many", EM_MENU_SELECT_MANY },
    { "mark_read", EM_MENU_SELECT_MARK_READ },
    { "mark_unread", EM_MENU_SELECT_MARK_UNREAD },
    { "delete", EM_MENU_SELECT_DELETE },
    { "undelete", EM_MENU_SELECT_UNDELETE },
    { "mailing_list", EM_MENU_SELECT_MAILING_LIST },
    { "resend", EM_MENU_SELECT_EDIT },
    { "mark_important", EM_MENU_SELECT_MARK_IMPORTANT },
    { "mark_unimportant", EM_MENU_SELECT_MARK_UNIMPORTANT },
    { "flag_followup", EM_MENU_SELECT_FLAG_FOLLOWUP },
    { "flag_completed", EM_MENU_SELECT_FLAG_COMPLETED },
    { "flag_clear", EM_MENU_SELECT_FLAG_CLEAR },
    { "add_sender", EM_MENU_SELECT_ADD_SENDER },
    { "mark_junk", EM_MENU_SELECT_MARK_JUNK },
    { "mark_nojunk", EM_MENU_SELECT_MARK_NOJUNK },
    { "folder", EM_MENU_SELECT_FOLDER },
    { NULL }
};

/* dummy widget target, probably wont have any useful masks.
   this should probably be a more specific target type */
static const EMenuHookTargetMask emph_widget_masks[] = {
    { NULL }
};

static const EMenuHookTargetMap emph_targets[] = {
    { "select", EM_MENU_TARGET_SELECT, emph_select_masks },
    { "widget", EM_MENU_TARGET_WIDGET, emph_widget_masks },
    { NULL }
};

static void
emph_finalise(GObject *o)
{
    /*EPluginHook *eph = (EPluginHook *)o;*/

    ((GObjectClass *)emph_parent_class)->finalize(o);
}

static void
emph_class_init(EPluginHookClass *klass)
{
    gint i;

    ((GObjectClass *)klass)->finalize = emph_finalise;
    ((EPluginHookClass *)klass)->id = "org.gnome.evolution.mail.bonobomenu:1.0";

    for (i=0;emph_targets[i].type;i++)
        e_menu_hook_class_add_target_map((EMenuHookClass *)klass, &emph_targets[i]);

    /* FIXME: leaks parent set class? */
    ((EMenuHookClass *)klass)->menu_class = g_type_class_ref(em_menu_get_type());
}

GType
em_menu_hook_get_type(void)
{
    static GType type = 0;

    if (!type) {
        static const GTypeInfo info = {
            sizeof(EMMenuHookClass), NULL, NULL, (GClassInitFunc) emph_class_init, NULL, NULL,
            sizeof(EMMenuHook), 0, (GInstanceInitFunc) NULL,
        };

        emph_parent_class = g_type_class_ref(e_menu_hook_get_type());
        type = g_type_register_static(e_menu_hook_get_type(), "EMMenuHook", &info, 0);
    }

    return type;
}