comparison console/libgnt/gntstyle.h @ 14010:7573bd40a190

[gaim-migrate @ 16602] Allow plugins to be loaded and unloaded. Remember the window positions and sizes. All turning on/off shadow from ~/.gntrc (off by default). committer: Tailor Script <tailor@pidgin.im>
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Mon, 31 Jul 2006 23:19:12 +0000
parents 06f75fb84a78
children a0b1ab181316
comparison
equal deleted inserted replaced
14009:1e283c3566ab 14010:7573bd40a190
1 #include "gnt.h" 1 #include "gnt.h"
2
3 typedef enum
4 {
5 GNT_STYLE_SHADOW = 0,
6 GNT_STYLES
7 } GntStyle;
2 8
3 void gnt_style_read_configure_file(const char *filename); 9 void gnt_style_read_configure_file(const char *filename);
4 10
11 /* Returned strings are all lowercase */
12 const char *gnt_style_get(GntStyle style);
13
14 gboolean gnt_style_get_bool(GntStyle style, gboolean def);
15
16 void gnt_init_styles();
17
18 void gnt_uninit_styles();
19