/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * Authors: Jeffrey Stedfast * * Copyright 2000 Ximian, Inc. (www.ximian.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., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. * */ #ifndef MAIL_CALLBACKS_H #define MAIL_CALLBACKS_H #include #include "composer/e-msg-composer.h" #include #include "evolution-storage.h" #ifdef __cplusplus extern "C" { #pragma } #endif /* __cplusplus */ /* these are the possible modes for replying */ enum { REPLY_SENDER, REPLY_LIST, REPLY_ALL, REPLY_POST, REPLY_NO_QUOTE = 0x80 /* dont quote reply */ }; void enumerate_msg (MessageList *ml, const char *uid, gpointer data); void fetch_mail (GtkWidget *widget, gpointer user_data); void send_queued_mail (GtkWidget *widget, gpointer user_data); void compose_msg (GtkWidget *widget, gpointer user_data); void send_to_url (const char *url, const char *parent_uri); void forward_inline (GtkWidget *widget, gpointer user_data); void forward_quoted (GtkWidget *widget, gpointer user_data); void forward_attached (GtkWidget *widget, gpointer user_data); void forward (GtkWidget *widget, gpointer user_data); void post_to_url (const char *url); void post_message (GtkWidget *widget, gpointer user_data); void post_reply (GtkWidget *widget, gpointer user_data); void redirect (GtkWidget *widget, gpointer user_data); void reply_to_sender (GtkWidget *widget, gpointer user_data); void reply_to_list (GtkWidget *widget, gpointer user_data); void reply_to_all (GtkWidget *widget, gpointer user_data); void colour_msg (GtkWidget *widget, gpointer user_data); void delete_msg (GtkWidget *widget, gpointer user_data); void undelete_msg (GtkWidget *widget, gpointer user_data); void move_msg_cb (GtkWidget *widget, gpointer user_data); void copy_msg_cb (GtkWidget *widget, gpointer user_data); void addrbook_sender (GtkWidget *widget, gpointer user_data); void apply_filters (GtkWidget *widget, gpointer user_data); void print_msg (GtkWidget *widget, gpointer user_data); void print_preview_msg (GtkWidget *widget, gpointer user_data); void edit_msg (GtkWidget *widget, gpointer user_data); void open_msg (GtkWidget *widget, gpointer user_data); void save_msg (GtkWidget *widget, gpointer user_data); void view_msg (GtkWidget *widget, gpointer user_data); void view_digest (GtkWidget *widget, gpointer user_data); void view_source (GtkWidget *widget, gpointer user_data); void next_msg (GtkWidget *widget, gpointer user_data); void next_unread_msg (GtkWidget *widget, gpointer user_data); void next_flagged_msg (GtkWidget *widget, gpointer user_data); void next_thread (GtkWidget *widget, gpointer user_data); void previous_msg (GtkWidget *widget, gpointer user_data); void previous_unread_msg (GtkWidget *widget, gpointer user_data); void previous_flagged_msg (GtkWidget *widget, gpointer user_data); void resend_msg (GtkWidget *widget, gpointer user_data); void search_msg (GtkWidget *widget, gpointer user_data); void load_images (GtkWidget *widget, gpointer user_data); void add_sender_to_addrbook (BonoboUIComponent *uih, void *user_data, const char *path); void move_msg (BonoboUIComponent *uih, void *user_data, const char *path); void copy_msg (BonoboUIComponent *uih, void *user_data, const char *path); void select_all (BonoboUIComponent *uih, void *user_data, const char *path); void select_thread (BonoboUIComponent *uih, void *user_data, const char *path); void invert_selection (BonoboUIComponent *uih, void *user_data, const char *path); void mark_as_seen (BonoboUIComponent *uih, void *user_data, const char *path); void mark_all_as_seen (BonoboUIComponent *uih, void *user_data, const char *path); void mark_as_unseen (BonoboUIComponent *uih, void *user_data, const char *path); void mark_as_important (BonoboUIComponent *uih, void *user_data, const char *path); void mark_as_unimportant (BonoboUIComponent *uih, void *user_data, const char *path); void toggle_as_important (BonoboUIComponent *uih, void *user_data, const char *path); void flag_for_followup (BonoboUIComponent *uih, void *user_data, const char *path); void flag_followup_completed (BonoboUIComponent *uih, void *user_data, const char *path); void flag_followup_clear (BonoboUIComponent *uih, void *user_data, const char *path); void zoom_in (BonoboUIComponent *uih, void *user_data, const char *path); void zoom_out (BonoboUIComponent *uih, void *user_data, const char *path); void zoom_reset (BonoboUIComponent *uih, void *user_data, const char *path); void edit_message (BonoboUIComponent *uih, void *user_data, const char *path); void open_message (BonoboUIComponent *uih, void *user_data, const char *path); void expunge_folder (BonoboUIComponent *uih, void *user_data, const char *path); void filter_edit (BonoboUIComponent *uih, void *user_data, const char *path); void vfolder_edit_vfolders (BonoboUIComponent *uih, void *user_data, const char *path); void manage_subscriptions (BonoboUIComponent *uih, void *user_data, const char *path); void configure_folder (BonoboUIComponent *uih, void *user_data, const char *path); void stop_threads (BonoboUIComponent *uih, void *user_data, const char *path); void empty_trash (BonoboUIComponent *uih, void *user_data, const char *path); void mail_reply (CamelFolder *folder, CamelMimeMessage *msg, const char *uid, int mode); void composer_send_cb (EMsgComposer *composer, gpointer data); void composer_save_draft_cb (EMsgComposer *composer, int quit, gpointer data); void forward_messages (CamelFolder *folder, GPtrArray *uids, gboolean inline); /* CamelStore callbacks */ void folder_created (CamelStore *store, const char *prefix, CamelFolderInfo *fi); void folder_deleted (CamelStore *store, CamelFolderInfo *fi); void mail_storage_create_folder (EvolutionStorage *storage, CamelStore *store, CamelFolderInfo *fi); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* ! MAIL_CALLBACKS_H */ tw44/cgit/cgit.cgi/freebsd-ports-gnome/log/net-mgmt/zabbix2?h=mate-1.18&id=6cb7fc1824dbcea2eb06ef6692e17bc528e9f756&showmsg=1'>Expand)AuthorAgeFilesLines * - Update to 1.4.5.araujo2008-04-084-17/+26 * - Chase shlib version of net-mgmt/net-snmp.kuriyama2008-03-271-2/+2 * - Fix issue "ZBX_TCP_READ() failed [Interrupted system call]"beech2008-03-161-0/+11 * - Pass maintainership to submitterbeech2008-03-161-1/+1 * - Chase security/gnutls shlib version bumpnovel2008-03-031-1/+2 * - Update to 1.4.4 (bugfix-only)sat2007-12-183-34/+4 * Fix discovery problem.skv2007-12-132-1/+30 * - Add support for IPv6sat2007-12-131-1/+5 * Update to 1.4.3skv2007-12-133-5/+9 * - Update textproc/iksemel to version 1.3.trasz2007-10-041-1/+2 * - Schema files are in create/ subdirpav2007-09-021-1/+1 * - Update to 1.4.2sat2007-08-284-20/+18 * - Hack around failing build when linking against threaded sqlitesat2007-08-161-0/+5 * - Fix sqlite-related configure argssat2007-07-261-1/+1 * - Don't install a reinplace_cmd left-oversat2007-07-071-1/+1 * - Fix graphs when using PostgreSQLsat2007-07-051-1/+2 * Chase gnutls shared library version chase: adjust DEPENDS lines andnovel2007-07-011-1/+2 * - Update to 1.4.1sat2007-06-302-4/+4 * - Add use_{pgsql,sqlite} in addition to use_php={pgsql,sqlite}sat2007-06-261-0/+2 * - Fix build: mysql is needed in configure steppav2007-06-261-0/+1 * - Move zabbix from UID 112 to 122 to avoid conflict with dccsat2007-06-221-1/+1 * - Set explicit paths for configure for faster execution andsat2007-06-141-5/+8 * - Update to 1.4sat2007-06-137-363/+148 * - Welcome X.org 7.2 \o/.flz2007-05-201-0/+1 * - Update to 1.1.7sat2007-04-033-26/+4 * - Bump shlib version to libnetsnmp.so.10 and bump $PORTREVISION.kuriyama2007-02-281-1/+2 * - Update to 1.1.6sat2007-02-083-138/+159 * - Update to 1.1.5sat2007-01-284-25/+16 * - Update to 1.1.4sat2006-11-153-4/+26 * Reset inactive maintainer asa@gascom.ru.linimon2006-11-131-1/+1 * - Update to 1.1.3sat2006-11-1010-107/+52 * - When ZABBIX_AGENT_ONLY defined, two REINPLACE_CMD patches are missed.sem2006-09-111-2/+3 * - Update net-mgmt/zabbix port to 1.1.1.sem2006-09-1113-210/+467 * Remove USE_REINPLACE from all categories starting with Nedwin2006-05-121-1/+0 * SHA256ifyedwin2006-01-241-0/+1 * Chase shlib version bump of net-snmp.kuriyama2005-11-301-2/+2