labwc/include/config/rcxml.h

25 lines
475 B
C
Raw Normal View History

2020-08-03 20:56:38 +01:00
#ifndef __LABWC_RCXML_H
#define __LABWC_RCXML_H
2020-06-05 23:04:54 +01:00
#include <stdio.h>
#include <stdbool.h>
2020-06-16 07:21:53 +01:00
#include <wayland-server-core.h>
2020-06-05 23:04:54 +01:00
2020-07-31 21:31:03 +01:00
#include "common/buf.h"
2020-06-19 22:00:22 +01:00
2020-06-05 23:04:54 +01:00
struct rcxml {
bool client_side_decorations;
char *theme_name;
char *font_name_activewindow;
int font_size_activewindow;
2020-06-16 07:21:53 +01:00
struct wl_list keybinds;
2020-06-05 23:04:54 +01:00
};
extern struct rcxml rc;
void rcxml_parse_xml(struct buf *b);
2020-06-05 23:04:54 +01:00
void rcxml_read(const char *filename);
void rcxml_get_nodenames(struct buf *b);
2020-06-05 23:04:54 +01:00
2020-08-03 20:56:38 +01:00
#endif /* __LABWC_RCXML_H */