/* -*- 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); 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 */ ef='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/editors/libreoffice-br?id=cf118ccf875508b9a1c570044c93cfcc82bd455c'>One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0 * Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0 * editors/libreoffice: update to 7.1.2 releaseDima Panov2021-04-061-3/+3 * LibreOffice 7.1.1 is now available, with over 90 bugfixes and compatibility i...Dima Panov2021-03-081-3/+3 * Please welcome LibreOffice suite 7.1.0 release!Dima Panov2021-02-041-3/+3 * LibreOffice 7.0.4 is here, with over 110 bugfixes and compatibility improveme...Dima Panov2020-12-181-3/+3 * editors/libreoffice-*: use release-rolled i18n tarballsDima Panov2020-10-291-3/+3 * Update LibreOffice suite to 7.0.3 releaseDima Panov2020-10-291-3/+3 * LibreOffice 7.0.2 is now available, with over 130 bugfixes and compatibility ...Dima Panov2020-10-091-3/+3 * - Update LibreOffice suite to 7.0.1 releaseDima Panov2020-09-041-3/+3 * LibreOffice suite: update to 7.0.0 releaseDima Panov2020-08-161-3/+3 * Update LibreOffice suite to 6.4.6 maintenance releaseDima Panov2020-08-141-3/+3 * Update LibreOffice suite to 6.4.5 releaseDima Panov2020-07-071-3/+3 * FreeBSD Office team is proud to announce LibreOffice 6.4.4, latest stable rel...Dima Panov2020-06-131-3/+3 * Update LibreOffice to 6.3.6 stable releaseDima Panov2020-05-161-3/+3 * - Update to 6.3.4Li-Wen Hsu2019-12-131-3/+3 * - Update to 6.3.3Li-Wen Hsu2019-11-011-3/+3 * - Update to 6.3.2Li-Wen Hsu2019-09-281-3/+3 * - Update to 6.3.1Li-Wen Hsu2019-09-061-3/+3 * - Update to 6.3.0Li-Wen Hsu2019-08-20