2019-12-12 17:32:41 +01:00
|
|
|
// Copyright (C) 2002-2012 Nikolaus Gebhardt
|
|
|
|
// This file is part of the "Irrlicht Engine".
|
|
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
|
2021-08-27 17:55:04 +02:00
|
|
|
#ifndef IRR_C_GUI_COMBO_BOX_H_INCLUDED
|
|
|
|
#define IRR_C_GUI_COMBO_BOX_H_INCLUDED
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
#include "IrrCompileConfig.h"
|
|
|
|
#ifdef _IRR_COMPILE_WITH_GUI_
|
|
|
|
|
|
|
|
#include "IGUIComboBox.h"
|
|
|
|
#include "IGUIStaticText.h"
|
|
|
|
#include "irrString.h"
|
|
|
|
#include "irrArray.h"
|
|
|
|
|
|
|
|
namespace irr
|
|
|
|
{
|
|
|
|
namespace gui
|
|
|
|
{
|
|
|
|
class IGUIButton;
|
|
|
|
class IGUIListBox;
|
|
|
|
|
|
|
|
//! Single line edit box for editing simple text.
|
|
|
|
class CGUIComboBox : public IGUIComboBox
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
//! constructor
|
|
|
|
CGUIComboBox(IGUIEnvironment* environment, IGUIElement* parent,
|
|
|
|
s32 id, core::rect<s32> rectangle);
|
|
|
|
|
|
|
|
//! Returns amount of items in box
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual u32 getItemCount() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! returns string of an item. the idx may be a value from 0 to itemCount-1
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual const wchar_t* getItem(u32 idx) const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Returns item data of an item. the idx may be a value from 0 to itemCount-1
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual u32 getItemData(u32 idx) const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Returns index based on item data
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual s32 getIndexForItemData( u32 data ) const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! adds an item and returns the index of it
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual u32 addItem(const wchar_t* text, u32 data) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Removes an item from the combo box.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void removeItem(u32 id) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! deletes all items in the combo box
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void clear() IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! returns the text of the currently selected item
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual const wchar_t* getText() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! returns id of selected item. returns -1 if no item is selected.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual s32 getSelected() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! sets the selected item. Set this to -1 if no item should be selected
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setSelected(s32 idx) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! sets the text alignment of the text part
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setTextAlignment(EGUI_ALIGNMENT horizontal, EGUI_ALIGNMENT vertical) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Set the maximal number of rows for the selection listbox
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setMaxSelectionRows(u32 max) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Get the maximal number of rows for the selection listbox
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual u32 getMaxSelectionRows() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! called if an event happened.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual bool OnEvent(const SEvent& event) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! draws the element and its children
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void draw() IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Writes attributes of the element.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void serializeAttributes(io::IAttributes* out, io::SAttributeReadWriteOptions* options) const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Reads attributes of the element
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void deserializeAttributes(io::IAttributes* in, io::SAttributeReadWriteOptions* options) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void openCloseMenu();
|
|
|
|
void sendSelectionChangedEvent();
|
|
|
|
void updateListButtonWidth(s32 width);
|
|
|
|
|
|
|
|
IGUIButton* ListButton;
|
|
|
|
IGUIStaticText* SelectedText;
|
|
|
|
IGUIListBox* ListBox;
|
|
|
|
IGUIElement *LastFocus;
|
|
|
|
|
|
|
|
|
|
|
|
struct SComboData
|
|
|
|
{
|
|
|
|
SComboData ( const wchar_t * text, u32 data )
|
|
|
|
: Name (text), Data ( data ) {}
|
|
|
|
|
|
|
|
core::stringw Name;
|
|
|
|
u32 Data;
|
|
|
|
};
|
|
|
|
core::array< SComboData > Items;
|
|
|
|
|
|
|
|
s32 Selected;
|
|
|
|
EGUI_ALIGNMENT HAlign, VAlign;
|
|
|
|
u32 MaxSelectionRows;
|
|
|
|
bool HasFocus;
|
|
|
|
IGUIFont* ActiveFont;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // end namespace gui
|
|
|
|
} // end namespace irr
|
|
|
|
|
|
|
|
#endif // _IRR_COMPILE_WITH_GUI_
|
|
|
|
|
2021-08-27 17:55:04 +02:00
|
|
|
#endif // IRR_C_GUI_COMBO_BOX_H_INCLUDED
|