aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/e-source-config-dialog.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2012-07-26 07:22:26 +0800
committerMatthew Barnes <mbarnes@redhat.com>2012-08-03 23:40:13 +0800
commitcdc45d0ef235591a93e980f7513e5fadd7abb315 (patch)
tree7118f3804c137a115d7ab0372dba0b7c771f6937 /widgets/misc/e-source-config-dialog.c
parent0c1e73178599ee4b1b9b661fb6a1d0729eed67fb (diff)
downloadgsoc2013-evolution-cdc45d0ef235591a93e980f7513e5fadd7abb315.tar
gsoc2013-evolution-cdc45d0ef235591a93e980f7513e5fadd7abb315.tar.gz
gsoc2013-evolution-cdc45d0ef235591a93e980f7513e5fadd7abb315.tar.bz2
gsoc2013-evolution-cdc45d0ef235591a93e980f7513e5fadd7abb315.tar.lz
gsoc2013-evolution-cdc45d0ef235591a93e980f7513e5fadd7abb315.tar.xz
gsoc2013-evolution-cdc45d0ef235591a93e980f7513e5fadd7abb315.tar.zst
gsoc2013-evolution-cdc45d0ef235591a93e980f7513e5fadd7abb315.zip
ESourceConfigDialog: Implement EAlertSink.
Diffstat (limited to 'widgets/misc/e-source-config-dialog.c')
-rw-r--r--widgets/misc/e-source-config-dialog.c89
1 files changed, 85 insertions, 4 deletions
diff --git a/widgets/misc/e-source-config-dialog.c b/widgets/misc/e-source-config-dialog.c
index 1174d38d23..437027e498 100644
--- a/widgets/misc/e-source-config-dialog.c
+++ b/widgets/misc/e-source-config-dialog.c
@@ -18,6 +18,10 @@
#include "e-source-config-dialog.h"
+#include <libevolution-utils/e-alert-dialog.h>
+#include <libevolution-utils/e-alert-sink.h>
+#include <misc/e-alert-bar.h>
+
#define E_SOURCE_CONFIG_DIALOG_GET_PRIVATE(obj) \
(G_TYPE_INSTANCE_GET_PRIVATE \
((obj), E_TYPE_SOURCE_CONFIG_DIALOG, ESourceConfigDialogPrivate))
@@ -25,6 +29,9 @@
struct _ESourceConfigDialogPrivate {
ESourceConfig *config;
ESourceRegistry *registry;
+
+ GtkWidget *alert_bar;
+ gulong alert_bar_visible_handler_id;
};
enum {
@@ -32,10 +39,17 @@ enum {
PROP_CONFIG
};
-G_DEFINE_TYPE (
+/* Forward Declarations */
+static void e_source_config_dialog_alert_sink_init
+ (EAlertSinkInterface *interface);
+
+G_DEFINE_TYPE_WITH_CODE (
ESourceConfigDialog,
e_source_config_dialog,
- GTK_TYPE_DIALOG)
+ GTK_TYPE_DIALOG,
+ G_IMPLEMENT_INTERFACE (
+ E_TYPE_ALERT_SINK,
+ e_source_config_dialog_alert_sink_init))
static void
source_config_dialog_commit_cb (GObject *object,
@@ -64,9 +78,11 @@ source_config_dialog_commit_cb (GObject *object,
g_object_unref (dialog);
g_error_free (error);
- /* FIXME ESourceConfigDialog should implement EAlertSink. */
} else if (error != NULL) {
- g_warning ("%s: %s", G_STRFUNC, error->message);
+ e_alert_submit (
+ E_ALERT_SINK (dialog),
+ "system:simple-error",
+ error->message, NULL);
g_object_unref (dialog);
g_error_free (error);
@@ -84,6 +100,9 @@ source_config_dialog_commit (ESourceConfigDialog *dialog)
config = e_source_config_dialog_get_config (dialog);
+ /* Clear any previous alerts. */
+ e_alert_bar_clear (E_ALERT_BAR (dialog->priv->alert_bar));
+
/* Make the cursor appear busy. */
gdk_cursor = gdk_cursor_new (GDK_WATCH);
gdk_window = gtk_widget_get_window (GTK_WIDGET (dialog));
@@ -123,6 +142,14 @@ source_config_dialog_source_removed_cb (ESourceRegistry *registry,
}
static void
+source_config_alert_bar_visible_cb (EAlertBar *alert_bar,
+ GParamSpec *pspec,
+ ESourceConfigDialog *dialog)
+{
+ e_source_config_resize_window (dialog->priv->config);
+}
+
+static void
source_config_dialog_set_config (ESourceConfigDialog *dialog,
ESourceConfig *config)
{
@@ -196,6 +223,14 @@ source_config_dialog_dispose (GObject *object)
priv->registry = NULL;
}
+ if (priv->alert_bar != NULL) {
+ g_signal_handler_disconnect (
+ priv->alert_bar,
+ priv->alert_bar_visible_handler_id);
+ g_object_unref (priv->alert_bar);
+ priv->alert_bar = NULL;
+ }
+
/* Chain up to parent's dispose() method. */
G_OBJECT_CLASS (e_source_config_dialog_parent_class)->dispose (object);
}
@@ -207,6 +242,7 @@ source_config_dialog_constructed (GObject *object)
GtkWidget *content_area;
GtkWidget *config;
GtkWidget *widget;
+ gulong handler_id;
priv = E_SOURCE_CONFIG_DIALOG_GET_PRIVATE (object);
@@ -228,6 +264,17 @@ source_config_dialog_constructed (GObject *object)
config, "complete",
widget, "sensitive",
G_BINDING_DEFAULT);
+
+ widget = e_alert_bar_new ();
+ gtk_box_pack_start (GTK_BOX (content_area), widget, FALSE, FALSE, 0);
+ priv->alert_bar = g_object_ref (widget);
+ /* EAlertBar controls its own visibility. */
+
+ handler_id = g_signal_connect (
+ priv->alert_bar, "notify::visible",
+ G_CALLBACK (source_config_alert_bar_visible_cb), object);
+
+ priv->alert_bar_visible_handler_id = handler_id;
}
static void
@@ -250,6 +297,34 @@ source_config_dialog_response (GtkDialog *dialog,
}
static void
+source_config_dialog_submit_alert (EAlertSink *alert_sink,
+ EAlert *alert)
+{
+ ESourceConfigDialogPrivate *priv;
+ EAlertBar *alert_bar;
+ GtkWidget *dialog;
+ GtkWindow *parent;
+
+ priv = E_SOURCE_CONFIG_DIALOG_GET_PRIVATE (alert_sink);
+
+ switch (e_alert_get_message_type (alert)) {
+ case GTK_MESSAGE_INFO:
+ case GTK_MESSAGE_WARNING:
+ case GTK_MESSAGE_ERROR:
+ alert_bar = E_ALERT_BAR (priv->alert_bar);
+ e_alert_bar_add_alert (alert_bar, alert);
+ break;
+
+ default:
+ parent = GTK_WINDOW (alert_sink);
+ dialog = e_alert_dialog_new (parent, alert);
+ gtk_dialog_run (GTK_DIALOG (dialog));
+ gtk_widget_destroy (dialog);
+ break;
+ }
+}
+
+static void
e_source_config_dialog_class_init (ESourceConfigDialogClass *class)
{
GObjectClass *object_class;
@@ -280,6 +355,12 @@ e_source_config_dialog_class_init (ESourceConfigDialogClass *class)
}
static void
+e_source_config_dialog_alert_sink_init (EAlertSinkInterface *interface)
+{
+ interface->submit_alert = source_config_dialog_submit_alert;
+}
+
+static void
e_source_config_dialog_init (ESourceConfigDialog *dialog)
{
dialog->priv = E_SOURCE_CONFIG_DIALOG_GET_PRIVATE (dialog);