summaryrefslogtreecommitdiff
path: root/include/sway/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/config.h')
-rw-r--r--include/sway/config.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index 02ace979..00b5f25b 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -35,7 +35,6 @@ enum binding_flags {
BINDING_BORDER=4, // mouse only; trigger on container border
BINDING_CONTENTS=8, // mouse only; trigger on container contents
BINDING_TITLEBAR=16, // mouse only; trigger on container titlebar
- BINDING_RELOAD=32, // the binding runs the reload command
};
/**
@@ -257,6 +256,12 @@ enum edge_border_types {
E_SMART_NO_GAPS, /**< hide both if one window and gaps to edge is zero */
};
+enum sway_popup_during_fullscreen {
+ POPUP_SMART,
+ POPUP_IGNORE,
+ POPUP_LEAVE,
+};
+
enum command_context {
CONTEXT_CONFIG = 1,
CONTEXT_BINDING = 2,
@@ -356,6 +361,7 @@ struct sway_config {
bool pango_markup;
size_t urgent_timeout;
enum sway_fowa focus_on_window_activation;
+ enum sway_popup_during_fullscreen popup_during_fullscreen;
// Flags
bool focus_follows_mouse;