summaryrefslogtreecommitdiffstats
path: root/include/theme.h
blob: dae85d9ce4ce2f3b1cc6e9c3649122fba48298c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#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