X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=src%2Fhildon2%2Fmodest-maemo-security-options-view.c;h=87bb7e2e6cb5b1a6f412260fa39f366356a90abf;hp=65bf10cf95bae01f1b94c1176927db6d474b7605;hb=HEAD;hpb=cc73115b2210bc9de90c00e1578c35fcc41e4c7c diff --git a/src/hildon2/modest-maemo-security-options-view.c b/src/hildon2/modest-maemo-security-options-view.c index 65bf10c..87bb7e2 100644 --- a/src/hildon2/modest-maemo-security-options-view.c +++ b/src/hildon2/modest-maemo-security-options-view.c @@ -35,16 +35,24 @@ #include "modest-account-protocol.h" #include "widgets/modest-ui-constants.h" #include "widgets/modest-validating-entry.h" -#include "modest-serversecurity-picker.h" -#include "modest-secureauth-picker.h" #include "modest-maemo-utils.h" -#include -#include #include "modest-hildon-includes.h" +#include +#include #define PORT_MIN 1 #define PORT_MAX 65535 +typedef struct _ModestMaemoSecurityOptionsViewPrivate ModestMaemoSecurityOptionsViewPrivate; +struct _ModestMaemoSecurityOptionsViewPrivate { + gboolean missing_data; +}; + +#define MODEST_MAEMO_SECURITY_OPTIONS_VIEW_GET_PRIVATE(o) \ + (G_TYPE_INSTANCE_GET_PRIVATE((o), \ + MODEST_TYPE_MAEMO_SECURITY_OPTIONS_VIEW, \ + ModestMaemoSecurityOptionsViewPrivate)) + static void modest_maemo_security_options_view_init (ModestMaemoSecurityOptionsView *obj); static void modest_maemo_security_options_view_finalize (GObject *obj); static void modest_maemo_security_options_view_class_init (ModestMaemoSecurityOptionsViewClass *klass); @@ -55,13 +63,16 @@ G_DEFINE_TYPE (ModestMaemoSecurityOptionsView, static void on_entry_changed (GtkEditable *editable, gpointer user_data); +#ifdef MODEST_NUMBER_ENTRY_SUPPORT_VALID_CHANGED +static void on_valid_changed (ModestNumberEditor *editor, gboolean valid, ModestSecurityOptionsView *self); +#endif + /* Tracks changes in the incoming security picker */ static void on_security_changed (GtkWidget *widget, ModestMaemoSecurityOptionsView *self) { ModestSecurityOptionsViewPrivate* ppriv; - ModestServersecurityPicker *picker; ModestProtocolType proto_type; ModestProtocolRegistry *proto_registry; gboolean is_secure; @@ -69,28 +80,18 @@ on_security_changed (GtkWidget *widget, ppriv = MODEST_SECURITY_OPTIONS_VIEW_GET_PRIVATE (self); proto_registry = modest_runtime_get_protocol_registry (); - picker = MODEST_SERVERSECURITY_PICKER (ppriv->security_view); - proto_type = modest_serversecurity_picker_get_active_serversecurity (picker); + proto_type = modest_serversecurity_selector_get_active_serversecurity (ppriv->security_view); is_secure = modest_protocol_registry_protocol_type_has_tag (proto_registry, proto_type, MODEST_PROTOCOL_REGISTRY_SECURE_PROTOCOLS); - if (MODEST_SECURITY_OPTIONS_VIEW (self)->type == MODEST_SECURITY_OPTIONS_INCOMING) { - /* Activate and dim checkbutton if it's secure */ - hildon_check_button_set_active (HILDON_CHECK_BUTTON (ppriv->auth_view), - is_secure); - gtk_widget_set_sensitive (ppriv->auth_view, !is_secure); - } else { - - } - if (ppriv->full) { - gint port_number = - modest_serversecurity_picker_get_active_serversecurity_port (MODEST_SERVERSECURITY_PICKER (ppriv->security_view)); - + gint port_number = + modest_serversecurity_selector_get_active_serversecurity_port (ppriv->security_view); + if(port_number) { - modest_number_editor_set_value (MODEST_NUMBER_EDITOR (ppriv->port_view), - port_number); + modest_number_entry_set_value (ppriv->port_view, + port_number); } } } @@ -100,7 +101,6 @@ on_auth_changed (GtkWidget *widget, ModestMaemoSecurityOptionsView *self) { ModestSecurityOptionsViewPrivate* ppriv; - ModestSecureauthPicker *picker; ModestProtocolRegistry *protocol_registry; ModestProtocolType auth_proto; gboolean secureauth_used; @@ -108,16 +108,15 @@ on_auth_changed (GtkWidget *widget, ppriv = MODEST_SECURITY_OPTIONS_VIEW_GET_PRIVATE (self); protocol_registry = modest_runtime_get_protocol_registry (); - picker = MODEST_SECUREAUTH_PICKER (ppriv->auth_view); - auth_proto = modest_secureauth_picker_get_active_secureauth (picker); + auth_proto = modest_secureauth_selector_get_active_secureauth (ppriv->auth_view); secureauth_used = modest_protocol_registry_protocol_type_is_secure (protocol_registry, auth_proto); /* Get captions, well dimm the whole widget */ user_caption = gtk_widget_get_parent (ppriv->user_entry); pwd_caption = gtk_widget_get_parent (ppriv->pwd_entry); - + /* Enable / disable */ gtk_widget_set_sensitive (user_caption, secureauth_used); gtk_widget_set_sensitive (pwd_caption, secureauth_used); @@ -136,49 +135,59 @@ create_incoming_security (ModestSecurityOptionsView* self, ppriv = MODEST_SECURITY_OPTIONS_VIEW_GET_PRIVATE (self); + ppriv->auth_view = modest_toolkit_factory_create_check_button (modest_runtime_get_toolkit_factory (), + _("mcen_li_emailsetup_secure_authentication")); + gtk_box_pack_start (GTK_BOX (self), ppriv->auth_view, FALSE, FALSE, 0); + /* Create widgets for incoming security */ - ppriv->security_view = GTK_WIDGET (modest_serversecurity_picker_new (MODEST_EDITABLE_SIZE, - HILDON_BUTTON_ARRANGEMENT_HORIZONTAL)); - modest_serversecurity_picker_fill (MODEST_SERVERSECURITY_PICKER (ppriv->security_view), - modest_protocol_registry_get_pop_type_id ()); - modest_maemo_utils_set_hbutton_layout (title_size_group, - value_size_group, - _("mcen_li_emailsetup_secure_connection"), - ppriv->security_view); - - if (ppriv->full) { - ppriv->port_view = GTK_WIDGET (modest_number_editor_new (PORT_MIN, PORT_MAX)); - entry_caption = modest_maemo_utils_create_captioned (title_size_group, - value_size_group, - _("mcen_fi_emailsetup_port"), - FALSE, - ppriv->port_view); + ppriv->security_view = modest_toolkit_factory_create_serversecurity_selector (modest_runtime_get_toolkit_factory ()); + modest_serversecurity_selector_fill (ppriv->security_view, + modest_protocol_registry_get_pop_type_id ()); + if (GTK_IS_COMBO_BOX (ppriv->security_view)) { + GtkWidget *captioned; + + captioned = modest_toolkit_utils_create_captioned (title_size_group, value_size_group, + _("mcen_li_emailsetup_secure_connection"), FALSE, + ppriv->security_view); + g_signal_connect (G_OBJECT (ppriv->security_view), "changed", + G_CALLBACK (on_security_changed), self); + gtk_box_pack_start (GTK_BOX (self), captioned, FALSE, FALSE, 0); + gtk_widget_show (captioned); + } else { + modest_toolkit_utils_set_hbutton_layout (title_size_group, + value_size_group, + _("mcen_li_emailsetup_secure_connection"), + ppriv->security_view); + g_signal_connect (G_OBJECT (ppriv->security_view), "value-changed", + G_CALLBACK (on_security_changed), self); + gtk_box_pack_start (GTK_BOX (self), ppriv->security_view, FALSE, FALSE, 0); } - ppriv->auth_view = hildon_check_button_new (MODEST_EDITABLE_SIZE); - gtk_button_set_label (GTK_BUTTON (ppriv->auth_view), _("mcen_li_emailsetup_secure_authentication")); - gtk_button_set_alignment (GTK_BUTTON (ppriv->auth_view), 0.0, 0.5); - - /* Track changes in UI */ - g_signal_connect (G_OBJECT (ppriv->security_view), "value-changed", - G_CALLBACK (on_security_changed), self); - - /* Pack into container */ - gtk_box_pack_start (GTK_BOX (self), ppriv->auth_view, - FALSE, FALSE, 0); - if (ppriv->full) - gtk_box_pack_start (GTK_BOX (self), entry_caption, - FALSE, FALSE, MODEST_MARGIN_HALF); - gtk_box_pack_start (GTK_BOX (self), ppriv->security_view, - FALSE, FALSE, 0); + /* Pack into container & show */ + gtk_widget_show (ppriv->security_view); + gtk_widget_show (ppriv->auth_view); - /* Show widgets */ if (ppriv->full) { + ppriv->port_view = modest_toolkit_factory_create_number_entry (modest_runtime_get_toolkit_factory (), + PORT_MIN, PORT_MAX); + entry_caption = + modest_toolkit_utils_create_captioned_with_size_type (title_size_group, + value_size_group, + _("mcen_fi_emailsetup_port"), + FALSE, + ppriv->port_view, + MODEST_EDITABLE_SIZE); + /* Pack & show widgets */ + gtk_box_pack_start (GTK_BOX (self), entry_caption, FALSE, FALSE, 0); gtk_widget_show (ppriv->port_view); gtk_widget_show (entry_caption); + + /* Track changes in UI */ +#ifdef MODEST_NUMBER_ENTRY_SUPPORT_VALID_CHANGED + g_signal_connect (G_OBJECT (ppriv->port_view), "valid-changed", + G_CALLBACK (on_valid_changed), self); +#endif } - gtk_widget_show (ppriv->security_view); - gtk_widget_show (ppriv->auth_view); } static void @@ -186,7 +195,7 @@ on_entry_max (ModestValidatingEntry *self, gpointer user_data) { modest_platform_information_banner (GTK_WIDGET (self), NULL, - _CS("ckdg_ib_maximum_characters_reached")); + _CS_MAXIMUM_CHARACTERS_REACHED); } /* @@ -199,44 +208,52 @@ on_entry_changed (GtkEditable *editable, gpointer user_data) { ModestSecurityOptionsView* self; + ModestMaemoSecurityOptionsViewPrivate *priv; ModestSecurityOptionsViewPrivate *ppriv; - ModestProtocolType auth_proto; - ModestSecureauthPicker *picker; - gboolean is_secure, missing; + gboolean is_secure = FALSE; ModestProtocolRegistry *protocol_registry; self = MODEST_SECURITY_OPTIONS_VIEW (user_data); + priv = MODEST_MAEMO_SECURITY_OPTIONS_VIEW_GET_PRIVATE (self); ppriv = MODEST_SECURITY_OPTIONS_VIEW_GET_PRIVATE (self); protocol_registry = modest_runtime_get_protocol_registry (); - /* Outgoing username is mandatory if outgoing auth is secure */ - picker = MODEST_SECUREAUTH_PICKER (ppriv->auth_view); - auth_proto = modest_secureauth_picker_get_active_secureauth (picker); - is_secure = modest_protocol_registry_protocol_type_is_secure (protocol_registry, - auth_proto); + /* Check if it's a secure protocol */ + if (modest_is_secureauth_selector (ppriv->auth_view)) { + ModestProtocolType auth_proto; + auth_proto = modest_secureauth_selector_get_active_secureauth (ppriv->auth_view); + is_secure = modest_protocol_registry_protocol_type_is_secure (protocol_registry, + auth_proto); + } else if (modest_is_togglable (ppriv->auth_view)) { + is_secure = modest_togglable_get_active (ppriv->auth_view); + } - if (is_secure && - !g_ascii_strcasecmp (hildon_entry_get_text (HILDON_ENTRY (ppriv->user_entry)), "")) { - missing = TRUE; + if (is_secure && + !g_strcmp0 (modest_entry_get_text (ppriv->user_entry), "")) { + priv->missing_data = TRUE; } else { - missing = FALSE; + priv->missing_data = FALSE; } - if (!missing && ppriv->full && !modest_number_editor_is_valid (MODEST_NUMBER_EDITOR (ppriv->port_view))) - missing = TRUE; - + if (!priv->missing_data && + ppriv->full && + !modest_number_entry_is_valid (ppriv->port_view)) + priv->missing_data = TRUE; + /* Emit a signal to notify if mandatory data is missing */ - g_signal_emit_by_name (G_OBJECT (self), "missing_mandatory_data", - missing, NULL); + g_signal_emit_by_name (G_OBJECT (self), "missing_mandatory_data", + priv->missing_data, NULL); } -void +#ifdef MODEST_NUMBER_ENTRY_SUPPORT_VALID_CHANGED +static void on_valid_changed (ModestNumberEditor *editor, gboolean valid, ModestSecurityOptionsView *self) { on_entry_changed (NULL, (gpointer) self); } +#endif static void create_outgoing_security (ModestSecurityOptionsView* self, @@ -244,28 +261,42 @@ create_outgoing_security (ModestSecurityOptionsView* self, GtkSizeGroup *value_size_group) { ModestSecurityOptionsViewPrivate *ppriv; - GtkWidget *user_caption = NULL; + GtkWidget *user_caption = NULL, *security_caption = NULL, *auth_caption = NULL; GtkWidget *pwd_caption = NULL, *port_caption = NULL; ppriv = MODEST_SECURITY_OPTIONS_VIEW_GET_PRIVATE (self); /* The secure connection widgets */ - ppriv->security_view = GTK_WIDGET (modest_serversecurity_picker_new (MODEST_EDITABLE_SIZE, - HILDON_BUTTON_ARRANGEMENT_HORIZONTAL)); - modest_serversecurity_picker_fill (MODEST_SERVERSECURITY_PICKER (ppriv->security_view), + ppriv->security_view = modest_toolkit_factory_create_serversecurity_selector (modest_runtime_get_toolkit_factory ()); + modest_serversecurity_selector_fill (ppriv->security_view, MODEST_PROTOCOLS_TRANSPORT_SMTP); - modest_maemo_utils_set_hbutton_layout (title_size_group, - value_size_group, - _("mcen_li_emailsetup_secure_connection"), - ppriv->security_view); + if (GTK_IS_COMBO_BOX (ppriv->security_view)) { + security_caption = modest_toolkit_utils_create_captioned (title_size_group, value_size_group, + _("mcen_li_emailsetup_secure_connection"), FALSE, + ppriv->security_view); + gtk_widget_show (security_caption); + } else { + modest_toolkit_utils_set_hbutton_layout (title_size_group, + value_size_group, + _("mcen_li_emailsetup_secure_connection"), + ppriv->security_view); + security_caption = ppriv->security_view; + } /* The secure authentication widgets */ - ppriv->auth_view = GTK_WIDGET (modest_secureauth_picker_new (MODEST_EDITABLE_SIZE, - HILDON_BUTTON_ARRANGEMENT_HORIZONTAL)); - modest_maemo_utils_set_hbutton_layout (title_size_group, - value_size_group, - _("mcen_li_emailsetup_secure_authentication"), - ppriv->auth_view); + ppriv->auth_view = modest_toolkit_factory_create_secureauth_selector (modest_runtime_get_toolkit_factory ()); + if (GTK_IS_COMBO_BOX (ppriv->auth_view)) { + auth_caption = modest_toolkit_utils_create_captioned (title_size_group, value_size_group, + _("mcen_li_emailsetup_secure_authentication"), FALSE, + ppriv->auth_view); + gtk_widget_show (auth_caption); + } else { + modest_toolkit_utils_set_hbutton_layout (title_size_group, + value_size_group, + _("mcen_li_emailsetup_secure_authentication"), + ppriv->auth_view); + auth_caption = ppriv->auth_view; + } if (ppriv->full) { gchar *user_label; @@ -274,15 +305,18 @@ create_outgoing_security (ModestSecurityOptionsView* self, ppriv->user_entry = GTK_WIDGET (modest_validating_entry_new ()); /* Auto-capitalization is the default, so let's turn it off: */ +#ifdef MODEST_TOOLKIT_HILDON2 hildon_gtk_entry_set_input_mode (GTK_ENTRY (ppriv->user_entry), HILDON_GTK_INPUT_MODE_FULL); +#endif user_label = g_strdup_printf("%s*", _("mail_fi_username")); - user_caption = modest_maemo_utils_create_captioned (title_size_group, - value_size_group, - user_label, - FALSE, - ppriv->user_entry); + user_caption = modest_toolkit_utils_create_captioned_with_size_type (title_size_group, + value_size_group, + user_label, + FALSE, + ppriv->user_entry, + MODEST_EDITABLE_SIZE); g_free (user_label); /* Prevent the use of some characters. Limit the max @@ -294,58 +328,77 @@ create_outgoing_security (ModestSecurityOptionsView* self, on_entry_max, self); /* Password widgets */ - ppriv->pwd_entry = hildon_entry_new (MODEST_EDITABLE_SIZE); + ppriv->pwd_entry = modest_toolkit_factory_create_entry (modest_runtime_get_toolkit_factory ()); /* Auto-capitalization is the default, so let's turn it off */ +#ifdef MODEST_TOOLKIT_HILDON2 hildon_gtk_entry_set_input_mode (GTK_ENTRY (ppriv->pwd_entry), HILDON_GTK_INPUT_MODE_FULL | HILDON_GTK_INPUT_MODE_INVISIBLE); +#endif gtk_entry_set_visibility (GTK_ENTRY (ppriv->pwd_entry), FALSE); - pwd_caption = modest_maemo_utils_create_captioned (title_size_group, - value_size_group, - _("mail_fi_password"), - FALSE, - ppriv->pwd_entry); - - ppriv->port_view = GTK_WIDGET (modest_number_editor_new (PORT_MIN, PORT_MAX)); - port_caption = modest_maemo_utils_create_captioned (title_size_group, - value_size_group, - _("mcen_fi_emailsetup_port"), - FALSE, - ppriv->port_view); + pwd_caption = + modest_toolkit_utils_create_captioned_with_size_type (title_size_group, + value_size_group, + _("mail_fi_password"), + FALSE, + ppriv->pwd_entry, + MODEST_EDITABLE_SIZE); + + ppriv->port_view = modest_toolkit_factory_create_number_entry (modest_runtime_get_toolkit_factory (), + PORT_MIN, PORT_MAX); + port_caption = + modest_toolkit_utils_create_captioned_with_size_type (title_size_group, + value_size_group, + _("mcen_fi_emailsetup_port"), + FALSE, + ppriv->port_view, + MODEST_EDITABLE_SIZE); } - /* Track changes in UI */ - g_signal_connect (G_OBJECT (ppriv->security_view), "value-changed", - G_CALLBACK (on_security_changed), self); + /* Track changes in UI */ + if (GTK_IS_COMBO_BOX (ppriv->security_view)) { + g_signal_connect (G_OBJECT (ppriv->security_view), "changed", + G_CALLBACK (on_security_changed), self); + } else { + g_signal_connect (G_OBJECT (ppriv->security_view), "value-changed", + G_CALLBACK (on_security_changed), self); + } if (ppriv->full) { - g_signal_connect (G_OBJECT (ppriv->auth_view), "value-changed", - G_CALLBACK (on_auth_changed), self); + if (GTK_IS_COMBO_BOX (ppriv->auth_view)) { + g_signal_connect (G_OBJECT (ppriv->auth_view), "changed", + G_CALLBACK (on_auth_changed), self); + } else { + g_signal_connect (G_OBJECT (ppriv->auth_view), "value-changed", + G_CALLBACK (on_auth_changed), self); + } g_signal_connect (G_OBJECT (ppriv->user_entry), "changed", G_CALLBACK (on_entry_changed), self); +#ifdef MODEST_NUMBER_ENTRY_SUPPORT_VALID_CHANGED g_signal_connect (G_OBJECT (ppriv->port_view), "valid-changed", G_CALLBACK (on_valid_changed), self); +#endif } /* Initialize widgets */ - modest_serversecurity_picker_set_active_serversecurity ( - MODEST_SERVERSECURITY_PICKER (ppriv->security_view), + modest_serversecurity_selector_set_active_serversecurity ( + ppriv->security_view, MODEST_PROTOCOLS_CONNECTION_NONE); - modest_secureauth_picker_set_active_secureauth ( - MODEST_SECUREAUTH_PICKER (ppriv->auth_view), + modest_secureauth_selector_set_active_secureauth ( + ppriv->auth_view, MODEST_PROTOCOLS_AUTH_NONE); /* Pack into container */ if (ppriv->full) { - gtk_box_pack_start (GTK_BOX (self), ppriv->auth_view, FALSE, FALSE, MODEST_MARGIN_HALF); - gtk_box_pack_start (GTK_BOX (self), user_caption, FALSE, FALSE, MODEST_MARGIN_HALF); - gtk_box_pack_start (GTK_BOX (self), pwd_caption, FALSE, FALSE, MODEST_MARGIN_HALF); - gtk_box_pack_start (GTK_BOX (self), ppriv->security_view, FALSE, FALSE, MODEST_MARGIN_HALF); - gtk_box_pack_start (GTK_BOX (self), port_caption, FALSE, FALSE, MODEST_MARGIN_HALF); + gtk_box_pack_start (GTK_BOX (self), auth_caption, FALSE, FALSE, 0); + gtk_box_pack_start (GTK_BOX (self), user_caption, FALSE, FALSE, 0); + gtk_box_pack_start (GTK_BOX (self), pwd_caption, FALSE, FALSE, 0); + gtk_box_pack_start (GTK_BOX (self), security_caption, FALSE, FALSE, 0); + gtk_box_pack_start (GTK_BOX (self), port_caption, FALSE, FALSE, 0); } else { - gtk_box_pack_start (GTK_BOX (self), ppriv->auth_view, FALSE, FALSE, MODEST_MARGIN_HALF); - gtk_box_pack_start (GTK_BOX (self), ppriv->security_view, FALSE, FALSE, MODEST_MARGIN_HALF); + gtk_box_pack_start (GTK_BOX (self), auth_caption, FALSE, FALSE, 0); + gtk_box_pack_start (GTK_BOX (self), security_caption, FALSE, FALSE, 0); } /* Show widgets */ @@ -384,8 +437,18 @@ modest_maemo_security_options_view_new (ModestSecurityOptionsType type, return (GtkWidget *) self; } -static void -modest_maemo_security_options_view_load_settings (ModestSecurityOptionsView* self, +gboolean +modest_security_options_view_has_missing_mandatory_data (ModestSecurityOptionsView* self) +{ + ModestMaemoSecurityOptionsViewPrivate *priv; + + priv = MODEST_MAEMO_SECURITY_OPTIONS_VIEW_GET_PRIVATE (self); + + return priv->missing_data; +} + +static void +modest_maemo_security_options_view_load_settings (ModestSecurityOptionsView* self, ModestAccountSettings *settings) { ModestSecurityOptionsViewPrivate *ppriv; @@ -407,8 +470,8 @@ modest_maemo_security_options_view_load_settings (ModestSecurityOptionsView* sel } else if (ppriv->full) { /* Keep the user-entered port-number, or the * already-appropriate automatic port number */ - modest_number_editor_set_value (MODEST_NUMBER_EDITOR (ppriv->port_view), - port_number); + modest_number_entry_set_value (ppriv->port_view, + port_number); } /* Frees */ g_object_unref (server_settings); @@ -430,9 +493,9 @@ modest_maemo_security_options_view_save_settings (ModestSecurityOptionsView* sel server_settings = modest_account_settings_get_transport_settings (settings); if (ppriv->full) { - server_port = modest_number_editor_get_value (MODEST_NUMBER_EDITOR (ppriv->port_view)); + server_port = modest_number_entry_get_value (ppriv->port_view); } else { - server_port = modest_serversecurity_picker_get_active_serversecurity_port (MODEST_SERVERSECURITY_PICKER (ppriv->security_view)); + server_port = modest_serversecurity_selector_get_active_serversecurity_port (ppriv->security_view); } modest_server_account_settings_set_port (server_settings, server_port); @@ -461,7 +524,7 @@ modest_maemo_security_options_view_changed (ModestSecurityOptionsView* self, server_settings = modest_account_settings_get_transport_settings (settings); server_port = - modest_number_editor_get_value (MODEST_NUMBER_EDITOR (ppriv->port_view)); + modest_number_entry_get_value (ppriv->port_view); /* Frees */ g_object_unref (server_settings); @@ -491,6 +554,7 @@ modest_maemo_security_options_view_class_init (ModestMaemoSecurityOptionsViewCla modest_maemo_security_options_view_parent_class = g_type_class_peek_parent (klass); + g_type_class_add_private (gobject_class, sizeof (ModestMaemoSecurityOptionsViewPrivate)); gobject_class->finalize = modest_maemo_security_options_view_finalize; MODEST_SECURITY_OPTIONS_VIEW_CLASS (klass)->load_settings =