Mercurial > pidgin.yaz
annotate src/gtkconv.h @ 8037:89ec7c63113c
[gaim-migrate @ 8718]
This makes ctrl+pgup and ctrl+pgdown cycle throught he tabs agin. It
broke when I added the text input widget to a scrolled window. I'm
not really sure why this fixes it exactly, but it doesn't seem to
have any side effects. Someone (me?) should probably look at these
callbacks after 0.75 is released and find out what entry_key_pressed_cb_1
is supposed to be doing.
Alright, cannon time.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Wed, 07 Jan 2004 22:16:29 +0000 |
parents | 334ab1319406 |
children | fa6395637e2c |
rev | line source |
---|---|
4359 | 1 /** |
2 * @file gtkconv.h GTK+ Conversation API | |
5034
4691c5936c01
[gaim-migrate @ 5377]
Christian Hammond <chipx86@chipx86.com>
parents:
4736
diff
changeset
|
3 * @ingroup gtkui |
4359 | 4 * |
5 * gaim | |
6 * | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5676
diff
changeset
|
7 * Copyright (C) 2002-2003 Christian Hammond <chipx86@gnupdate.org> |
7326
00a9ab26d607
[gaim-migrate @ 7912]
Christian Hammond <chipx86@chipx86.com>
parents:
7295
diff
changeset
|
8 * |
4359 | 9 * This program is free software; you can redistribute it and/or modify |
10 * it under the terms of the GNU General Public License as published by | |
11 * the Free Software Foundation; either version 2 of the License, or | |
12 * (at your option) any later version. | |
13 * | |
14 * This program is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
20 * along with this program; if not, write to the Free Software | |
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
22 */ | |
23 | |
24 #ifndef _GAIM_GTK_CONVERSATION_H_ | |
25 #define _GAIM_GTK_CONVERSATION_H_ | |
26 | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
27 #include "conversation.h" |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
28 |
4359 | 29 /************************************************************************** |
30 * @name Structures | |
31 **************************************************************************/ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
32 /*@{*/ |
4359 | 33 |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
34 typedef struct _GaimGtkWindow GaimGtkWindow; |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
35 typedef struct _GaimGtkImPane GaimGtkImPane; |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
36 typedef struct _GaimGtkChatPane GaimGtkChatPane; |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
37 typedef struct _GaimGtkConversation GaimGtkConversation; |
4359 | 38 |
39 /** | |
40 * A GTK+ representation of a graphical window containing one or more | |
41 * conversations. | |
42 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
43 struct _GaimGtkWindow |
4359 | 44 { |
45 GtkWidget *window; /**< The window. */ | |
46 GtkWidget *notebook; /**< The notebook of conversations. */ | |
47 | |
48 struct | |
49 { | |
50 GtkWidget *menubar; | |
51 | |
5167 | 52 GtkWidget *view_log; |
5908
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
53 |
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
54 GtkWidget *add_pounce; |
7887 | 55 GtkWidget *get_info; |
56 GtkWidget *warn; | |
57 GtkWidget *invite; | |
58 | |
5908
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
59 GtkWidget *alias; |
7887 | 60 GtkWidget *block; |
61 GtkWidget *add; | |
62 GtkWidget *remove; | |
5908
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
63 |
7859 | 64 GtkWidget *insert_link; |
65 GtkWidget *insert_image; | |
66 | |
4359 | 67 GtkWidget *logging; |
68 GtkWidget *sounds; | |
7326
00a9ab26d607
[gaim-migrate @ 7912]
Christian Hammond <chipx86@chipx86.com>
parents:
7295
diff
changeset
|
69 GtkWidget *show_formatting_toolbar; |
5908
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
70 |
4359 | 71 GtkWidget *send_as; |
5908
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
72 |
4736 | 73 GtkWidget *typing_icon; |
4359 | 74 |
4630 | 75 GtkItemFactory *item_factory; |
76 | |
4359 | 77 } menu; |
78 | |
79 /* Tab dragging stuff. */ | |
80 gboolean in_drag; | |
81 gboolean in_predrag; | |
82 | |
83 gint drag_min_x, drag_max_x, drag_min_y, drag_max_y; | |
84 | |
85 gint drag_motion_signal; | |
86 gint drag_leave_signal; | |
87 }; | |
88 | |
89 /** | |
7820 | 90 * A GTK+ Instant Message pane. |
4359 | 91 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
92 struct _GaimGtkImPane |
4359 | 93 { |
94 GtkWidget *warn; | |
95 GtkWidget *block; | |
96 GtkWidget *sep1; | |
97 GtkWidget *sep2; | |
98 GtkWidget *check; | |
99 GtkWidget *progress; | |
100 | |
101 gboolean a_virgin; | |
102 | |
103 /* Buddy icon stuff */ | |
104 GtkWidget *icon; | |
105 GdkPixbufAnimation *anim; | |
106 GdkPixbufAnimationIter *iter; | |
107 guint32 icon_timer; | |
108 GtkWidget *save_icon; | |
109 }; | |
110 | |
111 /** | |
112 * GTK+ Chat panes. | |
113 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
114 struct _GaimGtkChatPane |
4359 | 115 { |
116 GtkWidget *count; | |
117 GtkWidget *list; | |
118 GtkWidget *invite; | |
119 GtkWidget *topic_text; | |
7996
334ab1319406
[gaim-migrate @ 8673]
Christian Hammond <chipx86@chipx86.com>
parents:
7930
diff
changeset
|
120 GtkWidget *sep; |
4359 | 121 }; |
122 | |
123 /** | |
124 * A GTK+ conversation pane. | |
125 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
126 struct _GaimGtkConversation |
4359 | 127 { |
128 gboolean make_sound; | |
7326
00a9ab26d607
[gaim-migrate @ 7912]
Christian Hammond <chipx86@chipx86.com>
parents:
7295
diff
changeset
|
129 gboolean show_formatting_toolbar; |
4359 | 130 gboolean has_font; |
131 char fontface[128]; | |
132 GdkColor fg_color; | |
133 GdkColor bg_color; | |
134 | |
135 GtkTooltips *tooltips; | |
136 | |
137 GtkWidget *tab_cont; | |
138 GtkWidget *tabby; | |
6771
8eebba08b44b
[gaim-migrate @ 7308]
Christian Hammond <chipx86@chipx86.com>
parents:
6392
diff
changeset
|
139 GtkWidget *menu_tabby; |
4359 | 140 |
141 GtkWidget *imhtml; | |
142 GtkTextBuffer *entry_buffer; | |
143 GtkWidget *entry; | |
144 | |
7930 | 145 GtkWidget *add; |
146 GtkWidget *remove; | |
4359 | 147 GtkWidget *info; |
7930 | 148 GtkWidget *send; |
149 GtkWidget *close; /* "x" on the tab */ | |
6392
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
5908
diff
changeset
|
150 GtkWidget *icon; |
4359 | 151 GtkWidget *tab_label; |
6771
8eebba08b44b
[gaim-migrate @ 7308]
Christian Hammond <chipx86@chipx86.com>
parents:
6392
diff
changeset
|
152 GtkWidget *menu_icon; |
8eebba08b44b
[gaim-migrate @ 7308]
Christian Hammond <chipx86@chipx86.com>
parents:
6392
diff
changeset
|
153 GtkWidget *menu_label; |
4359 | 154 GtkSizeGroup *sg; |
155 | |
156 GtkWidget *bbox; | |
157 GtkWidget *sw; | |
158 | |
159 struct | |
160 { | |
161 GtkWidget *toolbar; | |
4685 | 162 |
4359 | 163 GtkWidget *bold; |
164 GtkWidget *italic; | |
165 GtkWidget *underline; | |
166 | |
5049 | 167 GtkWidget *larger_size; |
4359 | 168 GtkWidget *normal_size; |
5049 | 169 GtkWidget *smaller_size; |
4359 | 170 |
4685 | 171 GtkWidget *font; |
4359 | 172 GtkWidget *fgcolor; |
173 GtkWidget *bgcolor; | |
174 | |
175 GtkWidget *image; | |
176 GtkWidget *link; | |
177 GtkWidget *smiley; | |
178 GtkWidget *log; | |
4685 | 179 |
4359 | 180 } toolbar; |
181 | |
182 struct | |
183 { | |
184 GtkWidget *fg_color; | |
185 GtkWidget *bg_color; | |
186 GtkWidget *font; | |
187 GtkWidget *smiley; | |
188 GtkWidget *link; | |
5106 | 189 GtkWidget *image; |
4359 | 190 GtkWidget *log; |
7295 | 191 GtkWidget *search; |
4359 | 192 |
193 } dialogs; | |
194 | |
195 union | |
196 { | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
197 GaimGtkImPane *im; |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
198 GaimGtkChatPane *chat; |
4359 | 199 |
200 } u; | |
201 }; | |
202 | |
203 #define GAIM_GTK_WINDOW(win) \ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
204 ((GaimGtkWindow *)(win)->ui_data) |
4359 | 205 |
206 #define GAIM_GTK_CONVERSATION(conv) \ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
207 ((GaimGtkConversation *)(conv)->ui_data) |
4359 | 208 |
4384
8f633419c837
[gaim-migrate @ 4650]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
209 #define GAIM_IS_GTK_WINDOW(win) \ |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
210 (gaim_conv_window_get_ui_ops(win) == gaim_gtk_conversations_get_win_ui_ops()) |
4384
8f633419c837
[gaim-migrate @ 4650]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
211 |
8f633419c837
[gaim-migrate @ 4650]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
212 #define GAIM_IS_GTK_CONVERSATION(conv) \ |
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6771
diff
changeset
|
213 (gaim_conversation_get_ui_ops(conv) == \ |
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6771
diff
changeset
|
214 gaim_gtk_conversations_get_conv_ui_ops()) |
4359 | 215 |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
216 /*@}*/ |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
217 |
4359 | 218 /************************************************************************** |
219 * @name GTK+ Conversation API | |
220 **************************************************************************/ | |
5673
62f57ec16f29
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
221 /*@{*/ |
62f57ec16f29
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
222 |
62f57ec16f29
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
223 /** |
62f57ec16f29
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
224 * Initializes the GTK+ conversation system. |
62f57ec16f29
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
225 */ |
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6771
diff
changeset
|
226 void gaim_gtk_conversations_init(void); |
5673
62f57ec16f29
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
227 |
4359 | 228 /** |
229 * Returns the UI operations structure for GTK windows. | |
230 * | |
231 * @return The GTK window operations structure. | |
232 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
233 GaimConvWindowUiOps *gaim_gtk_conversations_get_win_ui_ops(void); |
4359 | 234 |
235 /** | |
236 * Returns the UI operations structure for GTK conversations. | |
237 * | |
238 * @return The GTK conversation operations structure. | |
239 */ | |
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6771
diff
changeset
|
240 GaimConversationUiOps *gaim_gtk_conversations_get_conv_ui_ops(void); |
4359 | 241 |
242 /** | |
243 * Updates the buddy icon on a conversation. | |
244 * | |
245 * @param conv The conversation. | |
246 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
247 void gaim_gtkconv_update_buddy_icon(GaimConversation *conv); |
4359 | 248 |
249 /** | |
250 * Updates the font buttons on all conversations to reflect any changed | |
251 * preferences. | |
252 */ | |
253 void gaim_gtkconv_update_font_buttons(void); | |
254 | |
255 /** | |
4421 | 256 * Updates the font colors of each conversation to the new colors |
257 * chosen in the prefs dialog. | |
4438
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
258 * |
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
259 * @param conv The conversation to update. |
4421 | 260 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
261 void gaim_gtkconv_update_font_colors(GaimConversation *conv); |
4421 | 262 |
263 /** | |
4438
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
264 * Updates the font faces of each conversation to the new font |
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
265 * face chosen in the prefs dialog. |
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
266 * |
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
267 * @param conv The conversation to update. |
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
268 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
269 void gaim_gtkconv_update_font_face(GaimConversation *conv); |
4438
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
270 |
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
271 /** |
4359 | 272 * Updates the tab positions on all conversation windows to reflect any |
273 * changed preferences. | |
274 */ | |
275 void gaim_gtkconv_update_tabs(void); | |
276 | |
277 /** | |
278 * Updates the button style on chat windows to reflect any | |
279 * changed preferences. | |
280 */ | |
281 void gaim_gtkconv_update_chat_button_style(); | |
282 | |
283 /** | |
284 * Updates the button style on IM windows to reflect any | |
285 * changed preferences. | |
286 */ | |
287 void gaim_gtkconv_update_im_button_style(); | |
288 | |
289 /** | |
290 * Updates conversation buttons by protocol. | |
291 * | |
292 * @param conv The conversation. | |
293 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
294 void gaim_gtkconv_update_buttons_by_protocol(GaimConversation *conv); |
4359 | 295 |
296 /** | |
297 * Returns the window at the specified X, Y location. | |
298 * | |
299 * If the window is not a GTK+ window, @c NULL is returned. | |
300 * | |
301 * @param x The X coordinate. | |
302 * @param y The Y coordinate. | |
303 * | |
304 * @return The GTK+ window at the location, if it exists, or @c NULL otherwise. | |
305 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
306 GaimConvWindow *gaim_gtkwin_get_at_xy(int x, int y); |
4359 | 307 |
308 /** | |
309 * Returns the index of the tab at the specified X, Y location in a notebook. | |
310 * | |
311 * @param win The GTK+ window containing the notebook. | |
312 * @param x The X coordinate. | |
313 * @param y The Y coordinate. | |
314 * | |
315 * @return The index of the tab at the location. | |
316 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
317 int gaim_gtkconv_get_tab_at_xy(GaimConvWindow *win, int x, int y); |
4359 | 318 |
319 /** | |
320 * Returns the index of the destination tab at the | |
321 * specified X, Y location in a notebook. | |
322 * | |
323 * This is used for drag-and-drop functions when the tab at the index | |
324 * is a destination tab. | |
325 * | |
326 * @param win The GTK+ window containing the notebook. | |
327 * @param x The X coordinate. | |
328 * @param y The Y coordinate. | |
329 * | |
330 * @return The index of the tab at the location. | |
331 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
332 int gaim_gtkconv_get_dest_tab_at_xy(GaimConvWindow *win, int x, int y); |
4359 | 333 |
5673
62f57ec16f29
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
334 /*@}*/ |
62f57ec16f29
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
335 |
4359 | 336 #endif /* _GAIM_GTK_CONVERSATION_H_ */ |