2023-10-03 20:37:00 +02: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
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "IGUIComboBox.h"
|
|
|
|
#include "IGUIStaticText.h"
|
|
|
|
#include "irrString.h"
|
|
|
|
#include "irrArray.h"
|
|
|
|
|
|
|
|
namespace irr
|
|
|
|
{
|
|
|
|
namespace gui
|
|
|
|
{
|
2024-03-20 19:35:52 +01:00
|
|
|
class IGUIButton;
|
|
|
|
class IGUIListBox;
|
2023-10-03 20:37:00 +02:00
|
|
|
|
2024-03-20 19:35:52 +01:00
|
|
|
//! Single line edit box for editing simple text.
|
|
|
|
class CGUIComboBox : public IGUIComboBox
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
//! constructor
|
|
|
|
CGUIComboBox(IGUIEnvironment *environment, IGUIElement *parent,
|
2023-10-03 20:37:00 +02:00
|
|
|
s32 id, core::rect<s32> rectangle);
|
|
|
|
|
2024-03-20 19:35:52 +01:00
|
|
|
//! Returns amount of items in box
|
|
|
|
u32 getItemCount() const override;
|
2023-10-03 20:37:00 +02:00
|
|
|
|
2024-03-20 19:35:52 +01:00
|
|
|
//! returns string of an item. the idx may be a value from 0 to itemCount-1
|
|
|
|
const wchar_t *getItem(u32 idx) const override;
|
2023-10-03 20:37:00 +02:00
|
|
|
|
2024-03-20 19:35:52 +01:00
|
|
|
//! Returns item data of an item. the idx may be a value from 0 to itemCount-1
|
|
|
|
u32 getItemData(u32 idx) const override;
|
2023-10-03 20:37:00 +02:00
|
|
|
|
2024-03-20 19:35:52 +01:00
|
|
|
//! Returns index based on item data
|
|
|
|
s32 getIndexForItemData(u32 data) const override;
|
2023-10-03 20:37:00 +02:00
|
|
|
|
2024-03-20 19:35:52 +01:00
|
|
|
//! adds an item and returns the index of it
|
|
|
|
u32 addItem(const wchar_t *text, u32 data) override;
|
2023-10-03 20:37:00 +02:00
|
|
|
|
2024-03-20 19:35:52 +01:00
|
|
|
//! Removes an item from the combo box.
|
|
|
|
void removeItem(u32 id) override;
|
2023-10-03 20:37:00 +02:00
|
|
|
|
2024-03-20 19:35:52 +01:00
|
|
|
//! deletes all items in the combo box
|
|
|
|
void clear() override;
|
2023-10-03 20:37:00 +02:00
|
|
|
|
2024-03-20 19:35:52 +01:00
|
|
|
//! returns the text of the currently selected item
|
|
|
|
const wchar_t *getText() const override;
|
2023-10-03 20:37:00 +02:00
|
|
|
|
2024-03-20 19:35:52 +01:00
|
|
|
//! returns id of selected item. returns -1 if no item is selected.
|
|
|
|
s32 getSelected() const override;
|
2023-10-03 20:37:00 +02:00
|
|
|
|
2024-03-20 19:35:52 +01:00
|
|
|
//! sets the selected item. Set this to -1 if no item should be selected
|
|
|
|
void setSelected(s32 idx) override;
|
2023-10-03 20:37:00 +02:00
|
|
|
|
2024-03-20 19:35:52 +01:00
|
|
|
//! Sets the selected item and emits a change event.
|
|
|
|
/** Set this to -1 if no item should be selected */
|
|
|
|
void setAndSendSelected(s32 idx) override;
|
2023-10-03 20:37:00 +02:00
|
|
|
|
2024-03-20 19:35:52 +01:00
|
|
|
//! sets the text alignment of the text part
|
|
|
|
void setTextAlignment(EGUI_ALIGNMENT horizontal, EGUI_ALIGNMENT vertical) override;
|
2023-10-03 20:37:00 +02:00
|
|
|
|
2024-03-20 19:35:52 +01:00
|
|
|
//! Set the maximal number of rows for the selection listbox
|
|
|
|
void setMaxSelectionRows(u32 max) override;
|
2023-10-03 20:37:00 +02:00
|
|
|
|
2024-03-20 19:35:52 +01:00
|
|
|
//! Get the maximal number of rows for the selection listbox
|
|
|
|
u32 getMaxSelectionRows() const override;
|
2023-10-03 20:37:00 +02:00
|
|
|
|
2024-03-20 19:35:52 +01:00
|
|
|
//! called if an event happened.
|
|
|
|
bool OnEvent(const SEvent &event) override;
|
2023-10-03 20:37:00 +02:00
|
|
|
|
2024-03-20 19:35:52 +01:00
|
|
|
//! draws the element and its children
|
|
|
|
void draw() override;
|
2023-10-03 20:37:00 +02:00
|
|
|
|
2024-03-20 19:35:52 +01:00
|
|
|
private:
|
|
|
|
void openCloseMenu();
|
|
|
|
void sendSelectionChangedEvent();
|
|
|
|
void updateListButtonWidth(s32 width);
|
2023-10-03 20:37:00 +02:00
|
|
|
|
2024-03-20 19:35:52 +01:00
|
|
|
IGUIButton *ListButton;
|
|
|
|
IGUIStaticText *SelectedText;
|
|
|
|
IGUIListBox *ListBox;
|
|
|
|
IGUIElement *LastFocus;
|
2023-10-03 20:37:00 +02:00
|
|
|
|
2024-03-20 19:35:52 +01:00
|
|
|
struct SComboData
|
|
|
|
{
|
|
|
|
SComboData(const wchar_t *text, u32 data) :
|
|
|
|
Name(text), Data(data) {}
|
2023-10-03 20:37:00 +02:00
|
|
|
|
2024-03-20 19:35:52 +01:00
|
|
|
core::stringw Name;
|
|
|
|
u32 Data;
|
2023-10-03 20:37:00 +02:00
|
|
|
};
|
2024-03-20 19:35:52 +01:00
|
|
|
core::array<SComboData> Items;
|
|
|
|
|
|
|
|
s32 Selected;
|
|
|
|
EGUI_ALIGNMENT HAlign, VAlign;
|
|
|
|
u32 MaxSelectionRows;
|
|
|
|
bool HasFocus;
|
|
|
|
IGUIFont *ActiveFont;
|
|
|
|
};
|
2023-10-03 20:37:00 +02:00
|
|
|
|
|
|
|
} // end namespace gui
|
|
|
|
} // end namespace irr
|