Tue, 14 Feb 2006 05:43:43 +0000
[gaim-migrate @ 15646]
Always show a vertical scrollbar on conversations imhtmls. This will solve the shrinking conversation window bug. I chose this approach instead of saving the size of the window (as I had previous talked about), as this prevents the contents of the scrollback from rewrapping when the scrollbars appear or disappear. It also just seems to feel like the right thing to do, but maybe that's me being lazy.
| 11118 | 1 | #include "module.h" |
| 2 | ||
| 3 | MODULE = Gaim::Prpl PACKAGE = Gaim::Find PREFIX = gaim_find_ | |
| 4 | PROTOTYPES: ENABLE | |
| 5 | ||
| 6 | Gaim::Plugin | |
| 7 | gaim_find_prpl(id) | |
| 8 | const char *id | |
| 9 | ||
| 10 | MODULE = Gaim::Prpl PACKAGE = Gaim::Prpl PREFIX = gaim_prpl_ | |
| 11 | PROTOTYPES: ENABLE | |
| 12 | ||
| 12792 | 13 | void |
| 11118 | 14 | gaim_prpl_change_account_status(account, old_status, new_status) |
| 15 | Gaim::Account account | |
| 16 | Gaim::Status old_status | |
| 17 | Gaim::Status new_status | |
| 18 | ||
| 19 | void | |
| 20 | gaim_prpl_get_statuses(account, presence) | |
| 21 | Gaim::Account account | |
| 22 | Gaim::Presence presence | |
| 23 | PREINIT: | |
| 12792 | 24 | GList *l; |
| 11118 | 25 | PPCODE: |
| 12792 | 26 | for (l = gaim_prpl_get_statuses(account,presence); l != NULL; l = l->next) { |
| 27 | /* XXX Someone please test and make sure this is the right | |
| 28 | * type for these things. */ | |
| 29 | XPUSHs(sv_2mortal(gaim_perl_bless_object(l->data, "Gaim::Status"))); | |
| 30 | } | |
| 11118 | 31 | |
| 12792 | 32 | void |
| 11118 | 33 | gaim_prpl_got_account_idle(account, idle, idle_time) |
| 34 | Gaim::Account account | |
| 35 | gboolean idle | |
| 36 | time_t idle_time | |
| 37 | ||
| 12792 | 38 | void |
| 11118 | 39 | gaim_prpl_got_account_login_time(account, login_time) |
| 40 | Gaim::Account account | |
| 41 | time_t login_time | |
| 42 | ||
| 12792 | 43 | void |
| 11118 | 44 | gaim_prpl_got_user_idle(account, name, idle, idle_time) |
| 45 | Gaim::Account account | |
| 46 | const char *name | |
| 47 | gboolean idle | |
| 48 | time_t idle_time | |
| 49 | ||
| 12792 | 50 | void |
| 11118 | 51 | gaim_prpl_got_user_login_time(account, name, login_time) |
| 52 | Gaim::Account account | |
| 53 | const char *name | |
| 54 | time_t login_time |