Wed, 21 Sep 2011 06:45:26 +0000
Apply conversation theme when opening the GTK conversation. All the
parsing stuff was moved out of the theme code and into the conversation
code.
Someone (not me!) needs to check the code I commented out and see if
we really need that stuff (and then port it to WebKit/styling).
We also need to determine where to place Template.html and the rest
of our (not-yet-written) default theme.
| 5032 | 1 | /** |
|
5864
86822afeeab0
[gaim-migrate @ 6295]
Christian Hammond <chipx86@chipx86.com>
parents:
5857
diff
changeset
|
2 | * @file gtkpounce.h GTK+ Buddy Pounce API |
|
16254
eeb2bba4dc94
Rename the Doxygen group from gtkui to pidgin.
Richard Laager <rlaager@pidgin.im>
parents:
15931
diff
changeset
|
3 | * @ingroup pidgin |
|
20147
66f05a854eee
applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents:
19859
diff
changeset
|
4 | */ |
|
66f05a854eee
applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents:
19859
diff
changeset
|
5 | |
|
66f05a854eee
applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents:
19859
diff
changeset
|
6 | /* pidgin |
| 5032 | 7 | * |
| 15572 | 8 | * Pidgin is the legal property of its developers, whose names are too numerous |
| 8046 | 9 | * to list here. Please refer to the COPYRIGHT file distributed with this |
| 10 | * source distribution. | |
|
25888
d0fdd378a635
Remove trailing whitespace
Mark Doliner <markdoliner@pidgin.im>
parents:
21653
diff
changeset
|
11 | * |
| 5032 | 12 | * This program is free software; you can redistribute it and/or modify |
| 13 | * it under the terms of the GNU General Public License as published by | |
| 14 | * the Free Software Foundation; either version 2 of the License, or | |
| 15 | * (at your option) any later version. | |
| 16 | * | |
| 17 | * This program is distributed in the hope that it will be useful, | |
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 20 | * GNU General Public License for more details. | |
| 21 | * | |
| 22 | * You should have received a copy of the GNU General Public License | |
| 23 | * along with this program; if not, write to the Free Software | |
|
19859
71d37b57eff2
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
16254
diff
changeset
|
24 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
| 5032 | 25 | */ |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
26 | #ifndef _PIDGINPOUNCE_H_ |
|
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
27 | #define _PIDGINPOUNCE_H_ |
| 5032 | 28 | |
| 29 | #include "pounce.h" | |
| 30 | ||
| 31 | /** | |
| 32 | * Displays a New Buddy Pounce or Edit Buddy Pounce dialog. | |
| 33 | * | |
|
21215
775a49fdc926
Document the window transient_for changes. Refs #2617
Richard Laager <rlaager@pidgin.im>
parents:
20706
diff
changeset
|
34 | * @param account The optional account to use. |
|
775a49fdc926
Document the window transient_for changes. Refs #2617
Richard Laager <rlaager@pidgin.im>
parents:
20706
diff
changeset
|
35 | * @param name The optional name to pounce on. |
|
775a49fdc926
Document the window transient_for changes. Refs #2617
Richard Laager <rlaager@pidgin.im>
parents:
20706
diff
changeset
|
36 | * @param cur_pounce The current buddy pounce, if editing an existing one. |
|
775a49fdc926
Document the window transient_for changes. Refs #2617
Richard Laager <rlaager@pidgin.im>
parents:
20706
diff
changeset
|
37 | */ |
|
775a49fdc926
Document the window transient_for changes. Refs #2617
Richard Laager <rlaager@pidgin.im>
parents:
20706
diff
changeset
|
38 | void pidgin_pounce_editor_show(PurpleAccount *account, const char *name, |
|
775a49fdc926
Document the window transient_for changes. Refs #2617
Richard Laager <rlaager@pidgin.im>
parents:
20706
diff
changeset
|
39 | PurplePounce *cur_pounce); |
| 5032 | 40 | |
| 41 | /** | |
| 12136 | 42 | * Shows the pounces manager window. |
| 43 | */ | |
|
21653
621c47778132
merge of '73ae9aeda3c58fbf8437421da68d19d06f93e686'
Evan Schoenberg <evands@pidgin.im>
parents:
21223
diff
changeset
|
44 | void pidgin_pounces_manager_show(void); |
| 20706 | 45 | |
| 46 | /** | |
| 12136 | 47 | * Hides the pounces manager window. |
| 48 | */ | |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
49 | void pidgin_pounces_manager_hide(void); |
| 12136 | 50 | |
| 51 | /** | |
|
12155
a7f7e1ecd799
[gaim-migrate @ 14456]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12136
diff
changeset
|
52 | * Returns the gtkpounces handle |
| 5032 | 53 | * |
|
12155
a7f7e1ecd799
[gaim-migrate @ 14456]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12136
diff
changeset
|
54 | * @return The handle to the GTK+ pounces system |
| 5032 | 55 | */ |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
56 | void *pidgin_pounces_get_handle(void); |
| 5032 | 57 | |
|
5875
493a921c0378
[gaim-migrate @ 6307]
Christian Hammond <chipx86@chipx86.com>
parents:
5864
diff
changeset
|
58 | /** |
|
493a921c0378
[gaim-migrate @ 6307]
Christian Hammond <chipx86@chipx86.com>
parents:
5864
diff
changeset
|
59 | * Initializes the GTK+ pounces subsystem. |
|
493a921c0378
[gaim-migrate @ 6307]
Christian Hammond <chipx86@chipx86.com>
parents:
5864
diff
changeset
|
60 | */ |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
61 | void pidgin_pounces_init(void); |
|
5875
493a921c0378
[gaim-migrate @ 6307]
Christian Hammond <chipx86@chipx86.com>
parents:
5864
diff
changeset
|
62 | |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
63 | #endif /* _PIDGINPOUNCE_H_ */ |