summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2018-06-30 12:28:02 +0100
committerLibravatar GitHub <noreply@github.com>2018-06-30 12:28:02 +0100
commitd17ca5d15be2bdeb6541ce0273472ca9a98c9864 (patch)
treedb09a5845214199b2e56aad3dabdb1373f7596d0 /include
parentMerge pull request #2173 from emersion/fix-floating-no-frame-event (diff)
parentcontainer_at_view: don't offset the view by the window geometry (diff)
downloadsway-d17ca5d15be2bdeb6541ce0273472ca9a98c9864.tar.gz
sway-d17ca5d15be2bdeb6541ce0273472ca9a98c9864.tar.zst
sway-d17ca5d15be2bdeb6541ce0273472ca9a98c9864.zip
Merge pull request #2171 from atomnuker/master
Revert "Don't unmaximize floating views"
Diffstat (limited to 'include')
-rw-r--r--include/sway/tree/view.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h
index 3df38e2d..91865232 100644
--- a/include/sway/tree/view.h
+++ b/include/sway/tree/view.h
@@ -32,6 +32,7 @@ struct sway_view_impl {
32 void (*configure)(struct sway_view *view, double lx, double ly, int width, 32 void (*configure)(struct sway_view *view, double lx, double ly, int width,
33 int height); 33 int height);
34 void (*set_activated)(struct sway_view *view, bool activated); 34 void (*set_activated)(struct sway_view *view, bool activated);
35 void (*set_tiled)(struct sway_view *view, bool tiled);
35 void (*set_fullscreen)(struct sway_view *view, bool fullscreen); 36 void (*set_fullscreen)(struct sway_view *view, bool fullscreen);
36 bool (*wants_floating)(struct sway_view *view); 37 bool (*wants_floating)(struct sway_view *view);
37 void (*for_each_surface)(struct sway_view *view, 38 void (*for_each_surface)(struct sway_view *view,
@@ -223,6 +224,8 @@ void view_autoconfigure(struct sway_view *view);
223 224
224void view_set_activated(struct sway_view *view, bool activated); 225void view_set_activated(struct sway_view *view, bool activated);
225 226
227void view_set_tiled(struct sway_view *view, bool tiled);
228
226void view_set_fullscreen_raw(struct sway_view *view, bool fullscreen); 229void view_set_fullscreen_raw(struct sway_view *view, bool fullscreen);
227 230
228void view_set_fullscreen(struct sway_view *view, bool fullscreen); 231void view_set_fullscreen(struct sway_view *view, bool fullscreen);