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
|
/*!
@file
@author Albert Semenov
@date 08/2010
*/
#ifndef _5e4ba082_bfdd_4106_b851_0f79eb318b0e_
#define _5e4ba082_bfdd_4106_b851_0f79eb318b0e_
#include "Control.h"
#include "sigslot.h"
namespace tools
{
class MYGUI_EXPORT_DLL SelectorControl :
public Control,
public sigslot::has_slots<>
{
public:
SelectorControl();
virtual ~SelectorControl();
void setVisible(bool _value);
bool getVisible() const;
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();
sigslot::signal1<SelectorControl*> eventChangePosition;
MyGUI::Widget* getMainWidget();
protected:
virtual void OnInitialise(Control* _parent, MyGUI::Widget* _place, const std::string& _layoutName);
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
|