2015-08-05 11:30:40 +10:00
|
|
|
#ifndef _SWAY_CONFIG_H
|
|
|
|
#define _SWAY_CONFIG_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <wlc/wlc.h>
|
2015-08-18 16:33:15 +10:00
|
|
|
#include <xkbcommon/xkbcommon.h>
|
2015-08-05 11:30:40 +10:00
|
|
|
#include "list.h"
|
|
|
|
|
2015-08-06 12:10:56 +10:00
|
|
|
struct sway_variable {
|
2015-08-11 05:09:51 +10:00
|
|
|
char *name;
|
|
|
|
char *value;
|
2015-08-06 12:10:56 +10:00
|
|
|
};
|
|
|
|
|
2015-08-05 11:30:40 +10:00
|
|
|
struct sway_binding {
|
2015-08-11 05:09:51 +10:00
|
|
|
list_t *keys;
|
|
|
|
uint32_t modifiers;
|
|
|
|
char *command;
|
2015-08-05 11:30:40 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
struct sway_mode {
|
2015-08-11 05:09:51 +10:00
|
|
|
char *name;
|
|
|
|
list_t *bindings;
|
2015-08-05 11:30:40 +10:00
|
|
|
};
|
|
|
|
|
2015-08-18 10:34:53 +10:00
|
|
|
struct workspace_output {
|
|
|
|
char *output;
|
|
|
|
char *workspace;
|
|
|
|
};
|
|
|
|
|
2015-08-05 11:30:40 +10:00
|
|
|
struct sway_config {
|
2015-08-11 05:09:51 +10:00
|
|
|
list_t *symbols;
|
|
|
|
list_t *modes;
|
2015-08-14 03:32:43 +10:00
|
|
|
list_t *cmd_queue;
|
2015-08-18 10:34:53 +10:00
|
|
|
list_t *workspace_outputs;
|
2015-08-11 05:09:51 +10:00
|
|
|
struct sway_mode *current_mode;
|
2015-08-18 20:48:41 +10:00
|
|
|
uint32_t floating_mod;
|
2015-08-11 05:09:51 +10:00
|
|
|
|
|
|
|
// Flags
|
|
|
|
bool focus_follows_mouse;
|
|
|
|
bool mouse_warping;
|
2015-08-18 20:48:41 +10:00
|
|
|
bool active;
|
|
|
|
bool failed;
|
2015-08-11 05:09:51 +10:00
|
|
|
bool reloading;
|
2015-08-19 07:53:57 +10:00
|
|
|
|
|
|
|
int gaps_inner;
|
|
|
|
int gaps_outer;
|
2015-08-05 11:30:40 +10:00
|
|
|
};
|
|
|
|
|
2015-08-20 22:37:09 +10:00
|
|
|
bool load_config(const char *file);
|
2015-08-14 05:41:29 +10:00
|
|
|
bool read_config(FILE *file, bool is_active);
|
2015-08-06 12:40:38 +10:00
|
|
|
char *do_var_replacement(struct sway_config *config, char *str);
|
2015-08-05 11:30:40 +10:00
|
|
|
|
2015-08-09 09:24:18 +10:00
|
|
|
extern struct sway_config *config;
|
|
|
|
|
2015-08-05 11:30:40 +10:00
|
|
|
#endif
|