2018-03-30 14:41:33 +11:00
|
|
|
#ifndef _SWAY_WORKSPACE_H
|
|
|
|
#define _SWAY_WORKSPACE_H
|
|
|
|
|
2018-08-05 09:05:48 +10:00
|
|
|
#include <stdbool.h>
|
2018-03-30 14:41:33 +11:00
|
|
|
#include "sway/tree/container.h"
|
|
|
|
|
2018-04-17 09:31:34 +10:00
|
|
|
struct sway_view;
|
|
|
|
|
|
|
|
struct sway_workspace {
|
|
|
|
struct sway_container *swayc;
|
2018-07-25 20:56:23 +10:00
|
|
|
struct sway_container *fullscreen;
|
2018-08-19 15:07:07 +10:00
|
|
|
list_t *floating; // struct sway_container
|
2018-06-08 09:36:16 +10:00
|
|
|
list_t *output_priority;
|
2018-07-16 13:15:35 +10:00
|
|
|
bool urgent;
|
2018-04-17 09:31:34 +10:00
|
|
|
};
|
|
|
|
|
2018-03-30 14:41:33 +11:00
|
|
|
extern char *prev_workspace_name;
|
|
|
|
|
2018-08-08 10:04:11 +10:00
|
|
|
struct sway_container *workspace_get_initial_output(const char *name);
|
|
|
|
|
2018-03-30 14:41:33 +11:00
|
|
|
char *workspace_next_name(const char *output_name);
|
|
|
|
|
2018-08-05 09:05:48 +10:00
|
|
|
bool workspace_switch(struct sway_container *workspace,
|
|
|
|
bool no_auto_back_and_forth);
|
2018-03-30 14:41:33 +11:00
|
|
|
|
|
|
|
struct sway_container *workspace_by_number(const char* name);
|
|
|
|
|
|
|
|
struct sway_container *workspace_by_name(const char*);
|
|
|
|
|
|
|
|
struct sway_container *workspace_output_next(struct sway_container *current);
|
|
|
|
|
|
|
|
struct sway_container *workspace_next(struct sway_container *current);
|
|
|
|
|
|
|
|
struct sway_container *workspace_output_prev(struct sway_container *current);
|
|
|
|
|
|
|
|
struct sway_container *workspace_prev(struct sway_container *current);
|
|
|
|
|
2018-03-31 02:58:17 +11:00
|
|
|
bool workspace_is_visible(struct sway_container *ws);
|
|
|
|
|
2018-05-24 22:30:44 +10:00
|
|
|
bool workspace_is_empty(struct sway_container *ws);
|
|
|
|
|
2018-06-08 09:36:16 +10:00
|
|
|
void workspace_output_raise_priority(struct sway_container *workspace,
|
|
|
|
struct sway_container *old_output, struct sway_container *new_output);
|
|
|
|
|
|
|
|
void workspace_output_add_priority(struct sway_container *workspace,
|
|
|
|
struct sway_container *output);
|
|
|
|
|
|
|
|
struct sway_container *workspace_output_get_highest_available(
|
|
|
|
struct sway_container *ws, struct sway_container *exclude);
|
2018-06-27 10:32:09 +10:00
|
|
|
|
2018-07-16 13:15:35 +10:00
|
|
|
void workspace_detect_urgent(struct sway_container *workspace);
|
2018-07-15 22:43:33 +10:00
|
|
|
|
2018-08-17 19:48:34 +10:00
|
|
|
void workspace_for_each_container(struct sway_container *ws,
|
|
|
|
void (*f)(struct sway_container *con, void *data), void *data);
|
|
|
|
|
|
|
|
struct sway_container *workspace_find_container(struct sway_container *ws,
|
|
|
|
bool (*test)(struct sway_container *con, void *data), void *data);
|
|
|
|
|
2018-08-18 21:54:09 +10:00
|
|
|
/**
|
|
|
|
* Wrap the workspace's tiling children in a new container.
|
|
|
|
* The new container will be the only direct tiling child of the workspace.
|
|
|
|
* The new container is returned.
|
|
|
|
*/
|
|
|
|
struct sway_container *workspace_wrap_children(struct sway_container *ws);
|
|
|
|
|
2018-08-19 15:07:07 +10:00
|
|
|
void workspace_add_floating(struct sway_container *workspace,
|
|
|
|
struct sway_container *con);
|
|
|
|
|
2018-03-30 14:41:33 +11:00
|
|
|
#endif
|