aboutsummaryrefslogtreecommitdiff
path: root/libgui
diff options
context:
space:
mode:
authorMarvin Borner2020-11-27 12:46:45 +0100
committerMarvin Borner2020-11-27 12:46:45 +0100
commita1dbc858d40b2394e23511aa111ec6590b5fb8c7 (patch)
tree7ad9a63a67a0fca0b879cb7053eb702407a64174 /libgui
parent3288fc6ad2119828c028846ebfdd9cdc8c94af83 (diff)
Started window resize support
Diffstat (limited to 'libgui')
-rw-r--r--libgui/gui.c23
-rw-r--r--libgui/inc/gui.h6
2 files changed, 19 insertions, 10 deletions
diff --git a/libgui/gui.c b/libgui/gui.c
index 943c5d7..4b28114 100644
--- a/libgui/gui.c
+++ b/libgui/gui.c
@@ -406,14 +406,10 @@ void gui_event_loop(struct element *container)
continue;
s[l] = event->ch;
s[l + 1] = '\0';
- gui_sync_text_input(focused);
- merge_elements(get_root(focused->window_id));
- gfx_redraw_focused();
+ gui_sync(get_root(focused->window_id), focused);
} else if (event->scancode == KEY_BACKSPACE && l > 0) {
s[l - 1] = '\0';
- gui_sync_text_input(focused);
- merge_elements(get_root(focused->window_id));
- gfx_redraw_focused();
+ gui_sync(get_root(focused->window_id), focused);
}
}
@@ -423,9 +419,7 @@ void gui_event_loop(struct element *container)
// Clear!
char *t = ((struct element_text_input *)focused->data)->text;
memset(t, 0, strlen(t));
- gui_sync_text_input(focused);
- merge_elements(get_root(focused->window_id));
- gfx_redraw_focused();
+ gui_sync(get_root(focused->window_id), focused);
}
if (focused && focused->event.on_key && event->press && event->ch)
@@ -433,6 +427,17 @@ void gui_event_loop(struct element *container)
break;
}
+ case GUI_RESIZE: {
+ struct gui_event_resize *event = msg->data;
+ struct element *root = get_root(container->window_id);
+ printf("RESIZE: %d->%d %d->%d\n", root->ctx->width, event->new_ctx->width,
+ root->ctx->height, event->new_ctx->height);
+ root->ctx = event->new_ctx;
+ gui_sync_container(root);
+ merge_elements(root);
+ gfx_redraw_focused();
+ break;
+ }
}
}
}
diff --git a/libgui/inc/gui.h b/libgui/inc/gui.h
index 8e925d6..cf0020d 100644
--- a/libgui/inc/gui.h
+++ b/libgui/inc/gui.h
@@ -13,7 +13,7 @@
#define MAX_INPUT_LENGTH 100
// TODO: Improve event types (maybe as struct header)
-enum window_event_type { GUI_KEYBOARD = GFX_MAX + 1, GUI_MOUSE, GUI_MAX };
+enum window_event_type { GUI_KEYBOARD = GFX_MAX + 1, GUI_MOUSE, GUI_RESIZE, GUI_MAX };
enum element_type {
GUI_TYPE_ROOT,
GUI_TYPE_CONTAINER,
@@ -101,6 +101,10 @@ struct gui_event_mouse {
int but3;
};
+struct gui_event_resize {
+ struct context *new_ctx;
+};
+
struct element *gui_init(const char *title, u32 width, u32 height, u32 color_bg);
void gui_event_loop(struct element *container);
struct element *gui_add_button(struct element *container, int x, int y, enum font_type font_type,