| 1 #include "gtkmodule.h" |
1 #include "gtkmodule.h" |
| 2 |
2 |
| 3 MODULE = Gaim::GtkUI::Conversation PACKAGE = Gaim::GtkUI::Conversation PREFIX = gaim_gtkconv_ |
3 MODULE = Pidgin::Conversation PACKAGE = Pidgin::Conversation PREFIX = pidgin_conv_ |
| 4 PROTOTYPES: ENABLE |
4 PROTOTYPES: ENABLE |
| 5 |
5 |
| 6 void |
6 void |
| 7 gaim_gtkconv_update_buddy_icon(conv) |
7 pidgin_conv_update_buddy_icon(conv) |
| 8 Gaim::Conversation conv |
8 Gaim::Conversation conv |
| 9 |
9 |
| 10 void |
10 void |
| 11 gaim_gtkconv_switch_active_conversation(conv) |
11 pidgin_conv_switch_active_conversation(conv) |
| 12 Gaim::Conversation conv |
12 Gaim::Conversation conv |
| 13 |
13 |
| 14 void |
14 void |
| 15 gaim_gtkconv_update_buttons_by_protocol(conv) |
15 pidgin_conv_update_buttons_by_protocol(conv) |
| 16 Gaim::Conversation conv |
16 Gaim::Conversation conv |
| 17 |
17 |
| 18 void |
18 void |
| 19 gaim_gtkconv_present_conversation(conv) |
19 pidgin_conv_present_conversation(conv) |
| 20 Gaim::Conversation conv |
20 Gaim::Conversation conv |
| 21 |
21 |
| 22 Gaim::GtkUI::Conversation::Window |
22 Pidgin::Conversation::Window |
| 23 gaim_gtkconv_get_window(conv) |
23 pidgin_conv_get_window(conv) |
| 24 Gaim::GtkUI::Conversation conv |
24 Pidgin::Conversation conv |
| 25 |
25 |
| 26 void |
26 void |
| 27 gaim_gtkconv_new(class, conv) |
27 pidgin_conv_new(class, conv) |
| 28 Gaim::Conversation conv |
28 Gaim::Conversation conv |
| 29 C_ARGS: |
29 C_ARGS: |
| 30 conv |
30 conv |
| 31 |
31 |
| 32 gboolean |
32 gboolean |
| 33 gaim_gtkconv_is_hidden(gtkconv) |
33 pidgin_conv_is_hidden(gtkconv) |
| 34 Gaim::GtkUI::Conversation gtkconv |
34 Pidgin::Conversation gtkconv |
| 35 |
35 |
| 36 void |
36 void |
| 37 gaim_gtkconv_get_gtkconv(conv) |
37 pidgin_conv_get_gtkconv(conv) |
| 38 Gaim::Conversation conv |
38 Gaim::Conversation conv |
| 39 PPCODE: |
39 PPCODE: |
| 40 if (conv != NULL && GAIM_IS_GTK_CONVERSATION(conv)) |
40 if (conv != NULL && GAIM_IS_GTK_CONVERSATION(conv)) |
| 41 XPUSHs(sv_2mortal(gaim_perl_bless_object( |
41 XPUSHs(sv_2mortal(gaim_perl_bless_object( |
| 42 GAIM_GTK_CONVERSATION(conv), |
42 PIDGIN_CONVERSATION(conv), |
| 43 "Gaim::GtkUI::Conversation"))); |
43 "Pidgin::Conversation"))); |
| 44 |
44 |
| 45 MODULE = Gaim::GtkUI::Conversation PACKAGE = Gaim::GtkUI::Conversations PREFIX = gaim_gtk_conversations_ |
45 MODULE = Pidgin::Conversation PACKAGE = Pidgin::Conversations PREFIX = pidgin_conversations_ |
| 46 PROTOTYPES: ENABLE |
46 PROTOTYPES: ENABLE |
| 47 |
47 |
| 48 void |
48 void |
| 49 gaim_gtk_conversations_find_unseen_list(type, min_state, hidden_only, max_count) |
49 pidgin_conversations_find_unseen_list(type, min_state, hidden_only, max_count) |
| 50 Gaim::ConversationType type |
50 Gaim::ConversationType type |
| 51 Gaim::UnseenState min_state |
51 Gaim::UnseenState min_state |
| 52 gboolean hidden_only |
52 gboolean hidden_only |
| 53 guint max_count |
53 guint max_count |
| 54 |
54 |
| 55 Gaim::Handle |
55 Gaim::Handle |
| 56 gaim_gtk_conversations_get_handle() |
56 pidgin_conversations_get_handle() |