2015-08-06 14:24:14 +02:00
|
|
|
#ifndef _SWAY_LAYOUT_H
|
|
|
|
#define _SWAY_LAYOUT_H
|
|
|
|
|
|
|
|
#include <wlc/wlc.h>
|
|
|
|
#include "list.h"
|
|
|
|
|
|
|
|
struct sway_container {
|
2015-08-08 23:44:51 +02:00
|
|
|
wlc_handle handle;
|
|
|
|
|
|
|
|
enum {
|
|
|
|
C_ROOT,
|
|
|
|
C_OUTPUT,
|
|
|
|
C_WORKSPACE,
|
|
|
|
C_CONTAINER,
|
|
|
|
C_VIEW
|
|
|
|
} type;
|
|
|
|
|
|
|
|
enum {
|
|
|
|
L_NONE,
|
|
|
|
L_HORIZ,
|
|
|
|
L_VERT,
|
|
|
|
L_STACKED,
|
|
|
|
L_TABBED,
|
|
|
|
L_FLOATING
|
|
|
|
} layout;
|
|
|
|
|
|
|
|
// Not including borders or margins
|
|
|
|
int width, height;
|
|
|
|
|
|
|
|
char *name;
|
|
|
|
|
2015-08-06 14:40:16 +02:00
|
|
|
list_t *children;
|
2015-08-08 23:44:51 +02:00
|
|
|
|
2015-08-08 23:01:22 +02:00
|
|
|
struct sway_container *parent;
|
2015-08-08 23:44:51 +02:00
|
|
|
struct sway_container *focused;
|
2015-08-06 14:24:14 +02:00
|
|
|
};
|
|
|
|
|
2015-08-08 23:44:51 +02:00
|
|
|
typedef struct sway_container swayc_t;
|
|
|
|
|
|
|
|
extern swayc_t root_container;
|
2015-08-06 14:40:16 +02:00
|
|
|
|
|
|
|
void init_layout();
|
|
|
|
void add_output(wlc_handle output);
|
2015-08-08 23:01:22 +02:00
|
|
|
void destroy_output(wlc_handle output);
|
2015-08-08 23:44:51 +02:00
|
|
|
void destroy_view(swayc_t *view);
|
2015-08-08 23:01:22 +02:00
|
|
|
void add_view(wlc_handle view);
|
2015-08-08 23:44:51 +02:00
|
|
|
void focus_view(swayc_t *view);
|
|
|
|
|
|
|
|
swayc_t *get_swayc_for_handle(wlc_handle handle, swayc_t *parent);
|
2015-08-06 14:24:14 +02:00
|
|
|
|
|
|
|
#endif
|