aboutsummaryrefslogtreecommitdiff
path: root/libgui/inc/gui.h
blob: 565bcf64645839a315f6dd2863549b32bb640804 (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
// MIT License, Copyright (c) 2020 Marvin Borner
// Mostly GFX function wrappers

#ifndef GUI_H
#define GUI_H

#include <def.h>
#include <gfx.h>

#define MAX_CHILDS 100

struct element {
	struct context *ctx;
};

struct window {
	const char *title;
	struct element *childs[MAX_CHILDS];
	struct context *ctx;
};

// TODO: Remove window return (internal)
struct window *gui_init(const char *title, u32 width, u32 height);

#endif