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-08-14 21:42:19 +02:00
|
|
|
enum swayc_types{
|
|
|
|
C_ROOT,
|
|
|
|
C_OUTPUT,
|
|
|
|
C_WORKSPACE,
|
|
|
|
C_CONTAINER,
|
|
|
|
C_VIEW,
|
2015-08-20 14:06:22 +02:00
|
|
|
// Keep last
|
2015-08-14 21:42:19 +02:00
|
|
|
C_TYPES,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum swayc_layouts{
|
|
|
|
L_NONE,
|
|
|
|
L_HORIZ,
|
|
|
|
L_VERT,
|
|
|
|
L_STACKED,
|
|
|
|
L_TABBED,
|
|
|
|
L_FLOATING,
|
2015-08-20 14:06:22 +02:00
|
|
|
// Keep last
|
2015-08-14 21:42:19 +02:00
|
|
|
L_LAYOUTS,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct sway_container {
|
|
|
|
wlc_handle handle;
|
|
|
|
|
|
|
|
enum swayc_types type;
|
|
|
|
enum swayc_layouts layout;
|
|
|
|
|
|
|
|
// Not including borders or margins
|
|
|
|
int width, height;
|
|
|
|
|
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-08-14 21:42:19 +02:00
|
|
|
int x, y;
|
|
|
|
|
|
|
|
bool visible;
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
swayc_t *new_output(wlc_handle handle);
|
2015-08-18 13:19:20 +02:00
|
|
|
swayc_t *new_workspace(swayc_t *output, const char *name);
|
|
|
|
// 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-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-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
|
|
|
|
|
|
|
|
|
|
|
swayc_t *destroy_output(swayc_t *output);
|
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);
|
|
|
|
swayc_t *destroy_container(swayc_t *container);
|
|
|
|
swayc_t *destroy_view(swayc_t *view);
|
|
|
|
|
|
|
|
swayc_t *find_container(swayc_t *container, bool (*test)(swayc_t *view, void *data), void *data);
|
2015-08-10 22:31:23 +02:00
|
|
|
void container_map(swayc_t *, void (*f)(swayc_t *, void *), void *);
|
|
|
|
|
2015-08-18 13:19:20 +02:00
|
|
|
// Mappings
|
2015-08-17 04:06:31 +02:00
|
|
|
void set_view_visibility(swayc_t *view, void *data);
|
2015-08-19 04:06:41 +02:00
|
|
|
void reset_gaps(swayc_t *view, void *data);
|
2015-08-17 04:06:31 +02:00
|
|
|
|
2015-08-10 22:31:23 +02:00
|
|
|
#endif
|