summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-06-30 22:46:25 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-06-30 22:46:25 +1000
commite396af853b01438f7e5ef34bfa6fd2507d11ce5a (patch)
tree323739dc80680dd774acfdcf43eb76cfe93aa64c /include
parentFix compile error (diff)
parentMerge pull request #2179 from atomnuker/master (diff)
downloadsway-e396af853b01438f7e5ef34bfa6fd2507d11ce5a.tar.gz
sway-e396af853b01438f7e5ef34bfa6fd2507d11ce5a.tar.zst
sway-e396af853b01438f7e5ef34bfa6fd2507d11ce5a.zip
Merge remote-tracking branch 'upstream/master' into atomic
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 1bcb0582..b99044d3 100644
--- a/include/sway/tree/view.h
+++ b/include/sway/tree/view.h
@@ -32,6 +32,7 @@ struct sway_view_impl {
32 uint32_t (*configure)(struct sway_view *view, double lx, double ly, 32 uint32_t (*configure)(struct sway_view *view, double lx, double ly,
33 int width, int height); 33 int width, 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);