aboutsummaryrefslogtreecommitdiff
path: root/libgui/inc
diff options
context:
space:
mode:
authorMarvin Borner2020-10-25 21:42:51 +0100
committerMarvin Borner2020-10-25 21:42:51 +0100
commit4ae48304b2290b6c835eb3d937bd5e905ce0e5d4 (patch)
treea1d6edb02667fb76c2ce03193ccc76ada08ea9f4 /libgui/inc
parent4ec7c19e1567f322b1622ad506290e8eb7a4956d (diff)
Added on-demand font loading
Diffstat (limited to 'libgui/inc')
-rw-r--r--libgui/inc/gfx.h15
-rw-r--r--libgui/inc/gui.h14
2 files changed, 17 insertions, 12 deletions
diff --git a/libgui/inc/gfx.h b/libgui/inc/gfx.h
index 2ce588c..5010650 100644
--- a/libgui/inc/gfx.h
+++ b/libgui/inc/gfx.h
@@ -5,7 +5,6 @@
#define GFX_H
#include <def.h>
-#include <gui.h>
#include <sys.h>
#include <vesa.h>
@@ -39,7 +38,9 @@
#define WF_NO_RESIZE (1 << 2)
#define WF_RELATIVE (1 << 3)
-enum message_type { GFX_NEW_CONTEXT = EVENT_MAX + 1, GFX_REDRAW };
+enum font_type { FONT_8, FONT_12, FONT_16, FONT_24, FONT_32, FONT_64 };
+
+enum message_type { GFX_NEW_CONTEXT = EVENT_MAX + 1, GFX_REDRAW, GFX_MAX };
// Generalized font struct
struct font {
@@ -61,8 +62,9 @@ struct context {
int flags;
};
-void gfx_write_char(struct context *ctx, int x, int y, u32 c, char ch);
-void gfx_write(struct context *ctx, int x, int y, u32 c, char *text);
+struct font *gfx_resolve_font(enum font_type font_type);
+void gfx_write_char(struct context *ctx, int x, int y, enum font_type font_type, u32 c, char ch);
+void gfx_write(struct context *ctx, int x, int y, enum font_type font_type, u32 c, char *text);
void gfx_load_image(struct context *ctx, char *path, int x, int y);
void gfx_load_wallpaper(struct context *ctx, char *path);
void gfx_copy(struct context *dest, struct context *src, int x, int y, u32 width, u32 height);
@@ -70,10 +72,9 @@ void gfx_ctx_on_ctx(struct context *dest, struct context *src, int x, int y);
void gfx_draw_rectangle(struct context *ctx, int x1, int y1, int x2, int y2, u32 c);
void gfx_fill(struct context *ctx, u32 c);
void gfx_border(struct context *ctx, u32 c, u32 width);
-void gfx_init(char *font_path);
-int gfx_font_height();
-int gfx_font_width();
+int gfx_font_height(enum font_type);
+int gfx_font_width(enum font_type);
/**
* Wrappers
diff --git a/libgui/inc/gui.h b/libgui/inc/gui.h
index e7573f8..8149381 100644
--- a/libgui/inc/gui.h
+++ b/libgui/inc/gui.h
@@ -11,18 +11,21 @@
#define MAX_CHILDS 100
// TODO: Improve event types (maybe as struct header)
-enum window_event_type { GUI_KEYBOARD = 10, GUI_MOUSE, GUI_MAX };
+enum window_event_type { GUI_KEYBOARD = GFX_MAX + 1, GUI_MOUSE, GUI_MAX };
enum element_type { GUI_TYPE_CONTAINER, GUI_TYPE_BUTTON, GUI_TYPE_TEXTBOX };
struct element_button {
- const char *text;
- u32 color;
+ char *text;
+ u32 color_fg;
+ u32 color_bg;
+ enum font_type font_type;
void (*on_click)();
};
struct element_textbox {
const char *text;
u32 color;
+ enum font_type font_type;
};
struct element {
@@ -56,7 +59,8 @@ struct gui_event_mouse {
struct element *gui_init(const char *title, u32 width, u32 height);
void gui_event_loop(struct element *container);
-struct element_button *gui_add_button(struct element *container, int x, int y, u32 width,
- u32 height, const char *text, u32 color);
+struct element_button *gui_add_button(struct element *container, int x, int y,
+ enum font_type font_type, char *text, u32 color_bg,
+ u32 color_fg);
#endif