forked from pwiecz/go-fltk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
enumerations.cxx
174 lines (162 loc) · 7.63 KB
/
enumerations.cxx
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
#include "enumerations.h"
#include <FL/Enumerations.H>
#include <FL/Fl_Tabs.H>
const unsigned int go_FL_ALIGN_CENTER = (unsigned int)FL_ALIGN_CENTER;
const unsigned int go_FL_ALIGN_TOP = (unsigned int)FL_ALIGN_TOP;
const unsigned int go_FL_ALIGN_BOTTOM = (unsigned int)FL_ALIGN_BOTTOM;
const unsigned int go_FL_ALIGN_LEFT = (unsigned int)FL_ALIGN_LEFT;
const unsigned int go_FL_ALIGN_RIGHT = (unsigned int)FL_ALIGN_RIGHT;
const unsigned int go_FL_ALIGN_INSIDE = (unsigned int)FL_ALIGN_INSIDE;
const unsigned int go_FL_ALIGN_TEXT_OVER_IMAGE = (unsigned int)FL_ALIGN_TEXT_OVER_IMAGE;
const unsigned int go_FL_ALIGN_IMAGE_OVER_TEXT = (unsigned int)FL_ALIGN_IMAGE_OVER_TEXT;
const unsigned int go_FL_ALIGN_CLIP = (unsigned int)FL_ALIGN_CLIP;
const unsigned int go_FL_ALIGN_WRAP = (unsigned int)FL_ALIGN_WRAP;
const unsigned int go_FL_ALIGN_IMAGE_NEXT_TO_TEXT = (unsigned int)FL_ALIGN_IMAGE_NEXT_TO_TEXT;
const unsigned int go_FL_ALIGN_TEXT_NEXT_TO_IMAGE = (unsigned int)FL_ALIGN_TEXT_NEXT_TO_IMAGE;
const unsigned int go_FL_ALIGN_IMAGE_BACKDROP = (unsigned int)FL_ALIGN_IMAGE_BACKDROP;
const unsigned int go_FL_ALIGN_TOP_LEFT = (unsigned int)FL_ALIGN_TOP_LEFT;
const unsigned int go_FL_ALIGN_TOP_RIGHT = (unsigned int)FL_ALIGN_TOP_RIGHT;
const unsigned int go_FL_ALIGN_BOTTOM_LEFT = (unsigned int)FL_ALIGN_BOTTOM_LEFT;
const unsigned int go_FL_ALIGN_BOTTOM_RIGHT = (unsigned int)FL_ALIGN_BOTTOM_RIGHT;
const unsigned int go_FL_ALIGN_LEFT_TOP = (unsigned int)FL_ALIGN_LEFT_TOP;
const unsigned int go_FL_ALIGN_RIGHT_TOP = (unsigned int)FL_ALIGN_RIGHT_TOP;
const unsigned int go_FL_ALIGN_LEFT_BOTTOM = (unsigned int)FL_ALIGN_LEFT_BOTTOM;
const unsigned int go_FL_ALIGN_RIGHT_BOTTOM = (unsigned int)FL_ALIGN_RIGHT_BOTTOM;
const unsigned int go_FL_ALIGN_NOWRAP = (unsigned int)FL_ALIGN_NOWRAP;
const unsigned int go_FL_ALIGN_POSITION_MASK = (unsigned int)FL_ALIGN_POSITION_MASK;
const unsigned int go_FL_ALIGN_IMAGE_MASK = (unsigned int)FL_ALIGN_IMAGE_MASK;
const int go_FL_ARROW_SINGLE = (int)FL_ARROW_SINGLE;
const int go_FL_ARROW_DOUBLE = (int)FL_ARROW_DOUBLE;
const int go_FL_ARROW_CHOICE = (int)FL_ARROW_CHOICE;
const int go_FL_ARROW_RETURN = (int)FL_ARROW_RETURN;
const int go_FL_ORIENT_NONE = (int)FL_ORIENT_NONE;
const int go_FL_ORIENT_RIGHT = (int)FL_ORIENT_RIGHT;
const int go_FL_ORIENT_NE = (int)FL_ORIENT_NE;
const int go_FL_ORIENT_UP= (int)FL_ORIENT_UP;
const int go_FL_ORIENT_NW = (int)FL_ORIENT_NW;
const int go_FL_ORIENT_LEFT = (int)FL_ORIENT_LEFT;
const int go_FL_ORIENT_SW = (int)FL_ORIENT_SW;
const int go_FL_ORIENT_DOWN = (int)FL_ORIENT_DOWN;
const int go_FL_ORIENT_SE = (int)FL_ORIENT_SE;
const int go_FL_HELVETICA = (int)FL_HELVETICA;
const int go_FL_HELVETICA_BOLD = (int)FL_HELVETICA_BOLD;
const int go_FL_HELVETICA_ITALIC = (int)FL_HELVETICA_ITALIC;
const int go_FL_HELVETICA_BOLD_ITALIC = (int)FL_HELVETICA_BOLD_ITALIC;
const int go_FL_COURIER = (int)FL_COURIER;
const int go_FL_COURIER_BOLD = (int)FL_COURIER_BOLD;
const int go_FL_COURIER_ITALIC = (int)FL_COURIER_ITALIC;
const int go_FL_COURIER_BOLD_ITALIC = (int)FL_COURIER_BOLD_ITALIC;
const int go_FL_TIMES = (int)FL_TIMES;
const int go_FL_TIMES_BOLD = (int)FL_TIMES_BOLD;
const int go_FL_TIMES_ITALIC = (int)FL_TIMES_ITALIC;
const int go_FL_TIMES_BOLD_ITALIC = (int)FL_TIMES_BOLD_ITALIC;
const int go_FL_SYMBOL = (int)FL_SYMBOL;
const int go_FL_SCREEN = (int)FL_SCREEN;
const int go_FL_SCREEN_BOLD = (int)FL_SCREEN_BOLD;
const int go_FL_ZAPF_DINGBATS = (int)FL_ZAPF_DINGBATS;
const int go_FL_FREE_FONT = (int)FL_FREE_FONT;
const int go_FL_BOLD = (int)FL_BOLD;
const int go_FL_ITALIC = (int)FL_ITALIC;
const int go_FL_BOLD_ITALIC = (int)FL_BOLD_ITALIC;
const int go_FL_NORMAL_LABEL = (int)FL_NORMAL_LABEL;
const int go_FL_NO_LABEL = (int)FL_NO_LABEL;
const int go_FL_NO_EVENT = FL_NO_EVENT;
const int go_FL_PUSH = FL_PUSH;
const int go_FL_DRAG = FL_DRAG;
const int go_FL_RELEASE = FL_RELEASE;
const int go_FL_MOVE = FL_MOVE;
const int go_FL_MOUSEWHEEL = FL_MOUSEWHEEL;
const int go_FL_ENTER = FL_ENTER;
const int go_FL_LEAVE = FL_LEAVE;
const int go_FL_FOCUS = FL_FOCUS;
const int go_FL_UNFOCUS = FL_UNFOCUS;
const int go_FL_KEYBOARD = FL_KEYBOARD;
const int go_FL_KEYDOWN = FL_KEYDOWN;
const int go_FL_KEYUP = FL_KEYUP;
const int go_FL_CLOSE = FL_CLOSE;
const int go_FL_SHORTCUT = FL_SHORTCUT;
const int go_FL_DEACTIVATE = FL_DEACTIVATE;
const int go_FL_ACTIVATE = FL_ACTIVATE;
const int go_FL_HIDE = FL_HIDE;
const int go_FL_SHOW = FL_SHOW;
const int go_FL_PASTE = FL_PASTE;
const int go_FL_SELECTIONCLEAR = FL_SELECTIONCLEAR;
const int go_FL_DND_ENTER = FL_DND_ENTER;
const int go_FL_DND_DRAG = FL_DND_DRAG;
const int go_FL_DND_LEAVE = FL_DND_LEAVE;
const int go_FL_DND_RELEASE = FL_DND_RELEASE;
const int go_FL_WHEN_NEVER = FL_WHEN_NEVER;
const int go_FL_WHEN_CHANGED = FL_WHEN_CHANGED;
const int go_FL_WHEN_NOT_CHANGED = FL_WHEN_NOT_CHANGED;
const int go_FL_WHEN_RELEASE = FL_WHEN_RELEASE;
const int go_FL_WHEN_RELEASE_ALWAYS = FL_WHEN_RELEASE_ALWAYS;
const int go_FL_WHEN_ENTER_KEY = FL_WHEN_ENTER_KEY;
const int go_FL_WHEN_ENTER_KEY_ALWAYS = FL_WHEN_ENTER_KEY_ALWAYS;
const int go_FL_WHEN_ENTER_KEY_CHANGED = FL_WHEN_ENTER_KEY_CHANGED;
const int go_FL_ESCAPE = FL_Escape;
const int go_FL_TAB = FL_Tab;
const int go_FL_ENTER_KEY = FL_Enter;
const int go_FL_HOME = FL_Home;
const int go_FL_LEFT = FL_Left;
const int go_FL_UP = FL_Up;
const int go_FL_RIGHT = FL_Right;
const int go_FL_DOWN = FL_Down;
const int go_FL_PAGE_UP = FL_Page_Up;
const int go_FL_PAGE_DOWN = FL_Page_Down;
const int go_FL_END = FL_End;
const int go_FL_MENU = FL_Menu;
const int go_FL_HELP = FL_Help;
const int go_FL_F1 = FL_F + 1;
const int go_FL_F2 = FL_F + 2;
const int go_FL_F3 = FL_F + 3;
const int go_FL_F4 = FL_F + 4;
const int go_FL_F5 = FL_F + 5;
const int go_FL_F6 = FL_F + 6;
const int go_FL_F7 = FL_F + 7;
const int go_FL_F8 = FL_F + 8;
const int go_FL_F9 = FL_F + 9;
const int go_FL_F10 = FL_F + 10;
const int go_FL_F11 = FL_F + 11;
const int go_FL_F12 = FL_F + 12;
const int go_FL_DELETE = FL_Delete;
const int go_FL_BACKSPACE = FL_BackSpace;
const int go_FL_INSERT = FL_Insert;
const int go_FL_RGB = FL_RGB;
const int go_FL_INDEX = FL_INDEX;
const int go_FL_SINGLE = FL_SINGLE;
const int go_FL_DOUBLE = FL_DOUBLE;
const int go_FL_ACCUM = FL_ACCUM;
const int go_FL_ALPHA = FL_ALPHA;
const int go_FL_DEPTH = FL_DEPTH;
const int go_FL_STENCIL = FL_STENCIL;
const int go_FL_RGB8 = FL_RGB8;
const int go_FL_MULTISAMPLE = FL_MULTISAMPLE;
const int go_FL_STEREO = FL_STEREO;
const int go_FL_FAKE_SINGLE = FL_FAKE_SINGLE;
const int go_FL_OPENGL3 = FL_OPENGL3;
const unsigned int go_FL_FOREGROUND_COLOR = FL_FOREGROUND_COLOR;
const unsigned int go_FL_BACKGROUND2_COLOR = FL_BACKGROUND2_COLOR;
const unsigned int go_FL_INACTIVE_COLOR = FL_INACTIVE_COLOR;
const unsigned int go_FL_SELECTION_COLOR = FL_SELECTION_COLOR;
const unsigned int go_FL_GRAY0 = FL_GRAY0;
const unsigned int go_FL_DARK3 = FL_DARK3;
const unsigned int go_FL_DARK2 = FL_DARK2;
const unsigned int go_FL_DARK1 = FL_DARK1;
const unsigned int go_FL_BACKGROUND_COLOR = FL_BACKGROUND_COLOR;
const unsigned int go_FL_LIGHT1 = FL_LIGHT1;
const unsigned int go_FL_LIGHT2 = FL_LIGHT2;
const unsigned int go_FL_LIGHT3 = FL_LIGHT3;
const unsigned int go_FL_BLACK = FL_BLACK;
const unsigned int go_FL_RED = FL_RED;
const unsigned int go_FL_GREEN = FL_GREEN;
const unsigned int go_FL_YELLOW = FL_YELLOW;
const unsigned int go_FL_BLUE = FL_BLUE;
const unsigned int go_FL_MAGENTA = FL_MAGENTA;
const unsigned int go_FL_CYAN = FL_CYAN;
const unsigned int go_FL_DARK_RED = FL_DARK_RED;
const unsigned int go_FL_DARK_GREEN = FL_DARK_GREEN;
const unsigned int go_FL_DARK_YELLOW = FL_DARK_YELLOW;
const unsigned int go_FL_DARK_BLUE = FL_DARK_BLUE;
const unsigned int go_FL_DARK_MAGENTA = FL_DARK_MAGENTA;
const unsigned int go_FL_DARK_CYAN = FL_DARK_CYAN;
const unsigned int go_FL_WHITE = FL_WHITE;