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 | /* TODO | |
| 4 | ||
| 5 | ||
| 6 | Gaim::Ssl::Connection | |
| 7 | gaim_ssl_connect(account, host, port, func, error_func, data) | |
| 8 | Gaim::Account account | |
| 9 | const char *host | |
| 10 | int port | |
| 11 | GaimSslInputFunction func | |
| 12 | GaimSslErrorFunction error_func | |
| 13 | ||
| 12773 | 14 | void |
| 11118 | 15 | gaim_ssl_input_add(gsc, func, data) |
| 16 | Gaim::Ssl::Connection gsc | |
| 17 | Gaim::SslInputFunction func | |
| 18 | ||
| 19 | Gaim::Ssl::Connection | |
| 20 | gaim_ssl_connect_fd(account, fd, func, error_func, data) | |
| 21 | Gaim::Account account | |
| 22 | int fd | |
| 23 | GaimSslInputFunction func | |
| 24 | GaimSslErrorFunction error_func | |
| 25 | ||
| 26 | */ | |
| 27 | ||
| 28 | MODULE = Gaim::SSL PACKAGE = Gaim::SSL PREFIX = gaim_ssl_ | |
| 29 | PROTOTYPES: ENABLE | |
| 12773 | 30 | |
| 31 | void | |
| 11118 | 32 | gaim_ssl_close(gsc) |
| 33 | Gaim::Ssl::Connection gsc | |
| 34 | ||
| 35 | Gaim::Ssl::Ops | |
| 36 | gaim_ssl_get_ops() | |
| 37 | ||
| 12773 | 38 | void |
| 11118 | 39 | gaim_ssl_init() |
| 40 | ||
| 12773 | 41 | gboolean |
| 11118 | 42 | gaim_ssl_is_supported() |
| 43 | ||
| 12773 | 44 | size_t |
| 11118 | 45 | gaim_ssl_read(gsc, buffer, len) |
| 46 | Gaim::Ssl::Connection gsc | |
| 47 | void * buffer | |
| 48 | size_t len | |
| 49 | ||
| 12773 | 50 | void |
| 11118 | 51 | gaim_ssl_set_ops(ops) |
| 52 | Gaim::Ssl::Ops ops | |
| 53 | ||
| 12773 | 54 | void |
| 11118 | 55 | gaim_ssl_uninit() |
| 56 | ||
| 12773 | 57 | size_t |
| 11118 | 58 | gaim_ssl_write(gsc, buffer, len) |
| 59 | Gaim::Ssl::Connection gsc | |
| 60 | void * buffer | |
| 61 | size_t len |