mirror of
https://github.com/labwc/labwc.git
synced 2026-02-12 04:27:57 -05:00
feat: automatic window placement
With automatic placement, new top-level windows will be placed to minimize overlap with other windows already on screen.
This commit is contained in:
parent
ef62d47ad1
commit
52aafcc054
7 changed files with 548 additions and 5 deletions
10
include/placement.h
Normal file
10
include/placement.h
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
#ifndef LABWC_PLACEMENT_H
|
||||
#define LABWC_PLACEMENT_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include "view.h"
|
||||
|
||||
bool placement_find_best(struct view *view, int *x, int *y);
|
||||
|
||||
#endif /* LABWC_PLACEMENT_H */
|
||||
Loading…
Add table
Add a link
Reference in a new issue