diff options
author | Marvin Borner | 2020-11-27 12:46:45 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-28 16:12:59 +0100 |
commit | 72502ccae6c52a094ae918e27bb73243689dcf34 (patch) | |
tree | a701545c5161195432930c90450548758471dd9d /apps | |
parent | dc661fee8168ed46b06b682f80f1dcab9e69e7be (diff) |
Started window resize support
Diffstat (limited to 'apps')
-rw-r--r-- | apps/wm.c | 27 |
1 files changed, 24 insertions, 3 deletions
@@ -51,6 +51,17 @@ static struct context *new_context(struct context *ctx, u32 pid, int x, int y, u return ctx; } +static void remove_context(struct context *ctx) +{ + assert(list_remove(contexts, list_first_data(contexts, ctx))); + free(ctx->fb); + ctx->fb = NULL; + free(ctx); + ctx = NULL; + free(ctx); + ctx = NULL; +} + static struct context *context_at(int x, int y) { if (!contexts->head || !contexts->head->data) @@ -186,14 +197,24 @@ static void handle_mouse(struct event_mouse *event) focused->width = mouse_x - focused->x; if (mouse_y - focused->y > 0) { focused->height = mouse_y - focused->y; - focused->pitch = focused->height * (focused->bpp >> 3); } - redraw_all(); // TODO: Function to redraw one context + /* redraw_all(); // TODO: Function to redraw one context */ } mouse_pressed[1] = 1; } else if (mod_pressed && mouse_pressed[1]) { mouse_pressed[1] = 0; - redraw_all(); + if (focused) { + struct context *resized = malloc(sizeof(*resized)); + new_context(resized, focused->pid, focused->x, focused->y, focused->width, + focused->height, focused->flags); + remove_context(focused); + list_add(contexts, resized); + focused = resized; + struct gui_event_resize *msg = malloc(sizeof(*msg)); + msg->new_ctx = resized; + msg_send(resized->pid, GUI_RESIZE, msg); + redraw_all(); + } } cursor.x = mouse_x; |