Sun, 02 Feb 2014 00:22:57 +0530
Merged gtkdoc-conversion branch
| 14478 | 1 | #include "gtkmodule.h" |
| 2 | ||
|
16276
8853d1da70f5
Rename a number of Perl functions which were munged at some point
Warren Togami Jr. <warren@togami.com>
parents:
15899
diff
changeset
|
3 | MODULE = Pidgin::Themes PACKAGE = Pidgin::Themes PREFIX = pidgin_themes_ |
| 14478 | 4 | PROTOTYPES: ENABLE |
| 5 | ||
| 6 | void | |
|
16276
8853d1da70f5
Rename a number of Perl functions which were munged at some point
Warren Togami Jr. <warren@togami.com>
parents:
15899
diff
changeset
|
7 | pidgin_themes_init() |
| 14478 | 8 | |
| 9 | gboolean | |
|
16276
8853d1da70f5
Rename a number of Perl functions which were munged at some point
Warren Togami Jr. <warren@togami.com>
parents:
15899
diff
changeset
|
10 | pidgin_themes_smileys_disabled() |
| 14478 | 11 | |
| 12 | void | |
|
16276
8853d1da70f5
Rename a number of Perl functions which were munged at some point
Warren Togami Jr. <warren@togami.com>
parents:
15899
diff
changeset
|
13 | pidgin_themes_smiley_theme_probe() |
| 14478 | 14 | |
| 15 | void | |
|
16276
8853d1da70f5
Rename a number of Perl functions which were munged at some point
Warren Togami Jr. <warren@togami.com>
parents:
15899
diff
changeset
|
16 | pidgin_themes_load_smiley_theme(file, load) |
| 14478 | 17 | const char * file |
| 18 | gboolean load | |
| 19 | ||
|
35312
add13288757e
Remove more GtkImHtml dependencies (from perl and two other plugins)
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
16276
diff
changeset
|
20 | # We are dropping IMHtml, so this one should be converted to non-IMHtml |
|
add13288757e
Remove more GtkImHtml dependencies (from perl and two other plugins)
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
16276
diff
changeset
|
21 | # smiley or dropped. |
|
add13288757e
Remove more GtkImHtml dependencies (from perl and two other plugins)
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
16276
diff
changeset
|
22 | #void |
|
add13288757e
Remove more GtkImHtml dependencies (from perl and two other plugins)
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
16276
diff
changeset
|
23 | #pidgin_themes_get_proto_smileys(id) |
|
add13288757e
Remove more GtkImHtml dependencies (from perl and two other plugins)
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
16276
diff
changeset
|
24 | # const char * id |
|
add13288757e
Remove more GtkImHtml dependencies (from perl and two other plugins)
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
16276
diff
changeset
|
25 | #PREINIT: |
|
add13288757e
Remove more GtkImHtml dependencies (from perl and two other plugins)
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
16276
diff
changeset
|
26 | # GSList *l; |
|
add13288757e
Remove more GtkImHtml dependencies (from perl and two other plugins)
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
16276
diff
changeset
|
27 | #PPCODE: |
|
add13288757e
Remove more GtkImHtml dependencies (from perl and two other plugins)
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
16276
diff
changeset
|
28 | # for (l = pidgin_themes_get_proto_smileys(id); l != NULL; l = l->next) { |
|
add13288757e
Remove more GtkImHtml dependencies (from perl and two other plugins)
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
16276
diff
changeset
|
29 | # XPUSHs(sv_2mortal(purple_perl_bless_object(l->data, "Pidgin::IMHtml::Smiley"))); |
|
add13288757e
Remove more GtkImHtml dependencies (from perl and two other plugins)
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
16276
diff
changeset
|
30 | # } |