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
|
/*!
@file
@author Albert Semenov
@date 08/2010
*/
#include "Precompiled.h"
#include "TextureToolControl.h"
#include "Localise.h"
#include "SettingsManager.h"
#include "CommandManager.h"
namespace tools
{
TextureToolControlLE::TextureToolControlLE(MyGUI::Widget* _parent) :
TextureControlLE("TextureControl.layout", _parent),
mCurrentScaleValue(100),
mActivate(true)
{
MyGUI::Colour colour = SettingsManager::getInstance().getValue<MyGUI::Colour>("Workspace/Colours/ColourBackground");
setColour(colour);
CommandManager::getInstance().getEvent("Command_ChangeNextScale")->connect(this, &TextureToolControlLE::CommandChangeNextScale);
CommandManager::getInstance().getEvent("Command_ChangePrevScale")->connect(this, &TextureToolControlLE::CommandChangePrevScale);
CommandManager::getInstance().getEvent("Command_ChangeScale")->connect(this, &TextureToolControlLE::CommandChangeScale);
mScaleValue = SettingsManager::getInstance().getValueList<size_t>("Workspace/TextureScale/ScaleValue.List");
SettingsManager::getInstance().eventSettingsChanged.connect(this, &TextureToolControlLE::notifySettingsChanged);
}
TextureToolControlLE::~TextureToolControlLE()
{
SettingsManager::getInstance().eventSettingsChanged.disconnect(this);
}
void TextureToolControlLE::notifySettingsChanged(const std::string& _path)
{
if (_path == "Workspace/Colours/ColourBackground")
{
MyGUI::Colour colour = SettingsManager::getInstance().getValue<MyGUI::Colour>("Workspace/Colours/ColourBackground");
setColour(colour);
}
}
void TextureToolControlLE::CommandChangeNextScale(const MyGUI::UString& _commandName, bool& _result)
{
if (!checkCommand())
return;
doNextScale();
_result = true;
}
void TextureToolControlLE::CommandChangePrevScale(const MyGUI::UString& _commandName, bool& _result)
{
if (!checkCommand())
return;
doPrevScale();
_result = true;
}
void TextureToolControlLE::CommandChangeScale(const MyGUI::UString& _commandName, bool& _result)
{
if (!checkMenuCommand())
return;
size_t scaleValue = MyGUI::utility::parseValue<size_t>(CommandManager::getInstance().getCommandData());
if (scaleValue == mCurrentScaleValue)
return;
if (std::find(mScaleValue.begin(), mScaleValue.end(), scaleValue) == mScaleValue.end())
return;
mCurrentScaleValue = scaleValue;
setScale((double)mCurrentScaleValue / (double)100);
_result = true;
}
bool TextureToolControlLE::checkMenuCommand()
{
return mActivate &&
!getSelectorsCapture();
}
bool TextureToolControlLE::checkCommand()
{
return mMainWidget->getRootKeyFocus() &&
mActivate &&
!getSelectorsCapture();
}
void TextureToolControlLE::onMouseWheel(int _rel)
{
if (_rel < 0)
doPrevScale();
else
doNextScale();
}
bool TextureToolControlLE::doPrevScale()
{
for (VectorSizeT::const_iterator item = mScaleValue.begin(); item != mScaleValue.end(); ++item)
{
if ((*item) == mCurrentScaleValue)
{
if (item != mScaleValue.begin())
{
--item;
mCurrentScaleValue = *item;
setScale((double)mCurrentScaleValue / (double)100);
return true;
}
break;
}
}
return false;
}
bool TextureToolControlLE::doNextScale()
{
for (VectorSizeT::const_iterator item = mScaleValue.begin(); item != mScaleValue.end(); ++item)
{
if ((*item) == mCurrentScaleValue)
{
++item;
if (item != mScaleValue.end())
{
mCurrentScaleValue = *item;
setScale((double)mCurrentScaleValue / (double)100);
return true;
}
break;
}
}
return false;
}
void TextureToolControlLE::setActivate(bool _value)
{
mActivate = _value;
onChangeActivate();
}
bool TextureToolControlLE::getActivate() const
{
return mActivate;
}
void TextureToolControlLE::onChangeActivate()
{
}
}
|