2015-08-10 22:31:23 +02:00
|
|
|
#ifndef _SWAY_WORKSPACE_H
|
|
|
|
#define _SWAY_WORKSPACE_H
|
|
|
|
|
|
|
|
#include <wlc/wlc.h>
|
2016-06-11 16:20:09 +02:00
|
|
|
#include <unistd.h>
|
2015-08-10 22:31:23 +02:00
|
|
|
#include "list.h"
|
|
|
|
#include "layout.h"
|
|
|
|
|
2015-08-31 02:59:14 +02:00
|
|
|
extern char *prev_workspace_name;
|
|
|
|
|
2016-03-04 16:44:49 +01:00
|
|
|
char *workspace_next_name(const char *output_name);
|
2015-09-14 01:46:16 +02:00
|
|
|
swayc_t *workspace_create(const char*);
|
2015-08-21 19:28:37 +02:00
|
|
|
swayc_t *workspace_by_name(const char*);
|
2015-12-17 22:28:41 +01:00
|
|
|
swayc_t *workspace_by_number(const char*);
|
2015-10-23 14:32:17 +02:00
|
|
|
bool workspace_switch(swayc_t*);
|
2015-09-14 01:46:16 +02:00
|
|
|
swayc_t *workspace_output_next();
|
|
|
|
swayc_t *workspace_next();
|
|
|
|
swayc_t *workspace_output_prev();
|
|
|
|
swayc_t *workspace_prev();
|
2016-06-11 16:20:09 +02:00
|
|
|
swayc_t *workspace_for_pid(pid_t pid);
|
2015-08-10 22:31:23 +02:00
|
|
|
|
|
|
|
#endif
|