mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 03:17:46 +03:00
handle_view_state_request
This commit is contained in:
parent
d64bff69bb
commit
c024f06631
4 changed files with 68 additions and 13 deletions
|
@ -10,16 +10,19 @@ extern swayc_t root_container;
|
|||
void init_layout(void);
|
||||
|
||||
void add_child(swayc_t *parent, swayc_t *child);
|
||||
//Returns parent container wihch needs to be rearranged.
|
||||
//Returns parent container which needs to be rearranged.
|
||||
swayc_t *add_sibling(swayc_t *sibling, swayc_t *child);
|
||||
swayc_t *replace_child(swayc_t *child, swayc_t *new_child);
|
||||
swayc_t *remove_child(swayc_t *parent, swayc_t *child);
|
||||
|
||||
//Layout
|
||||
void arrange_windows(swayc_t *container, int width, int height);
|
||||
|
||||
//Focus
|
||||
void unfocus_all(swayc_t *container);
|
||||
void focus_view(swayc_t *view);
|
||||
void arrange_windows(swayc_t *container, int width, int height);
|
||||
void focus_view_for(swayc_t *ancestor, swayc_t *container);
|
||||
swayc_t *get_focused_container(swayc_t *parent);
|
||||
|
||||
swayc_t *get_swayc_for_handle(wlc_handle handle, swayc_t *parent);
|
||||
|
||||
#endif
|
||||
|
|
|
@ -10,7 +10,7 @@ typedef enum {
|
|||
|
||||
void init_log(int verbosity);
|
||||
void sway_log_colors(int mode);
|
||||
void sway_log(int verbosity, char* format, ...);
|
||||
void sway_abort(char* format, ...);
|
||||
void sway_log(int verbosity, char* format, ...) __attribute__((format(printf,2,3)));
|
||||
void sway_abort(char* format, ...)__attribute__((format(printf,1,2)));
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue