sway-patched-tray-menu/include/sway/tree/container.h

137 lines
2.8 KiB
C
Raw Normal View History

2017-11-19 23:04:28 +01:00
#ifndef _SWAY_CONTAINER_H
#define _SWAY_CONTAINER_H
#include <stdint.h>
#include <sys/types.h>
#include <wlr/types/wlr_box.h>
2017-12-10 14:48:44 +01:00
#include <wlr/types/wlr_surface.h>
2017-11-19 23:04:28 +01:00
#include "list.h"
typedef struct sway_container swayc_t;
extern swayc_t root_container;
struct sway_view;
2018-01-31 05:09:21 +01:00
struct sway_seat;
2017-11-19 23:04:28 +01:00
/**
* Different kinds of containers.
*
* This enum is in order. A container will never be inside of a container below
* it on this list.
*/
enum swayc_types {
C_ROOT,
C_OUTPUT,
C_WORKSPACE,
C_CONTAINER,
C_VIEW,
2017-11-19 23:04:28 +01:00
C_TYPES,
};
enum swayc_layouts {
L_NONE,
2017-11-19 23:04:28 +01:00
L_HORIZ,
L_VERT,
L_STACKED,
L_TABBED,
L_FLOATING,
2017-11-19 23:04:28 +01:00
// Keep last
L_LAYOUTS,
};
enum swayc_border_types {
B_NONE,
B_PIXEL,
B_NORMAL,
2017-11-19 23:04:28 +01:00
};
2017-12-12 20:02:01 +01:00
struct sway_root;
2017-11-19 23:04:28 +01:00
struct sway_output;
struct sway_view;
struct sway_container {
union {
// TODO: Encapsulate state for other node types as well like C_CONTAINER
struct sway_root *sway_root;
struct sway_output *sway_output;
struct sway_view *sway_view;
2017-11-19 23:04:28 +01:00
};
/**
* A unique ID to identify this container. Primarily used in the
* get_tree JSON output.
*/
size_t id;
char *name;
enum swayc_types type;
enum swayc_layouts layout;
enum swayc_layouts prev_layout;
enum swayc_layouts workspace_layout;
// TODO convert to layout coordinates
2017-11-19 23:04:28 +01:00
double x, y;
// does not include borders or gaps.
2017-11-19 23:04:28 +01:00
double width, height;
list_t *children;
struct sway_container *parent;
list_t *marks; // list of char*
2017-12-10 17:11:47 +01:00
struct {
struct wl_signal destroy;
} events;
2017-11-19 23:04:28 +01:00
};
2017-11-23 03:06:08 +01:00
void swayc_descendants_of_type(swayc_t *root, enum swayc_types type,
void (*func)(swayc_t *item, void *data), void *data);
// TODO only one container create function and pass the type?
2017-11-19 23:04:28 +01:00
swayc_t *new_output(struct sway_output *sway_output);
2017-11-23 02:39:27 +01:00
swayc_t *new_workspace(swayc_t *output, const char *name);
2017-11-23 03:06:08 +01:00
swayc_t *new_view(swayc_t *sibling, struct sway_view *sway_view);
2017-11-19 23:04:28 +01:00
2017-12-06 12:36:06 +01:00
swayc_t *destroy_output(swayc_t *output);
2017-11-25 22:30:15 +01:00
swayc_t *destroy_view(swayc_t *view);
2018-01-31 05:09:21 +01:00
swayc_t *next_view_sibling(struct sway_seat *seat);
/**
* Finds a container based on test criteria. Returns the first container that
* passes the test.
*/
swayc_t *swayc_by_test(swayc_t *container,
bool (*test)(swayc_t *view, void *data), void *data);
2018-01-31 05:09:21 +01:00
/**
* Finds a parent container with the given swayc_type.
*/
2017-11-25 16:59:49 +01:00
swayc_t *swayc_parent_by_type(swayc_t *container, enum swayc_types type);
2018-01-31 05:09:21 +01:00
/**
* Maps a container's children over a function.
*/
void container_map(swayc_t *container,
void (*f)(swayc_t *view, void *data), void *data);
2017-11-25 16:59:49 +01:00
2017-12-10 14:48:44 +01:00
swayc_t *swayc_at(swayc_t *parent, double lx, double ly,
struct wlr_surface **surface, double *sx, double *sy);
2018-02-04 19:39:10 +01:00
/**
* Apply the function for each child of the container breadth first.
2018-02-04 19:39:10 +01:00
*/
void container_for_each_bfs(swayc_t *con, void (*f)(swayc_t *con, void *data),
void *data);
2018-02-04 19:39:10 +01:00
2018-02-23 00:03:46 +01:00
swayc_t *swayc_change_layout(swayc_t *container, enum swayc_layouts layout);
2017-11-19 23:04:28 +01:00
#endif