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 57 58 59 60 61 62 63 64 65 66 67 68 69
|
/*!
@file
@author Albert Semenov
@date 08/2010
*/
#ifndef _618193ae_b8d7_415e_af0e_2c39becbae9c_
#define _618193ae_b8d7_415e_af0e_2c39becbae9c_
#include "BaseLayout/BaseLayout.h"
#include "sigslot.h"
namespace tools
{
class SelectorControlLE;
typedef MyGUI::delegates::CMultiDelegate0 EventHandle_ChangePosition;
class SelectorControlLE :
public wraps::BaseLayout,
public sigslot::has_slots<>
{
public:
SelectorControlLE(const std::string& _layout, MyGUI::Widget* _parent);
virtual ~SelectorControlLE();
void setVisible(bool _value);
void setScale(double _value);
void setEnabled(bool _value);
void setPosition(const MyGUI::IntPoint& _value);
void setSize(const MyGUI::IntSize& _value);
void setCoord(const MyGUI::IntCoord& _value);
MyGUI::IntPoint getPosition();
MyGUI::IntSize getSize();
const MyGUI::IntCoord& getCoord() const;
bool getCapture();
MyGUI::IntCoord getActionScale() const;
EventHandle_ChangePosition eventChangePosition;
MyGUI::Widget* getMainWidget();
protected:
void setPropertyColour(const std::string& _propertyName);
private:
void notifyWindowChangeCoord(MyGUI::Window* _sender);
void setColour(MyGUI::Colour _value);
void updateCoord();
void notifySettingsChanged(const std::string& _path);
private:
MyGUI::IntCoord mCoordValue;
MyGUI::IntCoord mCoordReal;
double mScaleValue;
MyGUI::Widget* mProjection;
MyGUI::IntCoord mProjectionDiff;
std::string mPropertyColour;
};
}
#endif
|