Mon, 18 Sep 2006 04:26:33 +0000
[gaim-migrate @ 17305]
Remove a couple more commented out functions, fix the class we were blessing
things into with smiley themes, and add an indentatation level to the
bootstrap section of GtkUI.xs (doesn't matter now but bit me during some of my
testing).
| 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 |
| 14478 | 7 | gaim_gtk_conv_window_new() |
| 8 | ||
| 9 | void | |
| 10 | gaim_gtk_conv_window_destroy(win) | |
| 14629 | 11 | Gaim::GtkUI::Conversation::Window win |
| 14478 | 12 | |
| 13 | void | |
| 14 | gaim_gtk_conv_window_show(win) | |
| 14629 | 15 | Gaim::GtkUI::Conversation::Window win |
| 14478 | 16 | |
| 17 | void | |
| 18 | gaim_gtk_conv_window_hide(win) | |
| 14629 | 19 | Gaim::GtkUI::Conversation::Window win |
| 14478 | 20 | |
| 21 | void | |
| 22 | gaim_gtk_conv_window_raise(win) | |
| 14629 | 23 | Gaim::GtkUI::Conversation::Window win |
| 14478 | 24 | |
| 25 | void | |
| 26 | gaim_gtk_conv_window_switch_gtkconv(win, gtkconv) | |
| 14629 | 27 | Gaim::GtkUI::Conversation::Window win |
| 28 | Gaim::GtkUI::Conversation gtkconv | |
| 14478 | 29 | |
| 30 | void | |
| 31 | gaim_gtk_conv_window_add_gtkconv(win, gtkconv) | |
| 14629 | 32 | Gaim::GtkUI::Conversation::Window win |
| 33 | Gaim::GtkUI::Conversation gtkconv | |
| 14478 | 34 | |
| 35 | void | |
| 36 | gaim_gtk_conv_window_remove_gtkconv(win, gtkconv) | |
| 14629 | 37 | Gaim::GtkUI::Conversation::Window win |
| 38 | Gaim::GtkUI::Conversation gtkconv | |
| 14478 | 39 | |
| 14629 | 40 | Gaim::GtkUI::Conversation |
| 14478 | 41 | gaim_gtk_conv_window_get_gtkconv_at_index(win, index) |
| 14629 | 42 | Gaim::GtkUI::Conversation::Window win |
| 14478 | 43 | int index |
| 44 | ||
| 14629 | 45 | Gaim::GtkUI::Conversation |
| 14478 | 46 | gaim_gtk_conv_window_get_active_gtkconv(win) |
| 14629 | 47 | Gaim::GtkUI::Conversation::Window win |
| 14478 | 48 | |
| 49 | Gaim::Conversation | |
| 50 | gaim_gtk_conv_window_get_active_conversation(win) | |
| 14629 | 51 | Gaim::GtkUI::Conversation::Window win |
| 14478 | 52 | |
| 53 | gboolean | |
| 54 | gaim_gtk_conv_window_is_active_conversation(conv) | |
| 55 | Gaim::Conversation conv | |
| 56 | ||
| 57 | gboolean | |
| 58 | gaim_gtk_conv_window_has_focus(win) | |
| 14629 | 59 | Gaim::GtkUI::Conversation::Window win |
| 14478 | 60 | |
| 14629 | 61 | Gaim::GtkUI::Conversation::Window |
| 14478 | 62 | gaim_gtk_conv_window_get_at_xy(x, y) |
| 63 | int x | |
| 64 | int y | |
| 65 | ||
| 66 | void | |
| 67 | gaim_gtk_conv_window_get_gtkconvs(win) | |
| 14629 | 68 | Gaim::GtkUI::Conversation::Window win |
| 14478 | 69 | PREINIT: |
| 70 | GList *l; | |
| 71 | PPCODE: | |
| 72 | for (l = gaim_gtk_conv_window_get_gtkconvs(win); l != NULL; l = l->next) { | |
| 14629 | 73 | XPUSHs(sv_2mortal(gaim_perl_bless_object(l->data, "Gaim::GtkUI::Conversation"))); |
| 14478 | 74 | } |
| 75 | ||
| 76 | guint | |
| 77 | gaim_gtk_conv_window_get_gtkconv_count(win) | |
| 14629 | 78 | Gaim::GtkUI::Conversation::Window win |
| 14478 | 79 | |
| 14629 | 80 | Gaim::GtkUI::Conversation::Window |
| 14478 | 81 | gaim_gtk_conv_window_first_with_type(type) |
| 82 | Gaim::ConversationType type | |
| 83 | ||
| 14629 | 84 | Gaim::GtkUI::Conversation::Window |
| 14478 | 85 | gaim_gtk_conv_window_last_with_type(type) |
| 86 | Gaim::ConversationType type | |
| 87 | ||
| 14629 | 88 | MODULE = Gaim::GtkUI::Conversation::Window PACKAGE = Gaim::GtkUI::Conversation::Placement PREFIX = gaim_gtkconv_placement_ |
| 14478 | 89 | PROTOTYPES: ENABLE |
| 90 | ||
| 91 | void | |
| 92 | gaim_gtkconv_placement_get_options() | |
| 93 | PREINIT: | |
| 94 | GList *l; | |
| 95 | PPCODE: | |
| 96 | for (l = gaim_gtkconv_placement_get_options(); l != NULL; l = l->next) { | |
| 14629 | 97 | XPUSHs(sv_2mortal(gaim_perl_bless_object(l->data, "Gaim::GtkUI::Conversation::Window"))); |
| 14478 | 98 | } |
| 99 | ||
| 100 | void | |
| 101 | gaim_gtkconv_placement_add_fnc(id, name, fnc) | |
| 102 | const char * id | |
| 103 | const char * name | |
| 104 | Gaim::Conversation::PlacementFunc fnc | |
| 105 | ||
| 106 | void | |
| 107 | gaim_gtkconv_placement_remove_fnc(id) | |
| 108 | const char * id | |
| 109 | ||
| 110 | const char * | |
| 111 | gaim_gtkconv_placement_get_name(id) | |
| 112 | const char * id | |
| 113 | ||
| 114 | Gaim::Conversation::PlacementFunc | |
| 115 | gaim_gtkconv_placement_get_fnc(id) | |
| 116 | const char * id | |
| 117 | ||
| 118 | void | |
| 119 | gaim_gtkconv_placement_set_current_func(func) | |
| 120 | Gaim::Conversation::PlacementFunc func | |
| 121 | ||
| 122 | Gaim::Conversation::PlacementFunc | |
| 123 | gaim_gtkconv_placement_get_current_func() | |
| 124 | ||
| 125 | void | |
| 126 | gaim_gtkconv_placement_place(gtkconv) | |
| 14629 | 127 | Gaim::GtkUI::Conversation gtkconv |
| 14478 | 128 | |
| 14629 | 129 | MODULE = Gaim::GtkUI::Conversation::Window PACKAGE = Gaim::GtkUI::Conversation::Windows PREFIX = gaim_gtk_conv_windows_ |
| 14478 | 130 | PROTOTYPES: ENABLE |
| 131 | ||
| 132 | void | |
| 133 | gaim_gtk_conv_windows_get_list() | |
| 134 | PREINIT: | |
| 135 | GList *l; | |
| 136 | PPCODE: | |
| 137 | for (l = gaim_gtk_conv_windows_get_list(); l != NULL; l = l->next) { | |
| 14629 | 138 | XPUSHs(sv_2mortal(gaim_perl_bless_object(l->data, "Gaim::GtkUI::Conversation::Window"))); |
| 14478 | 139 | } |