view console/libgnt/gntstyle.h @ 14806:a2be9307d58d

[gaim-migrate @ 17571] 18:40:29 <casted> Hi, I found a bug in the gaim-remote script 18:41:48 <casted> ok. On line 104 it is currently: status_type = gaim.GaimSavedStatusGetType(current) 18:41:57 <casted> but should be: status_type = gaim.GaimSavedstatusGetType(current) 18:42:06 <casted> the status must be lowercase committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Mon, 23 Oct 2006 23:30:15 +0000
parents b1b76fb9c739
children 061157db8017
line wrap: on
line source

#include "gnt.h"

typedef enum
{
	GNT_STYLE_SHADOW = 0,
	GNT_STYLE_COLOR = 1,
	GNT_STYLE_MOUSE = 2,
	GNT_STYLE_WM = 3,
	GNT_STYLES
} GntStyle;

void gnt_style_read_configure_file(const char *filename);

const char *gnt_style_get(GntStyle style);

gboolean gnt_style_get_bool(GntStyle style, gboolean def);

/* This should be called only once for the each type */
void gnt_styles_get_keyremaps(GType type, GHashTable *hash);

void gnt_init_styles();

void gnt_uninit_styles();