summaryrefslogtreecommitdiff
path: root/plugins/dumb/dumb-kode54/studio/include/guiproc.h
blob: ab3d8d71a938618fb0e2e16e8af2e89759b00c1e (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
#ifndef INCLUDED_GUIPROC_H
#define INCLUDED_GUIPROC_H


#define THE_SIZE 2


#if THE_SIZE == 2

#define BEVEL_SIZE 3
#define BORDER_SIZE 3
#define TITLE_HEIGHT 21

#define THE_FONT FONT2

#elif THE_SIZE == 1

#define BEVEL_SIZE 2
#define BORDER_SIZE 2
#define TITLE_HEIGHT 13

#define THE_FONT FONT1

#else

#define BEVEL_SIZE 1
#define BORDER_SIZE 1
#define TITLE_HEIGHT 7

#define THE_FONT FONT0

#endif


#define HIGHLIGHT 15
#define MIDTONE 7
#define SHADOW 8
#define TITLE_BG_FOCUS 9
#define TITLE_FG_FOCUS 14
#define TITLE_BG 8
#define TITLE_FG 7
#define MENU_BG_FOCUS 1
#define MENU_FG_FOCUS 15
#define MENU_BG MIDTONE
#define MENU_FG 0
#define DESKTOP 4


void draw_bevel(int l, int t, int r, int b, int tl, int m, int br);


#endif /* INCLUDED_GUIPROC_H */