aboutsummaryrefslogtreecommitdiff
path: root/libgui
diff options
context:
space:
mode:
Diffstat (limited to 'libgui')
-rw-r--r--libgui/gfx.c10
-rw-r--r--libgui/gui.c86
-rw-r--r--libgui/inc/gui.h16
3 files changed, 93 insertions, 19 deletions
diff --git a/libgui/gfx.c b/libgui/gfx.c
index 304f935..74f0138 100644
--- a/libgui/gfx.c
+++ b/libgui/gfx.c
@@ -105,8 +105,16 @@ void gfx_write_char(struct context *ctx, int x, int y, enum font_type font_type,
void gfx_write(struct context *ctx, int x, int y, enum font_type font_type, u32 c, char *text)
{
struct font *font = gfx_resolve_font(font_type);
+ u32 cnt = 0;
for (u32 i = 0; i < strlen(text); i++) {
- write_char(ctx, x + i * font->width, y, font, c, text[i]);
+ // TODO: Should this be here?
+ if (text[i] == '\n') {
+ cnt = 0;
+ y += font->height;
+ } else {
+ write_char(ctx, x + cnt * font->width, y, font, c, text[i]);
+ }
+ cnt++;
}
/* gfx_redraw(); */
}
diff --git a/libgui/gui.c b/libgui/gui.c
index fe78883..c3369bb 100644
--- a/libgui/gui.c
+++ b/libgui/gui.c
@@ -147,6 +147,13 @@ void gui_sync_label(struct element *elem)
gfx_write(elem->ctx, 0, 0, label->font_type, label->color_fg, label->text);
}
+void gui_sync_text_box(struct element *elem)
+{
+ struct element_text_box *text_box = elem->data;
+ gfx_fill(elem->ctx, text_box->color_bg);
+ gfx_write(elem->ctx, 0, 0, text_box->font_type, text_box->color_fg, text_box->text);
+}
+
void gui_sync_text_input(struct element *elem)
{
struct element_text_input *text_input = elem->data;
@@ -161,8 +168,33 @@ void gui_sync_container(struct element *elem)
// TODO: Handle container flags
}
+void gui_sync(struct element *container, struct element *elem)
+{
+ switch (elem->type) {
+ case GUI_TYPE_BUTTON:
+ gui_sync_button(elem);
+ break;
+ case GUI_TYPE_LABEL:
+ gui_sync_label(elem);
+ break;
+ case GUI_TYPE_TEXT_BOX:
+ gui_sync_text_box(elem);
+ break;
+ case GUI_TYPE_TEXT_INPUT:
+ gui_sync_text_input(elem);
+ break;
+ case GUI_TYPE_CONTAINER:
+ gui_sync_container(elem);
+ break;
+ default:
+ break;
+ }
+ merge_elements(get_root(container->window_id));
+ gfx_redraw_focused();
+}
+
struct element *gui_add_button(struct element *container, int x, int y, enum font_type font_type,
- char *text, u32 color_bg, u32 color_fg)
+ const char *text, u32 color_bg, u32 color_fg)
{
if (!container || !container->childs || !gfx_resolve_font(font_type))
return NULL;
@@ -178,22 +210,20 @@ struct element *gui_add_button(struct element *container, int x, int y, enum fon
button->ctx->flags = WF_RELATIVE;
button->childs = list_new();
button->data = malloc(sizeof(struct element_button));
- ((struct element_button *)button->data)->text = text;
+ ((struct element_button *)button->data)->text = strdup(text);
((struct element_button *)button->data)->color_fg = color_fg;
((struct element_button *)button->data)->color_bg = color_bg;
((struct element_button *)button->data)->font_type = font_type;
gfx_new_ctx(button->ctx);
list_add(container->childs, button);
- gui_sync_button(button);
- merge_elements(get_root(container->window_id));
- gfx_redraw_focused();
+ gui_sync(container, button);
return button;
}
struct element *gui_add_label(struct element *container, int x, int y, enum font_type font_type,
- char *text, u32 color_bg, u32 color_fg)
+ const char *text, u32 color_bg, u32 color_fg)
{
if (!container || !container->childs || !gfx_resolve_font(font_type))
return NULL;
@@ -209,20 +239,48 @@ struct element *gui_add_label(struct element *container, int x, int y, enum font
label->ctx->flags = WF_RELATIVE;
label->childs = list_new();
label->data = malloc(sizeof(struct element_label));
- ((struct element_label *)label->data)->text = text;
+ ((struct element_label *)label->data)->text = strdup(text);
((struct element_label *)label->data)->color_fg = color_fg;
((struct element_label *)label->data)->color_bg = color_bg;
((struct element_label *)label->data)->font_type = font_type;
gfx_new_ctx(label->ctx);
list_add(container->childs, label);
- gui_sync_label(label);
- merge_elements(get_root(container->window_id));
- gfx_redraw_focused();
+ gui_sync(container, label);
return label;
}
+struct element *gui_add_text_box(struct element *container, int x, int y, u32 width, u32 height,
+ enum font_type font_type, const char *text, u32 color_bg,
+ u32 color_fg)
+{
+ if (!container || !container->childs || !gfx_resolve_font(font_type))
+ return NULL;
+
+ struct element *text_box = malloc(sizeof(*text_box));
+ text_box->type = GUI_TYPE_TEXT_BOX;
+ text_box->window_id = container->window_id;
+ text_box->ctx = malloc(sizeof(*text_box->ctx));
+ text_box->ctx->x = x;
+ text_box->ctx->y = y;
+ text_box->ctx->width = width;
+ text_box->ctx->height = height;
+ text_box->ctx->flags = WF_RELATIVE;
+ text_box->childs = list_new();
+ text_box->data = malloc(sizeof(struct element_text_box));
+ ((struct element_text_box *)text_box->data)->text = strdup(text);
+ ((struct element_text_box *)text_box->data)->color_fg = color_fg;
+ ((struct element_text_box *)text_box->data)->color_bg = color_bg;
+ ((struct element_text_box *)text_box->data)->font_type = font_type;
+
+ gfx_new_ctx(text_box->ctx);
+ list_add(container->childs, text_box);
+ gui_sync(container, text_box);
+
+ return text_box;
+}
+
struct element *gui_add_text_input(struct element *container, int x, int y, u32 width,
enum font_type font_type, u32 color_bg, u32 color_fg)
{
@@ -246,9 +304,7 @@ struct element *gui_add_text_input(struct element *container, int x, int y, u32
gfx_new_ctx(text_input->ctx);
list_add(container->childs, text_input);
- gui_sync_text_input(text_input);
- merge_elements(get_root(container->window_id));
- gfx_redraw_focused();
+ gui_sync(container, text_input);
return text_input;
}
@@ -275,9 +331,7 @@ struct element *gui_add_container(struct element *container, int x, int y, u32 w
gfx_new_ctx(new_container->ctx);
list_add(container->childs, new_container);
- gui_sync_container(new_container);
- merge_elements(get_root(container->window_id));
- gfx_redraw_focused();
+ gui_sync(container, new_container);
return new_container;
}
diff --git a/libgui/inc/gui.h b/libgui/inc/gui.h
index 90e07ae..ec5da95 100644
--- a/libgui/inc/gui.h
+++ b/libgui/inc/gui.h
@@ -19,6 +19,7 @@ enum element_type {
GUI_TYPE_CONTAINER,
GUI_TYPE_BUTTON,
GUI_TYPE_LABEL,
+ GUI_TYPE_TEXT_BOX,
GUI_TYPE_TEXT_INPUT
};
@@ -49,6 +50,13 @@ struct element_label {
enum font_type font_type;
};
+struct element_text_box {
+ char *text;
+ u32 color_fg;
+ u32 color_bg;
+ enum font_type font_type;
+};
+
struct element_text_input {
char text[MAX_INPUT_LENGTH];
u32 color_fg;
@@ -90,13 +98,17 @@ struct gui_event_mouse {
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,
- char *text, u32 color_bg, u32 color_fg);
+ const char *text, u32 color_bg, u32 color_fg);
struct element *gui_add_label(struct element *container, int x, int y, enum font_type font_type,
- char *text, u32 color_bg, u32 color_fg);
+ const char *text, u32 color_bg, u32 color_fg);
+struct element *gui_add_text_box(struct element *container, int x, int y, u32 width, u32 height,
+ enum font_type font_type, const char *text, u32 color_bg,
+ u32 color_fg);
struct element *gui_add_text_input(struct element *container, int x, int y, u32 width,
enum font_type font_type, u32 color_bg, u32 color_fg);
struct element *gui_add_container(struct element *container, int x, int y, u32 width, u32 height,
u32 color_bg);
+void gui_sync(struct element *container, struct element *elem);
void gui_remove_childs(struct element *elem);
void gui_remove_element(struct element *elem);