2015-08-10 22:31:23 +02:00
|
|
|
#ifndef _SWAY_CONTAINER_H
|
|
|
|
#define _SWAY_CONTAINER_H
|
2015-08-14 21:42:19 +02:00
|
|
|
#include <wlc/wlc.h>
|
|
|
|
typedef struct sway_container swayc_t;
|
2015-08-10 22:31:23 +02:00
|
|
|
#include "layout.h"
|
|
|
|
|
2015-09-12 11:38:03 +02:00
|
|
|
enum swayc_types {
|
|
|
|
C_ROOT = 1 << 0,
|
|
|
|
C_OUTPUT = 1 << 1,
|
|
|
|
C_WORKSPACE = 1 << 2,
|
|
|
|
C_CONTAINER = 1 << 3,
|
|
|
|
C_VIEW = 1 << 4,
|
|
|
|
C_TYPES = 5,
|
2015-08-14 21:42:19 +02:00
|
|
|
};
|
|
|
|
|
2015-09-12 11:38:03 +02:00
|
|
|
enum swayc_layouts {
|
|
|
|
L_NONE = 1 << 0,
|
|
|
|
L_HORIZ = 1 << 1,
|
|
|
|
L_VERT = 1 << 2,
|
|
|
|
L_STACKED = 1 << 3,
|
|
|
|
L_TABBED = 1 << 4,
|
|
|
|
L_FLOATING = 1 << 5,
|
|
|
|
L_LAYOUTS = 6,
|
2015-08-14 21:42:19 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct sway_container {
|
|
|
|
wlc_handle handle;
|
|
|
|
|
|
|
|
enum swayc_types type;
|
|
|
|
enum swayc_layouts layout;
|
|
|
|
|
|
|
|
// Not including borders or margins
|
2015-08-21 04:37:59 +02:00
|
|
|
double width, height;
|
2015-09-12 11:38:03 +02:00
|
|
|
double x, y;
|
2015-08-14 21:42:19 +02:00
|
|
|
|
2015-08-17 17:34:39 +02:00
|
|
|
// Used for setting floating geometry
|
|
|
|
int desired_width, desired_height;
|
2015-08-17 17:18:06 +02:00
|
|
|
|
2015-09-12 11:38:03 +02:00
|
|
|
enum visibility_mask {
|
2015-09-12 11:52:18 +02:00
|
|
|
INVISIBLE = false,
|
|
|
|
VISIBLE = true,
|
2015-09-12 11:38:03 +02:00
|
|
|
} visible;
|
2015-08-14 21:42:19 +02:00
|
|
|
|
2015-08-17 17:34:39 +02:00
|
|
|
bool is_floating;
|
2015-08-18 09:28:44 +02:00
|
|
|
bool is_focused;
|
|
|
|
|
2015-08-14 21:42:19 +02:00
|
|
|
char *name;
|
|
|
|
|
2015-08-18 23:53:57 +02:00
|
|
|
int gaps;
|
|
|
|
|
2015-08-14 21:42:19 +02:00
|
|
|
list_t *children;
|
2015-08-17 07:38:34 +02:00
|
|
|
list_t *floating;
|
|
|
|
|
2015-08-14 21:42:19 +02:00
|
|
|
struct sway_container *parent;
|
|
|
|
struct sway_container *focused;
|
|
|
|
};
|
|
|
|
|
2015-09-12 11:38:03 +02:00
|
|
|
// swayc Creation
|
2015-08-14 21:42:19 +02:00
|
|
|
|
2015-09-12 11:38:03 +02:00
|
|
|
/* Creates and returns new, or an already created output.
|
|
|
|
* If it creates a new output, it also creates a workspace using
|
|
|
|
* `new_workspace(outputname, NULL);` */
|
2015-08-14 21:42:19 +02:00
|
|
|
swayc_t *new_output(wlc_handle handle);
|
2015-09-12 11:38:03 +02:00
|
|
|
|
|
|
|
/* Creates workspace with given name, under given output.
|
|
|
|
* If workspace with that name already exists, returns that workspace
|
|
|
|
* If name is NULL, it will choose a name automatically.
|
|
|
|
* If output is NULL, it will choose an output automatically. */
|
2015-08-18 13:19:20 +02:00
|
|
|
swayc_t *new_workspace(swayc_t *output, const char *name);
|
2015-09-12 11:38:03 +02:00
|
|
|
|
2015-08-18 13:19:20 +02:00
|
|
|
// Creates container Around child (parent child) -> (parent (container child))
|
2015-08-14 21:42:19 +02:00
|
|
|
swayc_t *new_container(swayc_t *child, enum swayc_layouts layout);
|
2015-09-12 11:38:03 +02:00
|
|
|
|
2015-08-18 13:19:20 +02:00
|
|
|
// Creates view as a sibling of current focused container, or as child of a workspace
|
2015-08-14 21:42:19 +02:00
|
|
|
swayc_t *new_view(swayc_t *sibling, wlc_handle handle);
|
2015-09-12 11:38:03 +02:00
|
|
|
|
2015-08-18 13:19:20 +02:00
|
|
|
// Creates view as a new floating view which is in the active workspace
|
2015-08-17 17:18:06 +02:00
|
|
|
swayc_t *new_floating_view(wlc_handle handle);
|
2015-08-14 21:42:19 +02:00
|
|
|
|
2015-08-20 18:52:54 +02:00
|
|
|
// Container Destroying
|
2015-09-12 11:38:03 +02:00
|
|
|
// Destroys output and moves workspaces to another output
|
2015-08-14 21:42:19 +02:00
|
|
|
swayc_t *destroy_output(swayc_t *output);
|
2015-09-12 11:38:03 +02:00
|
|
|
|
2015-08-18 13:19:20 +02:00
|
|
|
// Destroys workspace if empty and returns parent pointer, else returns NULL
|
2015-08-14 21:42:19 +02:00
|
|
|
swayc_t *destroy_workspace(swayc_t *workspace);
|
2015-09-12 11:38:03 +02:00
|
|
|
|
2015-08-20 18:52:54 +02:00
|
|
|
// Destroyes container and all parent container if they are empty, returns
|
|
|
|
// topmost non-empty parent. returns NULL otherwise
|
2015-08-14 21:42:19 +02:00
|
|
|
swayc_t *destroy_container(swayc_t *container);
|
2015-09-12 11:38:03 +02:00
|
|
|
|
2015-08-20 18:52:54 +02:00
|
|
|
// Destroys view and all empty parent containers. return topmost non-empty
|
|
|
|
// parent
|
2015-08-14 21:42:19 +02:00
|
|
|
swayc_t *destroy_view(swayc_t *view);
|
|
|
|
|
2015-09-12 11:38:03 +02:00
|
|
|
// Container Mapping and testing functions
|
|
|
|
typedef bool swayc_test_func(swayc_t *view, void *data);
|
|
|
|
typedef void swayc_map_func(swayc_t *view, void *data);
|
|
|
|
|
|
|
|
// Returns the first swayc that matches test()
|
|
|
|
swayc_t *swayc_by_test_r(swayc_t *root, swayc_test_func test, void *data);
|
|
|
|
swayc_t *swayc_by_test(swayc_test_func test, void *data);
|
|
|
|
|
|
|
|
// Calls func for all children.
|
|
|
|
void swayc_map_r(swayc_t *root, swayc_map_func func, void *data);
|
|
|
|
void swayc_map(swayc_map_func func, void *data);
|
|
|
|
|
|
|
|
|
|
|
|
// Call func on container if test passes
|
|
|
|
void swayc_map_by_test_r(swayc_t *root,
|
|
|
|
swayc_map_func func, swayc_test_func test,
|
|
|
|
void *funcdata, void *testdata);
|
|
|
|
void swayc_map_by_test(
|
|
|
|
swayc_map_func func, swayc_test_func test,
|
|
|
|
void *funcdata, void *testdata);
|
|
|
|
|
|
|
|
// Map functions
|
|
|
|
swayc_map_func set_gaps;
|
|
|
|
swayc_map_func add_gaps;
|
|
|
|
|
|
|
|
// Test functions
|
|
|
|
// generic swayc tests
|
|
|
|
swayc_test_func test_name;
|
|
|
|
swayc_test_func test_name_regex;
|
|
|
|
swayc_test_func test_layout;
|
|
|
|
swayc_test_func test_type;
|
|
|
|
swayc_test_func test_visibility;
|
|
|
|
swayc_test_func test_handle;
|
|
|
|
|
|
|
|
// C_VIEW tests
|
|
|
|
// See wlc_view_*_bit enums
|
|
|
|
swayc_test_func test_view_state;
|
|
|
|
swayc_test_func test_view_type;
|
|
|
|
swayc_test_func test_view_title;
|
|
|
|
swayc_test_func test_view_class;
|
|
|
|
swayc_test_func test_view_appid;
|
|
|
|
swayc_test_func test_view_title_regex;
|
|
|
|
swayc_test_func test_view_class_regex;
|
|
|
|
swayc_test_func test_view_appid_regex;
|
|
|
|
|
|
|
|
// functions for test_*_regex
|
|
|
|
void *compile_regex(const char *regex);
|
|
|
|
void free_regex(void *);
|
|
|
|
|
|
|
|
// these take a NULL terminated array of test_list struct.
|
|
|
|
struct test_list { swayc_test_func *test; void *data ; };
|
|
|
|
swayc_test_func test_and;
|
|
|
|
swayc_test_func test_or;
|
2015-08-20 18:52:54 +02:00
|
|
|
|
|
|
|
swayc_t *swayc_parent_by_type(swayc_t *container, enum swayc_types);
|
|
|
|
swayc_t *swayc_parent_by_layout(swayc_t *container, enum swayc_layouts);
|
2015-08-24 10:11:21 +02:00
|
|
|
// Follow focused until type/layout
|
|
|
|
swayc_t *swayc_focus_by_type(swayc_t *container, enum swayc_types);
|
|
|
|
swayc_t *swayc_focus_by_layout(swayc_t *container, enum swayc_layouts);
|
|
|
|
|
2015-08-21 19:28:37 +02:00
|
|
|
swayc_t *swayc_active_output(void);
|
|
|
|
swayc_t *swayc_active_workspace(void);
|
|
|
|
swayc_t *swayc_active_workspace_for(swayc_t *view);
|
2015-08-20 18:52:54 +02:00
|
|
|
|
2015-08-21 19:28:37 +02:00
|
|
|
// Container information
|
2015-09-12 11:38:03 +02:00
|
|
|
// if `parent` is the parent of `child`
|
2015-08-28 08:18:28 +02:00
|
|
|
bool swayc_is_parent_of(swayc_t *parent, swayc_t *child);
|
2015-09-12 11:38:03 +02:00
|
|
|
// If `child` is a child of `parent`
|
2015-08-28 08:18:28 +02:00
|
|
|
bool swayc_is_child_of(swayc_t *child, swayc_t *parent);
|
2015-09-05 01:14:59 +02:00
|
|
|
// Return gap of specified container
|
|
|
|
int swayc_gap(swayc_t *container);
|
2015-08-10 22:31:23 +02:00
|
|
|
|
2015-09-12 11:38:03 +02:00
|
|
|
bool swayc_is_fullscreen(swayc_t *view);
|
|
|
|
bool swayc_is_active(swayc_t *view);
|
2015-08-20 22:27:38 +02:00
|
|
|
|
2015-08-17 04:06:31 +02:00
|
|
|
|
2015-09-12 11:38:03 +02:00
|
|
|
// Specialized mapping functions
|
2015-08-25 18:24:15 +02:00
|
|
|
void update_visibility(swayc_t *container);
|
|
|
|
|
2015-08-10 22:31:23 +02:00
|
|
|
#endif
|