2015-08-10 22:31:23 +02:00
|
|
|
#ifndef _SWAY_WORKSPACE_H
|
|
|
|
#define _SWAY_WORKSPACE_H
|
|
|
|
|
|
|
|
#include <wlc/wlc.h>
|
|
|
|
#include "list.h"
|
|
|
|
#include "layout.h"
|
|
|
|
|
2015-08-31 02:59:14 +02:00
|
|
|
extern char *prev_workspace_name;
|
|
|
|
|
2015-09-12 11:38:03 +02:00
|
|
|
// Search for available workspace name on output from config
|
|
|
|
const char *workspace_output_open_name(swayc_t *output);
|
|
|
|
// Search for any available workspace name
|
|
|
|
const char *workspace_next_name(void);
|
|
|
|
|
|
|
|
|
2015-08-21 19:28:37 +02:00
|
|
|
swayc_t *workspace_by_name(const char*);
|
2015-08-10 22:31:23 +02:00
|
|
|
void workspace_switch(swayc_t*);
|
2015-09-12 11:38:03 +02:00
|
|
|
swayc_t *workspace_output_next(void);
|
|
|
|
swayc_t *workspace_next(void);
|
|
|
|
swayc_t *workspace_output_prev(void);
|
|
|
|
swayc_t *workspace_prev(void);
|
2015-08-10 22:31:23 +02:00
|
|
|
|
|
|
|
#endif
|