comparison finch/libgnt/gntstyle.h @ 15817:0e3a8505ebbe

renamed gaim-text to finch
author Sean Egan <seanegan@gmail.com>
date Sun, 18 Mar 2007 19:38:15 +0000
parents
children 56d2ae9cbb5c 8410511f4dbb 08e93462f189
comparison
equal deleted inserted replaced
15816:317e7613e581 15817:0e3a8505ebbe
1 #include "gnt.h"
2
3 typedef enum
4 {
5 GNT_STYLE_SHADOW = 0,
6 GNT_STYLE_COLOR = 1,
7 GNT_STYLE_MOUSE = 2,
8 GNT_STYLE_WM = 3,
9 GNT_STYLE_REMPOS = 4,
10 GNT_STYLES
11 } GntStyle;
12
13 void gnt_style_read_configure_file(const char *filename);
14
15 const char *gnt_style_get(GntStyle style);
16
17 gboolean gnt_style_get_bool(GntStyle style, gboolean def);
18
19 /* This should be called only once for the each type */
20 void gnt_styles_get_keyremaps(GType type, GHashTable *hash);
21
22 void gnt_style_read_actions(GType type, GntBindableClass *klass);
23
24 void gnt_init_styles(void);
25
26 void gnt_uninit_styles(void);
27