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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
/*!
@file
@author Albert Semenov
@date 12/2010
*/
#ifndef _c1d21eed_2872_4685_9244_e8e11dff7029_
#define _c1d21eed_2872_4685_9244_e8e11dff7029_
#include "EditorToolTip.h"
#include "BaseLayout/BaseLayout.h"
#include "IPropertyField.h"
namespace tools
{
class PropertyFieldEditBox :
public wraps::BaseLayout,
public IPropertyField
{
public:
PropertyFieldEditBox(MyGUI::Widget* _parent);
virtual ~PropertyFieldEditBox();
virtual void initialise(const std::string& _type);
virtual void setTarget(MyGUI::Widget* _currentWidget);
virtual void setValue(const std::string& _value);
virtual void setName(const std::string& _value);
virtual void setVisible(bool _value);
virtual bool getVisible();
virtual MyGUI::IntSize getContentSize();
virtual void setCoord(const MyGUI::IntCoord& _coord);
private:
void notifyApplyProperties(MyGUI::Widget* _sender, bool _force);
void notifyTryApplyProperties(MyGUI::EditBox* _sender);
void notifyForceApplyProperties(MyGUI::EditBox* _widget);
protected:
virtual bool onCheckValue();
virtual void onAction(const std::string& _value, bool _final);
protected:
MyGUI::TextBox* mText;
MyGUI::EditBox* mField;
MyGUI::Widget* mCurrentWidget;
std::string mType;
std::string mName;
};
}
#endif
|