aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/irrlicht-1.8/tools/GUIEditor/EGUIEditTypes.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-01-13 18:54:10 +1000
committerDavid Walter Seikel2013-01-13 18:54:10 +1000
commit959831f4ef5a3e797f576c3de08cd65032c997ad (patch)
treee7351908be5995f0b325b2ebeaa02d5a34b82583 /libraries/irrlicht-1.8/tools/GUIEditor/EGUIEditTypes.h
parentAdd info about changes to Irrlicht. (diff)
downloadSledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.zip
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.gz
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.bz2
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.xz
Remove damned ancient DOS line endings from Irrlicht. Hopefully I did not go overboard.
Diffstat (limited to '')
-rw-r--r--libraries/irrlicht-1.8/tools/GUIEditor/EGUIEditTypes.h122
1 files changed, 61 insertions, 61 deletions
diff --git a/libraries/irrlicht-1.8/tools/GUIEditor/EGUIEditTypes.h b/libraries/irrlicht-1.8/tools/GUIEditor/EGUIEditTypes.h
index 88d119e..fe56726 100644
--- a/libraries/irrlicht-1.8/tools/GUIEditor/EGUIEditTypes.h
+++ b/libraries/irrlicht-1.8/tools/GUIEditor/EGUIEditTypes.h
@@ -1,61 +1,61 @@
1#ifndef __C_GUIEDIT_TYPES_H_INCLUDED__ 1#ifndef __C_GUIEDIT_TYPES_H_INCLUDED__
2#define __C_GUIEDIT_TYPES_H_INCLUDED__ 2#define __C_GUIEDIT_TYPES_H_INCLUDED__
3 3
4#include "irrTypes.h" 4#include "irrTypes.h"
5 5
6namespace irr { 6namespace irr {
7namespace gui { 7namespace gui {
8 8
9enum EGUIEDIT_ELEMENT_TYPES 9enum EGUIEDIT_ELEMENT_TYPES
10{ 10{
11 // GUI Editor 11 // GUI Editor
12 EGUIEDIT_GUIEDIT=0, 12 EGUIEDIT_GUIEDIT=0,
13 EGUIEDIT_GUIEDITWINDOW, 13 EGUIEDIT_GUIEDITWINDOW,
14 // Generic 14 // Generic
15 EGUIEDIT_GUIPANEL, 15 EGUIEDIT_GUIPANEL,
16 EGUIEDIT_TEXTUREBROWSER, 16 EGUIEDIT_TEXTUREBROWSER,
17 // Attribute editors 17 // Attribute editors
18 EGUIEDIT_ATTRIBUTEEDITOR, 18 EGUIEDIT_ATTRIBUTEEDITOR,
19 EGUIEDIT_STRINGATTRIBUTE, 19 EGUIEDIT_STRINGATTRIBUTE,
20 EGUIEDIT_BOOLATTRIBUTE, 20 EGUIEDIT_BOOLATTRIBUTE,
21 EGUIEDIT_ENUMATTRIBUTE, 21 EGUIEDIT_ENUMATTRIBUTE,
22 EGUIEDIT_COLORATTRIBUTE, 22 EGUIEDIT_COLORATTRIBUTE,
23 EGUIEDIT_COLORFATTRIBUTE, 23 EGUIEDIT_COLORFATTRIBUTE,
24 EGUIEDIT_TEXTUREATTRIBUTE, 24 EGUIEDIT_TEXTUREATTRIBUTE,
25 // Dummy editor stubs 25 // Dummy editor stubs
26 EGUIEDIT_CONTEXTMENUEDITOR, 26 EGUIEDIT_CONTEXTMENUEDITOR,
27 EGUIEDIT_MENUEDITOR, 27 EGUIEDIT_MENUEDITOR,
28 EGUIEDIT_FILEDIALOGEDITOR, 28 EGUIEDIT_FILEDIALOGEDITOR,
29 EGUIEDIT_COLORDIALOGEDITOR, 29 EGUIEDIT_COLORDIALOGEDITOR,
30 EGUIEDIT_MODALSCREENEDITOR, 30 EGUIEDIT_MODALSCREENEDITOR,
31 // Count 31 // Count
32 EGUIEDIT_COUNT 32 EGUIEDIT_COUNT
33}; 33};
34 34
35const c8* const GUIEditElementTypeNames[] = 35const c8* const GUIEditElementTypeNames[] =
36{ 36{
37 "GUIEditor", 37 "GUIEditor",
38 "GUIEditWindow", 38 "GUIEditWindow",
39 "panel", 39 "panel",
40 "textureCacheBrowser", 40 "textureCacheBrowser",
41 "attributeEditor", 41 "attributeEditor",
42 "string_attribute", 42 "string_attribute",
43 "bool_attribute", 43 "bool_attribute",
44 "enum_attribute", 44 "enum_attribute",
45 "color_attribute", 45 "color_attribute",
46 "colorf_attribute", 46 "colorf_attribute",
47 "texture_attribute", 47 "texture_attribute",
48 // dummy editors 48 // dummy editors
49 "contextMenu_editor", 49 "contextMenu_editor",
50 "menu_editor", 50 "menu_editor",
51 "fileOpenDialog_editor", 51 "fileOpenDialog_editor",
52 "colorSelectDialog_editor", 52 "colorSelectDialog_editor",
53 "modalScreen_editor", 53 "modalScreen_editor",
54 0 54 0
55}; 55};
56 56
57} // gui 57} // gui
58} // irr 58} // irr
59 59
60#endif 60#endif
61 61