aboutsummaryrefslogtreecommitdiffstats
path: root/gui.h
blob: 5403129547cb983bb4091441fa2ba0d4f1aa689a (plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#ifndef GUI_H
#define GUI_H

#include "ch.h"
#include "hal.h"
#include "glcd.h"
#include "touchpad.h"

static struct guiNode_t {
	uint16_t x0;
	uint16_t y0;
	uint16_t x1;
	uint16_t y1;
	uint8_t *active;
	uint8_t *state;
	char *name;
	struct guiNode_t *next;
};

#ifdef __cplusplus
extern "C" {
#endif

enum {horizontal, vertical};
enum {inactive, active};

/*
 * Description: creates the GUI thread
 *
 * param:		- interval:	thread sleep in milliseconds after each GUI element update
 *				- priority: priority of the thread
 *
 * return:		pointer to created thread
 */
Thread *guiInit(uint16_t interval, tprio_t priority);

/*
 * Description: prints all GUI elements structs (linked list)
 * 
 * param:		- chp: pointer to output stream
 *
 * return:		none
 */
void guiPrintNode(BaseSequentialStream *chp);

/*
 * Description: draws a button on the screen and keeps it's state up to date
 *
 * param:		- x0, y0, x1, y1:	start and end coordinates of the button's rectangle
 *				- str:				string that gets drawn into the rectangle - button's lable
 *				- fontColor:		color of the lable
 *				- buttonColor:		color of the rectangle
 *				- active:			pass pointer to variable which holds the state 'active' or 'inactive'
 *				- state:			pass pointer to variable whcih will keep the state of the button (pressed / unpressed)'
 *
 * return:		1 if button successfully created
 */
uint8_t guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, char *str, uint16_t fontColor, uint16_t buttonColor, uint8_t *active, uint8_t *state);

#ifdef __cplusplus
}
#endif

#endif