You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
240 B
15 lines
240 B
9 years ago
|
#ifndef _SWAY_LAYOUT_H
|
||
|
#define _SWAY_LAYOUT_H
|
||
|
|
||
|
#include <wlc/wlc.h>
|
||
|
#include "list.h"
|
||
|
|
||
|
struct sway_container {
|
||
|
wlc_handle output; // May be NULL
|
||
|
list_t children;
|
||
|
};
|
||
|
|
||
|
wlc_handle get_topmost(wlc_handle output, size_t offset);
|
||
|
|
||
|
#endif
|