diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-09-12 10:29:11 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-09-12 10:29:11 -0400 |
commit | 9c8f1fb9649c5673cd6b42230c0784f099a62db7 (patch) | |
tree | bb5eccfddb8b8d56e387327908490daeca2c42a7 /include/workspace.h | |
parent | f5343adae4d631e4cdade7869b4d73fc97b4ac5f (diff) | |
parent | f76f9e2eea15ee4606c23139e9a4c8ce41a4ab18 (diff) | |
download | sway-9c8f1fb9649c5673cd6b42230c0784f099a62db7.tar.xz |
Merge pull request #179 from taiyu-len/master
new_workspace null behavior + testmap functions + regex
Diffstat (limited to 'include/workspace.h')
-rw-r--r-- | include/workspace.h | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/include/workspace.h b/include/workspace.h index 7343b055..3a63ea38 100644 --- a/include/workspace.h +++ b/include/workspace.h @@ -7,13 +7,17 @@ extern char *prev_workspace_name; -char *workspace_next_name(void); -swayc_t *workspace_create(const char*); +// 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); + + swayc_t *workspace_by_name(const char*); void workspace_switch(swayc_t*); -swayc_t *workspace_output_next(); -swayc_t *workspace_next(); -swayc_t *workspace_output_prev(); -swayc_t *workspace_prev(); +swayc_t *workspace_output_next(void); +swayc_t *workspace_next(void); +swayc_t *workspace_output_prev(void); +swayc_t *workspace_prev(void); #endif |