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
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
*
* Authors: Michel Zucchi <notzed@ximian.com>
*
* Copyright 2003 Ximian, Inc. (www.ximian.com)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* 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., 59 Temple Street #330, Boston, MA 02111-1307, USA.
*
*/
#ifndef __EM_POPUP_H__
#define __EM_POPUP_H__
#include <glib-object.h>
#include "e-util/e-popup.h"
#ifdef __cplusplus
extern "C" {
#pragma }
#endif /* __cplusplus */
typedef struct _EMPopup EMPopup;
typedef struct _EMPopupClass EMPopupClass;
/**
* enum _em_popup_target_t - A list of mail popup target types.
*
* @EM_POPUP_TARGET_SELECT: A selection of messages.
* @EM_POPUP_TARGET_URI: A URI.
* @EM_POPUP_TARGET_PART: A CamelMimePart message part.
* @EM_POPUP_TARGET_FOLDER: A folder URI.
* @EM_POPUP_TARGET_ATTACHMENTS: A list of attachments.
*
* Defines the value of the targetid for all EMPopup target types.
**/
enum _em_popup_target_t {
EM_POPUP_TARGET_SELECT,
EM_POPUP_TARGET_URI,
EM_POPUP_TARGET_PART,
EM_POPUP_TARGET_FOLDER,
EM_POPUP_TARGET_ATTACHMENTS,
};
/**
* enum _em_popup_target_select_t - EMPopupTargetSelect qualifiers.
*
* @EM_POPUP_SELECT_ONE: Only one item is selected.
* @EM_POPUP_SELECT_MANY: One ore more items are selected.
* @EM_POPUP_SELECT_MARK_READ: Message(s) are unseen and can be
* marked seen.
* @EM_POPUP_SELECT_MARK_UNREAD: Message(s) are seen and can be
* marked unseen.
* @EM_POPUP_SELECT_DELETE: Message(s) are undeleted and can
* be marked deleted.
* @EM_POPUP_SELECT_UNDELETE: Message(s) are deleted and can be
* undeleted.
* @EM_POPUP_SELECT_MAILING_LIST: If one message is selected, and it
* contains a message list tag.
* @EM_POPUP_SELECT_EDIT: The message can be opened for editing (the
* folder is a sent folder).
* @EM_POPUP_SELECT_MARK_IMPORTANT: Message(s) are not marked
* important.
* @EM_POPUP_SELECT_MARK_UNIMPORTANT: Message(s) are marked
* important.
* @EM_POPUP_SELECT_FLAG_FOLLOWUP: Message(s) are not flagged for
* followup.
* @EM_POPUP_SELECT_FLAG_COMPLETED: Message(s) are not flagged completed.
* @EM_POPUP_SELECT_FLAG_CLEAR: Message(s) are flagged for followup.
* @EM_POPUP_SELECT_ADD_SENDER: The message contains sender addresses
* which might be added to the addressbook. i.e. it isn't a message in
* the Sent or Drafts folders.
* @EM_POPUP_SELECT_FOLDER: A folder is set on the selection.
* @EM_POPUP_SELECT_LAST: The last bit used, can be used to add
* additional types from derived application code.
*
**/
enum _em_popup_target_select_t {
EM_POPUP_SELECT_ONE = 1<<1,
EM_POPUP_SELECT_MANY = 1<<2,
EM_POPUP_SELECT_MARK_READ = 1<<3,
EM_POPUP_SELECT_MARK_UNREAD = 1<<4,
EM_POPUP_SELECT_DELETE = 1<<5,
EM_POPUP_SELECT_UNDELETE = 1<<6,
EM_POPUP_SELECT_MAILING_LIST = 1<<7,
EM_POPUP_SELECT_EDIT = 1<<8,
EM_POPUP_SELECT_MARK_IMPORTANT = 1<<9,
EM_POPUP_SELECT_MARK_UNIMPORTANT = 1<<10,
EM_POPUP_SELECT_FLAG_FOLLOWUP = 1<<11,
EM_POPUP_SELECT_FLAG_COMPLETED = 1<<12,
EM_POPUP_SELECT_FLAG_CLEAR = 1<<13,
EM_POPUP_SELECT_ADD_SENDER = 1<<14,
EM_POPUP_SELECT_FOLDER = 1<<15, /* do we have any folder at all? */
EM_POPUP_SELECT_JUNK = 1<<16,
EM_POPUP_SELECT_NOT_JUNK = 1<<17,
EM_POPUP_SELECT_LAST = 1<<18,
};
/**
* enum _em_popup_target_uri_t - EMPopupTargetURI qualifiers.
*
* @EM_POPUP_URI_HTTP: This is a HTTP or HTTPS url.
* @EM_POPUP_URI_MAILTO: This is a MAILTO url.
* @EM_POPUP_URI_NOT_MAILTO: This is not a MAILTO url.
*
**/
enum _em_popup_target_uri_t {
EM_POPUP_URI_HTTP = 1<<0,
EM_POPUP_URI_MAILTO = 1<<1,
EM_POPUP_URI_NOT_MAILTO = 1<<2,
};
/**
* enum _em_popup_target_part_t - EMPopupTargetPart qualifiers.
*
* @EM_POPUP_PART_MESSAGE: This is a message type.
* @EM_POPUP_PART_IMAGE: This is an image type.
*
**/
enum _em_popup_target_part_t {
EM_POPUP_PART_MESSAGE = 1<<0,
EM_POPUP_PART_IMAGE = 1<<1,
};
/**
* enum _em_popup_target_folder_t - EMPopupTargetFolder qualifiers.
*
* @EM_POPUP_FOLDER_FOLDER: This is a normal folder.
* @EM_POPUP_FOLDER_STORE: This is a store.
* @EM_POPUP_FOLDER_INFERIORS: This folder may have child folders.
* @EM_POPUP_FOLDER_DELETE: This folder can be deleted or renamed.
* @EM_POPUP_FOLDER_SELECT: This folder exists and can be selected or
* opened.
*
**/
enum _em_popup_target_folder_t {
EM_POPUP_FOLDER_FOLDER = 1<<0, /* normal folder */
EM_POPUP_FOLDER_STORE = 1<<1, /* root/nonselectable folder, i.e. store */
EM_POPUP_FOLDER_INFERIORS = 1<<2, /* folder can have children */
EM_POPUP_FOLDER_DELETE = 1<<3, /* folder can be deleted/renamed */
EM_POPUP_FOLDER_SELECT = 1<<4, /* folder can be selected/opened */
};
/**
* enum _em_popup_target_attachments_t - EMPopupTargetAttachments qualifiers.
*
* @EM_POPUP_ATTACHMENTS_ONE: There is one and only one attachment selected.
* @EM_POPUP_ATTACHMENTS_MANY: There is one or more attachments selected.
*
**/
enum _em_popup_target_attachments_t {
EM_POPUP_ATTACHMENTS_ONE = 1<<0, /* only 1 selected */
EM_POPUP_ATTACHMENTS_MANY = 1<<1, /* one or more selected */
EM_POPUP_ATTACHMENTS_MULTIPLE = 1<<2, /* More than 1 selected */
EM_POPUP_ATTACHMENTS_IMAGE = 1<<3, /* Image selected */
EM_POPUP_ATTACHMENTS_MESSAGE = 1<<4 /* Message selected */
};
typedef struct _EMPopupTargetSelect EMPopupTargetSelect;
typedef struct _EMPopupTargetURI EMPopupTargetURI;
typedef struct _EMPopupTargetPart EMPopupTargetPart;
typedef struct _EMPopupTargetFolder EMPopupTargetFolder;
typedef struct _EMPopupTargetAttachments EMPopupTargetAttachments;
/**
* struct _EMPopupTargetURI - An inline URI.
*
* @target: Superclass.
* @uri: The encoded URI to which this target applies.
*
* Used to represent popup-menu context on any URI object.
**/
struct _EMPopupTargetURI {
EPopupTarget target;
char *uri;
};
/**
* struct _EMPopupTargetSelect - A list of messages.
*
* @target: Superclass.
* @folder: The CamelFolder of the selected messages.
* @uri: The encoded URI represending this folder.
* @uids: An array of UID strings of messages within @folder.
*
* Used to represent a selection of messages as context for a popup
* menu. All items may be NULL if the current view has no active
* folder selected.
**/
struct _EMPopupTargetSelect {
EPopupTarget target;
struct _CamelFolder *folder;
char *uri;
GPtrArray *uids;
};
/**
* struct _EMPopupTargetPart - A Camel object.
*
* @target: Superclass.
* @mime_type: MIME type of the part. This may be a calculated type
* not matching the @part's MIME type.
* @part: A CamelMimePart representing a message or attachment.
*
* Used to represent a message part as context for a popup menu. This
* is used for both attachments and inline-images.
**/
struct _EMPopupTargetPart {
EPopupTarget target;
char *mime_type;
struct _CamelMimePart *part;
};
/**
* struct _EMPopupTargetFolder - A folder uri.
*
* @target: Superclass.
* @uri: A folder URI.
*
* This target is used to represent folder context.
**/
struct _EMPopupTargetFolder {
EPopupTarget target;
char *uri;
};
/**
* struct _EMPopupTargetAttachments - A list of composer attachments.
*
* @target: Superclass.
* @attachments: A GSList list of EMsgComposer attachments.
*
* This target is used to represent a selected list of attachments in
* the message composer attachment area.
**/
struct _EMPopupTargetAttachments {
EPopupTarget target;
GSList *attachments;
};
typedef struct _EPopupItem EMPopupItem;
/* The object */
struct _EMPopup {
EPopup popup;
struct _EMPopupPrivate *priv;
};
struct _EMPopupClass {
EPopupClass popup_class;
};
GType em_popup_get_type(void);
EMPopup *em_popup_new(const char *menuid);
EMPopupTargetURI *em_popup_target_new_uri(EMPopup *emp, const char *uri);
EMPopupTargetSelect *em_popup_target_new_select(EMPopup *emp, struct _CamelFolder *folder, const char *folder_uri, GPtrArray *uids);
EMPopupTargetPart *em_popup_target_new_part(EMPopup *emp, struct _CamelMimePart *part, const char *mime_type);
EMPopupTargetFolder *em_popup_target_new_folder(EMPopup *emp, const char *uri, guint32 info_flags, guint32 popup_flags);
EMPopupTargetAttachments *em_popup_target_new_attachments(EMPopup *emp, GSList *attachments);
/* ********************************************************************** */
typedef struct _EMPopupHook EMPopupHook;
typedef struct _EMPopupHookClass EMPopupHookClass;
struct _EMPopupHook {
EPopupHook hook;
};
struct _EMPopupHookClass {
EPopupHookClass hook_class;
};
GType em_popup_hook_get_type(void);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __EM_POPUP_H__ */
|