pidgin/plugins/perl/common/GtkConv.xs

changeset 15899
75f0041f72b8
parent 15711
cd8a32e0e0b5
child 18068
b6554e3c8224
child 34659
4fc616843cb2
equal deleted inserted replaced
15898:ac6c6fb9bc00 15899:75f0041f72b8
3 MODULE = Pidgin::Conversation PACKAGE = Pidgin::Conversation PREFIX = pidgin_conv_ 3 MODULE = Pidgin::Conversation PACKAGE = Pidgin::Conversation PREFIX = pidgin_conv_
4 PROTOTYPES: ENABLE 4 PROTOTYPES: ENABLE
5 5
6 void 6 void
7 pidgin_conv_update_buddy_icon(conv) 7 pidgin_conv_update_buddy_icon(conv)
8 Gaim::Conversation conv 8 Purple::Conversation conv
9 9
10 void 10 void
11 pidgin_conv_switch_active_conversation(conv) 11 pidgin_conv_switch_active_conversation(conv)
12 Gaim::Conversation conv 12 Purple::Conversation conv
13 13
14 void 14 void
15 pidgin_conv_update_buttons_by_protocol(conv) 15 pidgin_conv_update_buttons_by_protocol(conv)
16 Gaim::Conversation conv 16 Purple::Conversation conv
17 17
18 void 18 void
19 pidgin_conv_present_conversation(conv) 19 pidgin_conv_present_conversation(conv)
20 Gaim::Conversation conv 20 Purple::Conversation conv
21 21
22 Pidgin::Conversation::Window 22 Pidgin::Conversation::Window
23 pidgin_conv_get_window(conv) 23 pidgin_conv_get_window(conv)
24 Pidgin::Conversation conv 24 Pidgin::Conversation conv
25 25
26 void 26 void
27 pidgin_conv_new(class, conv) 27 pidgin_conv_new(class, conv)
28 Gaim::Conversation conv 28 Purple::Conversation conv
29 C_ARGS: 29 C_ARGS:
30 conv 30 conv
31 31
32 gboolean 32 gboolean
33 pidgin_conv_is_hidden(gtkconv) 33 pidgin_conv_is_hidden(gtkconv)
34 Pidgin::Conversation gtkconv 34 Pidgin::Conversation gtkconv
35 35
36 void 36 void
37 pidgin_conv_get_gtkconv(conv) 37 pidgin_conv_get_gtkconv(conv)
38 Gaim::Conversation conv 38 Purple::Conversation conv
39 PPCODE: 39 PPCODE:
40 if (conv != NULL && PIDGIN_IS_PIDGIN_CONVERSATION(conv)) 40 if (conv != NULL && PIDGIN_IS_PIDGIN_CONVERSATION(conv))
41 XPUSHs(sv_2mortal(gaim_perl_bless_object( 41 XPUSHs(sv_2mortal(purple_perl_bless_object(
42 PIDGIN_CONVERSATION(conv), 42 PIDGIN_CONVERSATION(conv),
43 "Pidgin::Conversation"))); 43 "Pidgin::Conversation")));
44 44
45 MODULE = Pidgin::Conversation PACKAGE = Pidgin::Conversations PREFIX = pidgin_conversations_ 45 MODULE = Pidgin::Conversation PACKAGE = Pidgin::Conversations PREFIX = pidgin_conversations_
46 PROTOTYPES: ENABLE 46 PROTOTYPES: ENABLE
47 47
48 void 48 void
49 pidgin_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 Purple::ConversationType type
51 Gaim::UnseenState min_state 51 Pidgin::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 Purple::Handle
56 pidgin_conversations_get_handle() 56 pidgin_conversations_get_handle()

mercurial