aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2008-07-19 18:50:08 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2008-07-19 18:50:08 +0800
commit1340d533f6bf4e7340761040e385c3054fdb6e15 (patch)
treed124c105e4a3ea203842c447c95bf320328903ed /src
parent884338ea523f8bd47a89e8ebda7aaeebc4c95dbc (diff)
downloadgsoc2013-empathy-1340d533f6bf4e7340761040e385c3054fdb6e15.tar
gsoc2013-empathy-1340d533f6bf4e7340761040e385c3054fdb6e15.tar.gz
gsoc2013-empathy-1340d533f6bf4e7340761040e385c3054fdb6e15.tar.bz2
gsoc2013-empathy-1340d533f6bf4e7340761040e385c3054fdb6e15.tar.lz
gsoc2013-empathy-1340d533f6bf4e7340761040e385c3054fdb6e15.tar.xz
gsoc2013-empathy-1340d533f6bf4e7340761040e385c3054fdb6e15.tar.zst
gsoc2013-empathy-1340d533f6bf4e7340761040e385c3054fdb6e15.zip
Add support to set register param. Fixes bug #462880.
svn path=/trunk/; revision=1264
Diffstat (limited to 'src')
-rw-r--r--src/empathy-accounts-dialog.c38
-rw-r--r--src/empathy-accounts-dialog.glade14
2 files changed, 51 insertions, 1 deletions
diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c
index 4d37cafac..63643a318 100644
--- a/src/empathy-accounts-dialog.c
+++ b/src/empathy-accounts-dialog.c
@@ -73,6 +73,7 @@ typedef struct {
GtkWidget *hbox_type;
GtkWidget *button_create;
GtkWidget *button_back;
+ GtkWidget *checkbutton_register;
GtkWidget *image_type;
GtkWidget *label_name;
@@ -862,6 +863,7 @@ accounts_dialog_button_create_clicked_cb (GtkWidget *button,
McProfile *profile;
McAccount *account;
const gchar *str;
+ McProfileCapabilityFlags cap;
/* Update widgets */
gtk_widget_show (dialog->vbox_details);
@@ -872,10 +874,19 @@ accounts_dialog_button_create_clicked_cb (GtkWidget *button,
/* Create account */
account = mc_account_create (profile);
-
str = mc_account_get_unique_name (account);
mc_account_set_display_name (account, str);
+ cap = mc_profile_get_capabilities (profile);
+ if (cap & MC_PROFILE_CAPABILITY_REGISTRATION_UI) {
+ gboolean active;
+
+ active = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (dialog->checkbutton_register));
+ if (!active) {
+ mc_account_set_param_boolean (account, "register", TRUE);
+ }
+ }
+
accounts_dialog_add_account (dialog, account);
accounts_dialog_model_set_selected (dialog, account);
@@ -900,6 +911,24 @@ accounts_dialog_button_back_clicked_cb (GtkWidget *button,
}
static void
+accounts_dialog_profile_changed_cb (GtkWidget *widget,
+ EmpathyAccountsDialog *dialog)
+{
+ McProfile *profile;
+ McProfileCapabilityFlags cap;
+
+ profile = empathy_profile_chooser_get_selected (dialog->combobox_profile);
+ cap = mc_profile_get_capabilities (profile);
+
+ if (cap & MC_PROFILE_CAPABILITY_REGISTRATION_UI) {
+ gtk_widget_show (dialog->checkbutton_register);
+ } else {
+ gtk_widget_hide (dialog->checkbutton_register);
+ }
+ g_object_unref (profile);
+}
+
+static void
accounts_dialog_button_add_clicked_cb (GtkWidget *button,
EmpathyAccountsDialog *dialog)
{
@@ -915,6 +944,9 @@ accounts_dialog_button_add_clicked_cb (GtkWidget *button,
gtk_widget_hide (dialog->frame_no_account);
gtk_widget_show (dialog->frame_new_account);
+ accounts_dialog_profile_changed_cb (dialog->checkbutton_register, dialog);
+ gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (dialog->checkbutton_register),
+ TRUE);
gtk_combo_box_set_active (GTK_COMBO_BOX (dialog->combobox_profile), 0);
gtk_widget_grab_focus (dialog->combobox_profile);
}
@@ -1067,6 +1099,7 @@ empathy_accounts_dialog_show (GtkWindow *parent,
"hbox_type", &dialog->hbox_type,
"button_create", &dialog->button_create,
"button_back", &dialog->button_back,
+ "checkbutton_register", &dialog->checkbutton_register,
"image_type", &dialog->image_type,
"label_name", &dialog->label_name,
"button_add", &dialog->button_add,
@@ -1098,6 +1131,9 @@ empathy_accounts_dialog_show (GtkWindow *parent,
if (empathy_profile_chooser_n_profiles (dialog->combobox_profile) <= 0) {
gtk_widget_set_sensitive (dialog->button_add, FALSE);
}
+ g_signal_connect (dialog->combobox_profile, "changed",
+ G_CALLBACK (accounts_dialog_profile_changed_cb),
+ dialog);
/* Set up signalling */
dialog->mc = empathy_mission_control_new ();
diff --git a/src/empathy-accounts-dialog.glade b/src/empathy-accounts-dialog.glade
index fb3563f25..4d7b32ed8 100644
--- a/src/empathy-accounts-dialog.glade
+++ b/src/empathy-accounts-dialog.glade
@@ -183,6 +183,20 @@
</widget>
</child>
<child>
+ <widget class="GtkCheckButton" id="checkbutton_register">
+ <property name="visible">True</property>
+ <property name="can_focus">True</property>
+ <property name="label" translatable="yes">I already have an account I want to use</property>
+ <property name="use_underline">True</property>
+ <property name="response_id">0</property>
+ <property name="active">True</property>
+ <property name="draw_indicator">True</property>
+ </widget>
+ <packing>
+ <property name="position">2</property>
+ </packing>
+ </child>
+ <child>
<widget class="GtkHBox" id="hbox181">
<property name="visible">True</property>
<property name="spacing">6</property>