aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-vfolder-editor.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-10-07 11:38:52 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-10-13 01:58:59 +0800
commita06e4484b8df804124b5bcf88d94dec5acfba270 (patch)
tree4fa42793d7dc461f2b3767296d76592182c48222 /mail/em-vfolder-editor.c
parent5e0758bb6934a7859b1d8a247c8fb21c156772cf (diff)
downloadgsoc2013-evolution-a06e4484b8df804124b5bcf88d94dec5acfba270.tar
gsoc2013-evolution-a06e4484b8df804124b5bcf88d94dec5acfba270.tar.gz
gsoc2013-evolution-a06e4484b8df804124b5bcf88d94dec5acfba270.tar.bz2
gsoc2013-evolution-a06e4484b8df804124b5bcf88d94dec5acfba270.tar.lz
gsoc2013-evolution-a06e4484b8df804124b5bcf88d94dec5acfba270.tar.xz
gsoc2013-evolution-a06e4484b8df804124b5bcf88d94dec5acfba270.tar.zst
gsoc2013-evolution-a06e4484b8df804124b5bcf88d94dec5acfba270.zip
Give MailSession a permanent home.
Global variables in shared libraries are a bad idea. EMailBackend now owns the MailSession instance, which is actually now EMailSession. Move the blocking utility functions in mail-tools.c to e-mail-session.c and add asynchronous variants. Same approach as Camel. Replace EMailReader.get_shell_backend() with EMailReader.get_backend(), which returns an EMailBackend. Easier access to the EMailSession.
Diffstat (limited to 'mail/em-vfolder-editor.c')
-rw-r--r--mail/em-vfolder-editor.c58
1 files changed, 20 insertions, 38 deletions
diff --git a/mail/em-vfolder-editor.c b/mail/em-vfolder-editor.c
index 192319ce10..b1f58ed242 100644
--- a/mail/em-vfolder-editor.c
+++ b/mail/em-vfolder-editor.c
@@ -37,16 +37,24 @@
#include "em-vfolder-editor.h"
#include "em-vfolder-rule.h"
-static gpointer parent_class;
+G_DEFINE_TYPE (
+ EMVFolderEditor,
+ em_vfolder_editor,
+ E_TYPE_RULE_EDITOR)
static EFilterRule *
vfolder_editor_create_rule (ERuleEditor *rule_editor)
{
+ EMVFolderContext *context;
+ EMailSession *session;
EFilterRule *rule;
EFilterPart *part;
+ context = EM_VFOLDER_CONTEXT (rule_editor->context);
+ session = em_vfolder_context_get_session (context);
+
/* create a rule with 1 part in it */
- rule = (EFilterRule *) em_vfolder_rule_new ();
+ rule = em_vfolder_rule_new (session);
part = e_rule_context_next_part (rule_editor->context, NULL);
e_filter_rule_add_part (rule, e_filter_part_clone (part));
@@ -54,18 +62,16 @@ vfolder_editor_create_rule (ERuleEditor *rule_editor)
}
static void
-vfolder_editor_class_init (EMVFolderEditorClass *class)
+em_vfolder_editor_class_init (EMVFolderEditorClass *class)
{
ERuleEditorClass *rule_editor_class;
- parent_class = g_type_class_peek_parent (class);
-
rule_editor_class = E_RULE_EDITOR_CLASS (class);
rule_editor_class->create_rule = vfolder_editor_create_rule;
}
static void
-vfolder_editor_init (EMVFolderEditor *vfolder_editor)
+em_vfolder_editor_init (EMVFolderEditor *vfolder_editor)
{
GConfBridge *bridge;
const gchar *key_prefix;
@@ -77,56 +83,32 @@ vfolder_editor_init (EMVFolderEditor *vfolder_editor)
bridge, key_prefix, GTK_WINDOW (vfolder_editor));
}
-GType
-em_vfolder_editor_get_type (void)
-{
- static GType type = 0;
-
- if (G_UNLIKELY (type == 0)) {
- static const GTypeInfo type_info = {
- sizeof (EMVFolderEditorClass),
- (GBaseInitFunc) NULL,
- (GBaseFinalizeFunc) NULL,
- (GClassInitFunc) vfolder_editor_class_init,
- (GClassFinalizeFunc) NULL,
- NULL, /* class_data */
- sizeof (EMVFolderEditor),
- 0, /* n_preallocs */
- (GInstanceInitFunc) vfolder_editor_init,
- NULL /* value_table */
- };
-
- type = g_type_register_static (
- E_TYPE_RULE_EDITOR, "EMVFolderEditor", &type_info, 0);
- }
-
- return type;
-}
-
/**
* em_vfolder_editor_new:
*
* Create a new EMVFolderEditor object.
*
- * Return value: A new #EMVFolderEditor object.
+ * Returns: a new #EMVFolderEditor
**/
GtkWidget *
-em_vfolder_editor_new (EMVFolderContext *vc)
+em_vfolder_editor_new (EMVFolderContext *context)
{
- EMVFolderEditor *ve;
+ EMVFolderEditor *editor;
GtkBuilder *builder;
- ve = g_object_new (EM_TYPE_VFOLDER_EDITOR, NULL);
+ g_return_val_if_fail (EM_IS_VFOLDER_CONTEXT (context), NULL);
+
+ editor = g_object_new (EM_TYPE_VFOLDER_EDITOR, NULL);
builder = gtk_builder_new ();
e_load_ui_builder_definition (builder, "filter.ui");
e_rule_editor_construct (
- (ERuleEditor *) ve, (ERuleContext *) vc,
+ E_RULE_EDITOR (editor), E_RULE_CONTEXT (context),
builder, "incoming", _("Search _Folders"));
gtk_widget_hide (e_builder_get_widget (builder, "label17"));
gtk_widget_hide (e_builder_get_widget (builder, "filter_source_combobox"));
g_object_unref (builder);
- return GTK_WIDGET (ve);
+ return GTK_WIDGET (editor);
}