blob: 467496a3283d2e1d00cd6b0390f75aa204e996a6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// MIT License, Copyright (c) 2020 Marvin Borner
// Some GUI functions
#ifndef GUI_H
#define GUI_H
#include <def.h>
#include <sys.h>
#include <vesa.h>
// Generalized font struct
struct font {
char *chars;
int height;
int width;
int char_size;
};
struct window {
int x;
int y;
u16 width;
u16 height;
struct vbe *vbe;
u8 *fb;
};
void gui_draw_rectangle(struct window *win, int x1, int y1, int x2, int y2, const u32 color[3]);
void gui_fill(struct window *win, const u32 color[3]);
void gui_load_wallpaper(struct vbe *vbe, char *path);
void gui_init(char *font_path);
/**
* Wrappers
*/
#define gui_new_window() \
(msg_send(1, MSG_NEW_WINDOW, NULL), (struct window *)msg_receive_loop()->data)
#endif
|