X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2Fcommands.h;h=6d1046d4b74cece97c59ee2ee36e475dbb13eeda;hb=05fb9096362e788f032de6eccea2d7fea03317ab;hp=a09e7466aa05a26013bb9913b188938399faeb85;hpb=6241419c86602a999a4766c24edb7b884395e433;p=i3%2Fi3 diff --git a/include/commands.h b/include/commands.h index a09e7466..6d1046d4 100644 --- a/include/commands.h +++ b/include/commands.h @@ -2,18 +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 I3_COMMANDS_H -#define I3_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 +#define I3_CMD Match *current_match, struct CommandResultIR *cmd_output /** * Initializes the specified 'Match' data structure and the initial state of @@ -68,7 +67,7 @@ void cmd_move_con_to_workspace_number(I3_CMD, char *which); 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, char *border_width); @@ -110,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); +void cmd_mark(I3_CMD, char *mark, char *toggle); + +/** + * Implementation of 'unmark [mark]' + * + */ +void cmd_unmark(I3_CMD, char *mark); /** * Implementation of 'mode '. @@ -127,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' * @@ -182,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]]'. @@ -247,6 +258,12 @@ void cmd_move_window_to_position(I3_CMD, char *method, char *x, char *y); */ 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'. * @@ -259,6 +276,12 @@ void cmd_move_scratchpad(I3_CMD); */ void cmd_scratchpad_show(I3_CMD); +/** + * Implementation of 'title_format ' + * + */ +void cmd_title_format(I3_CMD, char *format); + /** * Implementation of 'rename workspace to ' * @@ -277,4 +300,8 @@ void cmd_bar(I3_CMD, char *bar_type, char *bar_value, char *bar_id); */ void cmd_shmlog(I3_CMD, char *argument); -#endif +/* + * Implementation of 'debuglog toggle|on|off' + * + */ +void cmd_debuglog(I3_CMD, char *argument);