X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2Fcommands.h;h=cb687890008c868fa54d62d366f53a2f78deb922;hb=45fa4b7d232ee23ad25802fe3f7c9c3a75fca77e;hp=37ee98d9c6d797886b1500b5110b4da7300605c7;hpb=9c3ece56d20db392610ae3106d570ee47c5831e8;p=i3%2Fi3 diff --git a/include/commands.h b/include/commands.h index 37ee98d9..cb687890 100644 --- a/include/commands.h +++ b/include/commands.h @@ -7,25 +7,12 @@ * commands.c: all command functions (see commands_parser.c) * */ -#ifndef _COMMANDS_H -#define _COMMANDS_H +#pragma once #include "commands_parser.h" /** The beginning of the prototype for every cmd_ function. */ -#define I3_CMD Match *current_match, struct CommandResult *cmd_output - -/* - * Helper data structure for an operation window (window on which the operation - * will be performed). Used to build the TAILQ owindows. - * - */ -typedef struct owindow { - Con *con; - TAILQ_ENTRY(owindow) owindows; -} owindow; - -typedef TAILQ_HEAD(owindows_head, owindow) owindows_head; +#define I3_CMD Match *current_match, struct CommandResultIR *cmd_output /** * Initializes the specified 'Match' data structure and the initial state of @@ -55,6 +42,12 @@ void cmd_criteria_add(I3_CMD, char *ctype, char *cvalue); */ void cmd_move_con_to_workspace(I3_CMD, char *which); +/** + * Implementation of 'move [window|container] [to] workspace back_and_forth'. + * + */ +void cmd_move_con_to_workspace_back_and_forth(I3_CMD); + /** * Implementation of 'move [window|container] [to] workspace '. * @@ -77,7 +70,7 @@ void cmd_resize(I3_CMD, char *way, char *direction, char *resize_px, char *resiz * Implementation of 'border normal|none|1pixel|toggle'. * */ -void cmd_border(I3_CMD, char *border_style_str); +void cmd_border(I3_CMD, char *border_style_str, char *border_width); /** * Implementation of 'nop '. @@ -121,6 +114,12 @@ void cmd_workspace_name(I3_CMD, char *name); */ void cmd_mark(I3_CMD, char *mark); +/** + * Implementation of 'unmark [mark]' + * + */ +void cmd_unmark(I3_CMD, char *mark); + /** * Implementation of 'mode '. * @@ -152,7 +151,7 @@ void cmd_move_workspace_to_output(I3_CMD, char *name); void cmd_split(I3_CMD, char *direction); /** - * Implementaiton of 'kill [window|client]'. + * Implementation of 'kill [window|client]'. * */ void cmd_kill(I3_CMD, char *kill_mode_str); @@ -212,25 +211,25 @@ void cmd_layout(I3_CMD, char *layout_str); void cmd_layout_toggle(I3_CMD, char *toggle_mode); /** - * Implementaiton of 'exit'. + * Implementation of 'exit'. * */ void cmd_exit(I3_CMD); /** - * Implementaiton of 'reload'. + * Implementation of 'reload'. * */ void cmd_reload(I3_CMD); /** - * Implementaiton of 'restart'. + * Implementation of 'restart'. * */ void cmd_restart(I3_CMD); /** - * Implementaiton of 'open'. + * Implementation of 'open'. * */ void cmd_open(I3_CMD); @@ -271,4 +270,20 @@ void cmd_scratchpad_show(I3_CMD); */ void cmd_rename_workspace(I3_CMD, char *old_name, char *new_name); -#endif +/** + * Implementation of 'bar (hidden_state hide|show|toggle)|(mode dock|hide|invisible|toggle) []' + * + */ +void cmd_bar(I3_CMD, char *bar_type, char *bar_value, char *bar_id); + +/* + * Implementation of 'shmlog |toggle|on|off' + * + */ +void cmd_shmlog(I3_CMD, char *argument); + +/* + * Implementation of 'debuglog toggle|on|off' + * + */ +void cmd_debuglog(I3_CMD, char *argument);