aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/irrlicht-1.8/include/IGUIComboBox.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/include/IGUIComboBox.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 'libraries/irrlicht-1.8/include/IGUIComboBox.h')
-rw-r--r--libraries/irrlicht-1.8/include/IGUIComboBox.h148
1 files changed, 74 insertions, 74 deletions
diff --git a/libraries/irrlicht-1.8/include/IGUIComboBox.h b/libraries/irrlicht-1.8/include/IGUIComboBox.h
index 72c4187..ebee1ec 100644
--- a/libraries/irrlicht-1.8/include/IGUIComboBox.h
+++ b/libraries/irrlicht-1.8/include/IGUIComboBox.h
@@ -1,74 +1,74 @@
1// Copyright (C) 2002-2012 Nikolaus Gebhardt 1// Copyright (C) 2002-2012 Nikolaus Gebhardt
2// This file is part of the "Irrlicht Engine". 2// This file is part of the "Irrlicht Engine".
3// For conditions of distribution and use, see copyright notice in irrlicht.h 3// For conditions of distribution and use, see copyright notice in irrlicht.h
4 4
5#ifndef __I_GUI_COMBO_BOX_H_INCLUDED__ 5#ifndef __I_GUI_COMBO_BOX_H_INCLUDED__
6#define __I_GUI_COMBO_BOX_H_INCLUDED__ 6#define __I_GUI_COMBO_BOX_H_INCLUDED__
7 7
8#include "IGUIElement.h" 8#include "IGUIElement.h"
9 9
10namespace irr 10namespace irr
11{ 11{
12namespace gui 12namespace gui
13{ 13{
14 14
15 //! Combobox widget 15 //! Combobox widget
16 /** \par This element can create the following events of type EGUI_EVENT_TYPE: 16 /** \par This element can create the following events of type EGUI_EVENT_TYPE:
17 \li EGET_COMBO_BOX_CHANGED 17 \li EGET_COMBO_BOX_CHANGED
18 */ 18 */
19 class IGUIComboBox : public IGUIElement 19 class IGUIComboBox : public IGUIElement
20 { 20 {
21 public: 21 public:
22 22
23 //! constructor 23 //! constructor
24 IGUIComboBox(IGUIEnvironment* environment, IGUIElement* parent, s32 id, core::rect<s32> rectangle) 24 IGUIComboBox(IGUIEnvironment* environment, IGUIElement* parent, s32 id, core::rect<s32> rectangle)
25 : IGUIElement(EGUIET_COMBO_BOX, environment, parent, id, rectangle) {} 25 : IGUIElement(EGUIET_COMBO_BOX, environment, parent, id, rectangle) {}
26 26
27 //! Returns amount of items in box 27 //! Returns amount of items in box
28 virtual u32 getItemCount() const = 0; 28 virtual u32 getItemCount() const = 0;
29 29
30 //! Returns string of an item. the idx may be a value from 0 to itemCount-1 30 //! Returns string of an item. the idx may be a value from 0 to itemCount-1
31 virtual const wchar_t* getItem(u32 idx) const = 0; 31 virtual const wchar_t* getItem(u32 idx) const = 0;
32 32
33 //! Returns item data of an item. the idx may be a value from 0 to itemCount-1 33 //! Returns item data of an item. the idx may be a value from 0 to itemCount-1
34 virtual u32 getItemData(u32 idx) const = 0; 34 virtual u32 getItemData(u32 idx) const = 0;
35 35
36 //! Returns index based on item data 36 //! Returns index based on item data
37 virtual s32 getIndexForItemData(u32 data ) const = 0; 37 virtual s32 getIndexForItemData(u32 data ) const = 0;
38 38
39 //! Adds an item and returns the index of it 39 //! Adds an item and returns the index of it
40 virtual u32 addItem(const wchar_t* text, u32 data = 0) = 0; 40 virtual u32 addItem(const wchar_t* text, u32 data = 0) = 0;
41 41
42 //! Removes an item from the combo box. 42 //! Removes an item from the combo box.
43 /** Warning. This will change the index of all following items */ 43 /** Warning. This will change the index of all following items */
44 virtual void removeItem(u32 idx) = 0; 44 virtual void removeItem(u32 idx) = 0;
45 45
46 //! Deletes all items in the combo box 46 //! Deletes all items in the combo box
47 virtual void clear() = 0; 47 virtual void clear() = 0;
48 48
49 //! Returns id of selected item. returns -1 if no item is selected. 49 //! Returns id of selected item. returns -1 if no item is selected.
50 virtual s32 getSelected() const = 0; 50 virtual s32 getSelected() const = 0;
51 51
52 //! Sets the selected item. Set this to -1 if no item should be selected 52 //! Sets the selected item. Set this to -1 if no item should be selected
53 virtual void setSelected(s32 idx) = 0; 53 virtual void setSelected(s32 idx) = 0;
54 54
55 //! Sets text justification of the text area 55 //! Sets text justification of the text area
56 /** \param horizontal: EGUIA_UPPERLEFT for left justified (default), 56 /** \param horizontal: EGUIA_UPPERLEFT for left justified (default),
57 EGUIA_LOWEERRIGHT for right justified, or EGUIA_CENTER for centered text. 57 EGUIA_LOWEERRIGHT for right justified, or EGUIA_CENTER for centered text.
58 \param vertical: EGUIA_UPPERLEFT to align with top edge, 58 \param vertical: EGUIA_UPPERLEFT to align with top edge,
59 EGUIA_LOWEERRIGHT for bottom edge, or EGUIA_CENTER for centered text (default). */ 59 EGUIA_LOWEERRIGHT for bottom edge, or EGUIA_CENTER for centered text (default). */
60 virtual void setTextAlignment(EGUI_ALIGNMENT horizontal, EGUI_ALIGNMENT vertical) = 0; 60 virtual void setTextAlignment(EGUI_ALIGNMENT horizontal, EGUI_ALIGNMENT vertical) = 0;
61 61
62 //! Set the maximal number of rows for the selection listbox 62 //! Set the maximal number of rows for the selection listbox
63 virtual void setMaxSelectionRows(u32 max) = 0; 63 virtual void setMaxSelectionRows(u32 max) = 0;
64 64
65 //! Get the maximimal number of rows for the selection listbox 65 //! Get the maximimal number of rows for the selection listbox
66 virtual u32 getMaxSelectionRows() const = 0; 66 virtual u32 getMaxSelectionRows() const = 0;
67 }; 67 };
68 68
69 69
70} // end namespace gui 70} // end namespace gui
71} // end namespace irr 71} // end namespace irr
72 72
73#endif 73#endif
74 74