显示窗口

This commit is contained in:
2025-08-22 15:47:58 +08:00
parent 2a7ab324be
commit c3bcb7ddd2
9 changed files with 274 additions and 14 deletions

View File

@@ -38,11 +38,12 @@ struct monitor_t {
struct client_t {
char name[256];
int32_t x, y;
uint32_t width, height, border_width;
int32_t x, y, old_x, old_y;
uint32_t width, height, border_width, old_width, old_height, old_border_width;
uint32_t tags;
bool fullscreen;
bool floating;
bool maximize;
monitor_t *monitor;
client_t *next;