2017-12-05 20:40:55 +11:00
|
|
|
#ifndef _SWAY_CONFIG_H
|
|
|
|
#define _SWAY_CONFIG_H
|
|
|
|
#include <libinput.h>
|
|
|
|
#include <stdint.h>
|
2017-12-06 04:21:48 +11:00
|
|
|
#include <string.h>
|
2018-03-29 14:04:20 +11:00
|
|
|
#include <time.h>
|
2019-03-20 14:47:29 +11:00
|
|
|
#include <wlr/interfaces/wlr_switch.h>
|
2017-12-06 04:21:48 +11:00
|
|
|
#include <wlr/types/wlr_box.h>
|
2017-12-05 20:40:55 +11:00
|
|
|
#include <xkbcommon/xkbcommon.h>
|
2018-12-10 02:10:41 +11:00
|
|
|
#include "../include/config.h"
|
2017-12-05 20:40:55 +11:00
|
|
|
#include "list.h"
|
2018-08-03 11:37:29 +10:00
|
|
|
#include "swaynag.h"
|
2018-03-30 14:41:33 +11:00
|
|
|
#include "tree/container.h"
|
2018-08-26 12:05:16 +10:00
|
|
|
#include "sway/tree/root.h"
|
2018-03-29 14:04:20 +11:00
|
|
|
#include "wlr-layer-shell-unstable-v1-protocol.h"
|
2017-12-05 20:40:55 +11:00
|
|
|
|
2018-03-30 08:41:02 +11:00
|
|
|
// TODO: Refactor this shit
|
|
|
|
|
2017-12-05 20:40:55 +11:00
|
|
|
/**
|
|
|
|
* Describes a variable created via the `set` command.
|
|
|
|
*/
|
|
|
|
struct sway_variable {
|
|
|
|
char *name;
|
|
|
|
char *value;
|
|
|
|
};
|
|
|
|
|
Parse mouse binding options
First, the existing sway_binding structure is given an
enumerated type code. As all flags to bindsym/bindcode
are boolean, a single uint32 is used to hold all flags.
The _BORDER, _CONTENTS, _TITLEBAR flags, when active,
indicate in which part of a container the binding can
trigger; to localize complexity, they do not overlap
with the command line arguments, which center around
_TITLEBAR being set by default.
The keyboard handling code is adjusted for this change,
as is binding_key_compare; note that BINDING_LOCKED
is *not* part of the key portion of the binding.
Next, list of mouse bindings is introduced and cleaned up.
Finally, the binding command parsing code is extended
to handle the case where bindsym is used to describe
a mouse binding rather than a keysym binding; the
difference between the two may be detected as late as
when the first key/button is parsed, or as early as
the first flag. As bindings can have multiple
keycodes/keysyms/buttons, mixed keysym/button sequences
are prohibited.
2018-07-18 12:01:06 +10:00
|
|
|
enum binding_input_type {
|
|
|
|
BINDING_KEYCODE,
|
|
|
|
BINDING_KEYSYM,
|
2019-01-07 05:16:54 +11:00
|
|
|
BINDING_MOUSECODE,
|
|
|
|
BINDING_MOUSESYM,
|
2019-03-20 14:47:29 +11:00
|
|
|
BINDING_SWITCH
|
Parse mouse binding options
First, the existing sway_binding structure is given an
enumerated type code. As all flags to bindsym/bindcode
are boolean, a single uint32 is used to hold all flags.
The _BORDER, _CONTENTS, _TITLEBAR flags, when active,
indicate in which part of a container the binding can
trigger; to localize complexity, they do not overlap
with the command line arguments, which center around
_TITLEBAR being set by default.
The keyboard handling code is adjusted for this change,
as is binding_key_compare; note that BINDING_LOCKED
is *not* part of the key portion of the binding.
Next, list of mouse bindings is introduced and cleaned up.
Finally, the binding command parsing code is extended
to handle the case where bindsym is used to describe
a mouse binding rather than a keysym binding; the
difference between the two may be detected as late as
when the first key/button is parsed, or as early as
the first flag. As bindings can have multiple
keycodes/keysyms/buttons, mixed keysym/button sequences
are prohibited.
2018-07-18 12:01:06 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
enum binding_flags {
|
2020-03-31 20:42:25 +11:00
|
|
|
BINDING_RELEASE = 1 << 0,
|
|
|
|
BINDING_LOCKED = 1 << 1, // keyboard only
|
|
|
|
BINDING_BORDER = 1 << 2, // mouse only; trigger on container border
|
|
|
|
BINDING_CONTENTS = 1 << 3, // mouse only; trigger on container contents
|
|
|
|
BINDING_TITLEBAR = 1 << 4, // mouse only; trigger on container titlebar
|
|
|
|
BINDING_CODE = 1 << 5, // keyboard only; convert keysyms into keycodes
|
|
|
|
BINDING_RELOAD = 1 << 6, // switch only; (re)trigger binding on reload
|
|
|
|
BINDING_INHIBITED = 1 << 7, // keyboard only: ignore shortcut inhibitor
|
|
|
|
BINDING_NOREPEAT = 1 << 8, // keyboard only; do not trigger when repeating a held key
|
Parse mouse binding options
First, the existing sway_binding structure is given an
enumerated type code. As all flags to bindsym/bindcode
are boolean, a single uint32 is used to hold all flags.
The _BORDER, _CONTENTS, _TITLEBAR flags, when active,
indicate in which part of a container the binding can
trigger; to localize complexity, they do not overlap
with the command line arguments, which center around
_TITLEBAR being set by default.
The keyboard handling code is adjusted for this change,
as is binding_key_compare; note that BINDING_LOCKED
is *not* part of the key portion of the binding.
Next, list of mouse bindings is introduced and cleaned up.
Finally, the binding command parsing code is extended
to handle the case where bindsym is used to describe
a mouse binding rather than a keysym binding; the
difference between the two may be detected as late as
when the first key/button is parsed, or as early as
the first flag. As bindings can have multiple
keycodes/keysyms/buttons, mixed keysym/button sequences
are prohibited.
2018-07-18 12:01:06 +10:00
|
|
|
};
|
|
|
|
|
2017-12-05 20:40:55 +11:00
|
|
|
/**
|
|
|
|
* A key binding and an associated command.
|
|
|
|
*/
|
|
|
|
struct sway_binding {
|
Parse mouse binding options
First, the existing sway_binding structure is given an
enumerated type code. As all flags to bindsym/bindcode
are boolean, a single uint32 is used to hold all flags.
The _BORDER, _CONTENTS, _TITLEBAR flags, when active,
indicate in which part of a container the binding can
trigger; to localize complexity, they do not overlap
with the command line arguments, which center around
_TITLEBAR being set by default.
The keyboard handling code is adjusted for this change,
as is binding_key_compare; note that BINDING_LOCKED
is *not* part of the key portion of the binding.
Next, list of mouse bindings is introduced and cleaned up.
Finally, the binding command parsing code is extended
to handle the case where bindsym is used to describe
a mouse binding rather than a keysym binding; the
difference between the two may be detected as late as
when the first key/button is parsed, or as early as
the first flag. As bindings can have multiple
keycodes/keysyms/buttons, mixed keysym/button sequences
are prohibited.
2018-07-18 12:01:06 +10:00
|
|
|
enum binding_input_type type;
|
2017-12-05 20:40:55 +11:00
|
|
|
int order;
|
2018-10-19 04:13:40 +11:00
|
|
|
char *input;
|
Parse mouse binding options
First, the existing sway_binding structure is given an
enumerated type code. As all flags to bindsym/bindcode
are boolean, a single uint32 is used to hold all flags.
The _BORDER, _CONTENTS, _TITLEBAR flags, when active,
indicate in which part of a container the binding can
trigger; to localize complexity, they do not overlap
with the command line arguments, which center around
_TITLEBAR being set by default.
The keyboard handling code is adjusted for this change,
as is binding_key_compare; note that BINDING_LOCKED
is *not* part of the key portion of the binding.
Next, list of mouse bindings is introduced and cleaned up.
Finally, the binding command parsing code is extended
to handle the case where bindsym is used to describe
a mouse binding rather than a keysym binding; the
difference between the two may be detected as late as
when the first key/button is parsed, or as early as
the first flag. As bindings can have multiple
keycodes/keysyms/buttons, mixed keysym/button sequences
are prohibited.
2018-07-18 12:01:06 +10:00
|
|
|
uint32_t flags;
|
2018-06-13 00:37:47 +10:00
|
|
|
list_t *keys; // sorted in ascending order
|
2019-02-18 03:08:22 +11:00
|
|
|
list_t *syms; // sorted in ascending order; NULL if BINDING_CODE is not set
|
2017-12-05 20:40:55 +11:00
|
|
|
uint32_t modifiers;
|
2019-07-27 02:02:18 +10:00
|
|
|
xkb_layout_index_t group;
|
2017-12-05 20:40:55 +11:00
|
|
|
char *command;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A mouse binding and an associated command.
|
|
|
|
*/
|
|
|
|
struct sway_mouse_binding {
|
|
|
|
uint32_t button;
|
|
|
|
char *command;
|
|
|
|
};
|
|
|
|
|
2019-03-20 14:47:29 +11:00
|
|
|
/**
|
|
|
|
* A laptop switch binding and an associated command.
|
|
|
|
*/
|
|
|
|
struct sway_switch_binding {
|
|
|
|
enum wlr_switch_type type;
|
|
|
|
enum wlr_switch_state state;
|
|
|
|
uint32_t flags;
|
|
|
|
char *command;
|
|
|
|
};
|
|
|
|
|
2018-09-02 15:03:58 +10:00
|
|
|
/**
|
|
|
|
* Focus on window activation.
|
|
|
|
*/
|
2018-09-02 18:25:45 +10:00
|
|
|
enum sway_fowa {
|
2018-09-02 15:03:58 +10:00
|
|
|
FOWA_SMART,
|
|
|
|
FOWA_URGENT,
|
|
|
|
FOWA_FOCUS,
|
|
|
|
FOWA_NONE,
|
|
|
|
};
|
|
|
|
|
2017-12-05 20:40:55 +11:00
|
|
|
/**
|
|
|
|
* A "mode" of keybindings created via the `mode` command.
|
|
|
|
*/
|
|
|
|
struct sway_mode {
|
|
|
|
char *name;
|
2017-12-28 02:08:18 +11:00
|
|
|
list_t *keysym_bindings;
|
|
|
|
list_t *keycode_bindings;
|
Parse mouse binding options
First, the existing sway_binding structure is given an
enumerated type code. As all flags to bindsym/bindcode
are boolean, a single uint32 is used to hold all flags.
The _BORDER, _CONTENTS, _TITLEBAR flags, when active,
indicate in which part of a container the binding can
trigger; to localize complexity, they do not overlap
with the command line arguments, which center around
_TITLEBAR being set by default.
The keyboard handling code is adjusted for this change,
as is binding_key_compare; note that BINDING_LOCKED
is *not* part of the key portion of the binding.
Next, list of mouse bindings is introduced and cleaned up.
Finally, the binding command parsing code is extended
to handle the case where bindsym is used to describe
a mouse binding rather than a keysym binding; the
difference between the two may be detected as late as
when the first key/button is parsed, or as early as
the first flag. As bindings can have multiple
keycodes/keysyms/buttons, mixed keysym/button sequences
are prohibited.
2018-07-18 12:01:06 +10:00
|
|
|
list_t *mouse_bindings;
|
2019-03-20 14:47:29 +11:00
|
|
|
list_t *switch_bindings;
|
2018-07-06 08:12:14 +10:00
|
|
|
bool pango;
|
2017-12-05 20:40:55 +11:00
|
|
|
};
|
|
|
|
|
2018-04-25 04:39:29 +10:00
|
|
|
struct input_config_mapped_from_region {
|
|
|
|
double x1, y1;
|
|
|
|
double x2, y2;
|
|
|
|
bool mm;
|
|
|
|
};
|
|
|
|
|
2019-06-17 19:38:41 +10:00
|
|
|
struct calibration_matrix {
|
|
|
|
bool configured;
|
|
|
|
float matrix[6];
|
|
|
|
};
|
|
|
|
|
2019-11-02 04:37:29 +11:00
|
|
|
enum input_config_mapped_to {
|
|
|
|
MAPPED_TO_DEFAULT,
|
|
|
|
MAPPED_TO_OUTPUT,
|
2020-03-31 20:42:25 +11:00
|
|
|
MAPPED_TO_REGION,
|
2019-11-02 04:37:29 +11:00
|
|
|
};
|
|
|
|
|
2017-12-05 20:40:55 +11:00
|
|
|
/**
|
2018-04-09 04:15:13 +10:00
|
|
|
* options for input devices
|
2017-12-05 20:40:55 +11:00
|
|
|
*/
|
|
|
|
struct input_config {
|
|
|
|
char *identifier;
|
2019-03-26 13:05:49 +11:00
|
|
|
const char *input_type;
|
2017-12-05 20:40:55 +11:00
|
|
|
|
|
|
|
int accel_profile;
|
2019-06-17 19:38:41 +10:00
|
|
|
struct calibration_matrix calibration_matrix;
|
2017-12-05 20:40:55 +11:00
|
|
|
int click_method;
|
2018-09-29 19:49:41 +10:00
|
|
|
int drag;
|
2017-12-05 20:40:55 +11:00
|
|
|
int drag_lock;
|
|
|
|
int dwt;
|
|
|
|
int left_handed;
|
|
|
|
int middle_emulation;
|
|
|
|
int natural_scroll;
|
|
|
|
float pointer_accel;
|
2018-11-18 06:31:33 +11:00
|
|
|
float scroll_factor;
|
2018-04-18 23:19:23 +10:00
|
|
|
int repeat_delay;
|
|
|
|
int repeat_rate;
|
2018-07-12 06:03:06 +10:00
|
|
|
int scroll_button;
|
2017-12-05 20:40:55 +11:00
|
|
|
int scroll_method;
|
|
|
|
int send_events;
|
|
|
|
int tap;
|
2018-07-14 15:01:47 +10:00
|
|
|
int tap_button_map;
|
2017-12-05 20:40:55 +11:00
|
|
|
|
2017-12-15 21:22:51 +11:00
|
|
|
char *xkb_layout;
|
|
|
|
char *xkb_model;
|
|
|
|
char *xkb_options;
|
|
|
|
char *xkb_rules;
|
|
|
|
char *xkb_variant;
|
2019-07-13 12:04:29 +10:00
|
|
|
char *xkb_file;
|
|
|
|
|
|
|
|
bool xkb_file_is_set;
|
2017-12-15 21:22:51 +11:00
|
|
|
|
2018-07-23 05:16:19 +10:00
|
|
|
int xkb_numlock;
|
|
|
|
int xkb_capslock;
|
|
|
|
|
2018-04-25 04:39:29 +10:00
|
|
|
struct input_config_mapped_from_region *mapped_from_region;
|
2019-11-02 04:37:29 +11:00
|
|
|
|
|
|
|
enum input_config_mapped_to mapped_to;
|
2018-04-25 04:39:29 +10:00
|
|
|
char *mapped_to_output;
|
2019-10-29 11:26:00 +11:00
|
|
|
struct wlr_box *mapped_to_region;
|
2018-04-09 04:15:13 +10:00
|
|
|
|
2017-12-05 20:40:55 +11:00
|
|
|
bool capturable;
|
2017-12-06 04:21:48 +11:00
|
|
|
struct wlr_box region;
|
2017-12-15 03:11:56 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Options for misc device configurations that happen in the seat block
|
|
|
|
*/
|
|
|
|
struct seat_attachment_config {
|
|
|
|
char *identifier;
|
|
|
|
// TODO other things are configured here for some reason
|
|
|
|
};
|
|
|
|
|
2019-02-01 14:58:52 +11:00
|
|
|
enum seat_config_allow_constrain {
|
2020-03-31 20:42:25 +11:00
|
|
|
CONSTRAIN_DEFAULT, // the default is currently enabled
|
2019-02-01 14:58:52 +11:00
|
|
|
CONSTRAIN_ENABLE,
|
2020-03-31 20:42:25 +11:00
|
|
|
CONSTRAIN_DISABLE,
|
2019-02-01 14:58:52 +11:00
|
|
|
};
|
|
|
|
|
2020-02-16 10:40:18 +11:00
|
|
|
enum seat_config_shortcuts_inhibit {
|
2020-03-31 20:42:25 +11:00
|
|
|
SHORTCUTS_INHIBIT_DEFAULT, // the default is currently enabled
|
2020-02-16 10:40:18 +11:00
|
|
|
SHORTCUTS_INHIBIT_ENABLE,
|
2020-03-31 20:42:25 +11:00
|
|
|
SHORTCUTS_INHIBIT_DISABLE,
|
2020-02-16 10:40:18 +11:00
|
|
|
};
|
|
|
|
|
2019-11-04 06:20:05 +11:00
|
|
|
enum seat_keyboard_grouping {
|
2020-03-31 20:42:25 +11:00
|
|
|
KEYBOARD_GROUP_DEFAULT, // the default is currently smart
|
2019-11-04 06:20:05 +11:00
|
|
|
KEYBOARD_GROUP_NONE,
|
2020-03-31 20:42:25 +11:00
|
|
|
KEYBOARD_GROUP_SMART, // keymap and repeat info
|
2019-11-04 06:20:05 +11:00
|
|
|
};
|
|
|
|
|
2019-12-12 03:00:39 +11:00
|
|
|
enum sway_input_idle_source {
|
|
|
|
IDLE_SOURCE_KEYBOARD = 1 << 0,
|
|
|
|
IDLE_SOURCE_POINTER = 1 << 1,
|
|
|
|
IDLE_SOURCE_TOUCH = 1 << 2,
|
|
|
|
IDLE_SOURCE_TABLET_PAD = 1 << 3,
|
|
|
|
IDLE_SOURCE_TABLET_TOOL = 1 << 4,
|
|
|
|
IDLE_SOURCE_SWITCH = 1 << 5,
|
|
|
|
};
|
|
|
|
|
2017-12-15 03:11:56 +11:00
|
|
|
/**
|
|
|
|
* Options for multiseat and other misc device configurations
|
|
|
|
*/
|
|
|
|
struct seat_config {
|
|
|
|
char *name;
|
2017-12-18 02:39:22 +11:00
|
|
|
int fallback; // -1 means not set
|
2017-12-15 03:11:56 +11:00
|
|
|
list_t *attachments; // list of seat_attachment configs
|
2018-12-27 16:32:15 +11:00
|
|
|
int hide_cursor_timeout;
|
2019-02-01 14:58:52 +11:00
|
|
|
enum seat_config_allow_constrain allow_constrain;
|
2020-02-16 10:40:18 +11:00
|
|
|
enum seat_config_shortcuts_inhibit shortcuts_inhibit;
|
2019-11-04 06:20:05 +11:00
|
|
|
enum seat_keyboard_grouping keyboard_grouping;
|
2019-12-12 03:00:39 +11:00
|
|
|
uint32_t idle_inhibit_sources, idle_wake_sources;
|
2019-06-02 05:05:09 +10:00
|
|
|
struct {
|
|
|
|
char *name;
|
|
|
|
int size;
|
|
|
|
} xcursor_theme;
|
2017-12-05 20:40:55 +11:00
|
|
|
};
|
|
|
|
|
2018-04-17 17:54:02 +10:00
|
|
|
enum config_dpms {
|
|
|
|
DPMS_IGNORE,
|
|
|
|
DPMS_ON,
|
2020-03-31 20:42:25 +11:00
|
|
|
DPMS_OFF,
|
2018-04-17 17:54:02 +10:00
|
|
|
};
|
|
|
|
|
2019-11-14 05:23:36 +11:00
|
|
|
enum scale_filter_mode {
|
|
|
|
SCALE_FILTER_DEFAULT, // the default is currently smart
|
|
|
|
SCALE_FILTER_LINEAR,
|
|
|
|
SCALE_FILTER_NEAREST,
|
2020-03-31 20:42:25 +11:00
|
|
|
SCALE_FILTER_SMART,
|
2019-11-14 05:23:36 +11:00
|
|
|
};
|
|
|
|
|
2017-12-05 20:40:55 +11:00
|
|
|
/**
|
|
|
|
* Size and position configuration for a particular output.
|
|
|
|
*
|
|
|
|
* This is set via the `output` command.
|
|
|
|
*/
|
|
|
|
struct output_config {
|
|
|
|
char *name;
|
|
|
|
int enabled;
|
|
|
|
int width, height;
|
2017-12-06 22:36:06 +11:00
|
|
|
float refresh_rate;
|
2019-10-27 07:36:49 +11:00
|
|
|
int custom_mode;
|
2017-12-05 20:40:55 +11:00
|
|
|
int x, y;
|
2017-12-19 00:13:07 +11:00
|
|
|
float scale;
|
2019-11-14 05:23:36 +11:00
|
|
|
enum scale_filter_mode scale_filter;
|
2017-12-06 22:57:13 +11:00
|
|
|
int32_t transform;
|
2019-02-11 11:56:57 +11:00
|
|
|
enum wl_output_subpixel subpixel;
|
2019-09-25 20:58:27 +10:00
|
|
|
int max_render_time; // In milliseconds
|
2020-03-03 01:30:50 +11:00
|
|
|
int adaptive_sync;
|
2017-12-06 22:36:06 +11:00
|
|
|
|
2017-12-05 20:40:55 +11:00
|
|
|
char *background;
|
|
|
|
char *background_option;
|
2018-08-09 03:46:36 +10:00
|
|
|
char *background_fallback;
|
2018-04-17 17:54:02 +10:00
|
|
|
enum config_dpms dpms_state;
|
2017-12-05 20:40:55 +11:00
|
|
|
};
|
|
|
|
|
2018-11-08 14:44:11 +11:00
|
|
|
/**
|
|
|
|
* Stores size of gaps for each side
|
|
|
|
*/
|
|
|
|
struct side_gaps {
|
|
|
|
int top;
|
|
|
|
int right;
|
|
|
|
int bottom;
|
|
|
|
int left;
|
|
|
|
};
|
|
|
|
|
2017-12-05 20:40:55 +11:00
|
|
|
/**
|
2018-09-28 21:58:23 +10:00
|
|
|
* Stores configuration for a workspace, regardless of whether the workspace
|
|
|
|
* exists.
|
2017-12-05 20:40:55 +11:00
|
|
|
*/
|
2018-09-28 21:58:23 +10:00
|
|
|
struct workspace_config {
|
2017-12-05 20:40:55 +11:00
|
|
|
char *workspace;
|
2018-11-12 03:22:38 +11:00
|
|
|
list_t *outputs;
|
2018-09-29 11:06:07 +10:00
|
|
|
int gaps_inner;
|
2018-11-08 14:44:11 +11:00
|
|
|
struct side_gaps gaps_outer;
|
2017-12-05 20:40:55 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
struct bar_config {
|
2019-05-12 13:14:01 +10:00
|
|
|
char *swaybar_command;
|
|
|
|
struct wl_client *client;
|
|
|
|
struct wl_listener client_destroy;
|
|
|
|
|
2017-12-05 20:40:55 +11:00
|
|
|
/**
|
|
|
|
* One of "dock", "hide", "invisible"
|
|
|
|
*
|
|
|
|
* Always visible in dock mode. Visible only when modifier key is held in hide mode.
|
|
|
|
* Never visible in invisible mode.
|
|
|
|
*/
|
|
|
|
char *mode;
|
|
|
|
/**
|
|
|
|
* One of "show" or "hide".
|
|
|
|
*
|
|
|
|
* In "show" mode, it will always be shown on top of the active workspace.
|
|
|
|
*/
|
|
|
|
char *hidden_state;
|
2018-10-13 07:14:52 +11:00
|
|
|
bool visible_by_modifier; // only relevant in "hide" mode
|
2017-12-05 20:40:55 +11:00
|
|
|
/**
|
|
|
|
* Id name used to identify the bar through IPC.
|
|
|
|
*
|
|
|
|
* Defaults to bar-x, where x corresponds to the position of the
|
|
|
|
* embedding bar block in the config file (bar-0, bar-1, ...).
|
|
|
|
*/
|
|
|
|
char *id;
|
|
|
|
uint32_t modifier;
|
|
|
|
list_t *outputs;
|
2018-03-29 14:04:20 +11:00
|
|
|
char *position;
|
2017-12-05 20:40:55 +11:00
|
|
|
list_t *bindings;
|
|
|
|
char *status_command;
|
|
|
|
bool pango_markup;
|
|
|
|
char *font;
|
|
|
|
int height; // -1 not defined
|
|
|
|
bool workspace_buttons;
|
|
|
|
bool wrap_scroll;
|
|
|
|
char *separator_symbol;
|
|
|
|
bool strip_workspace_numbers;
|
2018-11-18 03:11:28 +11:00
|
|
|
bool strip_workspace_name;
|
2017-12-05 20:40:55 +11:00
|
|
|
bool binding_mode_indicator;
|
|
|
|
bool verbose;
|
2018-11-29 03:23:48 +11:00
|
|
|
struct side_gaps gaps;
|
2019-01-11 15:43:45 +11:00
|
|
|
int status_padding;
|
2019-01-11 16:12:24 +11:00
|
|
|
int status_edge_padding;
|
2017-12-05 20:40:55 +11:00
|
|
|
struct {
|
|
|
|
char *background;
|
|
|
|
char *statusline;
|
|
|
|
char *separator;
|
|
|
|
char *focused_background;
|
|
|
|
char *focused_statusline;
|
|
|
|
char *focused_separator;
|
|
|
|
char *focused_workspace_border;
|
|
|
|
char *focused_workspace_bg;
|
|
|
|
char *focused_workspace_text;
|
|
|
|
char *active_workspace_border;
|
|
|
|
char *active_workspace_bg;
|
|
|
|
char *active_workspace_text;
|
|
|
|
char *inactive_workspace_border;
|
|
|
|
char *inactive_workspace_bg;
|
|
|
|
char *inactive_workspace_text;
|
|
|
|
char *urgent_workspace_border;
|
|
|
|
char *urgent_workspace_bg;
|
|
|
|
char *urgent_workspace_text;
|
|
|
|
char *binding_mode_border;
|
|
|
|
char *binding_mode_bg;
|
|
|
|
char *binding_mode_text;
|
|
|
|
} colors;
|
2018-12-10 02:10:41 +11:00
|
|
|
|
|
|
|
#if HAVE_TRAY
|
|
|
|
char *icon_theme;
|
2019-01-16 13:25:28 +11:00
|
|
|
struct wl_list tray_bindings; // struct tray_binding::link
|
2018-12-10 02:10:41 +11:00
|
|
|
list_t *tray_outputs; // char *
|
|
|
|
int tray_padding;
|
|
|
|
#endif
|
2017-12-05 20:40:55 +11:00
|
|
|
};
|
|
|
|
|
2018-10-09 02:40:13 +11:00
|
|
|
struct bar_binding {
|
|
|
|
uint32_t button;
|
|
|
|
bool release;
|
|
|
|
char *command;
|
|
|
|
};
|
|
|
|
|
2019-01-16 13:25:28 +11:00
|
|
|
#if HAVE_TRAY
|
|
|
|
struct tray_binding {
|
|
|
|
uint32_t button;
|
|
|
|
const char *command;
|
|
|
|
struct wl_list link; // struct tray_binding::link
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2017-12-05 20:40:55 +11:00
|
|
|
struct border_colors {
|
2018-04-30 21:24:13 +10:00
|
|
|
float border[4];
|
|
|
|
float background[4];
|
2018-05-03 22:14:17 +10:00
|
|
|
float text[4];
|
2018-04-30 21:24:13 +10:00
|
|
|
float indicator[4];
|
|
|
|
float child_border[4];
|
2017-12-05 20:40:55 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
enum edge_border_types {
|
2020-03-31 20:42:25 +11:00
|
|
|
E_NONE, /**< Don't hide edge borders */
|
|
|
|
E_VERTICAL, /**< hide vertical edge borders */
|
|
|
|
E_HORIZONTAL, /**< hide horizontal edge borders */
|
|
|
|
E_BOTH, /**< hide vertical and horizontal edge borders */
|
2019-11-05 09:10:40 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
enum edge_border_smart_types {
|
|
|
|
ESMART_OFF,
|
|
|
|
ESMART_ON, /**< hide edges if precisely one window is present in workspace */
|
|
|
|
ESMART_NO_GAPS, /**< hide edges if one window and gaps to edge is zero */
|
2017-12-05 20:40:55 +11:00
|
|
|
};
|
|
|
|
|
2018-10-07 21:40:05 +11:00
|
|
|
enum sway_popup_during_fullscreen {
|
|
|
|
POPUP_SMART,
|
|
|
|
POPUP_IGNORE,
|
|
|
|
POPUP_LEAVE,
|
|
|
|
};
|
|
|
|
|
2017-12-05 20:40:55 +11:00
|
|
|
enum command_context {
|
2020-03-31 20:42:25 +11:00
|
|
|
CONTEXT_CONFIG = 1 << 0,
|
|
|
|
CONTEXT_BINDING = 1 << 1,
|
|
|
|
CONTEXT_IPC = 1 << 2,
|
|
|
|
CONTEXT_CRITERIA = 1 << 3,
|
2017-12-05 20:40:55 +11:00
|
|
|
CONTEXT_ALL = 0xFFFFFFFF,
|
|
|
|
};
|
|
|
|
|
2018-11-07 07:58:08 +11:00
|
|
|
enum focus_follows_mouse_mode {
|
|
|
|
FOLLOWS_NO,
|
|
|
|
FOLLOWS_YES,
|
2020-03-31 20:42:25 +11:00
|
|
|
FOLLOWS_ALWAYS,
|
2018-11-07 07:58:08 +11:00
|
|
|
};
|
|
|
|
|
2018-05-28 13:20:21 +10:00
|
|
|
enum focus_wrapping_mode {
|
|
|
|
WRAP_NO,
|
|
|
|
WRAP_YES,
|
2019-10-17 05:27:19 +11:00
|
|
|
WRAP_FORCE,
|
2020-03-31 20:42:25 +11:00
|
|
|
WRAP_WORKSPACE,
|
2018-05-28 13:20:21 +10:00
|
|
|
};
|
|
|
|
|
2018-10-10 20:28:37 +11:00
|
|
|
enum mouse_warping_mode {
|
|
|
|
WARP_NO,
|
|
|
|
WARP_OUTPUT,
|
2020-03-31 20:42:25 +11:00
|
|
|
WARP_CONTAINER,
|
2018-10-10 20:28:37 +11:00
|
|
|
};
|
|
|
|
|
2018-11-26 14:08:58 +11:00
|
|
|
enum alignment {
|
|
|
|
ALIGN_LEFT,
|
|
|
|
ALIGN_CENTER,
|
2020-03-31 20:42:25 +11:00
|
|
|
ALIGN_RIGHT,
|
2018-11-26 14:08:58 +11:00
|
|
|
};
|
|
|
|
|
2019-08-15 17:00:14 +10:00
|
|
|
enum xwayland_mode {
|
|
|
|
XWAYLAND_MODE_DISABLED,
|
|
|
|
XWAYLAND_MODE_LAZY,
|
2020-03-31 20:42:25 +11:00
|
|
|
XWAYLAND_MODE_IMMEDIATE,
|
2019-08-15 17:00:14 +10:00
|
|
|
};
|
|
|
|
|
2017-12-05 20:40:55 +11:00
|
|
|
/**
|
|
|
|
* The configuration struct. The result of loading a config file.
|
|
|
|
*/
|
|
|
|
struct sway_config {
|
2018-08-03 11:37:29 +10:00
|
|
|
char *swaynag_command;
|
|
|
|
struct swaynag_instance swaynag_config_errors;
|
2017-12-05 20:40:55 +11:00
|
|
|
list_t *symbols;
|
|
|
|
list_t *modes;
|
|
|
|
list_t *bars;
|
|
|
|
list_t *cmd_queue;
|
2018-09-28 21:58:23 +10:00
|
|
|
list_t *workspace_configs;
|
2017-12-05 20:40:55 +11:00
|
|
|
list_t *output_configs;
|
|
|
|
list_t *input_configs;
|
2019-03-26 13:05:49 +11:00
|
|
|
list_t *input_type_configs;
|
2017-12-15 03:11:56 +11:00
|
|
|
list_t *seat_configs;
|
2017-12-05 20:40:55 +11:00
|
|
|
list_t *criteria;
|
|
|
|
list_t *no_focus;
|
|
|
|
list_t *active_bar_modifiers;
|
|
|
|
struct sway_mode *current_mode;
|
|
|
|
struct bar_config *current_bar;
|
|
|
|
uint32_t floating_mod;
|
2018-07-25 08:41:08 +10:00
|
|
|
bool floating_mod_inverse;
|
2017-12-05 20:40:55 +11:00
|
|
|
uint32_t dragging_key;
|
|
|
|
uint32_t resizing_key;
|
|
|
|
char *floating_scroll_up_cmd;
|
|
|
|
char *floating_scroll_down_cmd;
|
|
|
|
char *floating_scroll_left_cmd;
|
|
|
|
char *floating_scroll_right_cmd;
|
2018-03-30 14:41:33 +11:00
|
|
|
enum sway_container_layout default_orientation;
|
|
|
|
enum sway_container_layout default_layout;
|
2017-12-05 20:40:55 +11:00
|
|
|
char *font;
|
2018-05-03 15:02:16 +10:00
|
|
|
size_t font_height;
|
2018-09-08 16:19:31 +10:00
|
|
|
size_t font_baseline;
|
2018-05-05 12:53:49 +10:00
|
|
|
bool pango_markup;
|
2018-11-18 06:06:48 +11:00
|
|
|
int titlebar_border_thickness;
|
|
|
|
int titlebar_h_padding;
|
|
|
|
int titlebar_v_padding;
|
2018-07-20 19:37:27 +10:00
|
|
|
size_t urgent_timeout;
|
2018-09-02 18:25:45 +10:00
|
|
|
enum sway_fowa focus_on_window_activation;
|
2018-10-07 21:40:05 +11:00
|
|
|
enum sway_popup_during_fullscreen popup_during_fullscreen;
|
2019-08-15 17:00:14 +10:00
|
|
|
enum xwayland_mode xwayland;
|
2017-12-05 20:40:55 +11:00
|
|
|
|
2019-04-04 12:53:43 +11:00
|
|
|
// swaybg
|
|
|
|
char *swaybg_command;
|
|
|
|
struct wl_client *swaybg_client;
|
|
|
|
struct wl_listener swaybg_client_destroy;
|
|
|
|
|
2017-12-05 20:40:55 +11:00
|
|
|
// Flags
|
2018-11-07 07:58:08 +11:00
|
|
|
enum focus_follows_mouse_mode focus_follows_mouse;
|
2018-10-10 20:28:37 +11:00
|
|
|
enum mouse_warping_mode mouse_warping;
|
2018-05-28 13:20:21 +10:00
|
|
|
enum focus_wrapping_mode focus_wrapping;
|
2017-12-05 20:40:55 +11:00
|
|
|
bool active;
|
|
|
|
bool failed;
|
|
|
|
bool reloading;
|
|
|
|
bool reading;
|
2018-08-03 11:37:29 +10:00
|
|
|
bool validating;
|
2017-12-05 20:40:55 +11:00
|
|
|
bool auto_back_and_forth;
|
|
|
|
bool show_marks;
|
2018-11-26 14:08:58 +11:00
|
|
|
enum alignment title_align;
|
2019-01-02 00:45:21 +11:00
|
|
|
|
2018-09-11 17:17:19 +10:00
|
|
|
bool tiling_drag;
|
2019-01-02 00:45:21 +11:00
|
|
|
int tiling_drag_threshold;
|
2017-12-05 20:40:55 +11:00
|
|
|
|
|
|
|
bool smart_gaps;
|
|
|
|
int gaps_inner;
|
2018-11-08 14:44:11 +11:00
|
|
|
struct side_gaps gaps_outer;
|
2017-12-05 20:40:55 +11:00
|
|
|
|
|
|
|
list_t *config_chain;
|
2018-07-09 05:34:47 +10:00
|
|
|
const char *current_config_path;
|
2017-12-05 20:40:55 +11:00
|
|
|
const char *current_config;
|
2018-11-29 03:08:54 +11:00
|
|
|
int current_config_line_number;
|
|
|
|
char *current_config_line;
|
2017-12-05 20:40:55 +11:00
|
|
|
|
2018-03-30 14:41:33 +11:00
|
|
|
enum sway_container_border border;
|
|
|
|
enum sway_container_border floating_border;
|
2017-12-05 20:40:55 +11:00
|
|
|
int border_thickness;
|
|
|
|
int floating_border_thickness;
|
|
|
|
enum edge_border_types hide_edge_borders;
|
2019-11-05 09:10:40 +11:00
|
|
|
enum edge_border_smart_types hide_edge_borders_smart;
|
2019-02-24 20:00:15 +11:00
|
|
|
bool hide_lone_tab;
|
2017-12-05 20:40:55 +11:00
|
|
|
|
|
|
|
// border colors
|
|
|
|
struct {
|
|
|
|
struct border_colors focused;
|
|
|
|
struct border_colors focused_inactive;
|
|
|
|
struct border_colors unfocused;
|
|
|
|
struct border_colors urgent;
|
|
|
|
struct border_colors placeholder;
|
2018-04-30 21:24:13 +10:00
|
|
|
float background[4];
|
2017-12-05 20:40:55 +11:00
|
|
|
} border_colors;
|
|
|
|
|
|
|
|
// floating view
|
|
|
|
int32_t floating_maximum_width;
|
|
|
|
int32_t floating_maximum_height;
|
|
|
|
int32_t floating_minimum_width;
|
|
|
|
int32_t floating_minimum_height;
|
|
|
|
|
2019-02-18 03:08:22 +11:00
|
|
|
// The keysym to keycode translation
|
2019-02-20 00:35:35 +11:00
|
|
|
struct xkb_state *keysym_translation_state;
|
2019-02-18 03:08:22 +11:00
|
|
|
|
2018-01-21 03:32:07 +11:00
|
|
|
// Context for command handlers
|
|
|
|
struct {
|
|
|
|
struct input_config *input_config;
|
2018-06-03 11:33:16 +10:00
|
|
|
struct output_config *output_config;
|
2018-01-21 03:44:34 +11:00
|
|
|
struct seat_config *seat_config;
|
2018-01-21 06:10:11 +11:00
|
|
|
struct sway_seat *seat;
|
Implement type safe arguments and demote sway_container
This commit changes the meaning of sway_container so that it only refers
to layout containers and view containers. Workspaces, outputs and the
root are no longer known as containers. Instead, root, outputs,
workspaces and containers are all a type of node, and containers come in
two types: layout containers and view containers.
In addition to the above, this implements type safe variables. This
means we use specific types such as sway_output and sway_workspace
instead of generic containers or nodes. However, it's worth noting that
in a few places places (eg. seat focus and transactions) referring to
them in a generic way is unavoidable which is why we still use nodes in
some places.
If you want a TL;DR, look at node.h, as well as the struct definitions
for root, output, workspace and container. Note that sway_output now
contains a workspaces list, and workspaces now contain a tiling and
floating list, and containers now contain a pointer back to the
workspace.
There are now functions for seat_get_focused_workspace and
seat_get_focused_container. The latter will return NULL if a workspace
itself is focused. Most other seat functions like seat_get_focus and
seat_set_focus now accept and return nodes.
In the config->handler_context struct, current_container has been
replaced with three pointers: node, container and workspace. node is the
same as what current_container was, while workspace is the workspace
that the node resides on and container is the actual container, which
may be NULL if a workspace itself is focused.
The global root_container variable has been replaced with one simply
called root, which is a pointer to the sway_root instance.
The way outputs are created, enabled, disabled and destroyed has
changed. Previously we'd wrap the sway_output in a container when it is
enabled, but as we don't have containers any more it needs a different
approach. The output_create and output_destroy functions previously
created/destroyed the container, but now they create/destroy the
sway_output. There is a new function output_disable to disable an output
without destroying it.
Containers have a new view property. If this is populated then the
container is a view container, otherwise it's a layout container. Like
before, this property is immutable for the life of the container.
Containers have both a `sway_container *parent` and
`sway_workspace *workspace`. As we use specific types now, parent cannot
point to a workspace so it'll be NULL for containers which are direct
children of the workspace. The workspace property is set for all
containers, except those which are hidden in the scratchpad as they have
no workspace.
In some cases we need to refer to workspaces in a container-like way.
For example, workspaces have layout and children, but when using
specific types this makes it difficult. Likewise, it's difficult for a
container to get its parent's layout when the parent could be another
container or a workspace. To make it easier, some helper functions have
been created: container_parent_layout and container_get_siblings.
container_remove_child has been renamed to container_detach and
container_replace_child has been renamed to container_replace.
`container_handle_fullscreen_reparent(con, old_parent)` has had the
old_parent removed. We now unfullscreen the workspace when detaching the
container, so this function is simplified and only needs one argument
now.
container_notify_subtree_changed has been renamed to
container_update_representation. This is more descriptive of its
purpose. I also wanted to be able to call it with whatever container was
changed rather than the container's parent, which makes bubbling up to
the workspace easier.
There are now state structs per node thing. ie. sway_output_state,
sway_workspace_state and sway_container_state.
The focus, move and layout commands have been completely refactored to
work with the specific types. I considered making these a separate PR,
but I'd be backporting my changes only to replace them again, and it's
easier just to test everything at once.
2018-08-30 21:00:10 +10:00
|
|
|
struct sway_node *node;
|
|
|
|
struct sway_container *container;
|
|
|
|
struct sway_workspace *workspace;
|
2018-05-15 11:24:16 +10:00
|
|
|
bool using_criteria;
|
2018-06-03 11:33:16 +10:00
|
|
|
struct {
|
|
|
|
int argc;
|
|
|
|
char **argv;
|
|
|
|
} leftovers;
|
2018-01-21 03:32:07 +11:00
|
|
|
} handler_context;
|
2017-12-05 20:40:55 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads the main config from the given path. is_active should be true when
|
|
|
|
* reloading the config.
|
|
|
|
*/
|
2018-08-03 11:37:29 +10:00
|
|
|
bool load_main_config(const char *path, bool is_active, bool validating);
|
2017-12-05 20:40:55 +11:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads an included config. Can only be used after load_main_config.
|
|
|
|
*/
|
2019-02-24 15:39:08 +11:00
|
|
|
void load_include_configs(const char *path, struct sway_config *config,
|
2018-08-03 11:37:29 +10:00
|
|
|
struct swaynag_instance *swaynag);
|
2017-12-05 20:40:55 +11:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads the config from the given FILE.
|
|
|
|
*/
|
2018-08-03 11:37:29 +10:00
|
|
|
bool read_config(FILE *file, struct sway_config *config,
|
|
|
|
struct swaynag_instance *swaynag);
|
2017-12-05 20:40:55 +11:00
|
|
|
|
2019-01-30 05:18:53 +11:00
|
|
|
/**
|
|
|
|
* Run the commands that were deferred when reading the config file.
|
|
|
|
*/
|
|
|
|
void run_deferred_commands(void);
|
|
|
|
|
2019-06-12 11:41:02 +10:00
|
|
|
/**
|
|
|
|
* Run the binding commands that were deferred when initializing the inputs
|
|
|
|
*/
|
|
|
|
void run_deferred_bindings(void);
|
|
|
|
|
2018-11-29 03:08:54 +11:00
|
|
|
/**
|
|
|
|
* Adds a warning entry to the swaynag instance used for errors.
|
|
|
|
*/
|
|
|
|
void config_add_swaynag_warning(char *fmt, ...);
|
|
|
|
|
2017-12-05 20:40:55 +11:00
|
|
|
/**
|
|
|
|
* Free config struct
|
|
|
|
*/
|
|
|
|
void free_config(struct sway_config *config);
|
2018-01-21 03:32:07 +11:00
|
|
|
|
2017-12-30 01:31:04 +11:00
|
|
|
void free_sway_variable(struct sway_variable *var);
|
2018-04-03 02:16:00 +10:00
|
|
|
|
2017-12-05 20:40:55 +11:00
|
|
|
/**
|
|
|
|
* Does variable replacement for a string based on the config's currently loaded variables.
|
|
|
|
*/
|
|
|
|
char *do_var_replacement(char *str);
|
|
|
|
|
|
|
|
int input_identifier_cmp(const void *item, const void *data);
|
2018-04-03 02:16:00 +10:00
|
|
|
|
2017-12-13 00:29:37 +11:00
|
|
|
struct input_config *new_input_config(const char* identifier);
|
2018-04-03 02:16:00 +10:00
|
|
|
|
2017-12-05 20:40:55 +11:00
|
|
|
void merge_input_config(struct input_config *dst, struct input_config *src);
|
2018-04-03 02:16:00 +10:00
|
|
|
|
2019-06-06 04:16:37 +10:00
|
|
|
struct input_config *store_input_config(struct input_config *ic, char **error);
|
2018-04-03 02:16:00 +10:00
|
|
|
|
2019-03-06 06:38:26 +11:00
|
|
|
void input_config_fill_rule_names(struct input_config *ic,
|
|
|
|
struct xkb_rule_names *rules);
|
2019-02-20 22:54:59 +11:00
|
|
|
|
2017-12-05 20:40:55 +11:00
|
|
|
void free_input_config(struct input_config *ic);
|
2018-04-03 02:16:00 +10:00
|
|
|
|
2017-12-15 03:11:56 +11:00
|
|
|
int seat_name_cmp(const void *item, const void *data);
|
2018-04-03 02:16:00 +10:00
|
|
|
|
2017-12-15 03:11:56 +11:00
|
|
|
struct seat_config *new_seat_config(const char* name);
|
2018-04-03 02:16:00 +10:00
|
|
|
|
2017-12-15 03:11:56 +11:00
|
|
|
void merge_seat_config(struct seat_config *dst, struct seat_config *src);
|
2018-04-03 02:16:00 +10:00
|
|
|
|
2018-01-18 01:49:02 +11:00
|
|
|
struct seat_config *copy_seat_config(struct seat_config *seat);
|
2018-04-03 02:16:00 +10:00
|
|
|
|
2017-12-15 03:11:56 +11:00
|
|
|
void free_seat_config(struct seat_config *ic);
|
2018-04-03 02:16:00 +10:00
|
|
|
|
2018-09-30 20:58:49 +10:00
|
|
|
struct seat_attachment_config *seat_attachment_config_new(void);
|
2018-04-03 02:16:00 +10:00
|
|
|
|
2017-12-15 03:11:56 +11:00
|
|
|
struct seat_attachment_config *seat_config_get_attachment(
|
|
|
|
struct seat_config *seat_config, char *identifier);
|
2018-04-03 02:16:00 +10:00
|
|
|
|
Revamp seat configs
This makes seat configs work like output and input configs do. This also
adds support for wildcard seat configs. A seat config is still created
in the main seat command handler, but instead of creating a new one in
the subcommands and destroying the main seat command's instance, the
seat subcommands modify the main one. The seat config is then stored,
where it is merged appropriately. The seat config returned from
`store_seat_config` is then applied. When attempting to apply a wildcard
seat config, a seat specific config is queried for and if found, that is
used. Otherwise, the wildcard config is applied directly.
Additionally, instead of adding input devices to the default seat
directly when there is no seat configs, a seat config for the default
seat is created with only fallback set to true, which is more explicit.
It also fixes an issue where running a seat command at runtime (with no
seat config in the sway config), would result in all input devices being
removed from the default seat and leaving sway in an unusable state.
Also, instead of checking for any seat config, the search is for a seat
config with a fallback option seat. This makes it so if there are only
seat configs with fallback set to -1, the default seat is still created
since there is no explicit notion on what to do regarding fallbacks.
However, if there is even a single fallback 0, then the default seat is
not used as a fallback. This will be needed for seat subcommands like
hide_cursor where the user may only want to set that property without
effecting anything else.
2018-12-27 16:46:55 +11:00
|
|
|
struct seat_config *store_seat_config(struct seat_config *seat);
|
2017-12-15 03:11:56 +11:00
|
|
|
|
2017-12-05 20:40:55 +11:00
|
|
|
int output_name_cmp(const void *item, const void *data);
|
2018-04-03 02:16:00 +10:00
|
|
|
|
2017-12-30 05:04:16 +11:00
|
|
|
void output_get_identifier(char *identifier, size_t len,
|
|
|
|
struct sway_output *output);
|
2018-04-03 02:16:00 +10:00
|
|
|
|
2019-11-14 05:23:36 +11:00
|
|
|
const char *sway_output_scale_filter_to_string(enum scale_filter_mode scale_filter);
|
|
|
|
|
2017-12-28 07:23:30 +11:00
|
|
|
struct output_config *new_output_config(const char *name);
|
2018-04-03 02:16:00 +10:00
|
|
|
|
2017-12-05 20:40:55 +11:00
|
|
|
void merge_output_config(struct output_config *dst, struct output_config *src);
|
2018-04-03 02:16:00 +10:00
|
|
|
|
2019-01-18 08:30:24 +11:00
|
|
|
bool apply_output_config(struct output_config *oc, struct sway_output *output);
|
2018-04-03 02:16:00 +10:00
|
|
|
|
2020-04-08 19:22:51 +10:00
|
|
|
bool test_output_config(struct output_config *oc, struct sway_output *output);
|
|
|
|
|
2018-07-21 02:32:29 +10:00
|
|
|
struct output_config *store_output_config(struct output_config *oc);
|
|
|
|
|
Fix output config retrieval for new outputs
This removes `output_find_config`, which would take the first matching
output config it found. This is fine if only a name output config,
identifier output config, or even just wildcard exist, but if there is
a name output config and identifier output config, they are not merged.
Instead, this introduces find_output_config, which is just a wrapper
for `get_output_config`. This ensures that both the name and identifier
output configs are respected.
This fixes the following case:
- For simplicity in this example, remove all output configs from config
- Run `swaymsg output <name> bg #ff0000 solid_color`
- Run `swaymsg output <identifier> scale 2`
- Disconnect and reconnect output
Without this, the output will have the background, but not the scale.
With this, the output will have both the background and scale
2019-03-16 06:09:55 +11:00
|
|
|
struct output_config *find_output_config(struct sway_output *output);
|
|
|
|
|
2018-07-21 12:17:20 +10:00
|
|
|
void apply_output_config_to_outputs(struct output_config *oc);
|
|
|
|
|
2019-02-17 08:14:27 +11:00
|
|
|
void reset_outputs(void);
|
|
|
|
|
2017-12-05 20:40:55 +11:00
|
|
|
void free_output_config(struct output_config *oc);
|
|
|
|
|
2019-04-04 12:53:43 +11:00
|
|
|
bool spawn_swaybg(void);
|
|
|
|
|
2017-12-05 20:40:55 +11:00
|
|
|
int workspace_output_cmp_workspace(const void *a, const void *b);
|
|
|
|
|
|
|
|
void free_sway_binding(struct sway_binding *sb);
|
2018-04-03 02:16:00 +10:00
|
|
|
|
2019-03-20 14:47:29 +11:00
|
|
|
void free_switch_binding(struct sway_switch_binding *binding);
|
|
|
|
|
2018-07-24 11:38:29 +10:00
|
|
|
void seat_execute_command(struct sway_seat *seat, struct sway_binding *binding);
|
|
|
|
|
2018-10-10 04:41:12 +11:00
|
|
|
void load_swaybar(struct bar_config *bar);
|
|
|
|
|
2018-09-19 19:37:24 +10:00
|
|
|
void load_swaybars(void);
|
2018-04-03 02:16:00 +10:00
|
|
|
|
2017-12-05 20:40:55 +11:00
|
|
|
struct bar_config *default_bar_config(void);
|
2018-04-03 02:16:00 +10:00
|
|
|
|
2018-03-30 08:41:02 +11:00
|
|
|
void free_bar_config(struct bar_config *bar);
|
2017-12-05 20:40:55 +11:00
|
|
|
|
2018-10-09 02:40:13 +11:00
|
|
|
void free_bar_binding(struct bar_binding *binding);
|
|
|
|
|
2018-09-28 21:58:23 +10:00
|
|
|
void free_workspace_config(struct workspace_config *wsc);
|
|
|
|
|
2018-05-03 15:02:16 +10:00
|
|
|
/**
|
|
|
|
* Updates the value of config->font_height based on the max title height
|
|
|
|
* reported by each container. If recalculate is true, the containers will
|
|
|
|
* recalculate their heights before reporting.
|
2018-05-05 18:25:31 +10:00
|
|
|
*
|
|
|
|
* If the height has changed, all containers will be rearranged to take on the
|
|
|
|
* new size.
|
2018-05-03 15:02:16 +10:00
|
|
|
*/
|
2018-05-05 18:25:31 +10:00
|
|
|
void config_update_font_height(bool recalculate);
|
2018-05-02 23:07:52 +10:00
|
|
|
|
2019-02-18 03:08:22 +11:00
|
|
|
/**
|
|
|
|
* Convert bindsym into bindcode using the first configured layout.
|
|
|
|
* Return false in case the conversion is unsuccessful.
|
|
|
|
*/
|
|
|
|
bool translate_binding(struct sway_binding *binding);
|
|
|
|
|
2019-02-20 22:54:59 +11:00
|
|
|
void translate_keysyms(struct input_config *input_config);
|
2019-02-18 03:08:22 +11:00
|
|
|
|
|
|
|
void binding_add_translated(struct sway_binding *binding, list_t *bindings);
|
|
|
|
|
2018-03-30 08:41:02 +11:00
|
|
|
/* Global config singleton. */
|
2017-12-05 20:40:55 +11:00
|
|
|
extern struct sway_config *config;
|
|
|
|
|
|
|
|
#endif
|