Mercurial > pidgin.yaz
annotate src/gtkpounce.c @ 5717:1d140b31d4b3
[gaim-migrate @ 6138]
this almost kinda sorta works. It's the wonderful connecting dialog
that shows you how far along you are in connecting. This also gets rid of
the ever-present signon dialog.
Oh, and I ended up digging through header hell and changing a lot. Hopefully
I didn't break anything too badly.
committer: Tailor Script <tailor@pidgin.im>
author | Nathan Walp <nwalp@pidgin.im> |
---|---|
date | Tue, 03 Jun 2003 19:55:47 +0000 |
parents | dae79aefac8d |
children | 2fa4aa9c1885 |
rev | line source |
---|---|
5032 | 1 /** |
2 * @file gtkpounce.h GTK+ buddy pounce API | |
3 * | |
4 * gaim | |
5 * | |
6 * Copyright (C) 2003, Christian Hammond <chipx86@gnupdate.org> | |
7 * | |
8 * This program is free software; you can redistribute it and/or modify | |
9 * it under the terms of the GNU General Public License as published by | |
10 * the Free Software Foundation; either version 2 of the License, or | |
11 * (at your option) any later version. | |
12 * | |
13 * This program is distributed in the hope that it will be useful, | |
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 * GNU General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU General Public License | |
19 * along with this program; if not, write to the Free Software | |
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
21 * | |
22 */ | |
5054 | 23 #include <unistd.h> |
5319
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
24 #include <string.h> |
5032 | 25 #include "gaim.h" |
26 #include "gtkpounce.h" | |
5228
1a53330dfd34
[gaim-migrate @ 5598]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
27 #include "gtkblist.h" |
5032 | 28 #include "prpl.h" |
29 #include "sound.h" | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5319
diff
changeset
|
30 #include "notify.h" |
5032 | 31 |
32 struct gaim_gtkpounce_dialog | |
33 { | |
34 /* Pounce data */ | |
35 struct gaim_pounce *pounce; | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5530
diff
changeset
|
36 GaimAccount *account; |
5032 | 37 |
38 /* The window */ | |
39 GtkWidget *window; | |
40 | |
41 /* Pounce Who */ | |
42 GtkWidget *account_menu; | |
43 GtkWidget *buddy_entry; | |
44 | |
45 /* Pounce When */ | |
46 GtkWidget *signon; | |
47 GtkWidget *signoff; | |
48 GtkWidget *away; | |
49 GtkWidget *away_return; | |
50 GtkWidget *idle; | |
51 GtkWidget *idle_return; | |
52 GtkWidget *typing; | |
53 GtkWidget *stop_typing; | |
54 | |
55 /* Pounce Action */ | |
56 GtkWidget *open_win; | |
57 GtkWidget *popup; | |
58 GtkWidget *send_msg; | |
59 GtkWidget *send_msg_entry; | |
60 GtkWidget *exec_cmd; | |
61 GtkWidget *exec_cmd_entry; | |
5319
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
62 GtkWidget *exec_cmd_browse; |
5032 | 63 GtkWidget *play_sound; |
64 GtkWidget *play_sound_entry; | |
5319
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
65 GtkWidget *play_sound_browse; |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
66 GtkWidget *play_sound_test; |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
67 |
5032 | 68 GtkWidget *save_pounce; |
69 }; | |
70 | |
71 /************************************************************************** | |
72 * Callbacks | |
73 **************************************************************************/ | |
74 static gint | |
75 delete_win_cb(GtkWidget *w, GdkEventAny *e, | |
76 struct gaim_gtkpounce_dialog *dialog) | |
77 { | |
78 gtk_widget_destroy(dialog->window); | |
79 g_free(dialog); | |
80 | |
81 return TRUE; | |
82 } | |
83 | |
84 static void | |
5052
6a7759f63766
[gaim-migrate @ 5401]
Christian Hammond <chipx86@chipx86.com>
parents:
5051
diff
changeset
|
85 delete_cb(GtkWidget *w, struct gaim_gtkpounce_dialog *dialog) |
6a7759f63766
[gaim-migrate @ 5401]
Christian Hammond <chipx86@chipx86.com>
parents:
5051
diff
changeset
|
86 { |
6a7759f63766
[gaim-migrate @ 5401]
Christian Hammond <chipx86@chipx86.com>
parents:
5051
diff
changeset
|
87 gaim_pounce_destroy(dialog->pounce); |
6a7759f63766
[gaim-migrate @ 5401]
Christian Hammond <chipx86@chipx86.com>
parents:
5051
diff
changeset
|
88 |
6a7759f63766
[gaim-migrate @ 5401]
Christian Hammond <chipx86@chipx86.com>
parents:
5051
diff
changeset
|
89 delete_win_cb(NULL, NULL, dialog); |
6a7759f63766
[gaim-migrate @ 5401]
Christian Hammond <chipx86@chipx86.com>
parents:
5051
diff
changeset
|
90 } |
6a7759f63766
[gaim-migrate @ 5401]
Christian Hammond <chipx86@chipx86.com>
parents:
5051
diff
changeset
|
91 |
6a7759f63766
[gaim-migrate @ 5401]
Christian Hammond <chipx86@chipx86.com>
parents:
5051
diff
changeset
|
92 static void |
5032 | 93 cancel_cb(GtkWidget *w, struct gaim_gtkpounce_dialog *dialog) |
94 { | |
95 delete_win_cb(NULL, NULL, dialog); | |
96 } | |
97 | |
5319
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
98 static void |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
99 pounce_update_entryfields(GtkWidget *w, gpointer data) |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
100 { |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
101 const char *selected_filename; |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
102 GHashTable *args; |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
103 |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
104 args = (GHashTable *) data; |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
105 |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
106 selected_filename = gtk_file_selection_get_filename(GTK_FILE_SELECTION(g_hash_table_lookup(args, "pounce_file_selector"))); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
107 if (selected_filename != NULL) |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
108 gtk_entry_set_text(GTK_ENTRY(g_hash_table_lookup(args, "entry")),selected_filename); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
109 |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
110 g_free(args); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
111 } |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
112 |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
113 static void |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
114 pounce_file_selector(GtkWidget *w, gpointer data) |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
115 { |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
116 GtkWidget *pounce_file_selector; |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
117 GtkWidget *entry; |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
118 GHashTable *args; |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
119 |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
120 entry = (GtkWidget *) data; |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
121 |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
122 pounce_file_selector = gtk_file_selection_new(_("Select a file")); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
123 gtk_file_selection_set_filename(GTK_FILE_SELECTION(pounce_file_selector), gtk_entry_get_text(GTK_ENTRY(entry))); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
124 gtk_file_selection_hide_fileop_buttons(GTK_FILE_SELECTION(pounce_file_selector)); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
125 gtk_file_selection_set_select_multiple(GTK_FILE_SELECTION(pounce_file_selector), FALSE); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
126 |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
127 args = g_hash_table_new(g_str_hash,g_str_equal); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
128 g_hash_table_insert(args, "pounce_file_selector", (gpointer) pounce_file_selector); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
129 g_hash_table_insert(args, "entry", (gpointer) entry); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
130 |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
131 g_signal_connect(GTK_OBJECT(GTK_FILE_SELECTION(pounce_file_selector)->ok_button), |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
132 "clicked", G_CALLBACK(pounce_update_entryfields), (gpointer) args); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
133 |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
134 g_signal_connect_swapped(G_OBJECT(GTK_FILE_SELECTION(pounce_file_selector)->ok_button), |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
135 "clicked", G_CALLBACK(gtk_widget_destroy), (gpointer) pounce_file_selector); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
136 g_signal_connect_swapped(G_OBJECT(GTK_FILE_SELECTION(pounce_file_selector)->cancel_button), |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
137 "clicked", G_CALLBACK(gtk_widget_destroy), (gpointer) pounce_file_selector); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
138 |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
139 gtk_widget_show(pounce_file_selector); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
140 } |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
141 |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
142 static void |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
143 pounce_test_sound(GtkWidget *w, gpointer data) |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
144 { |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
145 const char *filename; |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
146 GtkWidget *entry; |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
147 |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
148 entry = (GtkWidget *) data; |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
149 |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
150 filename = gtk_entry_get_text(GTK_ENTRY(entry)); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
151 if ((filename != NULL) && (strlen(filename) > 0)) |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
152 gaim_sound_play_file((char *) filename); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
153 else |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
154 gaim_sound_play_event(GAIM_SOUND_POUNCE_DEFAULT); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
155 } |
5032 | 156 |
157 static void | |
158 save_pounce_cb(GtkWidget *w, struct gaim_gtkpounce_dialog *dialog) | |
159 { | |
160 const char *name; | |
161 const char *message, *command, *sound; | |
162 struct gaim_buddy_list *blist; | |
163 struct gaim_gtk_buddy_list *gtkblist; | |
164 GaimPounceEvent events = GAIM_POUNCE_NONE; | |
165 GaimGtkPounceAction actions = GAIM_GTKPOUNCE_NONE; | |
166 gboolean save; | |
167 | |
168 name = gtk_entry_get_text(GTK_ENTRY(dialog->buddy_entry)); | |
169 | |
170 if (*name == '\0') { | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5319
diff
changeset
|
171 gaim_notify_error(NULL, NULL, |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5319
diff
changeset
|
172 _("Please enter a buddy to pounce."), NULL); |
5032 | 173 return; |
174 } | |
175 | |
176 /* Events */ | |
177 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(dialog->signon))) | |
178 events |= GAIM_POUNCE_SIGNON; | |
179 | |
180 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(dialog->signoff))) | |
181 events |= GAIM_POUNCE_SIGNOFF; | |
182 | |
183 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(dialog->away))) | |
184 events |= GAIM_POUNCE_AWAY; | |
185 | |
186 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(dialog->away_return))) | |
187 events |= GAIM_POUNCE_AWAY_RETURN; | |
188 | |
189 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(dialog->idle))) | |
190 events |= GAIM_POUNCE_IDLE; | |
191 | |
192 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(dialog->idle_return))) | |
193 events |= GAIM_POUNCE_IDLE_RETURN; | |
194 | |
195 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(dialog->typing))) | |
196 events |= GAIM_POUNCE_TYPING; | |
197 | |
198 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(dialog->stop_typing))) | |
199 events |= GAIM_POUNCE_TYPING_STOPPED; | |
200 | |
201 | |
202 /* Actions */ | |
203 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(dialog->open_win))) | |
204 actions |= GAIM_GTKPOUNCE_OPEN_WIN; | |
205 | |
206 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(dialog->popup))) | |
207 actions |= GAIM_GTKPOUNCE_POPUP; | |
208 | |
209 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(dialog->send_msg))) | |
210 actions |= GAIM_GTKPOUNCE_SEND_MSG; | |
211 | |
212 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(dialog->exec_cmd))) | |
213 actions |= GAIM_GTKPOUNCE_EXEC_CMD; | |
214 | |
215 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(dialog->play_sound))) | |
216 actions |= GAIM_GTKPOUNCE_PLAY_SOUND; | |
217 | |
218 save = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(dialog->save_pounce)); | |
219 | |
220 /* Data fields */ | |
221 message = gtk_entry_get_text(GTK_ENTRY(dialog->send_msg_entry)); | |
222 command = gtk_entry_get_text(GTK_ENTRY(dialog->exec_cmd_entry)); | |
223 sound = gtk_entry_get_text(GTK_ENTRY(dialog->play_sound_entry)); | |
224 | |
225 if (*message == '\0') message = NULL; | |
226 if (*command == '\0') command = NULL; | |
227 if (*sound == '\0') sound = NULL; | |
228 | |
229 if (dialog->pounce == NULL) | |
230 { | |
231 gaim_gtkpounce_new(dialog->account, name, events, actions, | |
232 message, command, sound, save); | |
233 } | |
234 else | |
235 { | |
236 struct gaim_gtkpounce_data *pounce_data; | |
237 | |
238 gaim_pounce_set_events(dialog->pounce, events); | |
239 gaim_pounce_set_pouncer(dialog->pounce, dialog->account); | |
240 gaim_pounce_set_pouncee(dialog->pounce, name); | |
241 | |
242 pounce_data = GAIM_GTKPOUNCE(dialog->pounce); | |
243 | |
244 if (pounce_data->message != NULL) g_free(pounce_data->message); | |
245 if (pounce_data->command != NULL) g_free(pounce_data->command); | |
246 if (pounce_data->sound != NULL) g_free(pounce_data->sound); | |
247 | |
248 pounce_data->message = (message == NULL ? NULL : g_strdup(message)); | |
249 pounce_data->command = (command == NULL ? NULL : g_strdup(command)); | |
250 pounce_data->sound = (sound == NULL ? NULL : g_strdup(sound)); | |
251 | |
252 pounce_data->actions = actions; | |
253 pounce_data->save = save; | |
254 } | |
255 | |
256 delete_win_cb(NULL, NULL, dialog); | |
257 /* Rebuild the pounce menu */ | |
258 blist = gaim_get_blist(); | |
259 | |
260 if (GAIM_IS_GTK_BLIST(blist)) | |
261 { | |
262 gtkblist = GAIM_GTK_BLIST(blist); | |
263 | |
264 gaim_gtkpounce_menu_build(gtkblist->bpmenu); | |
265 } | |
266 } | |
267 | |
5054 | 268 static void |
5032 | 269 pounce_choose_cb(GtkWidget *item, struct gaim_gtkpounce_dialog *dialog) |
270 { | |
271 dialog->account = g_object_get_data(G_OBJECT(item), "user_data"); | |
272 } | |
273 | |
274 static GtkWidget * | |
275 pounce_user_menu(struct gaim_gtkpounce_dialog *dialog) | |
276 { | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5530
diff
changeset
|
277 GaimAccount *account; |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5161
diff
changeset
|
278 GaimPlugin *prpl; |
5032 | 279 GtkWidget *opt_menu; |
280 GtkWidget *menu; | |
281 GtkWidget *item; | |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
282 GList *l; |
5032 | 283 char buf[2048]; |
5054 | 284 int count, place = 0; |
5032 | 285 |
286 opt_menu = gtk_option_menu_new(); | |
287 menu = gtk_menu_new(); | |
288 | |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
289 for (l = gaim_accounts_get_all(), count = 0; |
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
290 l != NULL; |
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
291 l = l->next, count++) { |
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
292 |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5530
diff
changeset
|
293 account = (GaimAccount *)l->data; |
5032 | 294 |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5161
diff
changeset
|
295 prpl = gaim_find_prpl(account->protocol); |
5032 | 296 |
297 g_snprintf(buf, sizeof(buf), "%s (%s)", account->username, | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5161
diff
changeset
|
298 (prpl && prpl->info->name) |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5161
diff
changeset
|
299 ? prpl->info->name : _("Unknown")); |
5032 | 300 |
301 item = gtk_menu_item_new_with_label(buf); | |
302 g_object_set_data(G_OBJECT(item), "user_data", account); | |
303 | |
304 g_signal_connect(G_OBJECT(item), "activate", | |
305 G_CALLBACK(pounce_choose_cb), dialog); | |
306 | |
307 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item); | |
308 gtk_widget_show(item); | |
309 | |
310 if (dialog->account == account) { | |
311 gtk_menu_item_activate(GTK_MENU_ITEM(item)); | |
312 place = count; | |
313 } | |
314 } | |
315 | |
316 gtk_option_menu_set_menu(GTK_OPTION_MENU(opt_menu), menu); | |
317 gtk_option_menu_set_history(GTK_OPTION_MENU(opt_menu), place); | |
318 | |
319 return opt_menu; | |
320 } | |
321 | |
322 static void | |
323 pounce_cb(struct gaim_pounce *pounce, GaimPounceEvent events, void *data) | |
324 { | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5593
diff
changeset
|
325 GaimConversation *conv; |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5530
diff
changeset
|
326 GaimAccount *account; |
5032 | 327 struct gaim_gtkpounce_data *pounce_data; |
328 const char *pouncee; | |
329 | |
330 pounce_data = (struct gaim_gtkpounce_data *)data; | |
331 pouncee = gaim_pounce_get_pouncee(pounce); | |
332 account = gaim_pounce_get_pouncer(pounce); | |
333 | |
334 if (pounce_data->actions & GAIM_GTKPOUNCE_OPEN_WIN) { | |
335 conv = gaim_find_conversation(pouncee); | |
336 | |
337 if (conv == NULL) | |
338 conv = gaim_conversation_new(GAIM_CONV_IM, account, pouncee); | |
339 } | |
340 | |
341 if (pounce_data->actions & GAIM_GTKPOUNCE_POPUP) { | |
342 char tmp[1024]; | |
343 | |
344 g_snprintf(tmp, sizeof(tmp), | |
345 (events & GAIM_POUNCE_TYPING) ? _("%s has started typing to you") : | |
346 (events & GAIM_POUNCE_SIGNON) ? _("%s has signed on") : | |
347 (events & GAIM_POUNCE_IDLE_RETURN) ? _("%s has returned from being idle") : | |
348 (events & GAIM_POUNCE_AWAY_RETURN) ? _("%s has returned from being away") : | |
349 (events & GAIM_POUNCE_TYPING_STOPPED) ? _("%s has stopped typing to you") : | |
350 (events & GAIM_POUNCE_SIGNOFF) ? _("%s has signed off") : | |
351 (events & GAIM_POUNCE_IDLE) ? _("%s has become idle") : | |
352 (events & GAIM_POUNCE_AWAY) ? _("%s has gone away.") : | |
353 _("Unknown pounce event. Please report this!"), | |
354 pouncee); | |
355 | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5319
diff
changeset
|
356 gaim_notify_info(NULL, NULL, tmp, NULL); |
5032 | 357 } |
358 | |
359 if (pounce_data->actions & GAIM_GTKPOUNCE_SEND_MSG && | |
5051
b3d9195777bb
[gaim-migrate @ 5400]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
360 pounce_data->message != NULL) { |
5032 | 361 |
362 conv = gaim_find_conversation(pouncee); | |
363 | |
364 if (conv == NULL) | |
365 conv = gaim_conversation_new(GAIM_CONV_IM, account, pouncee); | |
366 | |
367 gaim_conversation_write(conv, NULL, pounce_data->message, -1, | |
368 WFLAG_SEND, time(NULL)); | |
369 | |
370 serv_send_im(account->gc, (char *)pouncee, pounce_data->message, -1, 0); | |
371 } | |
372 | |
373 if (pounce_data->actions & GAIM_GTKPOUNCE_EXEC_CMD && | |
5051
b3d9195777bb
[gaim-migrate @ 5400]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
374 pounce_data->command != NULL) { |
5032 | 375 #ifndef _WIN32 |
376 int pid = fork(); | |
377 | |
378 if (pid == 0) { | |
379 char *args[4]; | |
380 | |
381 args[0] = "sh"; | |
382 args[1] = "-c"; | |
383 args[2] = pounce_data->command; | |
384 args[3] = NULL; | |
385 | |
386 execvp(args[0], args); | |
387 | |
388 _exit(0); | |
389 } | |
390 #endif /* _WIN32 */ | |
391 } | |
392 | |
393 if (pounce_data->actions & GAIM_GTKPOUNCE_PLAY_SOUND) { | |
5051
b3d9195777bb
[gaim-migrate @ 5400]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
394 if (pounce_data->sound != NULL) |
5032 | 395 gaim_sound_play_file(pounce_data->sound); |
396 else | |
397 gaim_sound_play_event(GAIM_SOUND_POUNCE_DEFAULT); | |
398 } | |
399 | |
400 if (!pounce_data->save) | |
401 gaim_pounce_destroy(pounce); | |
402 } | |
403 | |
404 static void | |
405 free_pounce(void *data) | |
406 { | |
407 struct gaim_gtkpounce_data *pounce_data; | |
408 struct gaim_buddy_list *blist; | |
409 struct gaim_gtk_buddy_list *gtkblist; | |
410 | |
411 pounce_data = (struct gaim_gtkpounce_data *)data; | |
412 | |
413 if (pounce_data->message != NULL) g_free(pounce_data->message); | |
414 if (pounce_data->command != NULL) g_free(pounce_data->command); | |
415 if (pounce_data->sound != NULL) g_free(pounce_data->sound); | |
416 | |
417 g_free(data); | |
418 | |
419 /* Rebuild the pounce menu */ | |
420 blist = gaim_get_blist(); | |
421 | |
422 if (GAIM_IS_GTK_BLIST(blist)) | |
423 { | |
424 gtkblist = GAIM_GTK_BLIST(blist); | |
425 | |
426 gaim_gtkpounce_menu_build(gtkblist->bpmenu); | |
427 } | |
428 } | |
429 | |
430 struct gaim_pounce * | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5530
diff
changeset
|
431 gaim_gtkpounce_new(GaimAccount *pouncer, const char *pouncee, |
5032 | 432 GaimPounceEvent events, GaimGtkPounceAction actions, |
433 const char *message, const char *command, | |
434 const char *sound, gboolean save) | |
435 { | |
436 struct gaim_gtkpounce_data *data; | |
437 | |
438 data = g_new0(struct gaim_gtkpounce_data, 1); | |
439 | |
440 data->actions = actions; | |
441 | |
442 if (message != NULL) data->message = g_strdup(message); | |
443 if (command != NULL) data->command = g_strdup(command); | |
444 if (sound != NULL) data->sound = g_strdup(sound); | |
445 | |
446 data->save = save; | |
447 | |
448 return gaim_pounce_new(pouncer, pouncee, events, pounce_cb, data, | |
449 free_pounce); | |
450 } | |
451 | |
452 void | |
453 gaim_gtkpounce_dialog_show(struct buddy *buddy, | |
454 struct gaim_pounce *cur_pounce) | |
455 { | |
456 struct gaim_gtkpounce_dialog *dialog; | |
457 GtkWidget *window; | |
458 GtkWidget *label; | |
459 GtkWidget *bbox; | |
460 GtkWidget *vbox1, *vbox2; | |
461 GtkWidget *hbox; | |
462 GtkWidget *button; | |
463 GtkWidget *frame; | |
464 GtkWidget *table; | |
465 GtkWidget *sep; | |
466 GtkSizeGroup *sg; | |
5319
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
467 GPtrArray *sound_widgets; |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
468 GPtrArray *exec_widgets; |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
469 |
5032 | 470 dialog = g_new0(struct gaim_gtkpounce_dialog, 1); |
471 | |
472 if (cur_pounce != NULL) { | |
473 dialog->pounce = cur_pounce; | |
474 dialog->account = gaim_pounce_get_pouncer(cur_pounce); | |
475 } | |
476 else if (buddy != NULL) { | |
477 dialog->pounce = NULL; | |
478 dialog->account = buddy->account; | |
479 } | |
480 else { | |
481 dialog->pounce = NULL; | |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
482 dialog->account = gaim_accounts_get_all()->data; |
5032 | 483 } |
484 | |
485 sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); | |
486 | |
487 /* Create the window. */ | |
488 dialog->window = window = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
489 gtk_window_set_type_hint(GTK_WINDOW(window), GDK_WINDOW_TYPE_HINT_DIALOG); | |
490 gtk_window_set_role(GTK_WINDOW(window), "buddy_pounce"); | |
491 gtk_window_set_resizable(GTK_WINDOW(window), FALSE); | |
492 gtk_window_set_title(GTK_WINDOW(window), | |
493 (cur_pounce == NULL | |
494 ? _("New Buddy Pounce") : _("Edit Buddy Pounce"))); | |
495 | |
496 gtk_container_set_border_width(GTK_CONTAINER(window), 12); | |
497 gtk_widget_realize(window); | |
498 | |
499 g_signal_connect(G_OBJECT(window), "delete_event", | |
500 G_CALLBACK(delete_win_cb), dialog); | |
501 | |
502 /* Create the parent vbox for everything. */ | |
503 vbox1 = gtk_vbox_new(FALSE, 12); | |
504 gtk_container_add(GTK_CONTAINER(window), vbox1); | |
505 gtk_widget_show(vbox1); | |
506 | |
507 /* Create the vbox that will contain all the prefs stuff. */ | |
508 vbox2 = gtk_vbox_new(FALSE, 18); | |
509 gtk_box_pack_start(GTK_BOX(vbox1), vbox2, TRUE, TRUE, 0); | |
510 | |
511 /* Create the "Pounce Who" frame. */ | |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
512 frame = gaim_gtk_make_frame(vbox2, _("Pounce Who")); |
5032 | 513 |
514 /* Account: */ | |
515 hbox = gtk_hbox_new(FALSE, 6); | |
516 gtk_box_pack_start(GTK_BOX(frame), hbox, FALSE, FALSE, 0); | |
517 gtk_widget_show(hbox); | |
518 | |
519 label = gtk_label_new_with_mnemonic(_("_Account:")); | |
520 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
521 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); | |
522 gtk_widget_show(label); | |
523 gtk_size_group_add_widget(sg, label); | |
524 | |
525 dialog->account_menu = pounce_user_menu(dialog); | |
526 gtk_box_pack_start(GTK_BOX(hbox), dialog->account_menu, FALSE, FALSE, 0); | |
527 gtk_widget_show(dialog->account_menu); | |
528 | |
529 /* Buddy: */ | |
530 hbox = gtk_hbox_new(FALSE, 6); | |
531 gtk_box_pack_start(GTK_BOX(frame), hbox, FALSE, FALSE, 0); | |
532 gtk_widget_show(hbox); | |
533 | |
534 label = gtk_label_new_with_mnemonic(_("_Buddy Name:")); | |
535 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
536 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); | |
537 gtk_widget_show(label); | |
538 gtk_size_group_add_widget(sg, label); | |
539 | |
540 dialog->buddy_entry = gtk_entry_new(); | |
541 gtk_box_pack_start(GTK_BOX(hbox), dialog->buddy_entry, TRUE, TRUE, 0); | |
542 gtk_widget_show(dialog->buddy_entry); | |
543 | |
544 if (cur_pounce != NULL) { | |
545 gtk_entry_set_text(GTK_ENTRY(dialog->buddy_entry), | |
546 gaim_pounce_get_pouncee(cur_pounce)); | |
547 } | |
548 else if (buddy != NULL) { | |
549 gtk_entry_set_text(GTK_ENTRY(dialog->buddy_entry), buddy->name); | |
550 } | |
551 | |
552 /* Create the "Pounce When" frame. */ | |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
553 frame = gaim_gtk_make_frame(vbox2, _("Pounce When")); |
5032 | 554 |
555 table = gtk_table_new(2, 4, FALSE); | |
556 gtk_container_add(GTK_CONTAINER(frame), table); | |
557 gtk_table_set_col_spacings(GTK_TABLE(table), 12); | |
558 gtk_widget_show(table); | |
559 | |
560 dialog->signon = | |
561 gtk_check_button_new_with_label(_("Sign on")); | |
562 dialog->signoff = | |
563 gtk_check_button_new_with_label(_("Sign off")); | |
564 dialog->away = | |
565 gtk_check_button_new_with_label(_("Away")); | |
566 dialog->away_return = | |
567 gtk_check_button_new_with_label(_("Return from away")); | |
568 dialog->idle = | |
569 gtk_check_button_new_with_label(_("Idle")); | |
570 dialog->idle_return = | |
571 gtk_check_button_new_with_label(_("Return from idle")); | |
572 dialog->typing = | |
573 gtk_check_button_new_with_label(_("Buddy starts typing")); | |
574 dialog->stop_typing = | |
575 gtk_check_button_new_with_label(_("Buddy stops typing")); | |
576 | |
577 gtk_table_attach(GTK_TABLE(table), dialog->signon, 0, 1, 0, 1, | |
578 GTK_FILL, 0, 0, 0); | |
579 gtk_table_attach(GTK_TABLE(table), dialog->signoff, 1, 2, 0, 1, | |
580 GTK_FILL, 0, 0, 0); | |
581 gtk_table_attach(GTK_TABLE(table), dialog->away, 0, 1, 1, 2, | |
582 GTK_FILL, 0, 0, 0); | |
583 gtk_table_attach(GTK_TABLE(table), dialog->away_return, 1, 2, 1, 2, | |
584 GTK_FILL, 0, 0, 0); | |
585 gtk_table_attach(GTK_TABLE(table), dialog->idle, 0, 1, 2, 3, | |
586 GTK_FILL, 0, 0, 0); | |
587 gtk_table_attach(GTK_TABLE(table), dialog->idle_return, 1, 2, 2, 3, | |
588 GTK_FILL, 0, 0, 0); | |
589 gtk_table_attach(GTK_TABLE(table), dialog->typing, 0, 1, 3, 4, | |
590 GTK_FILL, 0, 0, 0); | |
5319
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
591 gtk_table_attach(GTK_TABLE(table), dialog->stop_typing, 1, 2, 3, 5, |
5032 | 592 GTK_FILL, 0, 0, 0); |
593 | |
594 gtk_widget_show(dialog->signon); | |
595 gtk_widget_show(dialog->signoff); | |
596 gtk_widget_show(dialog->away); | |
597 gtk_widget_show(dialog->away_return); | |
598 gtk_widget_show(dialog->idle); | |
599 gtk_widget_show(dialog->idle_return); | |
600 gtk_widget_show(dialog->typing); | |
601 gtk_widget_show(dialog->stop_typing); | |
602 | |
603 /* Create the "Pounce Action" frame. */ | |
5530
2c4c975620f0
[gaim-migrate @ 5930]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
604 frame = gaim_gtk_make_frame(vbox2, _("Pounce Action")); |
5032 | 605 |
5319
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
606 table = gtk_table_new(3, 5, FALSE); |
5032 | 607 gtk_container_add(GTK_CONTAINER(frame), table); |
608 gtk_table_set_col_spacings(GTK_TABLE(table), 12); | |
609 gtk_widget_show(table); | |
610 | |
611 dialog->open_win = gtk_check_button_new_with_label(_("Open an IM window")); | |
612 dialog->popup = gtk_check_button_new_with_label(_("Popup notification")); | |
613 dialog->send_msg = gtk_check_button_new_with_label(_("Send a message")); | |
614 dialog->exec_cmd = gtk_check_button_new_with_label(_("Execute a command")); | |
5051
b3d9195777bb
[gaim-migrate @ 5400]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
615 dialog->play_sound = gtk_check_button_new_with_label(_("Play a sound")); |
5319
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
616 |
5032 | 617 dialog->send_msg_entry = gtk_entry_new(); |
618 dialog->exec_cmd_entry = gtk_entry_new(); | |
5319
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
619 dialog->exec_cmd_browse = gtk_button_new_with_label(_("Browse")); |
5032 | 620 dialog->play_sound_entry = gtk_entry_new(); |
5319
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
621 dialog->play_sound_browse = gtk_button_new_with_label(_("Browse")); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
622 dialog->play_sound_test = gtk_button_new_with_label(_("Test")); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
623 |
5032 | 624 gtk_widget_set_sensitive(dialog->send_msg_entry, FALSE); |
625 gtk_widget_set_sensitive(dialog->exec_cmd_entry, FALSE); | |
5319
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
626 gtk_widget_set_sensitive(dialog->exec_cmd_browse, FALSE); |
5032 | 627 gtk_widget_set_sensitive(dialog->play_sound_entry, FALSE); |
5319
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
628 gtk_widget_set_sensitive(dialog->play_sound_browse, FALSE); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
629 gtk_widget_set_sensitive(dialog->play_sound_test, FALSE); |
5032 | 630 |
631 gtk_table_attach(GTK_TABLE(table), dialog->open_win, 0, 1, 0, 1, | |
632 GTK_FILL, 0, 0, 0); | |
633 gtk_table_attach(GTK_TABLE(table), dialog->popup, 0, 1, 1, 2, | |
634 GTK_FILL, 0, 0, 0); | |
635 gtk_table_attach(GTK_TABLE(table), dialog->send_msg, 0, 1, 2, 3, | |
636 GTK_FILL, 0, 0, 0); | |
5319
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
637 gtk_table_attach(GTK_TABLE(table), dialog->send_msg_entry, 1, 4, 2, 3, |
5032 | 638 GTK_FILL, 0, 0, 0); |
639 gtk_table_attach(GTK_TABLE(table), dialog->exec_cmd, 0, 1, 3, 4, | |
640 GTK_FILL, 0, 0, 0); | |
641 gtk_table_attach(GTK_TABLE(table), dialog->exec_cmd_entry, 1, 2, 3, 4, | |
642 GTK_FILL, 0, 0, 0); | |
5319
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
643 gtk_table_attach(GTK_TABLE(table), dialog->exec_cmd_browse, 2, 3, 3, 4, |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
644 GTK_FILL | GTK_EXPAND, 0, 0, 0); |
5032 | 645 gtk_table_attach(GTK_TABLE(table), dialog->play_sound, 0, 1, 4, 5, |
646 GTK_FILL, 0, 0, 0); | |
647 gtk_table_attach(GTK_TABLE(table), dialog->play_sound_entry, 1, 2, 4, 5, | |
648 GTK_FILL, 0, 0, 0); | |
5319
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
649 gtk_table_attach(GTK_TABLE(table), dialog->play_sound_browse, 2, 3, 4, 5, |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
650 GTK_FILL | GTK_EXPAND, 0, 0, 0); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
651 gtk_table_attach(GTK_TABLE(table), dialog->play_sound_test, 3, 4, 4, 5, |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
652 GTK_FILL | GTK_EXPAND, 0, 0, 0); |
5032 | 653 |
654 gtk_widget_show(dialog->open_win); | |
655 gtk_widget_show(dialog->popup); | |
656 gtk_widget_show(dialog->send_msg); | |
657 gtk_widget_show(dialog->send_msg_entry); | |
658 gtk_widget_show(dialog->exec_cmd); | |
659 gtk_widget_show(dialog->exec_cmd_entry); | |
5319
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
660 gtk_widget_show(dialog->exec_cmd_browse); |
5032 | 661 gtk_widget_show(dialog->play_sound); |
662 gtk_widget_show(dialog->play_sound_entry); | |
5319
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
663 gtk_widget_show(dialog->play_sound_browse); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
664 gtk_widget_show(dialog->play_sound_test); |
5032 | 665 |
666 g_signal_connect(G_OBJECT(dialog->send_msg), "clicked", | |
667 G_CALLBACK(gaim_gtk_toggle_sensitive), | |
668 dialog->send_msg_entry); | |
5319
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
669 |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
670 exec_widgets = g_ptr_array_new(); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
671 g_ptr_array_add(exec_widgets,dialog->exec_cmd_entry); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
672 g_ptr_array_add(exec_widgets,dialog->exec_cmd_browse); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
673 |
5032 | 674 g_signal_connect(G_OBJECT(dialog->exec_cmd), "clicked", |
5319
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
675 G_CALLBACK(gtk_toggle_sensitive_array), |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
676 exec_widgets); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
677 g_signal_connect(G_OBJECT(dialog->exec_cmd_browse), "clicked", |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
678 G_CALLBACK(pounce_file_selector), |
5032 | 679 dialog->exec_cmd_entry); |
5319
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
680 |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
681 sound_widgets = g_ptr_array_new(); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
682 g_ptr_array_add(sound_widgets,dialog->play_sound_entry); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
683 g_ptr_array_add(sound_widgets,dialog->play_sound_browse); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
684 g_ptr_array_add(sound_widgets,dialog->play_sound_test); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
685 |
5032 | 686 g_signal_connect(G_OBJECT(dialog->play_sound), "clicked", |
5319
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
687 G_CALLBACK(gtk_toggle_sensitive_array), |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
688 sound_widgets); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
689 g_signal_connect(G_OBJECT(dialog->play_sound_browse), "clicked", |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
690 G_CALLBACK(pounce_file_selector), |
5032 | 691 dialog->play_sound_entry); |
5319
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
692 g_signal_connect(G_OBJECT(dialog->play_sound_test), "clicked", |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
693 G_CALLBACK(pounce_test_sound), |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
694 dialog->play_sound_entry); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
695 |
5032 | 696 g_signal_connect(G_OBJECT(dialog->send_msg_entry), "activate", |
697 G_CALLBACK(save_pounce_cb), dialog); | |
698 g_signal_connect(G_OBJECT(dialog->exec_cmd_entry), "activate", | |
699 G_CALLBACK(save_pounce_cb), dialog); | |
700 g_signal_connect(G_OBJECT(dialog->play_sound_entry), "activate", | |
701 G_CALLBACK(save_pounce_cb), dialog); | |
5319
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
702 |
5032 | 703 /* Now the last part, where we have the Save checkbox */ |
704 dialog->save_pounce = gtk_check_button_new_with_mnemonic( | |
705 _("_Save this pounce after activation")); | |
706 | |
707 gtk_box_pack_start(GTK_BOX(vbox2), dialog->save_pounce, FALSE, FALSE, 0); | |
708 | |
709 /* Separator... */ | |
710 sep = gtk_hseparator_new(); | |
711 gtk_box_pack_start(GTK_BOX(vbox1), sep, FALSE, FALSE, 0); | |
712 gtk_widget_show(sep); | |
713 | |
714 /* Now the button box! */ | |
715 bbox = gtk_hbutton_box_new(); | |
716 gtk_box_set_spacing(GTK_BOX(bbox), 6); | |
717 gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END); | |
718 gtk_box_pack_end(GTK_BOX(vbox1), bbox, FALSE, FALSE, 0); | |
719 gtk_widget_show(bbox); | |
720 | |
5052
6a7759f63766
[gaim-migrate @ 5401]
Christian Hammond <chipx86@chipx86.com>
parents:
5051
diff
changeset
|
721 /* Delete button */ |
6a7759f63766
[gaim-migrate @ 5401]
Christian Hammond <chipx86@chipx86.com>
parents:
5051
diff
changeset
|
722 button = gtk_button_new_from_stock(GTK_STOCK_DELETE); |
6a7759f63766
[gaim-migrate @ 5401]
Christian Hammond <chipx86@chipx86.com>
parents:
5051
diff
changeset
|
723 gtk_box_pack_start(GTK_BOX(bbox), button, FALSE, FALSE, 0); |
6a7759f63766
[gaim-migrate @ 5401]
Christian Hammond <chipx86@chipx86.com>
parents:
5051
diff
changeset
|
724 gtk_widget_show(button); |
6a7759f63766
[gaim-migrate @ 5401]
Christian Hammond <chipx86@chipx86.com>
parents:
5051
diff
changeset
|
725 |
6a7759f63766
[gaim-migrate @ 5401]
Christian Hammond <chipx86@chipx86.com>
parents:
5051
diff
changeset
|
726 g_signal_connect(G_OBJECT(button), "clicked", |
6a7759f63766
[gaim-migrate @ 5401]
Christian Hammond <chipx86@chipx86.com>
parents:
5051
diff
changeset
|
727 G_CALLBACK(delete_cb), dialog); |
6a7759f63766
[gaim-migrate @ 5401]
Christian Hammond <chipx86@chipx86.com>
parents:
5051
diff
changeset
|
728 |
5032 | 729 /* Cancel button */ |
730 button = gtk_button_new_from_stock(GTK_STOCK_CANCEL); | |
731 gtk_box_pack_start(GTK_BOX(bbox), button, FALSE, FALSE, 0); | |
732 gtk_widget_show(button); | |
733 | |
734 g_signal_connect(G_OBJECT(button), "clicked", | |
735 G_CALLBACK(cancel_cb), dialog); | |
736 | |
737 /* OK button */ | |
738 button = gtk_button_new_from_stock(GTK_STOCK_OK); | |
739 gtk_box_pack_start(GTK_BOX(bbox), button, FALSE, FALSE, 0); | |
740 gtk_widget_show(button); | |
741 | |
742 g_signal_connect(G_OBJECT(button), "clicked", | |
743 G_CALLBACK(save_pounce_cb), dialog); | |
744 | |
745 /* Set the values of stuff. */ | |
746 if (cur_pounce != NULL) { | |
747 GaimPounceEvent events; | |
748 GaimGtkPounceAction actions; | |
749 struct gaim_gtkpounce_data *pounce_data; | |
750 | |
751 pounce_data = GAIM_GTKPOUNCE(cur_pounce); | |
752 events = gaim_pounce_get_events(cur_pounce); | |
753 actions = pounce_data->actions; | |
754 | |
755 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(dialog->signon), | |
756 (events & GAIM_POUNCE_SIGNON)); | |
757 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(dialog->signoff), | |
758 (events & GAIM_POUNCE_SIGNOFF)); | |
759 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(dialog->away), | |
760 (events & GAIM_POUNCE_AWAY)); | |
761 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(dialog->away_return), | |
762 (events & GAIM_POUNCE_AWAY_RETURN)); | |
763 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(dialog->idle), | |
764 (events & GAIM_POUNCE_IDLE)); | |
765 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(dialog->idle_return), | |
766 (events & GAIM_POUNCE_IDLE_RETURN)); | |
767 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(dialog->typing), | |
768 (events & GAIM_POUNCE_TYPING)); | |
769 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(dialog->stop_typing), | |
770 (events & GAIM_POUNCE_TYPING_STOPPED)); | |
771 | |
772 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(dialog->open_win), | |
773 (actions & GAIM_GTKPOUNCE_OPEN_WIN)); | |
774 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(dialog->popup), | |
775 (actions & GAIM_GTKPOUNCE_POPUP)); | |
776 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(dialog->send_msg), | |
777 (actions & GAIM_GTKPOUNCE_SEND_MSG)); | |
778 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(dialog->exec_cmd), | |
779 (actions & GAIM_GTKPOUNCE_EXEC_CMD)); | |
780 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(dialog->play_sound), | |
781 (actions & GAIM_GTKPOUNCE_PLAY_SOUND)); | |
782 | |
783 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(dialog->save_pounce), | |
784 pounce_data->save); | |
785 | |
5319
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
786 if (pounce_data->message != NULL) |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
787 gtk_entry_set_text(GTK_ENTRY(dialog->send_msg_entry), |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
788 pounce_data->message); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
789 if (pounce_data->command != NULL) |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
790 gtk_entry_set_text(GTK_ENTRY(dialog->exec_cmd_entry), |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
791 pounce_data->command); |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
792 if (pounce_data->sound != NULL) |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
793 gtk_entry_set_text(GTK_ENTRY(dialog->play_sound_entry), |
3adb20b869b4
[gaim-migrate @ 5691]
Christian Hammond <chipx86@chipx86.com>
parents:
5228
diff
changeset
|
794 pounce_data->sound); |
5032 | 795 } |
796 else { | |
797 /* Set some defaults */ | |
798 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(dialog->send_msg), TRUE); | |
799 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(dialog->signon), TRUE); | |
800 } | |
801 | |
802 gtk_widget_show_all(vbox2); | |
803 gtk_widget_show(window); | |
804 } | |
805 | |
806 static void | |
807 new_pounce_cb(GtkWidget *w, struct buddy *b) | |
808 { | |
809 gaim_gtkpounce_dialog_show(b, NULL); | |
810 } | |
811 | |
812 static void | |
5153
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
813 delete_pounce_cb(GtkWidget *w, struct gaim_pounce *pounce) |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
814 { |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
815 gaim_pounce_destroy(pounce); |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
816 } |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
817 |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
818 static void |
5032 | 819 edit_pounce_cb(GtkWidget *w, struct gaim_pounce *pounce) |
820 { | |
821 struct buddy *buddy; | |
822 | |
823 buddy = gaim_find_buddy(gaim_pounce_get_pouncer(pounce), | |
824 gaim_pounce_get_pouncee(pounce)); | |
825 | |
826 gaim_gtkpounce_dialog_show(buddy, pounce); | |
827 } | |
828 | |
5153
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
829 static void |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
830 fill_menu(GtkWidget *menu, GCallback cb) |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
831 { |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
832 GtkWidget *image; |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
833 GtkWidget *item; |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
834 GdkPixbuf *pixbuf, *scale; |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
835 struct gaim_pounce *pounce; |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
836 const char *buddy; |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
837 GList *bp; |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
838 |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
839 for (bp = gaim_get_pounces(); bp != NULL; bp = bp->next) { |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
840 pounce = (struct gaim_pounce *)bp->data; |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
841 buddy = gaim_pounce_get_pouncee(pounce); |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
842 |
5161 | 843 /* Build the menu item */ |
844 item = gtk_image_menu_item_new_with_label(buddy); | |
845 | |
5153
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
846 /* Create a pixmap for the protocol icon. */ |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
847 pixbuf = create_prpl_icon(gaim_pounce_get_pouncer(pounce)); |
5161 | 848 if(pixbuf) { |
849 scale = gdk_pixbuf_scale_simple(pixbuf, 16, 16, | |
850 GDK_INTERP_BILINEAR); | |
5153
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
851 |
5161 | 852 /* Now convert it to GtkImage */ |
5153
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
853 image = gtk_image_new_from_pixbuf(scale); |
5161 | 854 g_object_unref(G_OBJECT(scale)); |
855 g_object_unref(G_OBJECT(pixbuf)); | |
856 gtk_widget_show(image); | |
857 gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(item), image); | |
858 } | |
5153
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
859 |
5161 | 860 /* Put the item in the menu */ |
5153
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
861 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item); |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
862 gtk_widget_show(item); |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
863 |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
864 /* Set our callbacks. */ |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
865 g_signal_connect(G_OBJECT(item), "activate", cb, pounce); |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
866 } |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
867 } |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
868 |
5032 | 869 void |
870 gaim_gtkpounce_menu_build(GtkWidget *menu) | |
871 { | |
5153
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
872 GtkWidget *remmenu; |
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
873 GtkWidget *item; |
5032 | 874 GList *l; |
875 | |
876 for (l = gtk_container_get_children(GTK_CONTAINER(menu)); | |
877 l != NULL; | |
878 l = l->next) { | |
879 | |
880 gtk_widget_destroy(GTK_WIDGET(l->data)); | |
881 } | |
882 | |
883 /* "New Buddy Pounce" */ | |
884 item = gtk_menu_item_new_with_label(_("New Buddy Pounce")); | |
885 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item); | |
886 gtk_widget_show(item); | |
887 g_signal_connect(G_OBJECT(item), "activate", | |
888 G_CALLBACK(new_pounce_cb), NULL); | |
889 | |
890 /* "Remove Buddy Pounce" */ | |
891 item = gtk_menu_item_new_with_label(_("Remove Buddy Pounce")); | |
892 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item); | |
893 | |
894 /* "Remove Buddy Pounce" menu */ | |
895 remmenu = gtk_menu_new(); | |
896 | |
5153
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
897 fill_menu(remmenu, G_CALLBACK(delete_pounce_cb)); |
5032 | 898 |
899 gtk_menu_item_set_submenu(GTK_MENU_ITEM(item), remmenu); | |
900 gtk_widget_show(remmenu); | |
901 gtk_widget_show(item); | |
902 | |
903 /* Separator */ | |
904 item = gtk_separator_menu_item_new(); | |
905 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item); | |
906 gtk_widget_show(item); | |
907 | |
5153
ab0f12de3718
[gaim-migrate @ 5517]
Christian Hammond <chipx86@chipx86.com>
parents:
5054
diff
changeset
|
908 fill_menu(menu, G_CALLBACK(edit_pounce_cb)); |
5032 | 909 } |
910 |