Sun, 13 Aug 2000 03:15:06 +0000
[gaim-migrate @ 683]
Made the necessary modifications to allow gaim to save buddy pounces.
I just noticed that you cant _delete_ (remove) a buddy pounce. Woops.
I'll take a look at that. I'll do saving of buddy chats when I get back
from dinner.
Adios.
| 472 | 1 | /* |
| 2 | * gaim | |
| 3 | * | |
| 4 | * Copyright (C) 1998-1999, Mark Spencer <markster@marko.net> | |
| 5 | * | |
| 6 | * This program is free software; you can redistribute it and/or modify | |
| 7 | * it under the terms of the GNU General Public License as published by | |
| 8 | * the Free Software Foundation; either version 2 of the License, or | |
| 9 | * (at your option) any later version. | |
| 10 | * | |
| 11 | * This program is distributed in the hope that it will be useful, | |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 14 | * GNU General Public License for more details. | |
| 15 | * | |
| 16 | * You should have received a copy of the GNU General Public License | |
| 17 | * along with this program; if not, write to the Free Software | |
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 19 | * | |
| 20 | */ | |
| 21 | ||
| 22 | #ifndef _GAIMCONVO_H_ | |
| 23 | #define _GAIMCONVO_H_ | |
| 24 | ||
| 25 | #include <gtk/gtk.h> | |
| 26 | #include "gaim.h" | |
| 27 | ||
| 28 | ||
| 29 | /* we declare all of the global functions for chat and IM windows here, so | |
| 30 | * that it's easy to keep them merged. */ | |
| 31 | ||
| 32 | /* chat first */ | |
| 33 | extern void im_callback(GtkWidget *, struct conversation *); | |
| 34 | extern void ignore_callback(GtkWidget *, struct conversation *); | |
| 35 | extern void whisper_callback(GtkWidget *, struct conversation *); | |
| 36 | extern void invite_callback(GtkWidget *, struct conversation *); | |
| 37 | ||
| 38 | /* now IM */ | |
| 39 | extern void warn_callback(GtkWidget *, struct conversation *); | |
| 40 | extern void block_callback(GtkWidget *, struct conversation *); | |
| 41 | extern void add_callback(GtkWidget *, struct conversation *); | |
| 42 | ||
| 43 | /* now both */ | |
| 44 | extern void info_callback(GtkWidget *, struct conversation *); | |
| 45 | extern void do_bold(GtkWidget *, GtkWidget *); | |
| 46 | extern void do_italic(GtkWidget *, GtkWidget *); | |
| 47 | extern void do_underline(GtkWidget *, GtkWidget *); | |
| 48 | extern void do_strike(GtkWidget *, GtkWidget *); | |
| 49 | extern void do_small(GtkWidget *, GtkWidget *); | |
| 50 | extern void do_normal(GtkWidget *, GtkWidget *); | |
| 51 | extern void do_big(GtkWidget *, GtkWidget *); | |
| 52 | extern void toggle_font(GtkWidget *, struct conversation *); | |
|
608
4c11ac40558f
[gaim-migrate @ 618]
Todd Kulesza <fflewddur@users.sourceforge.net>
parents:
604
diff
changeset
|
53 | extern void toggle_link(GtkWidget *, struct conversation *); |
| 472 | 54 | extern void toggle_color(GtkWidget *, struct conversation *); |
| 55 | extern void toggle_loggle(GtkWidget *, struct conversation *); | |
|
555
bea0ece30600
[gaim-migrate @ 565]
Todd Kulesza <fflewddur@users.sourceforge.net>
parents:
551
diff
changeset
|
56 | extern void insert_smiley(GtkWidget *, struct conversation *); |
| 472 | 57 | /* sound is handled by set_option */ |
| 58 | extern gboolean keypress_callback(GtkWidget *, GdkEventKey *, struct conversation *); | |
| 59 | ||
| 60 | extern GtkWidget *build_conv_toolbar(struct conversation *); | |
| 61 | ||
| 62 | extern void send_callback(GtkWidget *, struct conversation *); | |
| 63 | extern int close_callback(GtkWidget *, struct conversation *); | |
| 64 | ||
| 65 | extern gboolean meify(char *); | |
| 66 | ||
| 67 | #endif |