2015-08-06 22:24:14 +10:00
|
|
|
#ifndef _SWAY_LAYOUT_H
|
|
|
|
#define _SWAY_LAYOUT_H
|
|
|
|
|
|
|
|
#include <wlc/wlc.h>
|
|
|
|
#include "list.h"
|
|
|
|
|
|
|
|
struct sway_container {
|
2015-08-11 05:09:51 +10:00
|
|
|
wlc_handle handle;
|
2015-08-09 07:44:51 +10:00
|
|
|
|
2015-08-11 05:09:51 +10:00
|
|
|
enum {
|
|
|
|
C_ROOT,
|
|
|
|
C_OUTPUT,
|
|
|
|
C_WORKSPACE,
|
|
|
|
C_CONTAINER,
|
|
|
|
C_VIEW
|
|
|
|
} type;
|
2015-08-09 07:44:51 +10:00
|
|
|
|
2015-08-11 05:09:51 +10:00
|
|
|
enum {
|
|
|
|
L_NONE,
|
|
|
|
L_HORIZ,
|
|
|
|
L_VERT,
|
|
|
|
L_STACKED,
|
|
|
|
L_TABBED,
|
|
|
|
L_FLOATING
|
|
|
|
} layout;
|
2015-08-09 07:44:51 +10:00
|
|
|
|
2015-08-11 05:09:51 +10:00
|
|
|
// Not including borders or margins
|
|
|
|
int width, height;
|
2015-08-09 07:44:51 +10:00
|
|
|
|
2015-08-11 05:09:51 +10:00
|
|
|
int x, y;
|
2015-08-09 08:17:08 +10:00
|
|
|
|
2015-08-11 06:45:50 +10:00
|
|
|
bool visible;
|
|
|
|
|
2015-08-11 06:49:05 +10:00
|
|
|
int weight;
|
2015-08-09 08:17:08 +10:00
|
|
|
|
2015-08-11 05:09:51 +10:00
|
|
|
char *name;
|
2015-08-09 07:44:51 +10:00
|
|
|
|
2015-08-11 05:09:51 +10:00
|
|
|
list_t *children;
|
2015-08-09 07:44:51 +10:00
|
|
|
|
2015-08-11 05:09:51 +10:00
|
|
|
struct sway_container *parent;
|
|
|
|
struct sway_container *focused;
|
2015-08-06 22:24:14 +10:00
|
|
|
};
|
|
|
|
|
2015-08-09 07:44:51 +10:00
|
|
|
typedef struct sway_container swayc_t;
|
|
|
|
|
|
|
|
extern swayc_t root_container;
|
2015-08-06 22:40:16 +10:00
|
|
|
|
|
|
|
void init_layout();
|
2015-08-09 08:17:08 +10:00
|
|
|
void add_child(swayc_t *parent, swayc_t *child);
|
2015-08-06 22:40:16 +10:00
|
|
|
void add_output(wlc_handle output);
|
2015-08-09 07:01:22 +10:00
|
|
|
void destroy_output(wlc_handle output);
|
2015-08-09 07:44:51 +10:00
|
|
|
void destroy_view(swayc_t *view);
|
2015-08-09 07:01:22 +10:00
|
|
|
void add_view(wlc_handle view);
|
2015-08-10 10:10:26 +10:00
|
|
|
void unfocus_all(swayc_t *container);
|
2015-08-09 07:44:51 +10:00
|
|
|
void focus_view(swayc_t *view);
|
2015-08-09 08:17:08 +10:00
|
|
|
void arrange_windows(swayc_t *container, int width, int height);
|
2015-08-09 23:23:10 +10:00
|
|
|
swayc_t *find_container(swayc_t *container, bool (*test)(swayc_t *view, void *data), void *data);
|
|
|
|
swayc_t *get_focused_container(swayc_t *parent);
|
2015-08-10 09:27:25 +10:00
|
|
|
int remove_container_from_parent(swayc_t *parent, swayc_t *container);
|
|
|
|
swayc_t *create_container(swayc_t *parent, wlc_handle handle);
|
2015-08-09 07:44:51 +10:00
|
|
|
swayc_t *get_swayc_for_handle(wlc_handle handle, swayc_t *parent);
|
2015-08-06 22:24:14 +10:00
|
|
|
|
|
|
|
#endif
|