* Replaced the "+" toolbar icon with the "New message" icon
[modest] / src / maemo / modest-connection-specific-smtp-edit-window.c
index 55827dc..72d2f16 100644 (file)
@@ -44,6 +44,9 @@
 
 #include <glib/gi18n.h>
 
+#define PORT_RANGE_MIN 1
+#define PORT_RANGE_MAX 65535
+
 G_DEFINE_TYPE (ModestConnectionSpecificSmtpEditWindow, modest_connection_specific_smtp_edit_window, GTK_TYPE_DIALOG);
 
 #define CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE(o) \
@@ -62,9 +65,12 @@ struct _ModestConnectionSpecificSmtpEditWindowPrivate
        
        GtkWidget *button_ok;
        GtkWidget *button_cancel;
+
+       gchar     *account_name;
        
        gboolean is_dirty;
        gboolean range_error_occured;
+       guint range_error_banner_timeout;
 };
 
 static void
@@ -90,6 +96,8 @@ modest_connection_specific_smtp_edit_window_set_property (GObject *object, guint
 static void
 modest_connection_specific_smtp_edit_window_dispose (GObject *object)
 {
+
+       
        if (G_OBJECT_CLASS (modest_connection_specific_smtp_edit_window_parent_class)->dispose)
                G_OBJECT_CLASS (modest_connection_specific_smtp_edit_window_parent_class)->dispose (object);
 }
@@ -97,6 +105,18 @@ modest_connection_specific_smtp_edit_window_dispose (GObject *object)
 static void
 modest_connection_specific_smtp_edit_window_finalize (GObject *object)
 {
+       ModestConnectionSpecificSmtpEditWindow *self = (ModestConnectionSpecificSmtpEditWindow *) object;
+       ModestConnectionSpecificSmtpEditWindowPrivate *priv =
+                       CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
+
+       if (priv->range_error_banner_timeout > 0) {
+               g_source_remove (priv->range_error_banner_timeout);
+               priv->range_error_banner_timeout = 0;
+       }
+       if (priv->account_name) {
+               g_free (priv->account_name);
+               priv->account_name = NULL;
+       }
        G_OBJECT_CLASS (modest_connection_specific_smtp_edit_window_parent_class)->finalize (object);
 }
 
@@ -137,6 +157,23 @@ on_value_changed(GtkWidget* widget, GValue* value, ModestConnectionSpecificSmtpE
        on_change(widget, self);
 }
 
+gboolean
+show_banner_handler (gpointer userdata)
+{
+       ModestConnectionSpecificSmtpEditWindow *self = userdata;
+       ModestConnectionSpecificSmtpEditWindowPrivate *priv =
+                       CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
+       gchar *msg;
+
+       msg = g_strdup_printf (dgettext("hildon-libs", "ckct_ib_set_a_value_within_range"), PORT_RANGE_MIN, PORT_RANGE_MAX);
+
+       hildon_banner_show_information (NULL, NULL, msg);
+       g_free (msg);
+
+       priv->range_error_banner_timeout = 0;
+       return FALSE;
+}
+
 static gboolean
 on_range_error (GtkWidget *widget, HildonNumberEditorErrorType type, gpointer user_data)
 {
@@ -148,9 +185,11 @@ on_range_error (GtkWidget *widget, HildonNumberEditorErrorType type, gpointer us
         * the hildon number editor already resets the value to the default value, so we have to
         * remember that such an error occured. */
        priv->range_error_occured = TRUE;
+       if (priv->range_error_banner_timeout == 0)
+               priv->range_error_banner_timeout = g_timeout_add (200, show_banner_handler, self);
 
        /* Show error message by not returning TRUE */
-       return FALSE;
+       return TRUE;
 }
 
 static void
@@ -163,6 +202,12 @@ on_response (GtkDialog *dialog, int response_id, gpointer user_data)
 
        hostname = gtk_entry_get_text (GTK_ENTRY (priv->entry_outgoingserver));
 
+       if ((response_id == GTK_RESPONSE_CANCEL) &&
+           (priv->range_error_banner_timeout > 0)) {
+               g_source_remove (priv->range_error_banner_timeout);
+               priv->range_error_banner_timeout = 0;
+       }
+
        /* Don't close the dialog if a range error occured */
        if(response_id == GTK_RESPONSE_OK && priv->range_error_occured)
        {
@@ -305,7 +350,7 @@ modest_connection_specific_smtp_edit_window_init (ModestConnectionSpecificSmtpEd
        
        /* The port number widgets: */
        if (!priv->entry_port)
-               priv->entry_port = GTK_WIDGET (hildon_number_editor_new (1, 65535));
+               priv->entry_port = GTK_WIDGET (hildon_number_editor_new (PORT_RANGE_MIN, PORT_RANGE_MAX));
        caption = hildon_caption_new (sizegroup, 
                _("mcen_fi_emailsetup_port"), priv->entry_port, NULL, HILDON_CAPTION_OPTIONAL);
        gtk_widget_add_events(GTK_WIDGET(priv->entry_port), GDK_FOCUS_CHANGE_MASK);
@@ -327,6 +372,9 @@ modest_connection_specific_smtp_edit_window_init (ModestConnectionSpecificSmtpEd
        priv->range_error_occured = FALSE;
        g_signal_connect(G_OBJECT(self), "response", G_CALLBACK(on_response), self);
        g_signal_connect(G_OBJECT(box), "set-focus-child", G_CALLBACK(on_set_focus_child), self);
+
+       priv->range_error_banner_timeout = 0;
+       priv->account_name = NULL;
        
        gtk_widget_show (box);
        
@@ -359,9 +407,13 @@ modest_connection_specific_smtp_edit_window_set_connection (
        gchar* title = g_strdup_printf (_("mcen_ti_connection_connection_name"), iap_name);
        gtk_window_set_title (GTK_WINDOW (window), title);
        g_free (title);
-       
+
        if (server_settings) 
        {
+               
+               if (priv->account_name)
+                       g_free (priv->account_name);
+               priv->account_name = g_strdup (modest_server_account_settings_get_account_name (server_settings));
                gtk_entry_set_text (GTK_ENTRY (priv->entry_outgoingserver), 
                                    modest_server_account_settings_get_hostname (server_settings));
                gtk_entry_set_text (GTK_ENTRY (priv->entry_user_username),
@@ -385,6 +437,11 @@ modest_connection_specific_smtp_edit_window_set_connection (
                
                /* This will cause changed signals so we set dirty back to FALSE */
                priv->is_dirty = FALSE;
+               if (priv->range_error_banner_timeout > 0) {
+                       g_source_remove (priv->range_error_banner_timeout);
+                       priv->range_error_banner_timeout = 0;
+               }
+       
        }
 }
 
@@ -408,6 +465,8 @@ modest_connection_specific_smtp_edit_window_get_settings (ModestConnectionSpecif
        
        modest_server_account_settings_set_hostname (server_settings, 
                                                     gtk_entry_get_text (GTK_ENTRY (priv->entry_outgoingserver)));
+       modest_server_account_settings_set_protocol (server_settings,
+                                                    MODEST_PROTOCOL_TRANSPORT_SMTP);
        modest_server_account_settings_set_username (server_settings,
                                                     gtk_entry_get_text (GTK_ENTRY (priv->entry_user_username)));
        modest_server_account_settings_set_password (server_settings,
@@ -419,6 +478,8 @@ modest_connection_specific_smtp_edit_window_get_settings (ModestConnectionSpecif
        modest_server_account_settings_set_auth_protocol (server_settings,
                                                          modest_secureauth_combo_box_get_active_secureauth (
                                                          MODEST_SECUREAUTH_COMBO_BOX (priv->combo_outgoing_auth)));
+       modest_server_account_settings_set_account_name (server_settings,
+                                                        priv->account_name);
        
        /* port: */
        modest_server_account_settings_set_port (server_settings,