comparison src/ui.h @ 2986:1c6a3516e1ff

[gaim-migrate @ 2999] Funky :) Editable buddy pouncen committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Sat, 23 Feb 2002 23:41:50 +0000
parents b68c648618a3
children 7239a392486c
comparison
equal deleted inserted replaced
2985:32c78c57b351 2986:1c6a3516e1ff
191 * are really a UI function and struct away_message should be removed from the core. */ 191 * are really a UI function and struct away_message should be removed from the core. */
192 struct away_message { 192 struct away_message {
193 char name[80]; 193 char name[80];
194 char message[2048]; 194 char message[2048];
195 }; 195 };
196
197 /****************************
198 * I thought I'd place these here by the same reasoning used above (for away_message)
199 * This helps aleviate warnings from dialogs.c where the show_new_bp function references
200 * buddy_pounce in the parameter list when ui.h doesn't know about buddy_pounce
201 * **************************
202 */
203 struct buddy_pounce {
204 char name[80];
205 char message[2048];
206 char command[2048];
207 char sound[2048];
208
209 char pouncer[80];
210 int protocol;
211
212 int options;
213 };
214
196 215
197 /* this is used for queuing messages received while away. This is really a UI function 216 /* this is used for queuing messages received while away. This is really a UI function
198 * which is why the struct is here. */ 217 * which is why the struct is here. */
199 struct queued_message { 218 struct queued_message {
200 char name[80]; 219 char name[80];
390 extern void show_add_group(struct gaim_connection *); 409 extern void show_add_group(struct gaim_connection *);
391 extern void show_add_perm(struct gaim_connection *, char *, gboolean); 410 extern void show_add_perm(struct gaim_connection *, char *, gboolean);
392 extern void destroy_all_dialogs(); 411 extern void destroy_all_dialogs();
393 extern void show_import_dialog(); 412 extern void show_import_dialog();
394 extern void show_export_dialog(); 413 extern void show_export_dialog();
395 extern void show_new_bp(char *, struct gaim_connection *, int, int); 414 extern void show_new_bp(char *, struct gaim_connection *, int, int, struct buddy_pounce *);
396 extern void show_log(char *); 415 extern void show_log(char *);
397 extern void show_log_dialog(struct conversation *); 416 extern void show_log_dialog(struct conversation *);
398 extern void show_fgcolor_dialog(struct conversation *c, GtkWidget *color); 417 extern void show_fgcolor_dialog(struct conversation *c, GtkWidget *color);
399 extern void show_bgcolor_dialog(struct conversation *c, GtkWidget *color); 418 extern void show_bgcolor_dialog(struct conversation *c, GtkWidget *color);
400 extern void cancel_fgcolor(GtkWidget *widget, struct conversation *c); 419 extern void cancel_fgcolor(GtkWidget *widget, struct conversation *c);