aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/ipc.h5
-rw-r--r--include/sway/config.h2
-rw-r--r--include/sway/input/seat.h2
-rw-r--r--include/sway/ipc-server.h2
-rw-r--r--include/sway/tree/view.h2
5 files changed, 8 insertions, 5 deletions
diff --git a/include/ipc.h b/include/ipc.h
index 0010718b..a3f60e19 100644
--- a/include/ipc.h
+++ b/include/ipc.h
@@ -15,6 +15,7 @@ enum ipc_command_type {
15 IPC_GET_VERSION = 7, 15 IPC_GET_VERSION = 7,
16 IPC_GET_BINDING_MODES = 8, 16 IPC_GET_BINDING_MODES = 8,
17 IPC_GET_CONFIG = 9, 17 IPC_GET_CONFIG = 9,
18 IPC_SEND_TICK = 10,
18 19
19 // sway-specific command types 20 // sway-specific command types
20 IPC_GET_INPUTS = 100, 21 IPC_GET_INPUTS = 100,
@@ -27,8 +28,8 @@ enum ipc_command_type {
27 IPC_EVENT_WINDOW = ((1<<31) | 3), 28 IPC_EVENT_WINDOW = ((1<<31) | 3),
28 IPC_EVENT_BARCONFIG_UPDATE = ((1<<31) | 4), 29 IPC_EVENT_BARCONFIG_UPDATE = ((1<<31) | 4),
29 IPC_EVENT_BINDING = ((1<<31) | 5), 30 IPC_EVENT_BINDING = ((1<<31) | 5),
30 IPC_EVENT_MODIFIER = ((1<<31) | 6), 31 IPC_EVENT_SHUTDOWN = ((1<<31) | 6),
31 IPC_EVENT_INPUT = ((1<<31) | 7), 32 IPC_EVENT_TICK = ((1<<31) | 7),
32}; 33};
33 34
34#endif 35#endif
diff --git a/include/sway/config.h b/include/sway/config.h
index 0f74b439..909b6827 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -488,8 +488,6 @@ int sway_binding_cmp_keys(const void *a, const void *b);
488 488
489void free_sway_binding(struct sway_binding *sb); 489void free_sway_binding(struct sway_binding *sb);
490 490
491struct sway_binding *sway_binding_dup(struct sway_binding *sb);
492
493void seat_execute_command(struct sway_seat *seat, struct sway_binding *binding); 491void seat_execute_command(struct sway_seat *seat, struct sway_binding *binding);
494 492
495void load_swaybars(); 493void load_swaybars();
diff --git a/include/sway/input/seat.h b/include/sway/input/seat.h
index 07febe2c..92387601 100644
--- a/include/sway/input/seat.h
+++ b/include/sway/input/seat.h
@@ -99,7 +99,7 @@ void seat_configure_xcursor(struct sway_seat *seat);
99void seat_set_focus(struct sway_seat *seat, struct sway_container *container); 99void seat_set_focus(struct sway_seat *seat, struct sway_container *container);
100 100
101void seat_set_focus_warp(struct sway_seat *seat, 101void seat_set_focus_warp(struct sway_seat *seat,
102 struct sway_container *container, bool warp); 102 struct sway_container *container, bool warp, bool notify);
103 103
104void seat_set_focus_surface(struct sway_seat *seat, 104void seat_set_focus_surface(struct sway_seat *seat,
105 struct wlr_surface *surface, bool unfocus); 105 struct wlr_surface *surface, bool unfocus);
diff --git a/include/sway/ipc-server.h b/include/sway/ipc-server.h
index 6469f097..4b6d0e25 100644
--- a/include/sway/ipc-server.h
+++ b/include/sway/ipc-server.h
@@ -16,5 +16,7 @@ void ipc_event_workspace(struct sway_container *old,
16void ipc_event_window(struct sway_container *window, const char *change); 16void ipc_event_window(struct sway_container *window, const char *change);
17void ipc_event_barconfig_update(struct bar_config *bar); 17void ipc_event_barconfig_update(struct bar_config *bar);
18void ipc_event_mode(const char *mode, bool pango); 18void ipc_event_mode(const char *mode, bool pango);
19void ipc_event_shutdown(const char *reason);
20void ipc_event_binding(struct sway_binding *binding);
19 21
20#endif 22#endif
diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h
index e722ca5e..620c41e0 100644
--- a/include/sway/tree/view.h
+++ b/include/sway/tree/view.h
@@ -325,6 +325,8 @@ void view_clear_marks(struct sway_view *view);
325 325
326bool view_has_mark(struct sway_view *view, char *mark); 326bool view_has_mark(struct sway_view *view, char *mark);
327 327
328void view_add_mark(struct sway_view *view, char *mark);
329
328void view_update_marks_textures(struct sway_view *view); 330void view_update_marks_textures(struct sway_view *view);
329 331
330/** 332/**