blob: 66b1baa7f6be34f88fcc248b6066c609686382c3 (
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
// 22 april 2015
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdarg.h>
#include <string.h>
#include <math.h>
#include <limits.h>
#include "../ui.h"
// main.c
extern void die(const char *, ...);
extern uiBox *mainBox;
extern uiTab *mainTab;
extern uiBox *(*newhbox)(void);
extern uiBox *(*newvbox)(void);
// spaced.c
extern void setSpaced(int);
extern void querySpaced(char[12]);
extern uiWindow *newWindow(const char *title, int width, int height, int hasMenubar);
extern uiBox *newHorizontalBox(void);
extern uiBox *newVerticalBox(void);
extern uiTab *newTab(void);
extern uiGroup *newGroup(const char *);
extern uiForm *newForm(void);
extern uiGrid *newGrid(void);
// menus.c
extern uiMenuItem *shouldQuitItem;
extern void initMenus(void);
// page1.c
extern uiBox *page1;
extern void makePage1(uiWindow *);
// page2.c
extern uiGroup *page2group;
extern uiBox *makePage2(void);
// page3.c
extern uiBox *makePage3(void);
// page4.c
extern uiBox *makePage4(void);
// page5.c
extern uiBox *makePage5(uiWindow *);
// page6.c
extern uiBox *makePage6(void);
// drawtests.c
extern void runDrawTest(int, uiAreaDrawParams *);
extern void populateComboboxWithTests(uiCombobox *);
// page7.c
extern uiBox *makePage7(void);
// page7a.c
extern uiGroup *makePage7a(void);
// page7b.c
extern uiGroup *makePage7b(void);
// page7c.c
extern uiGroup *makePage7c(void);
// page8.c
extern uiBox *makePage8(void);
// page9.c
extern uiBox *makePage9(void);
// page10.c
extern uiBox *makePage10(void);
// page11.c
extern uiBox *makePage11(void);
// page12.c
extern uiBox *makePage12(void);
// page13.c
extern uiBox *makePage13(void);
// page14.c
extern uiTab *makePage14(void);
// page15.c
extern uiBox *makePage15(uiWindow *);
|