pidgin/plugins/perl/common/GtkConv.xs

changeset 15435
4b933b06d75e
parent 15127
5fc0e97f117d
child 15590
c07dd12bf3f4
equal deleted inserted replaced
15434:94dcf9e39d66 15435:4b933b06d75e
1 #include "gtkmodule.h"
2
3 MODULE = Gaim::GtkUI::Conversation PACKAGE = Gaim::GtkUI::Conversation PREFIX = gaim_gtkconv_
4 PROTOTYPES: ENABLE
5
6 void
7 gaim_gtkconv_update_buddy_icon(conv)
8 Gaim::Conversation conv
9
10 void
11 gaim_gtkconv_switch_active_conversation(conv)
12 Gaim::Conversation conv
13
14 void
15 gaim_gtkconv_update_buttons_by_protocol(conv)
16 Gaim::Conversation conv
17
18 void
19 gaim_gtkconv_present_conversation(conv)
20 Gaim::Conversation conv
21
22 Gaim::GtkUI::Conversation::Window
23 gaim_gtkconv_get_window(conv)
24 Gaim::GtkUI::Conversation conv
25
26 void
27 gaim_gtkconv_new(class, conv)
28 Gaim::Conversation conv
29 C_ARGS:
30 conv
31
32 gboolean
33 gaim_gtkconv_is_hidden(gtkconv)
34 Gaim::GtkUI::Conversation gtkconv
35
36 void
37 gaim_gtkconv_get_gtkconv(conv)
38 Gaim::Conversation conv
39 PPCODE:
40 if (conv != NULL && GAIM_IS_GTK_CONVERSATION(conv))
41 XPUSHs(sv_2mortal(gaim_perl_bless_object(
42 GAIM_GTK_CONVERSATION(conv),
43 "Gaim::GtkUI::Conversation")));
44
45 MODULE = Gaim::GtkUI::Conversation PACKAGE = Gaim::GtkUI::Conversations PREFIX = gaim_gtk_conversations_
46 PROTOTYPES: ENABLE
47
48 void
49 gaim_gtk_conversations_find_unseen_list(type, min_state, hidden_only, max_count)
50 Gaim::ConversationType type
51 Gaim::UnseenState min_state
52 gboolean hidden_only
53 guint max_count
54
55 Gaim::Handle
56 gaim_gtk_conversations_get_handle()

mercurial