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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
|
/*!
@file
@author Albert Semenov
@date 12/2010
*/
#include "Precompiled.h"
#include "PropertyFieldColour.h"
#include "Localise.h"
#include "UndoManager.h"
#include "Parse.h"
namespace tools
{
const std::string DEFAULT_STRING = "[DEFAULT]";
PropertyFieldColour::PropertyFieldColour(MyGUI::Widget* _parent) :
BaseLayout("PropertyFieldColour.layout", _parent),
mText(nullptr),
mField(nullptr),
mColourPlace(nullptr),
mCurrentWidget(nullptr),
mColourPanel(nullptr),
mGoodData(false)
{
assignWidget(mText, "Text");
assignWidget(mField, "Field");
assignWidget(mColourPlace, "ColourPlace");
mField->eventEditTextChange += newDelegate (this, &PropertyFieldColour::notifyTryApplyProperties);
mField->eventEditSelectAccept += newDelegate (this, &PropertyFieldColour::notifyForceApplyProperties);
mColourPlace->eventMouseButtonPressed += MyGUI::newDelegate(this, &PropertyFieldColour::notifyMouseButtonPressed);
mColourPanel = new ColourPanel();
mColourPanel->Initialise();
mColourPanel->eventEndDialog.connect(this, &PropertyFieldColour::notifyEndDialog);
mColourPanel->eventPreviewColour.connect(this, &PropertyFieldColour::notifyPreviewColour);
}
PropertyFieldColour::~PropertyFieldColour()
{
delete mColourPanel;
mColourPanel = nullptr;
}
void PropertyFieldColour::initialise(const std::string& _type)
{
mType = _type;
}
void PropertyFieldColour::setTarget(MyGUI::Widget* _currentWidget)
{
mCurrentWidget = _currentWidget;
}
void PropertyFieldColour::notifyApplyProperties(MyGUI::Widget* _sender, bool _force)
{
bool goodData = onCheckValue();
if (goodData || _force)
{
std::string DEFAULT_VALUE = replaceTags("ColourDefault") + DEFAULT_STRING;
std::string value = mField->getOnlyText();
if (value == DEFAULT_STRING && mField->getCaption() == DEFAULT_VALUE)
value = "";
onAction(value, true);
}
}
void PropertyFieldColour::onAction(const std::string& _value, bool _final)
{
eventAction(mName, _value, _final);
}
void PropertyFieldColour::notifyTryApplyProperties(MyGUI::EditBox* _sender)
{
notifyApplyProperties(_sender, false);
}
void PropertyFieldColour::notifyForceApplyProperties(MyGUI::EditBox* _sender)
{
notifyApplyProperties(_sender, true);
}
bool PropertyFieldColour::onCheckValue()
{
bool success = utility::checkParse<float>(mField, 3);
updateColourPlace(success);
return success;
}
void PropertyFieldColour::updateColourPlace(bool _success)
{
if (_success)
{
mColourPlace->setAlpha(1);
MyGUI::Colour colour = MyGUI::Colour::parse(mField->getOnlyText());
mColourPlace->setColour(colour);
}
else
{
mColourPlace->setAlpha(0);
}
}
MyGUI::IntSize PropertyFieldColour::getContentSize()
{
return MyGUI::IntSize(0, mMainWidget->getHeight());
}
void PropertyFieldColour::setCoord(const MyGUI::IntCoord& _coord)
{
mMainWidget->setCoord(_coord);
}
void PropertyFieldColour::setValue(const std::string& _value)
{
std::string DEFAULT_VALUE = replaceTags("ColourDefault") + DEFAULT_STRING;
if (_value.empty())
{
mField->setCaption(DEFAULT_VALUE);
updateColourPlace(false);
}
else
{
mField->setOnlyText(_value);
onCheckValue();
}
}
void PropertyFieldColour::setName(const std::string& _value)
{
mName = _value;
mText->setCaption(_value);
}
void PropertyFieldColour::notifyMouseButtonPressed(MyGUI::Widget* _sender, int _left, int _top, MyGUI::MouseButton _id)
{
showColourDialog();
}
void PropertyFieldColour::notifyPreviewColour(const MyGUI::Colour& _value)
{
setColour(_value, false);
}
void PropertyFieldColour::notifyEndDialog(Dialog* _sender, bool _result)
{
mColourPanel->endModal();
if (_result)
{
setColour(mColourPanel->getColour(), true);
}
else
{
if (mGoodData)
{
setColour(mPreviewColour, true);
}
else
{
std::string DEFAULT_VALUE = replaceTags("ColourDefault") + DEFAULT_STRING;
mField->setCaption(DEFAULT_VALUE);
updateColourPlace(false);
onAction("", true);
}
}
}
void PropertyFieldColour::showColourDialog()
{
mGoodData = onCheckValue();
if (mGoodData)
mPreviewColour = getColour();
else
mPreviewColour = MyGUI::Colour::White;
mColourPanel->setColour(mPreviewColour);
mColourPanel->setAlphaSupport(false);
mColourPanel->doModal();
}
void PropertyFieldColour::setColour(const MyGUI::Colour& _color, bool _final)
{
std::string value = MyGUI::utility::toString(_color.red, " ", _color.green, " ", _color.blue);
mField->setOnlyText(value);
onCheckValue();
onAction(value, _final);
}
MyGUI::Colour PropertyFieldColour::getColour()
{
return MyGUI::Colour::parse(mField->getOnlyText());
}
void PropertyFieldColour::setVisible(bool _value)
{
mMainWidget->setVisible(_value);
}
bool PropertyFieldColour::getVisible()
{
return mMainWidget->getVisible();
}
}
|