1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-11 13:50:48 -05:00
rofi/include/theme.h
2016-12-09 19:49:49 +01:00

46 lines
894 B
C

#ifndef THEME_H
#define THEME_H
#include <glib.h>
typedef enum {
P_INTEGER,
P_FLOAT,
P_STRING,
P_BOOLEAN,
P_COLOR
} PropertyType;
typedef struct {
char *name;
PropertyType type;
union {
int i;
double f;
char *s;
int b;
unsigned int color;
} value;
} Property;
typedef struct _Widget {
char *name;
unsigned int num_widgets;
struct _Widget **widgets;
GHashTable *properties;
struct _Widget *parent;
} Widget;
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 );
#endif