1
1
mirror of https://github.com/swaywm/sway synced 2024-11-18 14:53:52 +01:00
sway/sway/layout.h

52 lines
902 B
C
Raw Normal View History

#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
struct sway_container *parent;
2015-08-08 23:44:51 +02:00
struct sway_container *focused;
};
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);
void destroy_output(wlc_handle output);
2015-08-08 23:44:51 +02:00
void destroy_view(swayc_t *view);
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);
#endif