1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
/*!
@file
@author Albert Semenov
@date 08/2010
*/
#ifndef _bee00f7e_81b1_4fb4_9da0_7e52abb5d087_
#define _bee00f7e_81b1_4fb4_9da0_7e52abb5d087_
#include "PropertyControl.h"
namespace tools
{
class PropertyRegionTextTypeControl :
public PropertyControl
{
public:
PropertyRegionTextTypeControl();
~PropertyRegionTextTypeControl() override;
protected:
void updateCaption() override;
void updateProperty() override;
void OnInitialise(Control* _parent, MyGUI::Widget* _place, const std::string& _layoutName) override;
private:
void notifyComboChangePosition(MyGUI::ComboBox* _sender, size_t _index);
size_t getComboIndex(const MyGUI::UString& _name);
private:
MyGUI::TextBox* mName;
MyGUI::ComboBox* mComboBox;
};
}
#endif
|