aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/others/irrlicht-1.8.1/tools/GUIEditor/EGUIEditTypes.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2016-03-28 22:28:34 +1000
committerDavid Walter Seikel2016-03-28 22:28:34 +1000
commit7028cbe09c688437910a25623098762bf0fa592d (patch)
tree10b5af58277d9880380c2251f109325542c4e6eb /src/others/irrlicht-1.8.1/tools/GUIEditor/EGUIEditTypes.h
parentMove lemon to the src/others directory. (diff)
downloadSledjHamr-7028cbe09c688437910a25623098762bf0fa592d.zip
SledjHamr-7028cbe09c688437910a25623098762bf0fa592d.tar.gz
SledjHamr-7028cbe09c688437910a25623098762bf0fa592d.tar.bz2
SledjHamr-7028cbe09c688437910a25623098762bf0fa592d.tar.xz
Move Irrlicht to src/others.
Diffstat (limited to 'src/others/irrlicht-1.8.1/tools/GUIEditor/EGUIEditTypes.h')
-rw-r--r--src/others/irrlicht-1.8.1/tools/GUIEditor/EGUIEditTypes.h61
1 files changed, 61 insertions, 0 deletions
diff --git a/src/others/irrlicht-1.8.1/tools/GUIEditor/EGUIEditTypes.h b/src/others/irrlicht-1.8.1/tools/GUIEditor/EGUIEditTypes.h
new file mode 100644
index 0000000..88d119e
--- /dev/null
+++ b/src/others/irrlicht-1.8.1/tools/GUIEditor/EGUIEditTypes.h
@@ -0,0 +1,61 @@
1#ifndef __C_GUIEDIT_TYPES_H_INCLUDED__
2#define __C_GUIEDIT_TYPES_H_INCLUDED__
3
4#include "irrTypes.h"
5
6namespace irr {
7namespace gui {
8
9enum EGUIEDIT_ELEMENT_TYPES
10{
11 // GUI Editor
12 EGUIEDIT_GUIEDIT=0,
13 EGUIEDIT_GUIEDITWINDOW,
14 // Generic
15 EGUIEDIT_GUIPANEL,
16 EGUIEDIT_TEXTUREBROWSER,
17 // Attribute editors
18 EGUIEDIT_ATTRIBUTEEDITOR,
19 EGUIEDIT_STRINGATTRIBUTE,
20 EGUIEDIT_BOOLATTRIBUTE,
21 EGUIEDIT_ENUMATTRIBUTE,
22 EGUIEDIT_COLORATTRIBUTE,
23 EGUIEDIT_COLORFATTRIBUTE,
24 EGUIEDIT_TEXTUREATTRIBUTE,
25 // Dummy editor stubs
26 EGUIEDIT_CONTEXTMENUEDITOR,
27 EGUIEDIT_MENUEDITOR,
28 EGUIEDIT_FILEDIALOGEDITOR,
29 EGUIEDIT_COLORDIALOGEDITOR,
30 EGUIEDIT_MODALSCREENEDITOR,
31 // Count
32 EGUIEDIT_COUNT
33};
34
35const c8* const GUIEditElementTypeNames[] =
36{
37 "GUIEditor",
38 "GUIEditWindow",
39 "panel",
40 "textureCacheBrowser",
41 "attributeEditor",
42 "string_attribute",
43 "bool_attribute",
44 "enum_attribute",
45 "color_attribute",
46 "colorf_attribute",
47 "texture_attribute",
48 // dummy editors
49 "contextMenu_editor",
50 "menu_editor",
51 "fileOpenDialog_editor",
52 "colorSelectDialog_editor",
53 "modalScreen_editor",
54 0
55};
56
57} // gui
58} // irr
59
60#endif
61