aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/tree/view.h
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-05-15 13:14:18 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-05-17 08:29:14 +1000
commit0e2cc0af3049c6d1b91bda3081238e2e723e81b7 (patch)
tree34a18b12524c8de5bf68712162071abe3e574d71 /include/sway/tree/view.h
parentMerge pull request #1995 from RedSoxFan/fix-1985 (diff)
downloadsway-0e2cc0af3049c6d1b91bda3081238e2e723e81b7.tar.gz
sway-0e2cc0af3049c6d1b91bda3081238e2e723e81b7.tar.zst
sway-0e2cc0af3049c6d1b91bda3081238e2e723e81b7.zip
Implement show_marks
Diffstat (limited to 'include/sway/tree/view.h')
-rw-r--r--include/sway/tree/view.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h
index 7ed4d3df..951912d0 100644
--- a/include/sway/tree/view.h
+++ b/include/sway/tree/view.h
@@ -63,6 +63,11 @@ struct sway_view {
63 list_t *executed_criteria; // struct criteria * 63 list_t *executed_criteria; // struct criteria *
64 list_t *marks; // char * 64 list_t *marks; // char *
65 65
66 struct wlr_texture *marks_focused;
67 struct wlr_texture *marks_focused_inactive;
68 struct wlr_texture *marks_unfocused;
69 struct wlr_texture *marks_urgent;
70
66 union { 71 union {
67 struct wlr_xdg_surface_v6 *wlr_xdg_surface_v6; 72 struct wlr_xdg_surface_v6 *wlr_xdg_surface_v6;
68 struct wlr_xdg_surface *wlr_xdg_surface; 73 struct wlr_xdg_surface *wlr_xdg_surface;
@@ -267,4 +272,6 @@ void view_clear_marks(struct sway_view *view);
267 272
268bool view_has_mark(struct sway_view *view, char *mark); 273bool view_has_mark(struct sway_view *view, char *mark);
269 274
275void view_update_marks_textures(struct sway_view *view);
276
270#endif 277#endif