X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2Foutput.h;h=8299a19bc1ddefd6fb7f37cec5f3bfbd4635e499;hb=988cc3ccaf59a0c25d9df47337bb9bd8826f6b31;hp=10ee7d1740ac4d4f96ee7dca366063713ab06511;hpb=7cf0c632c3e3f014a0bcfb1a4335e40f695d7af5;p=i3%2Fi3 diff --git a/include/output.h b/include/output.h index 10ee7d17..8299a19b 100644 --- a/include/output.h +++ b/include/output.h @@ -2,7 +2,7 @@ * vim:ts=4:sw=4:expandtab * * i3 - an improved dynamic tiling window manager - * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE) + * © 2009 Michael Stapelberg and contributors (see also: LICENSE) * * output.c: Output (monitor) related functions. * @@ -14,3 +14,17 @@ * */ Con *output_get_content(Con *output); + +/** + * Returns an 'output' corresponding to one of left/right/down/up or a specific + * output name. + * + */ +Output *get_output_from_string(Output *current_output, const char *output_str); + +/** + * Iterates over all outputs and pushes sticky windows to the currently visible + * workspace on that output. + * + */ +void output_push_sticky_windows(Con *to_focus);