Mercurial > pidgin.yaz
annotate finch/gntaccount.c @ 31442:25d93d273e9c
Replace GdkGC in GtkIMHtml. Just in case you were wondering, it's now
going away [1].
[1] http://blogs.gnome.org/otte/2010/07/27/rendering-cleanup/
author | Elliott Sales de Andrade <qulogic@pidgin.im> |
---|---|
date | Wed, 28 Jul 2010 04:51:24 +0000 |
parents | cfdd4d3ba550 |
children | 014dbe36b722 |
rev | line source |
---|---|
15818 | 1 /** |
2 * @file gntaccount.c GNT Account API | |
16194
0f0832c13fcb
Rename the Doxygen group from gntui to finch and define the finch group
Richard Laager <rlaager@wiktel.com>
parents:
15871
diff
changeset
|
3 * @ingroup finch |
20074
6bf32c9e15a7
remove gpl boilerplate from doxygen docs
Sean Egan <seanegan@gmail.com>
parents:
19944
diff
changeset
|
4 */ |
6bf32c9e15a7
remove gpl boilerplate from doxygen docs
Sean Egan <seanegan@gmail.com>
parents:
19944
diff
changeset
|
5 |
6bf32c9e15a7
remove gpl boilerplate from doxygen docs
Sean Egan <seanegan@gmail.com>
parents:
19944
diff
changeset
|
6 /* finch |
15818 | 7 * |
15871
66dff3dfdea6
Re-sed the copyright notices so they don't all talk about Purple.
Richard Laager <rlaager@wiktel.com>
parents:
15823
diff
changeset
|
8 * Finch is the legal property of its developers, whose names are too numerous |
15818 | 9 * to list here. Please refer to the COPYRIGHT file distributed with this |
10 * source distribution. | |
11 * | |
12 * This program is free software; you can redistribute it and/or modify | |
13 * it under the terms of the GNU General Public License as published by | |
14 * the Free Software Foundation; either version 2 of the License, or | |
15 * (at your option) any later version. | |
16 * | |
17 * This program is distributed in the hope that it will be useful, | |
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 * GNU General Public License for more details. | |
21 * | |
22 * You should have received a copy of the GNU General Public License | |
23 * along with this program; if not, write to the Free Software | |
19680
44b4e8bd759b
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
19392
diff
changeset
|
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
15818 | 25 */ |
29152
259bbfb423d4
Fix all the remaining files for which internal.h doesn't end up being the first include.
Paul Aurich <paul@darkrain42.org>
parents:
28663
diff
changeset
|
26 #include <internal.h> |
259bbfb423d4
Fix all the remaining files for which internal.h doesn't end up being the first include.
Paul Aurich <paul@darkrain42.org>
parents:
28663
diff
changeset
|
27 |
15818 | 28 #include <gnt.h> |
29 #include <gntbox.h> | |
30 #include <gntbutton.h> | |
31 #include <gntcheckbox.h> | |
32 #include <gntcombobox.h> | |
33 #include <gntentry.h> | |
34 #include <gntlabel.h> | |
35 #include <gntline.h> | |
36 #include <gnttree.h> | |
18511
7ee0e0597a26
Add utility function to trigger some button when some key is pressed with
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18432
diff
changeset
|
37 #include <gntutils.h> |
17520
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
38 #include <gntwindow.h> |
15818 | 39 |
18210
b8572b937c09
#include reorganizations to allow compiling with glib < 2.8 using the
Stu Tomlinson <stu@nosnilmot.com>
parents:
18063
diff
changeset
|
40 #include "finch.h" |
b8572b937c09
#include reorganizations to allow compiling with glib < 2.8 using the
Stu Tomlinson <stu@nosnilmot.com>
parents:
18063
diff
changeset
|
41 |
15818 | 42 #include <account.h> |
43 #include <accountopt.h> | |
44 #include <connection.h> | |
45 #include <notify.h> | |
46 #include <plugin.h> | |
47 #include <request.h> | |
23085
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
48 #include <savedstatuses.h> |
15818 | 49 |
50 #include "gntaccount.h" | |
17520
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
51 #include "gntblist.h" |
15818 | 52 |
53 #include <string.h> | |
54 | |
55 typedef struct | |
56 { | |
57 GntWidget *window; | |
58 GntWidget *tree; | |
59 } FinchAccountList; | |
60 | |
61 static FinchAccountList accounts; | |
62 | |
63 typedef struct | |
64 { | |
15823 | 65 PurpleAccount *account; /* NULL for a new account */ |
15818 | 66 |
67 GntWidget *window; | |
68 | |
69 GntWidget *protocol; | |
25416
6e1967b0f90b
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <mark@kingant.net>
parents:
24541
diff
changeset
|
70 GntWidget *username; |
15818 | 71 GntWidget *password; |
72 GntWidget *alias; | |
23085
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
73 |
15818 | 74 GntWidget *splits; |
75 GList *split_entries; | |
76 | |
77 GList *prpl_entries; | |
78 GntWidget *prpls; | |
79 | |
80 GntWidget *newmail; | |
81 GntWidget *remember; | |
23085
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
82 GntWidget *regserver; |
15818 | 83 } AccountEditDialog; |
84 | |
85 /* This is necessary to close an edit-dialog when an account is deleted */ | |
86 static GList *accountdialogs; | |
87 | |
88 static void | |
15823 | 89 account_add(PurpleAccount *account) |
15818 | 90 { |
91 gnt_tree_add_choice(GNT_TREE(accounts.tree), account, | |
92 gnt_tree_create_row(GNT_TREE(accounts.tree), | |
15823 | 93 purple_account_get_username(account), |
94 purple_account_get_protocol_name(account)), | |
15818 | 95 NULL, NULL); |
96 gnt_tree_set_choice(GNT_TREE(accounts.tree), account, | |
15823 | 97 purple_account_get_enabled(account, FINCH_UI)); |
15818 | 98 } |
99 | |
100 static void | |
101 edit_dialog_destroy(AccountEditDialog *dialog) | |
102 { | |
103 accountdialogs = g_list_remove(accountdialogs, dialog); | |
104 g_list_free(dialog->prpl_entries); | |
105 g_list_free(dialog->split_entries); | |
106 g_free(dialog); | |
107 } | |
108 | |
109 static void | |
110 save_account_cb(AccountEditDialog *dialog) | |
111 { | |
15823 | 112 PurpleAccount *account; |
113 PurplePlugin *plugin; | |
114 PurplePluginProtocolInfo *prplinfo; | |
15818 | 115 const char *value; |
116 GString *username; | |
117 | |
118 /* XXX: Do some error checking first. */ | |
119 | |
120 plugin = gnt_combo_box_get_selected_data(GNT_COMBO_BOX(dialog->protocol)); | |
15823 | 121 prplinfo = PURPLE_PLUGIN_PROTOCOL_INFO(plugin); |
15818 | 122 |
25416
6e1967b0f90b
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <mark@kingant.net>
parents:
24541
diff
changeset
|
123 /* Username && user-splits */ |
6e1967b0f90b
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <mark@kingant.net>
parents:
24541
diff
changeset
|
124 value = gnt_entry_get_text(GNT_ENTRY(dialog->username)); |
15818 | 125 |
126 if (value == NULL || *value == '\0') | |
127 { | |
30670
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
128 purple_notify_error(NULL, _("Error"), |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
129 dialog->account ? _("Account was not modified") : _("Account was not added"), |
22770
cc8903c59d6b
Change the string "screen name" to "username" everywhere. I think most
Mark Doliner <mark@kingant.net>
parents:
22257
diff
changeset
|
130 _("Username of an account must be non-empty.")); |
15818 | 131 return; |
132 } | |
23085
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
133 |
15818 | 134 username = g_string_new(value); |
135 | |
136 if (prplinfo != NULL) | |
137 { | |
138 GList *iter, *entries; | |
139 for (iter = prplinfo->user_splits, entries = dialog->split_entries; | |
140 iter && entries; iter = iter->next, entries = entries->next) | |
141 { | |
15823 | 142 PurpleAccountUserSplit *split = iter->data; |
15818 | 143 GntWidget *entry = entries->data; |
144 | |
145 value = gnt_entry_get_text(GNT_ENTRY(entry)); | |
146 if (value == NULL || *value == '\0') | |
15823 | 147 value = purple_account_user_split_get_default_value(split); |
15818 | 148 g_string_append_printf(username, "%c%s", |
15823 | 149 purple_account_user_split_get_separator(split), |
15818 | 150 value); |
151 } | |
152 } | |
153 | |
154 if (dialog->account == NULL) | |
155 { | |
15823 | 156 account = purple_account_new(username->str, purple_plugin_get_id(plugin)); |
157 purple_accounts_add(account); | |
15818 | 158 } |
159 else | |
160 { | |
161 account = dialog->account; | |
162 | |
163 /* Protocol */ | |
30670
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
164 if (purple_account_is_disconnected(account)) { |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
165 purple_account_set_protocol_id(account, purple_plugin_get_id(plugin)); |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
166 purple_account_set_username(account, username->str); |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
167 } else { |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
168 const char *old = purple_account_get_protocol_id(account); |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
169 char *oldprpl; |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
170 if (strcmp(old, purple_plugin_get_id(plugin))) { |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
171 purple_notify_error(NULL, _("Error"), _("Account was not modified"), |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
172 _("The account's protocol cannot be changed while it is connected to the server.")); |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
173 return; |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
174 } |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
175 |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
176 oldprpl = g_strdup(purple_normalize(account, purple_account_get_username(account))); |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
177 if (g_utf8_collate(oldprpl, purple_normalize(account, username->str))) { |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
178 purple_notify_error(NULL, _("Error"), _("Account was not modified"), |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
179 _("The account's username cannot be changed while it is connected to the server.")); |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
180 g_free(oldprpl); |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
181 return; |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
182 } |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
183 g_free(oldprpl); |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
184 purple_account_set_username(account, username->str); |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
185 } |
15818 | 186 } |
187 g_string_free(username, TRUE); | |
188 | |
189 /* Alias */ | |
190 value = gnt_entry_get_text(GNT_ENTRY(dialog->alias)); | |
28663
a07e46f20644
Allow unsetting account alias in finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
28180
diff
changeset
|
191 purple_account_set_alias(account, value); |
15818 | 192 |
193 /* Remember password and password */ | |
15823 | 194 purple_account_set_remember_password(account, |
15818 | 195 gnt_check_box_get_checked(GNT_CHECK_BOX(dialog->remember))); |
196 value = gnt_entry_get_text(GNT_ENTRY(dialog->password)); | |
19938
656506d8935e
Don't prompt for the password again if the user entered it once in the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
197 if (value && *value) |
15823 | 198 purple_account_set_password(account, value); |
15818 | 199 else |
15823 | 200 purple_account_set_password(account, NULL); |
15818 | 201 |
202 /* Mail notification */ | |
15823 | 203 purple_account_set_check_mail(account, |
15818 | 204 gnt_check_box_get_checked(GNT_CHECK_BOX(dialog->newmail))); |
205 | |
206 /* Protocol options */ | |
207 if (prplinfo) | |
208 { | |
209 GList *iter, *entries; | |
23085
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
210 |
15818 | 211 for (iter = prplinfo->protocol_options, entries = dialog->prpl_entries; |
212 iter && entries; iter = iter->next, entries = entries->next) | |
213 { | |
15823 | 214 PurpleAccountOption *option = iter->data; |
15818 | 215 GntWidget *entry = entries->data; |
15823 | 216 PurplePrefType type = purple_account_option_get_type(option); |
217 const char *setting = purple_account_option_get_setting(option); | |
15818 | 218 |
15823 | 219 if (type == PURPLE_PREF_STRING) |
15818 | 220 { |
221 const char *value = gnt_entry_get_text(GNT_ENTRY(entry)); | |
15823 | 222 purple_account_set_string(account, setting, value); |
15818 | 223 } |
15823 | 224 else if (type == PURPLE_PREF_INT) |
15818 | 225 { |
226 const char *str = gnt_entry_get_text(GNT_ENTRY(entry)); | |
227 int value = 0; | |
228 if (str) | |
229 value = atoi(str); | |
15823 | 230 purple_account_set_int(account, setting, value); |
15818 | 231 } |
15823 | 232 else if (type == PURPLE_PREF_BOOLEAN) |
15818 | 233 { |
234 gboolean value = gnt_check_box_get_checked(GNT_CHECK_BOX(entry)); | |
15823 | 235 purple_account_set_bool(account, setting, value); |
15818 | 236 } |
15823 | 237 else if (type == PURPLE_PREF_STRING_LIST) |
15818 | 238 { |
239 /* TODO: */ | |
240 } | |
241 else | |
242 { | |
243 g_assert_not_reached(); | |
244 } | |
245 } | |
246 } | |
247 | |
248 /* XXX: Proxy options */ | |
249 | |
19392
74f7d5e4a605
Focus the modified/created account in the accounts window after modifying/
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18829
diff
changeset
|
250 if (accounts.window && accounts.tree) { |
74f7d5e4a605
Focus the modified/created account in the accounts window after modifying/
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18829
diff
changeset
|
251 gnt_tree_set_selected(GNT_TREE(accounts.tree), account); |
74f7d5e4a605
Focus the modified/created account in the accounts window after modifying/
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18829
diff
changeset
|
252 gnt_box_give_focus_to_child(GNT_BOX(accounts.window), accounts.tree); |
74f7d5e4a605
Focus the modified/created account in the accounts window after modifying/
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18829
diff
changeset
|
253 } |
74f7d5e4a605
Focus the modified/created account in the accounts window after modifying/
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18829
diff
changeset
|
254 |
23085
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
255 if (prplinfo && prplinfo->register_user && |
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
256 gnt_check_box_get_checked(GNT_CHECK_BOX(dialog->regserver))) { |
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
257 purple_account_register(account); |
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
258 } else if (dialog->account == NULL) { |
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
259 /* This is a new account. Set it to the current status. */ |
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
260 /* Xerox from gtkaccount.c :D */ |
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
261 const PurpleSavedStatus *saved_status; |
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
262 saved_status = purple_savedstatus_get_current(); |
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
263 if (saved_status != NULL) { |
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
264 purple_savedstatus_activate_for_account(saved_status, account); |
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
265 purple_account_set_enabled(account, FINCH_UI, TRUE); |
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
266 } |
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
267 } |
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
268 |
30670
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
269 /* In case of a new account, the 'Accounts' window is updated from the account-added |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
270 * callback. In case of changes in an existing account, we need to explicitly do it |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
271 * here. |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
272 */ |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
273 if (dialog->account != NULL && accounts.window) { |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
274 gnt_tree_change_text(GNT_TREE(accounts.tree), dialog->account, |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
275 0, purple_account_get_username(dialog->account)); |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
276 gnt_tree_change_text(GNT_TREE(accounts.tree), dialog->account, |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
277 1, purple_account_get_protocol_name(dialog->account)); |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
278 } |
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
279 |
15818 | 280 gnt_widget_destroy(dialog->window); |
281 } | |
282 | |
283 static void | |
284 update_user_splits(AccountEditDialog *dialog) | |
285 { | |
286 GntWidget *hbox; | |
15823 | 287 PurplePlugin *plugin; |
288 PurplePluginProtocolInfo *prplinfo; | |
15818 | 289 GList *iter, *entries; |
290 char *username = NULL; | |
291 | |
292 if (dialog->splits) | |
293 { | |
294 gnt_box_remove_all(GNT_BOX(dialog->splits)); | |
295 g_list_free(dialog->split_entries); | |
296 } | |
297 else | |
298 { | |
299 dialog->splits = gnt_vbox_new(FALSE); | |
300 gnt_box_set_pad(GNT_BOX(dialog->splits), 0); | |
301 gnt_box_set_fill(GNT_BOX(dialog->splits), TRUE); | |
302 } | |
303 | |
304 dialog->split_entries = NULL; | |
305 | |
306 plugin = gnt_combo_box_get_selected_data(GNT_COMBO_BOX(dialog->protocol)); | |
307 if (!plugin) | |
308 return; | |
15823 | 309 prplinfo = PURPLE_PLUGIN_PROTOCOL_INFO(plugin); |
15818 | 310 |
15823 | 311 username = dialog->account ? g_strdup(purple_account_get_username(dialog->account)) : NULL; |
15818 | 312 |
313 for (iter = prplinfo->user_splits; iter; iter = iter->next) | |
314 { | |
15823 | 315 PurpleAccountUserSplit *split = iter->data; |
15818 | 316 GntWidget *entry; |
317 char *buf; | |
318 | |
319 hbox = gnt_hbox_new(TRUE); | |
320 gnt_box_add_widget(GNT_BOX(dialog->splits), hbox); | |
321 | |
15823 | 322 buf = g_strdup_printf("%s:", purple_account_user_split_get_text(split)); |
15818 | 323 gnt_box_add_widget(GNT_BOX(hbox), gnt_label_new(buf)); |
324 | |
325 entry = gnt_entry_new(NULL); | |
326 gnt_box_add_widget(GNT_BOX(hbox), entry); | |
327 | |
328 dialog->split_entries = g_list_append(dialog->split_entries, entry); | |
329 g_free(buf); | |
330 } | |
331 | |
332 for (iter = g_list_last(prplinfo->user_splits), entries = g_list_last(dialog->split_entries); | |
333 iter && entries; iter = iter->prev, entries = entries->prev) | |
334 { | |
335 GntWidget *entry = entries->data; | |
15823 | 336 PurpleAccountUserSplit *split = iter->data; |
15818 | 337 const char *value = NULL; |
338 char *s; | |
339 | |
340 if (dialog->account) | |
341 { | |
18037
e3e42a99070e
jabber can contain @ symbols and / in the resource, so we have to look for
Nathan Walp <nwalp@pidgin.im>
parents:
17419
diff
changeset
|
342 if(purple_account_user_split_get_reverse(split)) |
e3e42a99070e
jabber can contain @ symbols and / in the resource, so we have to look for
Nathan Walp <nwalp@pidgin.im>
parents:
17419
diff
changeset
|
343 s = strrchr(username, purple_account_user_split_get_separator(split)); |
e3e42a99070e
jabber can contain @ symbols and / in the resource, so we have to look for
Nathan Walp <nwalp@pidgin.im>
parents:
17419
diff
changeset
|
344 else |
e3e42a99070e
jabber can contain @ symbols and / in the resource, so we have to look for
Nathan Walp <nwalp@pidgin.im>
parents:
17419
diff
changeset
|
345 s = strchr(username, purple_account_user_split_get_separator(split)); |
e3e42a99070e
jabber can contain @ symbols and / in the resource, so we have to look for
Nathan Walp <nwalp@pidgin.im>
parents:
17419
diff
changeset
|
346 |
15818 | 347 if (s != NULL) |
348 { | |
349 *s = '\0'; | |
350 s++; | |
351 value = s; | |
352 } | |
353 } | |
354 if (value == NULL) | |
15823 | 355 value = purple_account_user_split_get_default_value(split); |
15818 | 356 |
357 if (value != NULL) | |
358 gnt_entry_set_text(GNT_ENTRY(entry), value); | |
359 } | |
360 | |
361 if (username != NULL) | |
25416
6e1967b0f90b
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <mark@kingant.net>
parents:
24541
diff
changeset
|
362 gnt_entry_set_text(GNT_ENTRY(dialog->username), username); |
15818 | 363 |
364 g_free(username); | |
365 } | |
366 | |
367 static void | |
368 add_protocol_options(AccountEditDialog *dialog) | |
369 { | |
15823 | 370 PurplePlugin *plugin; |
371 PurplePluginProtocolInfo *prplinfo; | |
15818 | 372 GList *iter; |
373 GntWidget *vbox, *box; | |
15823 | 374 PurpleAccount *account; |
15818 | 375 |
376 if (dialog->prpls) | |
377 gnt_box_remove_all(GNT_BOX(dialog->prpls)); | |
378 else | |
379 { | |
380 dialog->prpls = vbox = gnt_vbox_new(FALSE); | |
381 gnt_box_set_pad(GNT_BOX(vbox), 0); | |
382 gnt_box_set_alignment(GNT_BOX(vbox), GNT_ALIGN_LEFT); | |
383 gnt_box_set_fill(GNT_BOX(vbox), TRUE); | |
384 } | |
385 | |
386 if (dialog->prpl_entries) | |
387 { | |
388 g_list_free(dialog->prpl_entries); | |
389 dialog->prpl_entries = NULL; | |
390 } | |
391 | |
392 vbox = dialog->prpls; | |
393 | |
394 plugin = gnt_combo_box_get_selected_data(GNT_COMBO_BOX(dialog->protocol)); | |
395 if (!plugin) | |
396 return; | |
397 | |
15823 | 398 prplinfo = PURPLE_PLUGIN_PROTOCOL_INFO(plugin); |
15818 | 399 |
400 account = dialog->account; | |
401 | |
402 for (iter = prplinfo->protocol_options; iter; iter = iter->next) | |
403 { | |
15823 | 404 PurpleAccountOption *option = iter->data; |
405 PurplePrefType type = purple_account_option_get_type(option); | |
15818 | 406 |
407 box = gnt_hbox_new(TRUE); | |
408 gnt_box_set_pad(GNT_BOX(box), 0); | |
409 gnt_box_add_widget(GNT_BOX(vbox), box); | |
410 | |
15823 | 411 if (type == PURPLE_PREF_BOOLEAN) |
15818 | 412 { |
15823 | 413 GntWidget *widget = gnt_check_box_new(purple_account_option_get_text(option)); |
15818 | 414 gnt_box_add_widget(GNT_BOX(box), widget); |
415 dialog->prpl_entries = g_list_append(dialog->prpl_entries, widget); | |
416 | |
417 if (account) | |
418 gnt_check_box_set_checked(GNT_CHECK_BOX(widget), | |
15823 | 419 purple_account_get_bool(account, |
420 purple_account_option_get_setting(option), | |
421 purple_account_option_get_default_bool(option))); | |
15818 | 422 else |
423 gnt_check_box_set_checked(GNT_CHECK_BOX(widget), | |
15823 | 424 purple_account_option_get_default_bool(option)); |
15818 | 425 } |
426 else | |
427 { | |
428 gnt_box_add_widget(GNT_BOX(box), | |
15823 | 429 gnt_label_new(purple_account_option_get_text(option))); |
15818 | 430 |
15823 | 431 if (type == PURPLE_PREF_STRING_LIST) |
15818 | 432 { |
433 /* TODO: Use a combobox */ | |
434 /* Don't forget to append the widget to prpl_entries */ | |
435 } | |
436 else | |
437 { | |
438 GntWidget *entry = gnt_entry_new(NULL); | |
439 gnt_box_add_widget(GNT_BOX(box), entry); | |
440 dialog->prpl_entries = g_list_append(dialog->prpl_entries, entry); | |
441 | |
15823 | 442 if (type == PURPLE_PREF_STRING) |
15818 | 443 { |
15823 | 444 const char *dv = purple_account_option_get_default_string(option); |
15818 | 445 |
446 if (account) | |
447 gnt_entry_set_text(GNT_ENTRY(entry), | |
15823 | 448 purple_account_get_string(account, |
449 purple_account_option_get_setting(option), dv)); | |
15818 | 450 else |
451 gnt_entry_set_text(GNT_ENTRY(entry), dv); | |
452 } | |
15823 | 453 else if (type == PURPLE_PREF_INT) |
15818 | 454 { |
455 char str[32]; | |
15823 | 456 int value = purple_account_option_get_default_int(option); |
15818 | 457 if (account) |
15823 | 458 value = purple_account_get_int(account, |
459 purple_account_option_get_setting(option), value); | |
15818 | 460 snprintf(str, sizeof(str), "%d", value); |
461 gnt_entry_set_flag(GNT_ENTRY(entry), GNT_ENTRY_FLAG_INT); | |
462 gnt_entry_set_text(GNT_ENTRY(entry), str); | |
463 } | |
464 else | |
465 { | |
466 g_assert_not_reached(); | |
467 } | |
468 } | |
469 } | |
470 } | |
23085
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
471 |
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
472 /* Show the registration checkbox only in a new account dialog, |
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
473 * and when the selected prpl has the support for it. */ |
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
474 gnt_widget_set_visible(dialog->regserver, account == NULL && |
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
475 prplinfo->register_user != NULL); |
15818 | 476 } |
477 | |
478 static void | |
479 update_user_options(AccountEditDialog *dialog) | |
480 { | |
15823 | 481 PurplePlugin *plugin; |
482 PurplePluginProtocolInfo *prplinfo; | |
15818 | 483 |
484 plugin = gnt_combo_box_get_selected_data(GNT_COMBO_BOX(dialog->protocol)); | |
485 if (!plugin) | |
486 return; | |
487 | |
15823 | 488 prplinfo = PURPLE_PLUGIN_PROTOCOL_INFO(plugin); |
15818 | 489 |
490 if (dialog->newmail == NULL) | |
491 dialog->newmail = gnt_check_box_new(_("New mail notifications")); | |
492 if (dialog->account) | |
493 gnt_check_box_set_checked(GNT_CHECK_BOX(dialog->newmail), | |
15823 | 494 purple_account_get_check_mail(dialog->account)); |
15818 | 495 if (!prplinfo || !(prplinfo->options & OPT_PROTO_MAIL_CHECK)) |
496 gnt_widget_set_visible(dialog->newmail, FALSE); | |
497 else | |
498 gnt_widget_set_visible(dialog->newmail, TRUE); | |
499 | |
500 if (dialog->remember == NULL) | |
501 dialog->remember = gnt_check_box_new(_("Remember password")); | |
502 if (dialog->account) | |
503 gnt_check_box_set_checked(GNT_CHECK_BOX(dialog->remember), | |
15823 | 504 purple_account_get_remember_password(dialog->account)); |
15818 | 505 } |
506 | |
507 static void | |
15823 | 508 prpl_changed_cb(GntWidget *combo, PurplePlugin *old, PurplePlugin *new, AccountEditDialog *dialog) |
15818 | 509 { |
510 update_user_splits(dialog); | |
511 add_protocol_options(dialog); | |
512 update_user_options(dialog); /* This may not be necessary here */ | |
513 gnt_box_readjust(GNT_BOX(dialog->window)); | |
514 gnt_widget_draw(dialog->window); | |
515 } | |
516 | |
517 static void | |
15823 | 518 edit_account(PurpleAccount *account) |
15818 | 519 { |
520 GntWidget *window, *hbox; | |
521 GntWidget *combo, *button, *entry; | |
522 GList *list, *iter; | |
523 AccountEditDialog *dialog; | |
28180
3316e5c79a53
Don't crash trying to modify the settings for an account where the prpl is
Stu Tomlinson <stu@nosnilmot.com>
parents:
27663
diff
changeset
|
524 PurplePlugin *plugin; |
15818 | 525 |
526 if (account) | |
527 { | |
528 GList *iter; | |
529 for (iter = accountdialogs; iter; iter = iter->next) | |
530 { | |
531 AccountEditDialog *dlg = iter->data; | |
532 if (dlg->account == account) | |
533 return; | |
534 } | |
535 } | |
536 | |
18432
f5a17e7e4bfa
Do not crash when people run finch without 'make install'ing first.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18345
diff
changeset
|
537 list = purple_plugins_get_protocols(); |
f5a17e7e4bfa
Do not crash when people run finch without 'make install'ing first.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18345
diff
changeset
|
538 if (list == NULL) { |
f5a17e7e4bfa
Do not crash when people run finch without 'make install'ing first.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18345
diff
changeset
|
539 purple_notify_error(NULL, _("Error"), |
23983
81169f04ab1c
datallah reminds me that my strings suck
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23960
diff
changeset
|
540 _("There are no protocol plugins installed."), |
18432
f5a17e7e4bfa
Do not crash when people run finch without 'make install'ing first.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18345
diff
changeset
|
541 _("(You probably forgot to 'make install'.)")); |
f5a17e7e4bfa
Do not crash when people run finch without 'make install'ing first.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18345
diff
changeset
|
542 return; |
f5a17e7e4bfa
Do not crash when people run finch without 'make install'ing first.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18345
diff
changeset
|
543 } |
f5a17e7e4bfa
Do not crash when people run finch without 'make install'ing first.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18345
diff
changeset
|
544 |
15818 | 545 dialog = g_new0(AccountEditDialog, 1); |
546 accountdialogs = g_list_prepend(accountdialogs, dialog); | |
547 | |
548 dialog->window = window = gnt_vbox_new(FALSE); | |
549 dialog->account = account; | |
550 gnt_box_set_toplevel(GNT_BOX(window), TRUE); | |
551 gnt_box_set_title(GNT_BOX(window), account ? _("Modify Account") : _("New Account")); | |
552 gnt_box_set_alignment(GNT_BOX(window), GNT_ALIGN_MID); | |
553 gnt_box_set_pad(GNT_BOX(window), 0); | |
554 gnt_widget_set_name(window, "edit-account"); | |
555 gnt_box_set_fill(GNT_BOX(window), TRUE); | |
556 | |
557 hbox = gnt_hbox_new(TRUE); | |
558 gnt_box_set_pad(GNT_BOX(hbox), 0); | |
559 gnt_box_add_widget(GNT_BOX(window), hbox); | |
560 | |
561 dialog->protocol = combo = gnt_combo_box_new(); | |
562 for (iter = list; iter; iter = iter->next) | |
563 { | |
564 gnt_combo_box_add_data(GNT_COMBO_BOX(combo), iter->data, | |
15823 | 565 ((PurplePlugin*)iter->data)->info->name); |
15818 | 566 } |
567 | |
28180
3316e5c79a53
Don't crash trying to modify the settings for an account where the prpl is
Stu Tomlinson <stu@nosnilmot.com>
parents:
27663
diff
changeset
|
568 plugin = purple_plugins_find_with_id(purple_account_get_protocol_id(account)); |
3316e5c79a53
Don't crash trying to modify the settings for an account where the prpl is
Stu Tomlinson <stu@nosnilmot.com>
parents:
27663
diff
changeset
|
569 |
3316e5c79a53
Don't crash trying to modify the settings for an account where the prpl is
Stu Tomlinson <stu@nosnilmot.com>
parents:
27663
diff
changeset
|
570 if (account && plugin) |
3316e5c79a53
Don't crash trying to modify the settings for an account where the prpl is
Stu Tomlinson <stu@nosnilmot.com>
parents:
27663
diff
changeset
|
571 gnt_combo_box_set_selected(GNT_COMBO_BOX(combo), plugin); |
15818 | 572 else |
573 gnt_combo_box_set_selected(GNT_COMBO_BOX(combo), list->data); | |
574 | |
575 g_signal_connect(G_OBJECT(combo), "selection-changed", G_CALLBACK(prpl_changed_cb), dialog); | |
576 | |
577 gnt_box_add_widget(GNT_BOX(hbox), gnt_label_new(_("Protocol:"))); | |
578 gnt_box_add_widget(GNT_BOX(hbox), combo); | |
579 | |
580 hbox = gnt_hbox_new(TRUE); | |
581 gnt_box_set_pad(GNT_BOX(hbox), 0); | |
582 gnt_box_add_widget(GNT_BOX(window), hbox); | |
583 | |
25416
6e1967b0f90b
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <mark@kingant.net>
parents:
24541
diff
changeset
|
584 dialog->username = entry = gnt_entry_new(NULL); |
22770
cc8903c59d6b
Change the string "screen name" to "username" everywhere. I think most
Mark Doliner <mark@kingant.net>
parents:
22257
diff
changeset
|
585 gnt_box_add_widget(GNT_BOX(hbox), gnt_label_new(_("Username:"))); |
15818 | 586 gnt_box_add_widget(GNT_BOX(hbox), entry); |
587 | |
588 /* User splits */ | |
589 update_user_splits(dialog); | |
590 gnt_box_add_widget(GNT_BOX(window), dialog->splits); | |
591 | |
592 hbox = gnt_hbox_new(TRUE); | |
593 gnt_box_set_pad(GNT_BOX(hbox), 0); | |
594 gnt_box_add_widget(GNT_BOX(window), hbox); | |
595 | |
596 dialog->password = entry = gnt_entry_new(NULL); | |
597 gnt_entry_set_masked(GNT_ENTRY(entry), TRUE); | |
598 gnt_box_add_widget(GNT_BOX(hbox), gnt_label_new(_("Password:"))); | |
599 gnt_box_add_widget(GNT_BOX(hbox), entry); | |
600 if (account) | |
15823 | 601 gnt_entry_set_text(GNT_ENTRY(entry), purple_account_get_password(account)); |
15818 | 602 |
603 hbox = gnt_hbox_new(TRUE); | |
604 gnt_box_set_pad(GNT_BOX(hbox), 0); | |
605 gnt_box_add_widget(GNT_BOX(window), hbox); | |
606 | |
607 dialog->alias = entry = gnt_entry_new(NULL); | |
608 gnt_box_add_widget(GNT_BOX(hbox), gnt_label_new(_("Alias:"))); | |
609 gnt_box_add_widget(GNT_BOX(hbox), entry); | |
610 if (account) | |
15823 | 611 gnt_entry_set_text(GNT_ENTRY(entry), purple_account_get_alias(account)); |
15818 | 612 |
613 /* User options */ | |
614 update_user_options(dialog); | |
615 gnt_box_add_widget(GNT_BOX(window), dialog->remember); | |
616 gnt_box_add_widget(GNT_BOX(window), dialog->newmail); | |
617 | |
23085
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
618 /* Register checkbox */ |
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
619 dialog->regserver = gnt_check_box_new(_("Create this account on the server")); |
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
620 gnt_box_add_widget(GNT_BOX(window), dialog->regserver); |
02ef6c5c6650
Allow account registration in a new account dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22770
diff
changeset
|
621 |
15818 | 622 gnt_box_add_widget(GNT_BOX(window), gnt_line_new(FALSE)); |
623 | |
624 /* The advanced box */ | |
625 add_protocol_options(dialog); | |
626 gnt_box_add_widget(GNT_BOX(window), dialog->prpls); | |
627 | |
628 /* TODO: Add proxy options */ | |
629 | |
630 /* The button box */ | |
631 hbox = gnt_hbox_new(FALSE); | |
632 gnt_box_add_widget(GNT_BOX(window), hbox); | |
633 gnt_box_set_alignment(GNT_BOX(hbox), GNT_ALIGN_MID); | |
634 | |
635 button = gnt_button_new(_("Cancel")); | |
636 gnt_box_add_widget(GNT_BOX(hbox), button); | |
637 g_signal_connect_swapped(G_OBJECT(button), "activate", G_CALLBACK(gnt_widget_destroy), window); | |
30670
cfdd4d3ba550
Some updates to the account window.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
29152
diff
changeset
|
638 |
15818 | 639 button = gnt_button_new(_("Save")); |
640 gnt_box_add_widget(GNT_BOX(hbox), button); | |
641 g_signal_connect_swapped(G_OBJECT(button), "activate", G_CALLBACK(save_account_cb), dialog); | |
642 | |
643 g_signal_connect_swapped(G_OBJECT(window), "destroy", G_CALLBACK(edit_dialog_destroy), dialog); | |
644 | |
645 gnt_widget_show(window); | |
646 gnt_box_readjust(GNT_BOX(window)); | |
647 gnt_widget_draw(window); | |
648 } | |
649 | |
650 static void | |
651 add_account_cb(GntWidget *widget, gpointer null) | |
652 { | |
653 edit_account(NULL); | |
654 } | |
655 | |
656 static void | |
657 modify_account_cb(GntWidget *widget, GntTree *tree) | |
658 { | |
15823 | 659 PurpleAccount *account = gnt_tree_get_selection_data(tree); |
15818 | 660 if (!account) |
661 return; | |
662 edit_account(account); | |
663 } | |
664 | |
665 static void | |
15823 | 666 really_delete_account(PurpleAccount *account) |
15818 | 667 { |
668 GList *iter; | |
669 for (iter = accountdialogs; iter; iter = iter->next) | |
670 { | |
671 AccountEditDialog *dlg = iter->data; | |
672 if (dlg->account == account) | |
673 { | |
674 gnt_widget_destroy(dlg->window); | |
675 break; | |
676 } | |
677 } | |
15823 | 678 purple_request_close_with_handle(account); /* Close any other opened delete window */ |
679 purple_accounts_delete(account); | |
15818 | 680 } |
681 | |
682 static void | |
683 delete_account_cb(GntWidget *widget, GntTree *tree) | |
684 { | |
15823 | 685 PurpleAccount *account; |
15818 | 686 char *prompt; |
687 | |
688 account = gnt_tree_get_selection_data(tree); | |
689 if (!account) | |
690 return; | |
691 | |
692 prompt = g_strdup_printf(_("Are you sure you want to delete %s?"), | |
15823 | 693 purple_account_get_username(account)); |
15818 | 694 |
22257
8233bbcf3e86
The Gnome Human Interface Guidelines say, "if pressing this button by
Mark Doliner <mark@kingant.net>
parents:
22213
diff
changeset
|
695 purple_request_action(account, _("Delete Account"), prompt, NULL, |
8233bbcf3e86
The Gnome Human Interface Guidelines say, "if pressing this button by
Mark Doliner <mark@kingant.net>
parents:
22213
diff
changeset
|
696 PURPLE_DEFAULT_ACTION_NONE, |
21570
dccfd999ffe7
merge of '76c07fcb434a2a7aa289734bb221c171a376d73b'
Evan Schoenberg <evan.s@dreskin.net>
parents:
21244
diff
changeset
|
697 account, NULL, NULL, account, 2, |
16465
4b6d81d26b56
Fix a warning introduced with the request api changes.
Gary Kramlich <grim@reaperworld.com>
parents:
16442
diff
changeset
|
698 _("Delete"), really_delete_account, |
4b6d81d26b56
Fix a warning introduced with the request api changes.
Gary Kramlich <grim@reaperworld.com>
parents:
16442
diff
changeset
|
699 _("Cancel"), NULL); |
15818 | 700 g_free(prompt); |
701 } | |
702 | |
703 static void | |
704 account_toggled(GntWidget *widget, void *key, gpointer null) | |
705 { | |
15823 | 706 PurpleAccount *account = key; |
26580
246081d2d990
Activate the current status for an account being enabled
Richard Nelson <wabz@pidgin.im>
parents:
26429
diff
changeset
|
707 gboolean enabled = gnt_tree_get_choice(GNT_TREE(widget), key); |
15818 | 708 |
26580
246081d2d990
Activate the current status for an account being enabled
Richard Nelson <wabz@pidgin.im>
parents:
26429
diff
changeset
|
709 if (enabled) |
246081d2d990
Activate the current status for an account being enabled
Richard Nelson <wabz@pidgin.im>
parents:
26429
diff
changeset
|
710 purple_savedstatus_activate_for_account(purple_savedstatus_get_current(), |
246081d2d990
Activate the current status for an account being enabled
Richard Nelson <wabz@pidgin.im>
parents:
26429
diff
changeset
|
711 account); |
246081d2d990
Activate the current status for an account being enabled
Richard Nelson <wabz@pidgin.im>
parents:
26429
diff
changeset
|
712 |
246081d2d990
Activate the current status for an account being enabled
Richard Nelson <wabz@pidgin.im>
parents:
26429
diff
changeset
|
713 purple_account_set_enabled(account, FINCH_UI, enabled); |
15818 | 714 } |
715 | |
23960
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
716 static gboolean |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
717 account_list_key_pressed_cb(GntWidget *widget, const char *text, gpointer null) |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
718 { |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
719 GntTree *tree = GNT_TREE(widget); |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
720 PurpleAccount *account = gnt_tree_get_selection_data(tree); |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
721 int move, pos, count; |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
722 GList *accounts; |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
723 |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
724 if (!account) |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
725 return FALSE; |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
726 |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
727 switch (text[0]) { |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
728 case '-': |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
729 move = -1; |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
730 break; |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
731 case '=': |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
732 move = 2; /* XXX: This seems to be a bug in libpurple */ |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
733 break; |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
734 default: |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
735 return FALSE; |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
736 } |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
737 |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
738 accounts = purple_accounts_get_all(); |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
739 count = g_list_length(accounts); |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
740 pos = g_list_index(accounts, account); |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
741 pos = (move + pos + count + 1) % (count + 1); |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
742 purple_accounts_reorder(account, pos); |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
743 |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
744 /* I don't like this, but recreating the entire list seems to be |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
745 * the easiest way of doing it */ |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
746 gnt_tree_remove_all(tree); |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
747 accounts = purple_accounts_get_all(); |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
748 for (; accounts; accounts = accounts->next) |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
749 account_add(accounts->data); |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
750 gnt_tree_set_selected(tree, account); |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
751 |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
752 return TRUE; |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
753 } |
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
754 |
15818 | 755 static void |
756 reset_accounts_win(GntWidget *widget, gpointer null) | |
757 { | |
758 accounts.window = NULL; | |
759 accounts.tree = NULL; | |
760 } | |
761 | |
762 void finch_accounts_show_all() | |
763 { | |
18063
926ccb104da0
disapproval of revision '1411afd7660760db59966c3a9f18e2adab8eb27e'
Richard Laager <rlaager@wiktel.com>
parents:
18058
diff
changeset
|
764 GList *iter; |
15818 | 765 GntWidget *box, *button; |
766 | |
18345
2d4df5ef0090
If the action-windows are already there, then bring them to front when
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18210
diff
changeset
|
767 if (accounts.window) { |
2d4df5ef0090
If the action-windows are already there, then bring them to front when
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18210
diff
changeset
|
768 gnt_window_present(accounts.window); |
15818 | 769 return; |
18345
2d4df5ef0090
If the action-windows are already there, then bring them to front when
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18210
diff
changeset
|
770 } |
15818 | 771 |
772 accounts.window = gnt_vbox_new(FALSE); | |
773 gnt_box_set_toplevel(GNT_BOX(accounts.window), TRUE); | |
774 gnt_box_set_title(GNT_BOX(accounts.window), _("Accounts")); | |
775 gnt_box_set_pad(GNT_BOX(accounts.window), 0); | |
776 gnt_box_set_alignment(GNT_BOX(accounts.window), GNT_ALIGN_MID); | |
777 gnt_widget_set_name(accounts.window, "accounts"); | |
778 | |
779 gnt_box_add_widget(GNT_BOX(accounts.window), | |
780 gnt_label_new(_("You can enable/disable accounts from the following list."))); | |
781 | |
782 gnt_box_add_widget(GNT_BOX(accounts.window), gnt_line_new(FALSE)); | |
783 | |
784 accounts.tree = gnt_tree_new_with_columns(2); | |
785 GNT_WIDGET_SET_FLAGS(accounts.tree, GNT_WIDGET_NO_BORDER); | |
786 | |
15823 | 787 for (iter = purple_accounts_get_all(); iter; iter = iter->next) |
15818 | 788 { |
15823 | 789 PurpleAccount *account = iter->data; |
15818 | 790 account_add(account); |
791 } | |
792 | |
793 g_signal_connect(G_OBJECT(accounts.tree), "toggled", G_CALLBACK(account_toggled), NULL); | |
23960
84deb53a0a06
Press - or = in the accounts list to reorder accounts.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23085
diff
changeset
|
794 g_signal_connect(G_OBJECT(accounts.tree), "key_pressed", G_CALLBACK(account_list_key_pressed_cb), NULL); |
22213
16ff37f64e29
Update finch to not touch the internals of PurpleAccount. This also includes a change I made to reduce the Cyclomatic Complexity of one of the functions.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22007
diff
changeset
|
795 |
15818 | 796 gnt_tree_set_col_width(GNT_TREE(accounts.tree), 0, 40); |
797 gnt_tree_set_col_width(GNT_TREE(accounts.tree), 1, 10); | |
798 gnt_box_add_widget(GNT_BOX(accounts.window), accounts.tree); | |
799 | |
800 gnt_box_add_widget(GNT_BOX(accounts.window), gnt_line_new(FALSE)); | |
801 | |
802 box = gnt_hbox_new(FALSE); | |
803 | |
804 button = gnt_button_new(_("Add")); | |
805 gnt_box_add_widget(GNT_BOX(box), button); | |
18511
7ee0e0597a26
Add utility function to trigger some button when some key is pressed with
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18432
diff
changeset
|
806 gnt_util_set_trigger_widget(GNT_WIDGET(accounts.tree), GNT_KEY_INS, button); |
15818 | 807 g_signal_connect(G_OBJECT(button), "activate", G_CALLBACK(add_account_cb), NULL); |
808 | |
809 button = gnt_button_new(_("Modify")); | |
810 gnt_box_add_widget(GNT_BOX(box), button); | |
811 g_signal_connect(G_OBJECT(button), "activate", G_CALLBACK(modify_account_cb), accounts.tree); | |
812 | |
813 button = gnt_button_new(_("Delete")); | |
814 gnt_box_add_widget(GNT_BOX(box), button); | |
18511
7ee0e0597a26
Add utility function to trigger some button when some key is pressed with
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18432
diff
changeset
|
815 gnt_util_set_trigger_widget(GNT_WIDGET(accounts.tree), GNT_KEY_DEL, button); |
15818 | 816 g_signal_connect(G_OBJECT(button), "activate", G_CALLBACK(delete_account_cb), accounts.tree); |
22213
16ff37f64e29
Update finch to not touch the internals of PurpleAccount. This also includes a change I made to reduce the Cyclomatic Complexity of one of the functions.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22007
diff
changeset
|
817 |
15818 | 818 gnt_box_add_widget(GNT_BOX(accounts.window), box); |
819 | |
820 g_signal_connect(G_OBJECT(accounts.window), "destroy", G_CALLBACK(reset_accounts_win), NULL); | |
22213
16ff37f64e29
Update finch to not touch the internals of PurpleAccount. This also includes a change I made to reduce the Cyclomatic Complexity of one of the functions.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22007
diff
changeset
|
821 |
15818 | 822 gnt_widget_show(accounts.window); |
823 } | |
824 | |
19944
41cad24fd6df
Instead of just notifying the user about a connection error, give him options
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19938
diff
changeset
|
825 void finch_account_dialog_show(PurpleAccount *account) |
41cad24fd6df
Instead of just notifying the user about a connection error, give him options
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19938
diff
changeset
|
826 { |
41cad24fd6df
Instead of just notifying the user about a connection error, give him options
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19938
diff
changeset
|
827 edit_account(account); |
41cad24fd6df
Instead of just notifying the user about a connection error, give him options
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19938
diff
changeset
|
828 } |
41cad24fd6df
Instead of just notifying the user about a connection error, give him options
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19938
diff
changeset
|
829 |
15818 | 830 static gpointer |
22007
c38d72677c8a
Probe for -Wstrict-prototypes to get some more warnings. I then cleaned up
Richard Laager <rlaager@wiktel.com>
parents:
21570
diff
changeset
|
831 finch_accounts_get_handle(void) |
15818 | 832 { |
833 static int handle; | |
834 | |
835 return &handle; | |
836 } | |
837 | |
838 static void | |
15823 | 839 account_added_callback(PurpleAccount *account) |
15818 | 840 { |
841 if (accounts.window == NULL) | |
842 return; | |
843 account_add(account); | |
844 gnt_widget_draw(accounts.tree); | |
845 } | |
846 | |
847 static void | |
15823 | 848 account_removed_callback(PurpleAccount *account) |
15818 | 849 { |
850 if (accounts.window == NULL) | |
851 return; | |
852 | |
853 gnt_tree_remove(GNT_TREE(accounts.tree), account); | |
854 } | |
855 | |
17419
8c3a3407af58
Finch autoreconnecting (largely copy/paste from pidgin)
Richard Nelson <wabz@pidgin.im>
parents:
17104
diff
changeset
|
856 static void |
8c3a3407af58
Finch autoreconnecting (largely copy/paste from pidgin)
Richard Nelson <wabz@pidgin.im>
parents:
17104
diff
changeset
|
857 account_abled_cb(PurpleAccount *account, gpointer user_data) |
8c3a3407af58
Finch autoreconnecting (largely copy/paste from pidgin)
Richard Nelson <wabz@pidgin.im>
parents:
17104
diff
changeset
|
858 { |
8c3a3407af58
Finch autoreconnecting (largely copy/paste from pidgin)
Richard Nelson <wabz@pidgin.im>
parents:
17104
diff
changeset
|
859 if (accounts.window == NULL) |
8c3a3407af58
Finch autoreconnecting (largely copy/paste from pidgin)
Richard Nelson <wabz@pidgin.im>
parents:
17104
diff
changeset
|
860 return; |
8c3a3407af58
Finch autoreconnecting (largely copy/paste from pidgin)
Richard Nelson <wabz@pidgin.im>
parents:
17104
diff
changeset
|
861 gnt_tree_set_choice(GNT_TREE(accounts.tree), account, |
8c3a3407af58
Finch autoreconnecting (largely copy/paste from pidgin)
Richard Nelson <wabz@pidgin.im>
parents:
17104
diff
changeset
|
862 GPOINTER_TO_INT(user_data)); |
8c3a3407af58
Finch autoreconnecting (largely copy/paste from pidgin)
Richard Nelson <wabz@pidgin.im>
parents:
17104
diff
changeset
|
863 } |
8c3a3407af58
Finch autoreconnecting (largely copy/paste from pidgin)
Richard Nelson <wabz@pidgin.im>
parents:
17104
diff
changeset
|
864 |
15818 | 865 void finch_accounts_init() |
866 { | |
18063
926ccb104da0
disapproval of revision '1411afd7660760db59966c3a9f18e2adab8eb27e'
Richard Laager <rlaager@wiktel.com>
parents:
18058
diff
changeset
|
867 GList *iter; |
15818 | 868 |
15823 | 869 purple_signal_connect(purple_accounts_get_handle(), "account-added", |
870 finch_accounts_get_handle(), PURPLE_CALLBACK(account_added_callback), | |
15818 | 871 NULL); |
15823 | 872 purple_signal_connect(purple_accounts_get_handle(), "account-removed", |
873 finch_accounts_get_handle(), PURPLE_CALLBACK(account_removed_callback), | |
15818 | 874 NULL); |
17419
8c3a3407af58
Finch autoreconnecting (largely copy/paste from pidgin)
Richard Nelson <wabz@pidgin.im>
parents:
17104
diff
changeset
|
875 purple_signal_connect(purple_accounts_get_handle(), "account-disabled", |
8c3a3407af58
Finch autoreconnecting (largely copy/paste from pidgin)
Richard Nelson <wabz@pidgin.im>
parents:
17104
diff
changeset
|
876 finch_accounts_get_handle(), |
8c3a3407af58
Finch autoreconnecting (largely copy/paste from pidgin)
Richard Nelson <wabz@pidgin.im>
parents:
17104
diff
changeset
|
877 PURPLE_CALLBACK(account_abled_cb), GINT_TO_POINTER(FALSE)); |
8c3a3407af58
Finch autoreconnecting (largely copy/paste from pidgin)
Richard Nelson <wabz@pidgin.im>
parents:
17104
diff
changeset
|
878 purple_signal_connect(purple_accounts_get_handle(), "account-enabled", |
8c3a3407af58
Finch autoreconnecting (largely copy/paste from pidgin)
Richard Nelson <wabz@pidgin.im>
parents:
17104
diff
changeset
|
879 finch_accounts_get_handle(), |
8c3a3407af58
Finch autoreconnecting (largely copy/paste from pidgin)
Richard Nelson <wabz@pidgin.im>
parents:
17104
diff
changeset
|
880 PURPLE_CALLBACK(account_abled_cb), GINT_TO_POINTER(TRUE)); |
8c3a3407af58
Finch autoreconnecting (largely copy/paste from pidgin)
Richard Nelson <wabz@pidgin.im>
parents:
17104
diff
changeset
|
881 |
17532
e2e709e5446b
If there's no account at startup, sohw the 'New Account' dialog too.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17523
diff
changeset
|
882 iter = purple_accounts_get_all(); |
e2e709e5446b
If there's no account at startup, sohw the 'New Account' dialog too.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17523
diff
changeset
|
883 if (iter) { |
e2e709e5446b
If there's no account at startup, sohw the 'New Account' dialog too.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17523
diff
changeset
|
884 for (; iter; iter = iter->next) { |
e2e709e5446b
If there's no account at startup, sohw the 'New Account' dialog too.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17523
diff
changeset
|
885 if (purple_account_get_enabled(iter->data, FINCH_UI)) |
e2e709e5446b
If there's no account at startup, sohw the 'New Account' dialog too.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17523
diff
changeset
|
886 break; |
e2e709e5446b
If there's no account at startup, sohw the 'New Account' dialog too.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17523
diff
changeset
|
887 } |
e2e709e5446b
If there's no account at startup, sohw the 'New Account' dialog too.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17523
diff
changeset
|
888 if (!iter) |
e2e709e5446b
If there's no account at startup, sohw the 'New Account' dialog too.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17523
diff
changeset
|
889 finch_accounts_show_all(); |
e2e709e5446b
If there's no account at startup, sohw the 'New Account' dialog too.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17523
diff
changeset
|
890 } else { |
e2e709e5446b
If there's no account at startup, sohw the 'New Account' dialog too.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17523
diff
changeset
|
891 edit_account(NULL); |
e2e709e5446b
If there's no account at startup, sohw the 'New Account' dialog too.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17523
diff
changeset
|
892 finch_accounts_show_all(); |
15818 | 893 } |
894 } | |
895 | |
896 void finch_accounts_uninit() | |
897 { | |
898 if (accounts.window) | |
899 gnt_widget_destroy(accounts.window); | |
900 } | |
901 | |
902 /* The following uiops stuff are copied from gtkaccount.c */ | |
903 typedef struct | |
904 { | |
15823 | 905 PurpleAccount *account; |
15818 | 906 char *username; |
907 char *alias; | |
908 } AddUserData; | |
909 | |
910 static char * | |
15823 | 911 make_info(PurpleAccount *account, PurpleConnection *gc, const char *remote_user, |
15818 | 912 const char *id, const char *alias, const char *msg) |
913 { | |
914 if (msg != NULL && *msg == '\0') | |
915 msg = NULL; | |
916 | |
917 return g_strdup_printf(_("%s%s%s%s has made %s his or her buddy%s%s"), | |
918 remote_user, | |
919 (alias != NULL ? " (" : ""), | |
920 (alias != NULL ? alias : ""), | |
921 (alias != NULL ? ")" : ""), | |
922 (id != NULL | |
923 ? id | |
15823 | 924 : (purple_connection_get_display_name(gc) != NULL |
925 ? purple_connection_get_display_name(gc) | |
926 : purple_account_get_username(account))), | |
15818 | 927 (msg != NULL ? ": " : "."), |
928 (msg != NULL ? msg : "")); | |
929 } | |
930 | |
931 static void | |
15823 | 932 notify_added(PurpleAccount *account, const char *remote_user, |
15818 | 933 const char *id, const char *alias, |
934 const char *msg) | |
935 { | |
936 char *buffer; | |
15823 | 937 PurpleConnection *gc; |
15818 | 938 |
15823 | 939 gc = purple_account_get_connection(account); |
15818 | 940 |
941 buffer = make_info(account, gc, remote_user, id, alias, msg); | |
942 | |
15823 | 943 purple_notify_info(NULL, NULL, buffer, NULL); |
15818 | 944 |
945 g_free(buffer); | |
946 } | |
947 | |
948 static void | |
949 free_add_user_data(AddUserData *data) | |
950 { | |
951 g_free(data->username); | |
952 | |
953 if (data->alias != NULL) | |
954 g_free(data->alias); | |
955 | |
956 g_free(data); | |
957 } | |
958 | |
959 static void | |
960 add_user_cb(AddUserData *data) | |
961 { | |
15823 | 962 PurpleConnection *gc = purple_account_get_connection(data->account); |
15818 | 963 |
18063
926ccb104da0
disapproval of revision '1411afd7660760db59966c3a9f18e2adab8eb27e'
Richard Laager <rlaager@wiktel.com>
parents:
18058
diff
changeset
|
964 if (g_list_find(purple_connections_get_all(), gc)) |
15818 | 965 { |
15823 | 966 purple_blist_request_add_buddy(data->account, data->username, |
15818 | 967 NULL, data->alias); |
968 } | |
969 | |
970 free_add_user_data(data); | |
971 } | |
972 | |
973 static void | |
15823 | 974 request_add(PurpleAccount *account, const char *remote_user, |
15818 | 975 const char *id, const char *alias, |
976 const char *msg) | |
977 { | |
978 char *buffer; | |
15823 | 979 PurpleConnection *gc; |
15818 | 980 AddUserData *data; |
981 | |
15823 | 982 gc = purple_account_get_connection(account); |
15818 | 983 |
984 data = g_new0(AddUserData, 1); | |
985 data->account = account; | |
986 data->username = g_strdup(remote_user); | |
987 data->alias = (alias != NULL ? g_strdup(alias) : NULL); | |
988 | |
989 buffer = make_info(account, gc, remote_user, id, alias, msg); | |
21570
dccfd999ffe7
merge of '76c07fcb434a2a7aa289734bb221c171a376d73b'
Evan Schoenberg <evan.s@dreskin.net>
parents:
21244
diff
changeset
|
990 purple_request_action(NULL, NULL, _("Add buddy to your list?"), |
16442
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16194
diff
changeset
|
991 buffer, PURPLE_DEFAULT_ACTION_NONE, |
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16194
diff
changeset
|
992 account, remote_user, NULL, |
21570
dccfd999ffe7
merge of '76c07fcb434a2a7aa289734bb221c171a376d73b'
Evan Schoenberg <evan.s@dreskin.net>
parents:
21244
diff
changeset
|
993 data, 2, |
15818 | 994 _("Add"), G_CALLBACK(add_user_cb), |
995 _("Cancel"), G_CALLBACK(free_add_user_data)); | |
996 g_free(buffer); | |
997 } | |
998 | |
999 /* Copied from gtkaccount.c */ | |
1000 typedef struct { | |
15823 | 1001 PurpleAccountRequestAuthorizationCb auth_cb; |
1002 PurpleAccountRequestAuthorizationCb deny_cb; | |
15818 | 1003 void *data; |
1004 char *username; | |
1005 char *alias; | |
15823 | 1006 PurpleAccount *account; |
15818 | 1007 } auth_and_add; |
1008 | |
1009 static void | |
17520
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1010 free_auth_and_add(auth_and_add *aa) |
15818 | 1011 { |
1012 g_free(aa->username); | |
1013 g_free(aa->alias); | |
1014 g_free(aa); | |
1015 } | |
1016 | |
1017 static void | |
17520
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1018 authorize_and_add_cb(auth_and_add *aa) |
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1019 { |
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1020 aa->auth_cb(aa->data); |
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1021 purple_blist_request_add_buddy(aa->account, aa->username, |
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1022 NULL, aa->alias); |
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1023 } |
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1024 |
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1025 static void |
15818 | 1026 deny_no_add_cb(auth_and_add *aa) |
1027 { | |
1028 aa->deny_cb(aa->data); | |
1029 } | |
1030 | |
1031 static void * | |
18829
7a594763c229
Correct the types of the authorize_cb and deny_cb parameters of
Will Thompson <will.thompson@collabora.co.uk>
parents:
18516
diff
changeset
|
1032 finch_request_authorize(PurpleAccount *account, |
7a594763c229
Correct the types of the authorize_cb and deny_cb parameters of
Will Thompson <will.thompson@collabora.co.uk>
parents:
18516
diff
changeset
|
1033 const char *remote_user, |
7a594763c229
Correct the types of the authorize_cb and deny_cb parameters of
Will Thompson <will.thompson@collabora.co.uk>
parents:
18516
diff
changeset
|
1034 const char *id, |
7a594763c229
Correct the types of the authorize_cb and deny_cb parameters of
Will Thompson <will.thompson@collabora.co.uk>
parents:
18516
diff
changeset
|
1035 const char *alias, |
7a594763c229
Correct the types of the authorize_cb and deny_cb parameters of
Will Thompson <will.thompson@collabora.co.uk>
parents:
18516
diff
changeset
|
1036 const char *message, |
7a594763c229
Correct the types of the authorize_cb and deny_cb parameters of
Will Thompson <will.thompson@collabora.co.uk>
parents:
18516
diff
changeset
|
1037 gboolean on_list, |
7a594763c229
Correct the types of the authorize_cb and deny_cb parameters of
Will Thompson <will.thompson@collabora.co.uk>
parents:
18516
diff
changeset
|
1038 PurpleAccountRequestAuthorizationCb auth_cb, |
7a594763c229
Correct the types of the authorize_cb and deny_cb parameters of
Will Thompson <will.thompson@collabora.co.uk>
parents:
18516
diff
changeset
|
1039 PurpleAccountRequestAuthorizationCb deny_cb, |
7a594763c229
Correct the types of the authorize_cb and deny_cb parameters of
Will Thompson <will.thompson@collabora.co.uk>
parents:
18516
diff
changeset
|
1040 void *user_data) |
15818 | 1041 { |
1042 char *buffer; | |
15823 | 1043 PurpleConnection *gc; |
15818 | 1044 void *uihandle; |
1045 | |
15823 | 1046 gc = purple_account_get_connection(account); |
15818 | 1047 if (message != NULL && *message == '\0') |
1048 message = NULL; | |
1049 | |
18516
15f0c935e699
I changed a string during a string freeze\! Sorry\!
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18511
diff
changeset
|
1050 buffer = g_strdup_printf(_("%s%s%s%s wants to add %s to his or her buddy list%s%s"), |
15818 | 1051 remote_user, |
1052 (alias != NULL ? " (" : ""), | |
1053 (alias != NULL ? alias : ""), | |
1054 (alias != NULL ? ")" : ""), | |
1055 (id != NULL | |
1056 ? id | |
15823 | 1057 : (purple_connection_get_display_name(gc) != NULL |
1058 ? purple_connection_get_display_name(gc) | |
1059 : purple_account_get_username(account))), | |
18516
15f0c935e699
I changed a string during a string freeze\! Sorry\!
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18511
diff
changeset
|
1060 (message != NULL ? ": " : "."), |
15818 | 1061 (message != NULL ? message : "")); |
1062 if (!on_list) { | |
17521
7f652ef12ed6
Remove the confusing 'OK' button from the auth dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17520
diff
changeset
|
1063 GntWidget *widget; |
7f652ef12ed6
Remove the confusing 'OK' button from the auth dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17520
diff
changeset
|
1064 GList *iter; |
15818 | 1065 auth_and_add *aa = g_new(auth_and_add, 1); |
17521
7f652ef12ed6
Remove the confusing 'OK' button from the auth dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17520
diff
changeset
|
1066 |
18829
7a594763c229
Correct the types of the authorize_cb and deny_cb parameters of
Will Thompson <will.thompson@collabora.co.uk>
parents:
18516
diff
changeset
|
1067 aa->auth_cb = auth_cb; |
7a594763c229
Correct the types of the authorize_cb and deny_cb parameters of
Will Thompson <will.thompson@collabora.co.uk>
parents:
18516
diff
changeset
|
1068 aa->deny_cb = deny_cb; |
15818 | 1069 aa->data = user_data; |
1070 aa->username = g_strdup(remote_user); | |
1071 aa->alias = g_strdup(alias); | |
1072 aa->account = account; | |
17520
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1073 |
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1074 uihandle = gnt_vwindow_new(FALSE); |
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1075 gnt_box_set_title(GNT_BOX(uihandle), _("Authorize buddy?")); |
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1076 gnt_box_set_pad(GNT_BOX(uihandle), 0); |
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1077 |
21570
dccfd999ffe7
merge of '76c07fcb434a2a7aa289734bb221c171a376d73b'
Evan Schoenberg <evan.s@dreskin.net>
parents:
21244
diff
changeset
|
1078 widget = purple_request_action(NULL, _("Authorize buddy?"), buffer, NULL, |
16442
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16194
diff
changeset
|
1079 PURPLE_DEFAULT_ACTION_NONE, |
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16194
diff
changeset
|
1080 account, remote_user, NULL, |
21570
dccfd999ffe7
merge of '76c07fcb434a2a7aa289734bb221c171a376d73b'
Evan Schoenberg <evan.s@dreskin.net>
parents:
21244
diff
changeset
|
1081 aa, 2, |
15818 | 1082 _("Authorize"), authorize_and_add_cb, |
1083 _("Deny"), deny_no_add_cb); | |
17520
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1084 gnt_screen_release(widget); |
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1085 gnt_box_set_toplevel(GNT_BOX(widget), FALSE); |
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1086 gnt_box_add_widget(GNT_BOX(uihandle), widget); |
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1087 |
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1088 gnt_box_add_widget(GNT_BOX(uihandle), gnt_hline_new()); |
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1089 |
22213
16ff37f64e29
Update finch to not touch the internals of PurpleAccount. This also includes a change I made to reduce the Cyclomatic Complexity of one of the functions.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22007
diff
changeset
|
1090 widget = finch_retrieve_user_info(purple_account_get_connection(account), remote_user); |
17521
7f652ef12ed6
Remove the confusing 'OK' button from the auth dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17520
diff
changeset
|
1091 for (iter = GNT_BOX(widget)->list; iter; iter = iter->next) { |
7f652ef12ed6
Remove the confusing 'OK' button from the auth dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17520
diff
changeset
|
1092 if (GNT_IS_BUTTON(iter->data)) { |
7f652ef12ed6
Remove the confusing 'OK' button from the auth dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17520
diff
changeset
|
1093 gnt_widget_destroy(iter->data); |
7f652ef12ed6
Remove the confusing 'OK' button from the auth dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17520
diff
changeset
|
1094 gnt_box_remove(GNT_BOX(widget), iter->data); |
7f652ef12ed6
Remove the confusing 'OK' button from the auth dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17520
diff
changeset
|
1095 break; |
7f652ef12ed6
Remove the confusing 'OK' button from the auth dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17520
diff
changeset
|
1096 } |
7f652ef12ed6
Remove the confusing 'OK' button from the auth dialog.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17520
diff
changeset
|
1097 } |
17520
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1098 gnt_box_set_toplevel(GNT_BOX(widget), FALSE); |
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1099 gnt_screen_release(widget); |
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1100 gnt_box_add_widget(GNT_BOX(uihandle), widget); |
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1101 gnt_widget_show(uihandle); |
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1102 |
464840043c66
Show information about the user requesting authorization.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
17104
diff
changeset
|
1103 g_signal_connect_swapped(G_OBJECT(uihandle), "destroy", G_CALLBACK(free_auth_and_add), aa); |
15818 | 1104 } else { |
21570
dccfd999ffe7
merge of '76c07fcb434a2a7aa289734bb221c171a376d73b'
Evan Schoenberg <evan.s@dreskin.net>
parents:
21244
diff
changeset
|
1105 uihandle = purple_request_action(NULL, _("Authorize buddy?"), buffer, NULL, |
16442
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16194
diff
changeset
|
1106 PURPLE_DEFAULT_ACTION_NONE, |
08db93bbd798
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evan.s@dreskin.net>
parents:
16194
diff
changeset
|
1107 account, remote_user, NULL, |
21570
dccfd999ffe7
merge of '76c07fcb434a2a7aa289734bb221c171a376d73b'
Evan Schoenberg <evan.s@dreskin.net>
parents:
21244
diff
changeset
|
1108 user_data, 2, |
15818 | 1109 _("Authorize"), auth_cb, |
1110 _("Deny"), deny_cb); | |
1111 } | |
24541
024818afb013
A patch to clean up authorization request related stuff. Fixes #7695.
Paul Aurich <paul@darkrain42.org>
parents:
23983
diff
changeset
|
1112 g_signal_connect(G_OBJECT(uihandle), "destroy", |
024818afb013
A patch to clean up authorization request related stuff. Fixes #7695.
Paul Aurich <paul@darkrain42.org>
parents:
23983
diff
changeset
|
1113 G_CALLBACK(purple_account_request_close), NULL); |
15818 | 1114 g_free(buffer); |
1115 return uihandle; | |
1116 } | |
1117 | |
1118 static void | |
1119 finch_request_close(void *uihandle) | |
1120 { | |
15823 | 1121 purple_request_close(PURPLE_REQUEST_ACTION, uihandle); |
15818 | 1122 } |
1123 | |
15823 | 1124 static PurpleAccountUiOps ui_ops = |
15818 | 1125 { |
17104
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
16465
diff
changeset
|
1126 notify_added, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
16465
diff
changeset
|
1127 NULL, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
16465
diff
changeset
|
1128 request_add, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
16465
diff
changeset
|
1129 finch_request_authorize, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
16465
diff
changeset
|
1130 finch_request_close, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
16465
diff
changeset
|
1131 NULL, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
16465
diff
changeset
|
1132 NULL, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
16465
diff
changeset
|
1133 NULL, |
46f2f86e08e4
Death to more futuristic struct initialization. This should be the last.
Richard Laager <rlaager@wiktel.com>
parents:
16465
diff
changeset
|
1134 NULL |
15818 | 1135 }; |
1136 | |
15823 | 1137 PurpleAccountUiOps *finch_accounts_get_ui_ops() |
15818 | 1138 { |
1139 return &ui_ops; | |
1140 } | |
1141 |