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 12/2010
*/
#ifndef _c05c3f75_ceee_4525_89ac_a8462ec97634_
#define _c05c3f75_ceee_4525_89ac_a8462ec97634_
#include "EditorToolTip.h"
#include "BaseLayout/BaseLayout.h"
#include "IPropertyField.h"
#include "ColourPanel.h"
#include "sigslot.h"
namespace tools
{
class PropertyFieldColour : public wraps::BaseLayout, public IPropertyField, public sigslot::has_slots<>
{
public:
PropertyFieldColour(MyGUI::Widget* _parent);
~PropertyFieldColour() override;
void initialise(std::string_view _type) override;
void setTarget(MyGUI::Widget* _currentWidget) override;
void setValue(std::string_view _value) override;
void setName(std::string_view _value) override;
void setVisible(bool _value) override;
bool getVisible() override;
MyGUI::IntSize getContentSize() override;
void setCoord(const MyGUI::IntCoord& _coord) override;
private:
void notifyApplyProperties(MyGUI::Widget* _sender, bool _force);
void notifyTryApplyProperties(MyGUI::EditBox* _sender);
void notifyForceApplyProperties(MyGUI::EditBox* _sender);
void notifyMouseButtonPressed(MyGUI::Widget* _sender, int _left, int _top, MyGUI::MouseButton _id);
void notifyEndDialog(Dialog* _sender, bool _result);
void notifyPreviewColour(const MyGUI::Colour& _value);
void updateColourPlace(bool _success);
MyGUI::Colour getColour();
void setColour(const MyGUI::Colour& _color, bool _final);
void showColourDialog();
protected:
virtual bool onCheckValue();
virtual void onAction(std::string_view _value, bool _final);
private:
MyGUI::TextBox* mText{nullptr};
MyGUI::EditBox* mField{nullptr};
MyGUI::Widget* mColourPlace{nullptr};
MyGUI::Widget* mCurrentWidget{nullptr};
std::string mType;
std::string mName;
ColourPanel* mColourPanel{nullptr};
MyGUI::Colour mPreviewColour;
bool mGoodData{false};
};
}
#endif
|