2015-08-18 09:28:44 +02:00
|
|
|
#ifndef _SWAY_FOCUS_H
|
|
|
|
#define _SWAY_FOCUS_H
|
|
|
|
enum movement_direction {
|
|
|
|
MOVE_LEFT,
|
|
|
|
MOVE_RIGHT,
|
|
|
|
MOVE_UP,
|
|
|
|
MOVE_DOWN,
|
2016-07-28 04:42:45 +02:00
|
|
|
MOVE_PARENT,
|
|
|
|
MOVE_CHILD
|
2015-08-18 09:28:44 +02:00
|
|
|
};
|
|
|
|
|
2015-08-20 05:22:15 +02:00
|
|
|
#include "container.h"
|
|
|
|
|
2015-08-18 13:19:20 +02:00
|
|
|
// focused_container - the container found by following the `focused` pointer
|
|
|
|
// from a given container to a container with `is_focused` boolean set
|
|
|
|
// ---
|
|
|
|
// focused_view - the container found by following the `focused` pointer from a
|
|
|
|
// given container to a view.
|
|
|
|
// ---
|
2015-08-18 09:28:44 +02:00
|
|
|
|
|
|
|
swayc_t *get_focused_container(swayc_t *parent);
|
|
|
|
swayc_t *get_focused_view(swayc_t *parent);
|
2015-08-25 22:29:33 +02:00
|
|
|
swayc_t *get_focused_float(swayc_t *ws);
|
2015-08-18 09:28:44 +02:00
|
|
|
|
2016-07-03 19:22:10 +02:00
|
|
|
// a special-case function to get the focused view, regardless
|
2016-07-03 19:11:21 +02:00
|
|
|
// of whether it's tiled or floating
|
|
|
|
swayc_t *get_focused_view_include_floating(swayc_t *parent);
|
|
|
|
|
2015-10-23 14:32:17 +02:00
|
|
|
bool set_focused_container(swayc_t *container);
|
|
|
|
bool set_focused_container_for(swayc_t *ancestor, swayc_t *container);
|
2015-08-18 09:28:44 +02:00
|
|
|
|
2015-08-18 13:19:20 +02:00
|
|
|
// lock focused container/view. locked by windows with OVERRIDE attribute
|
|
|
|
// and unlocked when they are destroyed
|
2015-08-18 09:28:44 +02:00
|
|
|
|
|
|
|
extern bool locked_container_focus;
|
|
|
|
extern bool locked_view_focus;
|
|
|
|
|
2016-07-11 21:27:13 +02:00
|
|
|
// Prevents wss from being destroyed on focus switch
|
|
|
|
extern bool suspend_workspace_cleanup;
|
2015-08-18 09:28:44 +02:00
|
|
|
|
|
|
|
bool move_focus(enum movement_direction direction);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|