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
|
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
|
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
|