Mon, 03 Oct 2005 03:17:46 +0000
[gaim-migrate @ 13866]
Rewrite of the "transparency" plugin. This should suck less and now offers the option of being opaque on focus. I need to evaluate the "Always on top" functionality of the Buddy List because it may conflict wiht the WinGaim Options plugin.
| 11118 | 1 | #include "module.h" |
| 2 | ||
| 3 | MODULE = Gaim::Proxy PACKAGE = Gaim::Proxy PREFIX = gaim_proxy_ | |
| 4 | PROTOTYPES: ENABLE | |
| 5 | ||
| 6 | Gaim::ProxyInfo | |
| 7 | gaim_global_proxy_get_info() | |
| 8 | ||
| 9 | ||
| 10 | void * | |
| 11 | gaim_proxy_get_handle() | |
| 12 | ||
| 13 | ||
| 14 | void | |
| 15 | gaim_proxy_info_destroy(info) | |
| 16 | Gaim::ProxyInfo info | |
| 17 | ||
| 18 | const char * | |
| 19 | gaim_proxy_info_get_host(info) | |
| 20 | Gaim::ProxyInfo info | |
| 21 | ||
| 22 | const char * | |
| 23 | gaim_proxy_info_get_password(info) | |
| 24 | Gaim::ProxyInfo info | |
| 25 | ||
| 26 | int | |
| 27 | gaim_proxy_info_get_port(info) | |
| 28 | Gaim::ProxyInfo info | |
| 29 | ||
| 30 | Gaim::ProxyType | |
| 31 | gaim_proxy_info_get_type(info) | |
| 32 | Gaim::ProxyInfo info | |
| 33 | ||
| 34 | const char * | |
| 35 | gaim_proxy_info_get_username(info) | |
| 36 | Gaim::ProxyInfo info | |
| 37 | ||
| 38 | Gaim::ProxyInfo | |
| 39 | gaim_proxy_info_new() | |
| 40 | ||
| 41 | ||
| 42 | void | |
| 43 | gaim_proxy_info_set_host(info, host) | |
| 44 | Gaim::ProxyInfo info | |
| 45 | const char *host | |
| 46 | ||
| 47 | void | |
| 48 | gaim_proxy_info_set_password(info, password) | |
| 49 | Gaim::ProxyInfo info | |
| 50 | const char *password | |
| 51 | ||
| 52 | void | |
| 53 | gaim_proxy_info_set_port(info, port) | |
| 54 | Gaim::ProxyInfo info | |
| 55 | int port | |
| 56 | ||
| 57 | void | |
| 58 | gaim_proxy_info_set_type(info, type) | |
| 59 | Gaim::ProxyInfo info | |
| 60 | Gaim::ProxyType type | |
| 61 | ||
| 62 | void | |
| 63 | gaim_proxy_info_set_username(info, username) | |
| 64 | Gaim::ProxyInfo info | |
| 65 | const char *username | |
| 66 | ||
| 67 | void | |
| 68 | gaim_proxy_init() | |
| 69 | ||
| 70 |