rofi/include/theme.h

69 lines
1.4 KiB
C
Raw Normal View History

2016-12-09 18:49:49 +00:00
#ifndef THEME_H
#define THEME_H
#include <glib.h>
typedef enum {
P_INTEGER,
2016-12-09 21:16:31 +00:00
P_DOUBLE,
2016-12-09 18:49:49 +00:00
P_STRING,
P_BOOLEAN,
P_COLOR
} PropertyType;
2016-12-10 18:48:44 +00:00
typedef struct
{
/** red channel */
double red;
/** green channel */
double green;
/** blue channel */
double blue;
/** alpha channel */
double alpha;
} ThemeColor;
2016-12-09 18:49:49 +00:00
typedef struct {
char *name;
PropertyType type;
union {
int i;
double f;
char *s;
int b;
2016-12-10 18:48:44 +00:00
ThemeColor color;
2016-12-09 18:49:49 +00:00
} value;
} Property;
typedef struct _Widget {
char *name;
unsigned int num_widgets;
struct _Widget **widgets;
GHashTable *properties;
struct _Widget *parent;
} Widget;
2016-12-10 18:48:44 +00:00
2016-12-09 18:49:49 +00:00
extern Widget *rofi_theme;
Widget *rofi_theme_find_or_create_class ( Widget *base, const char *class );
void rofi_theme_print ( Widget *widget );
Property *rofi_theme_property_create ( PropertyType type );
void rofi_theme_property_free ( Property *p );
void rofi_theme_free ( Widget * );
void rofi_theme_parse_file ( const char *file );
2016-12-09 21:16:31 +00:00
/**
* Public API
*/
int rofi_theme_get_integer ( const char *name, const char *property, int def );
int rofi_theme_get_boolean ( const char *name, const char *property, int def );
char *rofi_theme_get_string ( const char *name, const char *property, char *def );
double rofi_theme_get_double ( const char *name, const char *property, double def );
2016-12-09 18:49:49 +00:00
#endif