Irrlicht 3D Engine
 
Loading...
Searching...
No Matches
EGUIElementTypes.h
Go to the documentation of this file.
1// Copyright (C) 2002-2012 Nikolaus Gebhardt
2// This file is part of the "Irrlicht Engine".
3// For conditions of distribution and use, see copyright notice in irrlicht.h
4
5#ifndef __E_GUI_ELEMENT_TYPES_H_INCLUDED__
6#define __E_GUI_ELEMENT_TYPES_H_INCLUDED__
7
8#include "irrTypes.h"
9
10namespace irr
11{
12namespace gui
13{
14
16
101
103const c8* const GUIElementTypeNames[] =
104{
105 "button",
106 "checkBox",
107 "comboBox",
108 "contextMenu",
109 "menu",
110 "editBox",
111 "fileOpenDialog",
112 "colorSelectDialog",
113 "inOutFader",
114 "image",
115 "listBox",
116 "meshViewer",
117 "messageBox",
118 "modalScreen",
119 "scrollBar",
120 "spinBox",
121 "staticText",
122 "tab",
123 "tabControl",
124 "table",
125 "toolBar",
126 "treeview",
127 "window",
128 "element",
129 "root",
130 0
131};
132
133} // end namespace gui
134} // end namespace irr
135
136#endif
137
138
139
140
EGUI_ELEMENT_TYPE
List of all basic Irrlicht GUI elements.
@ EGUIET_TABLE
A Table.
@ EGUIET_COUNT
Not an element, amount of elements in there.
@ EGUIET_LIST_BOX
A list box (IGUIListBox)
@ EGUIET_TAB
A tab (IGUITab)
@ EGUIET_COLOR_SELECT_DIALOG
A color select open dialog (IGUIColorSelectDialog)
@ EGUIET_IMAGE
An image (IGUIImage)
@ EGUIET_MESH_VIEWER
A mesh viewer (IGUIMeshViewer)
@ EGUIET_SPIN_BOX
A spin box (IGUISpinBox)
@ EGUIET_BUTTON
A button (IGUIButton)
@ EGUIET_CHECK_BOX
A check box (IGUICheckBox)
@ EGUIET_MENU
A menu (IGUIMenu)
@ EGUIET_TOOL_BAR
A tool bar (IGUIToolBar)
@ EGUIET_WINDOW
A window.
@ EGUIET_SCROLL_BAR
A scroll bar (IGUIScrollBar)
@ EGUIET_IN_OUT_FADER
A in/out fader (IGUIInOutFader)
@ EGUIET_FILE_OPEN_DIALOG
A file open dialog (IGUIFileOpenDialog)
@ EGUIET_COMBO_BOX
A combo box (IGUIComboBox)
@ EGUIET_STATIC_TEXT
A static text (IGUIStaticText)
@ EGUIET_ROOT
The root of the GUI.
@ EGUIET_MODAL_SCREEN
A modal screen.
@ EGUIET_TAB_CONTROL
A tab control.
@ EGUIET_FORCE_32_BIT
This enum is never used, it only forces the compiler to compile this enumeration to 32 bit.
@ EGUIET_EDIT_BOX
An edit box (IGUIEditBox)
@ EGUIET_MESSAGE_BOX
A message box (IGUIWindow)
@ EGUIET_TREE_VIEW
A Tree View.
@ EGUIET_ELEMENT
Unknown type.
@ EGUIET_CONTEXT_MENU
A context menu (IGUIContextMenu)
const c8 *const GUIElementTypeNames[]
Names for built-in element types.
Everything in the Irrlicht Engine can be found in this namespace.
Definition aabbox3d.h:13
char c8
8 bit character variable.
Definition irrTypes.h:31