Sat, 20 Jan 2007 02:32:10 +0000
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
| 14478 | 1 | #include "gtkmodule.h" |
| 2 | ||
| 14629 | 3 | MODULE = Gaim::GtkUI::Conversation::Window PACKAGE = Gaim::GtkUI::Conversation::Window PREFIX = gaim_gtk_conv_window_ |
| 14478 | 4 | PROTOTYPES: ENABLE |
| 5 | ||
| 14629 | 6 | Gaim::GtkUI::Conversation::Window |
| 14652 | 7 | gaim_gtk_conv_window_new(class) |
| 8 | C_ARGS: /* void */ | |
| 14478 | 9 | |
| 10 | void | |
| 11 | gaim_gtk_conv_window_destroy(win) | |
| 14629 | 12 | Gaim::GtkUI::Conversation::Window win |
| 14478 | 13 | |
| 14 | void | |
| 15 | gaim_gtk_conv_window_show(win) | |
| 14629 | 16 | Gaim::GtkUI::Conversation::Window win |
| 14478 | 17 | |
| 18 | void | |
| 19 | gaim_gtk_conv_window_hide(win) | |
| 14629 | 20 | Gaim::GtkUI::Conversation::Window win |
| 14478 | 21 | |
| 22 | void | |
| 23 | gaim_gtk_conv_window_raise(win) | |
| 14629 | 24 | Gaim::GtkUI::Conversation::Window win |
| 14478 | 25 | |
| 26 | void | |
| 27 | gaim_gtk_conv_window_switch_gtkconv(win, gtkconv) | |
| 14629 | 28 | Gaim::GtkUI::Conversation::Window win |
| 29 | Gaim::GtkUI::Conversation gtkconv | |
| 14478 | 30 | |
| 31 | void | |
| 32 | gaim_gtk_conv_window_add_gtkconv(win, gtkconv) | |
| 14629 | 33 | Gaim::GtkUI::Conversation::Window win |
| 34 | Gaim::GtkUI::Conversation gtkconv | |
| 14478 | 35 | |
| 36 | void | |
| 37 | gaim_gtk_conv_window_remove_gtkconv(win, gtkconv) | |
| 14629 | 38 | Gaim::GtkUI::Conversation::Window win |
| 39 | Gaim::GtkUI::Conversation gtkconv | |
| 14478 | 40 | |
| 14629 | 41 | Gaim::GtkUI::Conversation |
| 14478 | 42 | gaim_gtk_conv_window_get_gtkconv_at_index(win, index) |
| 14629 | 43 | Gaim::GtkUI::Conversation::Window win |
| 14478 | 44 | int index |
| 45 | ||
| 14629 | 46 | Gaim::GtkUI::Conversation |
| 14478 | 47 | gaim_gtk_conv_window_get_active_gtkconv(win) |
| 14629 | 48 | Gaim::GtkUI::Conversation::Window win |
| 14478 | 49 | |
| 50 | Gaim::Conversation | |
| 51 | gaim_gtk_conv_window_get_active_conversation(win) | |
| 14629 | 52 | Gaim::GtkUI::Conversation::Window win |
| 14478 | 53 | |
| 54 | gboolean | |
| 55 | gaim_gtk_conv_window_is_active_conversation(conv) | |
| 56 | Gaim::Conversation conv | |
| 57 | ||
| 58 | gboolean | |
| 59 | gaim_gtk_conv_window_has_focus(win) | |
| 14629 | 60 | Gaim::GtkUI::Conversation::Window win |
| 14478 | 61 | |
| 14629 | 62 | Gaim::GtkUI::Conversation::Window |
| 14478 | 63 | gaim_gtk_conv_window_get_at_xy(x, y) |
| 64 | int x | |
| 65 | int y | |
| 66 | ||
| 67 | void | |
| 68 | gaim_gtk_conv_window_get_gtkconvs(win) | |
| 14629 | 69 | Gaim::GtkUI::Conversation::Window win |
| 14478 | 70 | PREINIT: |
| 71 | GList *l; | |
| 72 | PPCODE: | |
| 73 | for (l = gaim_gtk_conv_window_get_gtkconvs(win); l != NULL; l = l->next) { | |
| 14629 | 74 | XPUSHs(sv_2mortal(gaim_perl_bless_object(l->data, "Gaim::GtkUI::Conversation"))); |
| 14478 | 75 | } |
| 76 | ||
| 77 | guint | |
| 78 | gaim_gtk_conv_window_get_gtkconv_count(win) | |
| 14629 | 79 | Gaim::GtkUI::Conversation::Window win |
| 14478 | 80 | |
| 14629 | 81 | Gaim::GtkUI::Conversation::Window |
| 14478 | 82 | gaim_gtk_conv_window_first_with_type(type) |
| 83 | Gaim::ConversationType type | |
| 84 | ||
| 14629 | 85 | Gaim::GtkUI::Conversation::Window |
| 14478 | 86 | gaim_gtk_conv_window_last_with_type(type) |
| 87 | Gaim::ConversationType type | |
| 88 | ||
| 14629 | 89 | MODULE = Gaim::GtkUI::Conversation::Window PACKAGE = Gaim::GtkUI::Conversation::Placement PREFIX = gaim_gtkconv_placement_ |
| 14478 | 90 | PROTOTYPES: ENABLE |
| 91 | ||
| 92 | void | |
| 93 | gaim_gtkconv_placement_get_options() | |
| 94 | PREINIT: | |
| 95 | GList *l; | |
| 96 | PPCODE: | |
| 97 | for (l = gaim_gtkconv_placement_get_options(); l != NULL; l = l->next) { | |
| 14629 | 98 | XPUSHs(sv_2mortal(gaim_perl_bless_object(l->data, "Gaim::GtkUI::Conversation::Window"))); |
| 14478 | 99 | } |
| 100 | ||
| 101 | void | |
| 102 | gaim_gtkconv_placement_add_fnc(id, name, fnc) | |
| 103 | const char * id | |
| 104 | const char * name | |
| 105 | Gaim::Conversation::PlacementFunc fnc | |
| 106 | ||
| 107 | void | |
| 108 | gaim_gtkconv_placement_remove_fnc(id) | |
| 109 | const char * id | |
| 110 | ||
| 111 | const char * | |
| 112 | gaim_gtkconv_placement_get_name(id) | |
| 113 | const char * id | |
| 114 | ||
| 115 | Gaim::Conversation::PlacementFunc | |
| 116 | gaim_gtkconv_placement_get_fnc(id) | |
| 117 | const char * id | |
| 118 | ||
| 119 | void | |
| 120 | gaim_gtkconv_placement_set_current_func(func) | |
| 121 | Gaim::Conversation::PlacementFunc func | |
| 122 | ||
| 123 | Gaim::Conversation::PlacementFunc | |
| 124 | gaim_gtkconv_placement_get_current_func() | |
| 125 | ||
| 126 | void | |
| 127 | gaim_gtkconv_placement_place(gtkconv) | |
| 14629 | 128 | Gaim::GtkUI::Conversation gtkconv |
| 14478 | 129 | |
| 14629 | 130 | MODULE = Gaim::GtkUI::Conversation::Window PACKAGE = Gaim::GtkUI::Conversation::Windows PREFIX = gaim_gtk_conv_windows_ |
| 14478 | 131 | PROTOTYPES: ENABLE |
| 132 | ||
| 133 | void | |
| 134 | gaim_gtk_conv_windows_get_list() | |
| 135 | PREINIT: | |
| 136 | GList *l; | |
| 137 | PPCODE: | |
| 138 | for (l = gaim_gtk_conv_windows_get_list(); l != NULL; l = l->next) { | |
| 14629 | 139 | XPUSHs(sv_2mortal(gaim_perl_bless_object(l->data, "Gaim::GtkUI::Conversation::Window"))); |
| 14478 | 140 | } |