aboutsummaryrefslogtreecommitdiff
path: root/libgui/gui.c
blob: e4800bc13e90deb8cec1f276310a7eaf87cfc2ce (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
// MIT License, Copyright (c) 2021 Marvin Borner

#include <def.h>
#include <gui.h>
#include <msg.h>
#include <print.h>

#define WM_PATH "/bin/wm"

s32 gui_new_window(struct gui_window *win)
{
	struct message_new_window msg = { 0 };
	if (msg_send(pidof(WM_PATH), GUI_NEW_WINDOW, &msg, sizeof(msg)) > 0 &&
	    msg_receive(&msg, sizeof(msg)) > 0 &&
	    msg.header.type == (GUI_NEW_WINDOW | MSG_SUCCESS)) {
		win->id = msg.id;
		win->ctx = msg.ctx;
		win->ctx.fb = shaccess(msg.shid);
		return win->id;
	}
	return -1;
}

s32 gui_redraw_window(u32 id)
{
	struct message_redraw_window msg = { .id = id };
	if (msg_send(pidof(WM_PATH), GUI_REDRAW_WINDOW, &msg, sizeof(msg)) > 0 &&
	    msg_receive(&msg, sizeof(msg)) > 0 &&
	    msg.header.type == (GUI_REDRAW_WINDOW | MSG_SUCCESS))
		return id;
	return -1;
}