From 7028cbe09c688437910a25623098762bf0fa592d Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Mon, 28 Mar 2016 22:28:34 +1000 Subject: Move Irrlicht to src/others. --- .../doc/html/_i_g_u_i_combo_box_8h_source.html | 175 +++++++++++++++++++++ 1 file changed, 175 insertions(+) create mode 100644 src/others/irrlicht-1.8.1/doc/html/_i_g_u_i_combo_box_8h_source.html (limited to 'src/others/irrlicht-1.8.1/doc/html/_i_g_u_i_combo_box_8h_source.html') diff --git a/src/others/irrlicht-1.8.1/doc/html/_i_g_u_i_combo_box_8h_source.html b/src/others/irrlicht-1.8.1/doc/html/_i_g_u_i_combo_box_8h_source.html new file mode 100644 index 0000000..35bb0d9 --- /dev/null +++ b/src/others/irrlicht-1.8.1/doc/html/_i_g_u_i_combo_box_8h_source.html @@ -0,0 +1,175 @@ + + + + +Irrlicht 3D Engine: IGUIComboBox.h Source File + + + + + + + + + + + + + + +
+ + +
+ + + + + + + + + + + + + + + + + +
+
Irrlicht 3D Engine + +
+ +
+ + + + + + +
+
+
+ + + + +
+
+ +
+
+
+ +
+
+
+
IGUIComboBox.h
+
+
+Go to the documentation of this file.
00001 // Copyright (C) 2002-2012 Nikolaus Gebhardt
+00002 // This file is part of the "Irrlicht Engine".
+00003 // For conditions of distribution and use, see copyright notice in irrlicht.h
+00004 
+00005 #ifndef __I_GUI_COMBO_BOX_H_INCLUDED__
+00006 #define __I_GUI_COMBO_BOX_H_INCLUDED__
+00007 
+00008 #include "IGUIElement.h"
+00009 
+00010 namespace irr
+00011 {
+00012 namespace gui
+00013 {
+00014 
+00016 
+00019     class IGUIComboBox : public IGUIElement
+00020     {
+00021     public:
+00022 
+00024         IGUIComboBox(IGUIEnvironment* environment, IGUIElement* parent, s32 id, core::rect<s32> rectangle)
+00025             : IGUIElement(EGUIET_COMBO_BOX, environment, parent, id, rectangle) {}
+00026 
+00028         virtual u32 getItemCount() const = 0;
+00029 
+00031         virtual const wchar_t* getItem(u32 idx) const = 0;
+00032 
+00034         virtual u32 getItemData(u32 idx) const = 0;
+00035 
+00037         virtual s32 getIndexForItemData(u32 data ) const = 0;
+00038 
+00040         virtual u32 addItem(const wchar_t* text, u32 data = 0) = 0;
+00041 
+00043 
+00044         virtual void removeItem(u32 idx) = 0;
+00045 
+00047         virtual void clear() = 0;
+00048 
+00050         virtual s32 getSelected() const = 0;
+00051 
+00053         virtual void setSelected(s32 idx) = 0;
+00054 
+00056 
+00060         virtual void setTextAlignment(EGUI_ALIGNMENT horizontal, EGUI_ALIGNMENT vertical) = 0;
+00061 
+00063         virtual void setMaxSelectionRows(u32 max) = 0;
+00064 
+00066         virtual u32 getMaxSelectionRows() const = 0;
+00067     };
+00068 
+00069 
+00070 } // end namespace gui
+00071 } // end namespace irr
+00072 
+00073 #endif
+00074 
+
+
+ + + + + -- cgit v1.1