2020-08-04 12:31:33 +08:00
|
|
|
#include "GearFontSize.h"
|
|
|
|
#include "GObject.h"
|
|
|
|
#include "utils/ByteBuffer.h"
|
|
|
|
|
|
|
|
NS_FGUI_BEGIN
|
2022-07-11 17:50:21 +08:00
|
|
|
USING_NS_AX;
|
2020-08-04 12:31:33 +08:00
|
|
|
|
2021-08-27 11:27:33 +08:00
|
|
|
GearFontSize::GearFontSize(GObject* owner) : GearBase(owner), _default(13) {
|
2020-08-04 12:31:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
GearFontSize::~GearFontSize()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void GearFontSize::init()
|
|
|
|
{
|
|
|
|
_default = _owner->getProp(ObjectPropID::FontSize).asInt();
|
|
|
|
_storage.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GearFontSize::addStatus(const std::string& pageId, ByteBuffer* buffer)
|
|
|
|
{
|
|
|
|
if (pageId.length() == 0)
|
|
|
|
_default = buffer->readInt();
|
|
|
|
else
|
|
|
|
_storage[pageId] = buffer->readInt();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GearFontSize::apply()
|
|
|
|
{
|
|
|
|
_owner->_gearLocked = true;
|
|
|
|
|
|
|
|
auto it = _storage.find(_controller->getSelectedPageId());
|
|
|
|
if (it != _storage.end())
|
|
|
|
_owner->setProp(ObjectPropID::FontSize, Value(it->second));
|
|
|
|
else
|
|
|
|
_owner->setProp(ObjectPropID::FontSize, Value(_default));
|
|
|
|
|
|
|
|
_owner->_gearLocked = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GearFontSize::updateState()
|
|
|
|
{
|
|
|
|
_storage[_controller->getSelectedPageId()] = _owner->getProp(ObjectPropID::FontSize).asInt();
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_FGUI_END
|