2011-02-20 19:43:39 -05:00
|
|
|
/*
|
|
|
|
* vim:ts=4:sw=4:expandtab
|
2011-10-25 16:19:38 -04:00
|
|
|
*
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
2015-04-03 20:17:56 -04:00
|
|
|
* © 2009 Michael Stapelberg and contributors (see also: LICENSE)
|
2011-10-25 16:19:38 -04:00
|
|
|
*
|
|
|
|
* output.c: Output (monitor) related functions.
|
|
|
|
*
|
2011-02-20 19:43:39 -05:00
|
|
|
*/
|
2013-12-28 21:11:50 -05:00
|
|
|
#pragma once
|
2011-02-20 19:43:39 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the output container below the given output container.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
Con *output_get_content(Con *output);
|
2015-03-04 03:22:25 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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);
|
2015-08-26 15:06:53 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Iterates over all outputs and pushes sticky windows to the currently visible
|
|
|
|
* workspace on that output.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void output_push_sticky_windows(void);
|