blob: 352a394669a28ba9ebbb5c118a0c57f4b7bd27b5 (
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
|
/* palette colors */
enum {
PCBlack,
PCWhite,
NCOLOR
};
enum {
MAXZOOM = 8
};
typedef struct Layer Layer;
typedef struct Canvas Canvas;
typedef struct HUD HUD;
typedef struct HUDWidget HUDWidget;
struct Layer
{
RFrame;
char *name;
Image *image;
Layer *prev, *next;
};
struct Canvas
{
RFrame;
char *name;
Image *image;
Layer layers;
Layer *curlayer;
};
struct HUD
{
Point2 p;
HUDWidget *widgets;
void (*addwidget)(HUD*, Point2, char*, ...);
};
struct HUDWidget
{
Point2 p;
char *fmt;
void *args;
int nargs;
HUDWidget *next;
};
|