X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2Fcommands.h;h=6d1046d4b74cece97c59ee2ee36e475dbb13eeda;hb=05fb9096362e788f032de6eccea2d7fea03317ab;hp=2b69422dec1e909b9c2aef0aeacc273f7ed046c6;hpb=e09e077b763bb1ff1975998c87d017afa9c319c3;p=i3%2Fi3 diff --git a/include/commands.h b/include/commands.h index 2b69422d..6d1046d4 100644 --- a/include/commands.h +++ b/include/commands.h @@ -2,30 +2,17 @@ * vim:ts=4:sw=4:expandtab * * i3 - an improved dynamic tiling window manager - * © 2009-2012 Michael Stapelberg and contributors (see also: LICENSE) + * © 2009 Michael Stapelberg and contributors (see also: LICENSE) * * 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,12 +42,24 @@ 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 '. * */ void cmd_move_con_to_workspace_name(I3_CMD, char *name); +/** + * Implementation of 'move [window|container] [to] workspace number '. + * + */ +void cmd_move_con_to_workspace_number(I3_CMD, char *which); + /** * Implementation of 'resize grow|shrink [ px] [or ppt]'. * @@ -68,10 +67,10 @@ void cmd_move_con_to_workspace_name(I3_CMD, char *name); void cmd_resize(I3_CMD, char *way, char *direction, char *resize_px, char *resize_ppt); /** - * Implementation of 'border normal|none|1pixel|toggle'. + * Implementation of 'border normal|pixel []', 'border 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 '. @@ -91,6 +90,12 @@ void cmd_append_layout(I3_CMD, char *path); */ void cmd_workspace(I3_CMD, char *which); +/** + * Implementation of 'workspace number ' + * + */ +void cmd_workspace_number(I3_CMD, char *which); + /** * Implementation of 'workspace back_and_forth'. * @@ -104,10 +109,16 @@ void cmd_workspace_back_and_forth(I3_CMD); void cmd_workspace_name(I3_CMD, char *name); /** - * Implementation of 'mark ' + * Implementation of 'mark [--toggle] ' + * + */ +void cmd_mark(I3_CMD, char *mark, char *toggle); + +/** + * Implementation of 'unmark [mark]' * */ -void cmd_mark(I3_CMD, char *mark); +void cmd_unmark(I3_CMD, char *mark); /** * Implementation of 'mode '. @@ -121,6 +132,12 @@ void cmd_mode(I3_CMD, char *mode); */ void cmd_move_con_to_output(I3_CMD, char *name); +/** + * Implementation of 'move [window|container] [to] mark '. + * + */ +void cmd_move_con_to_mark(I3_CMD, char *mark); + /** * Implementation of 'floating enable|disable|toggle' * @@ -140,7 +157,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); @@ -176,10 +193,10 @@ void cmd_focus_level(I3_CMD, char *level); void cmd_focus(I3_CMD); /** - * Implementation of 'fullscreen [global]'. + * Implementation of 'fullscreen [enable|disable|toggle] [global]'. * */ -void cmd_fullscreen(I3_CMD, char *fullscreen_mode); +void cmd_fullscreen(I3_CMD, char *action, char *fullscreen_mode); /** * Implementation of 'move [ [px]]'. @@ -188,31 +205,37 @@ void cmd_fullscreen(I3_CMD, char *fullscreen_mode); void cmd_move_direction(I3_CMD, char *direction, char *move_px); /** - * Implementation of 'layout default|stacked|stacking|tabbed'. + * Implementation of 'layout default|stacked|stacking|tabbed|splitv|splith'. * */ void cmd_layout(I3_CMD, char *layout_str); /** - * Implementaiton of 'exit'. + * Implementation of 'layout toggle [all|split]'. + * + */ +void cmd_layout_toggle(I3_CMD, char *toggle_mode); + +/** + * 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); @@ -223,6 +246,24 @@ void cmd_open(I3_CMD); */ void cmd_focus_output(I3_CMD, char *name); +/** + * Implementation of 'move [window|container] [to] [absolute] position [px] [px] + * + */ +void cmd_move_window_to_position(I3_CMD, char *method, char *x, char *y); + +/** + * Implementation of 'move [window|container] [to] [absolute] position center + * + */ +void cmd_move_window_to_center(I3_CMD, char *method); + +/** + * Implementation of 'move [window|container] [to] position mouse' + * + */ +void cmd_move_window_to_mouse(I3_CMD); + /** * Implementation of 'move scratchpad'. * @@ -235,4 +276,32 @@ void cmd_move_scratchpad(I3_CMD); */ void cmd_scratchpad_show(I3_CMD); -#endif +/** + * Implementation of 'title_format ' + * + */ +void cmd_title_format(I3_CMD, char *format); + +/** + * Implementation of 'rename workspace to ' + * + */ +void cmd_rename_workspace(I3_CMD, char *old_name, char *new_name); + +/** + * 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);