pidgin/plugins/perl/common/GtkConv.xs

branch
cpw.khc.msnp14
changeset 20478
46933dc62880
parent 15127
5fc0e97f117d
parent 15899
75f0041f72b8
child 20481
65485e2ed8a3
equal deleted inserted replaced
20476:198222e01a7d 20478:46933dc62880
1 #include "gtkmodule.h"
2
3 MODULE = Pidgin::Conversation PACKAGE = Pidgin::Conversation PREFIX = pidgin_conv_
4 PROTOTYPES: ENABLE
5
6 void
7 pidgin_conv_update_buddy_icon(conv)
8 Purple::Conversation conv
9
10 void
11 pidgin_conv_switch_active_conversation(conv)
12 Purple::Conversation conv
13
14 void
15 pidgin_conv_update_buttons_by_protocol(conv)
16 Purple::Conversation conv
17
18 void
19 pidgin_conv_present_conversation(conv)
20 Purple::Conversation conv
21
22 Pidgin::Conversation::Window
23 pidgin_conv_get_window(conv)
24 Pidgin::Conversation conv
25
26 void
27 pidgin_conv_new(class, conv)
28 Purple::Conversation conv
29 C_ARGS:
30 conv
31
32 gboolean
33 pidgin_conv_is_hidden(gtkconv)
34 Pidgin::Conversation gtkconv
35
36 void
37 pidgin_conv_get_gtkconv(conv)
38 Purple::Conversation conv
39 PPCODE:
40 if (conv != NULL && PIDGIN_IS_PIDGIN_CONVERSATION(conv))
41 XPUSHs(sv_2mortal(purple_perl_bless_object(
42 PIDGIN_CONVERSATION(conv),
43 "Pidgin::Conversation")));
44
45 MODULE = Pidgin::Conversation PACKAGE = Pidgin::Conversations PREFIX = pidgin_conversations_
46 PROTOTYPES: ENABLE
47
48 void
49 pidgin_conversations_find_unseen_list(type, min_state, hidden_only, max_count)
50 Purple::ConversationType type
51 Pidgin::UnseenState min_state
52 gboolean hidden_only
53 guint max_count
54
55 Purple::Handle
56 pidgin_conversations_get_handle()

mercurial