aboutsummaryrefslogtreecommitdiffstats
path: root/libemail-utils/mail-mt.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2012-12-10 21:09:59 +0800
committerMatthew Barnes <mbarnes@redhat.com>2012-12-13 03:33:43 +0800
commitd09d8de870b6697c8a8b262e7e077b871a69b315 (patch)
tree3b718882e7a0bb0a996daf2967a033d91714c9b5 /libemail-utils/mail-mt.h
parentb61331ed03ac1c7a9b8614e25510040b9c60ae02 (diff)
downloadgsoc2013-evolution-d09d8de870b6697c8a8b262e7e077b871a69b315.tar
gsoc2013-evolution-d09d8de870b6697c8a8b262e7e077b871a69b315.tar.gz
gsoc2013-evolution-d09d8de870b6697c8a8b262e7e077b871a69b315.tar.bz2
gsoc2013-evolution-d09d8de870b6697c8a8b262e7e077b871a69b315.tar.lz
gsoc2013-evolution-d09d8de870b6697c8a8b262e7e077b871a69b315.tar.xz
gsoc2013-evolution-d09d8de870b6697c8a8b262e7e077b871a69b315.tar.zst
gsoc2013-evolution-d09d8de870b6697c8a8b262e7e077b871a69b315.zip
Consolidate base utility libraries into libeutil.
Evolution consists of entirely too many small utility libraries, which increases linking and loading time, places a burden on higher layers of the application (e.g. modules) which has to remember to link to all the small in-tree utility libraries, and makes it difficult to generate API documentation for these utility libraries in one Gtk-Doc module. Merge the following utility libraries under the umbrella of libeutil, and enforce a single-include policy on libeutil so we can reorganize the files as desired without disrupting its pseudo-public API. libemail-utils/libemail-utils.la libevolution-utils/libevolution-utils.la filter/libfilter.la widgets/e-timezone-dialog/libetimezonedialog.la widgets/menus/libmenus.la widgets/misc/libemiscwidgets.la widgets/table/libetable.la widgets/text/libetext.la This also merges libedataserverui from the Evolution-Data-Server module, since Evolution is its only consumer nowadays, and I'd like to make some improvements to those APIs without concern for backward-compatibility. And finally, start a Gtk-Doc module for libeutil. It's going to be a project just getting all the symbols _listed_ much less _documented_. But the skeletal structure is in place and I'm off to a good start.
Diffstat (limited to 'libemail-utils/mail-mt.h')
-rw-r--r--libemail-utils/mail-mt.h124
1 files changed, 0 insertions, 124 deletions
diff --git a/libemail-utils/mail-mt.h b/libemail-utils/mail-mt.h
deleted file mode 100644
index d2a20d273f..0000000000
--- a/libemail-utils/mail-mt.h
+++ /dev/null
@@ -1,124 +0,0 @@
-/*
- * 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)
- *
- */
-
-#ifndef _MAIL_MT
-#define _MAIL_MT
-
-#include <camel/camel.h>
-#include <libevolution-utils/e-alert-sink.h>
-
-typedef struct _MailMsg MailMsg;
-typedef struct _MailMsgInfo MailMsgInfo;
-
-typedef gchar * (*MailMsgDescFunc) (MailMsg *msg);
-typedef void (*MailMsgExecFunc) (MailMsg *msg,
- GCancellable *cancellable,
- GError **error);
-typedef void (*MailMsgDoneFunc) (MailMsg *msg);
-typedef void (*MailMsgFreeFunc) (MailMsg *msg);
-typedef void (*MailMsgDispatchFunc) (gpointer msg);
-
-typedef void (*MailMsgCreateActivityFunc) (GCancellable *cancellable);
-typedef void (*MailMsgSubmitActivityFunc) (GCancellable *cancellable);
-typedef void (*MailMsgFreeActivityFunc) (GCancellable *cancellable);
-typedef void (*MailMsgCompleteActivityFunc) (GCancellable *cancellable);
-typedef void (*MailMsgCancelActivityFunc) (GCancellable *cancellable);
-typedef void (*MailMsgAlertErrorFunc) (GCancellable *cancellable,
- const gchar *what,
- const gchar *message);
-typedef EAlertSink *
- (*MailMsgGetAlertSinkFunc) (void);
-
-struct _MailMsg {
- MailMsgInfo *info;
- volatile gint ref_count;
- guint seq; /* seq number for synchronisation */
- gint priority; /* priority (default = 0) */
- GCancellable *cancellable;
- GError *error; /* up to the caller to use this */
-};
-
-struct _MailMsgInfo {
- gsize size;
- MailMsgDescFunc desc;
- MailMsgExecFunc exec;
- MailMsgDoneFunc done;
- MailMsgFreeFunc free;
-};
-
-/* Just till we move this out to EDS */
-EAlertSink * mail_msg_get_alert_sink (void);
-
-/* setup ports */
-void mail_msg_init (void);
-void mail_msg_register_activities (MailMsgCreateActivityFunc,
- MailMsgSubmitActivityFunc,
- MailMsgFreeActivityFunc,
- MailMsgCompleteActivityFunc,
- MailMsgCancelActivityFunc,
- MailMsgAlertErrorFunc,
- MailMsgGetAlertSinkFunc);
-
-gboolean mail_in_main_thread (void);
-
-/* allocate a new message */
-gpointer mail_msg_new (MailMsgInfo *info);
-gpointer mail_msg_ref (gpointer msg);
-void mail_msg_unref (gpointer msg);
-void mail_msg_check_error (gpointer msg);
-void mail_msg_cancel (guint msgid);
-gboolean mail_msg_active (void);
-
-/* dispatch a message */
-void mail_msg_main_loop_push (gpointer msg);
-void mail_msg_unordered_push (gpointer msg);
-void mail_msg_fast_ordered_push (gpointer msg);
-void mail_msg_slow_ordered_push (gpointer msg);
-
-/* To implement the stop button */
-GHook * mail_cancel_hook_add (GHookFunc func, gpointer data);
-void mail_cancel_hook_remove (GHook *hook);
-void mail_cancel_all (void);
-
-/* request a string/password */
-gchar *mail_get_password (CamelService *service, const gchar *prompt,
- gboolean secret, gboolean *cache);
-
-void mail_mt_set_backend (gchar *backend);
-
-/* Call a function in the GUI thread, wait for it to return, type is
- * the marshaller to use. FIXME This thing is horrible, please put
- * it out of its misery. */
-typedef enum {
- MAIL_CALL_p_p,
- MAIL_CALL_p_pp,
- MAIL_CALL_p_ppp,
- MAIL_CALL_p_pppp,
- MAIL_CALL_p_ppppp,
- MAIL_CALL_p_ppippp
-} mail_call_t;
-
-typedef gpointer (*MailMainFunc)();
-
-gpointer mail_call_main (mail_call_t type, MailMainFunc func, ...);
-
-#endif /* _MAIL_MT */