mirror of
https://github.com/swaywm/sway.git
synced 2025-11-19 06:59:52 -05:00
move_container_to fixup
This commit is contained in:
parent
c4257055eb
commit
1fa7a91bfb
7 changed files with 45 additions and 19 deletions
|
|
@ -101,6 +101,7 @@ swayc_t *swayc_active_workspace_for(swayc_t *view);
|
|||
// Container information
|
||||
|
||||
bool swayc_is_fullscreen(swayc_t *view);
|
||||
bool swayc_is_active(swayc_t *view);
|
||||
|
||||
// Mapping functions
|
||||
|
||||
|
|
@ -110,7 +111,6 @@ void container_map(swayc_t *, void (*f)(swayc_t *, void *), void *);
|
|||
void set_view_visibility(swayc_t *view, void *data);
|
||||
void reset_gaps(swayc_t *view, void *data);
|
||||
|
||||
|
||||
void update_visibility(swayc_t *container);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -15,7 +15,11 @@ void sway_log_colors(int mode);
|
|||
void sway_log(log_importance_t verbosity, const char* format, ...) __attribute__((format(printf,2,3)));
|
||||
void sway_log_errno(log_importance_t verbosity, char* format, ...) __attribute__((format(printf,2,3)));
|
||||
void sway_abort(const char* format, ...) __attribute__((format(printf,1,2)));
|
||||
bool sway_assert(bool condition, const char* format, ...) __attribute__((format(printf,2,3)));
|
||||
|
||||
bool _sway_assert(bool condition, const char* format, ...) __attribute__((format(printf,2,3)));
|
||||
#define sway_assert(COND, FMT, ...) \
|
||||
_sway_assert(COND, "%s:" FMT, __PRETTY_FUNCTION__, ##__VA_ARGS__)
|
||||
|
||||
void error_handler(int sig);
|
||||
|
||||
void layout_log(const swayc_t *c, int depth);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue