mirror of https://github.com/axmolengine/axmol.git
495 lines
15 KiB
C++
495 lines
15 KiB
C++
/****************************************************************************
|
|
Copyright (c) 2013 cocos2d-x.org
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE.
|
|
****************************************************************************/
|
|
|
|
#include "gui/UICheckBox.h"
|
|
|
|
namespace gui {
|
|
|
|
|
|
UICheckBox::UICheckBox():
|
|
_backGroundBoxRenderer(nullptr),
|
|
_backGroundSelectedBoxRenderer(nullptr),
|
|
_frontCrossRenderer(nullptr),
|
|
_backGroundBoxDisabledRenderer(nullptr),
|
|
_frontCrossDisabledRenderer(nullptr),
|
|
_isSelected(true),
|
|
_checkBoxEventListener(nullptr),
|
|
_checkBoxEventSelector(nullptr),
|
|
_backGroundTexType(UI_TEX_TYPE_LOCAL),
|
|
_backGroundSelectedTexType(UI_TEX_TYPE_LOCAL),
|
|
_frontCrossTexType(UI_TEX_TYPE_LOCAL),
|
|
_backGroundDisabledTexType(UI_TEX_TYPE_LOCAL),
|
|
_frontCrossDisabledTexType(UI_TEX_TYPE_LOCAL),
|
|
_backGroundFileName(""),
|
|
_backGroundSelectedFileName(""),
|
|
_frontCrossFileName(""),
|
|
_backGroundDisabledFileName(""),
|
|
_frontCrossDisabledFileName("")
|
|
{
|
|
}
|
|
|
|
UICheckBox::~UICheckBox()
|
|
{
|
|
_checkBoxEventListener = nullptr;
|
|
_checkBoxEventSelector = nullptr;
|
|
}
|
|
|
|
UICheckBox* UICheckBox::create()
|
|
{
|
|
UICheckBox* widget = new UICheckBox();
|
|
if (widget && widget->init())
|
|
{
|
|
widget->autorelease();
|
|
return widget;
|
|
}
|
|
CC_SAFE_DELETE(widget);
|
|
return nullptr;
|
|
}
|
|
|
|
bool UICheckBox::init()
|
|
{
|
|
if (UIWidget::init())
|
|
{
|
|
setSelectedState(false);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void UICheckBox::initRenderer()
|
|
{
|
|
UIWidget::initRenderer();
|
|
_backGroundBoxRenderer = cocos2d::Sprite::create();
|
|
_backGroundSelectedBoxRenderer = cocos2d::Sprite::create();
|
|
_frontCrossRenderer = cocos2d::Sprite::create();
|
|
_backGroundBoxDisabledRenderer = cocos2d::Sprite::create();
|
|
_frontCrossDisabledRenderer = cocos2d::Sprite::create();
|
|
_renderer->addChild(_backGroundBoxRenderer);
|
|
_renderer->addChild(_backGroundSelectedBoxRenderer);
|
|
_renderer->addChild(_frontCrossRenderer);
|
|
_renderer->addChild(_backGroundBoxDisabledRenderer);
|
|
_renderer->addChild(_frontCrossDisabledRenderer);
|
|
}
|
|
|
|
void UICheckBox::loadTextures(const char *backGround, const char *backGroundSelected, const char *cross,const char* backGroundDisabled,const char* frontCrossDisabled,TextureResType texType)
|
|
{
|
|
loadTextureBackGround(backGround,texType);
|
|
loadTextureBackGroundSelected(backGroundSelected,texType);
|
|
loadTextureFrontCross(cross,texType);
|
|
loadTextureBackGroundDisabled(backGroundDisabled,texType);
|
|
loadTextureFrontCrossDisabled(frontCrossDisabled,texType);
|
|
}
|
|
|
|
void UICheckBox::loadTextureBackGround(const char *backGround,TextureResType texType)
|
|
{
|
|
if (!backGround || strcmp(backGround, "") == 0)
|
|
{
|
|
return;
|
|
}
|
|
_backGroundFileName = backGround;
|
|
_backGroundTexType = texType;
|
|
switch (_backGroundTexType)
|
|
{
|
|
case UI_TEX_TYPE_LOCAL:
|
|
_backGroundBoxRenderer->setTexture(backGround);
|
|
break;
|
|
case UI_TEX_TYPE_PLIST:
|
|
_backGroundBoxRenderer->setSpriteFrame(backGround);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
_backGroundBoxRenderer->setColor(getColor());
|
|
_backGroundBoxRenderer->setOpacity(getOpacity());
|
|
backGroundTextureScaleChangedWithSize();
|
|
}
|
|
|
|
void UICheckBox::loadTextureBackGroundSelected(const char *backGroundSelected,TextureResType texType)
|
|
{
|
|
if (!backGroundSelected || strcmp(backGroundSelected, "") == 0)
|
|
{
|
|
return;
|
|
}
|
|
_backGroundSelectedFileName = backGroundSelected;
|
|
_backGroundSelectedTexType = texType;
|
|
switch (_backGroundSelectedTexType)
|
|
{
|
|
case UI_TEX_TYPE_LOCAL:
|
|
_backGroundSelectedBoxRenderer->setTexture(backGroundSelected);
|
|
break;
|
|
case UI_TEX_TYPE_PLIST:
|
|
_backGroundSelectedBoxRenderer->setSpriteFrame(backGroundSelected);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
_backGroundSelectedBoxRenderer->setColor(getColor());
|
|
_backGroundSelectedBoxRenderer->setOpacity(getOpacity());
|
|
backGroundSelectedTextureScaleChangedWithSize();
|
|
}
|
|
|
|
void UICheckBox::loadTextureFrontCross(const char *cross,TextureResType texType)
|
|
{
|
|
if (!cross || strcmp(cross, "") == 0)
|
|
{
|
|
return;
|
|
}
|
|
_frontCrossFileName = cross;
|
|
_frontCrossTexType = texType;
|
|
switch (_frontCrossTexType)
|
|
{
|
|
case UI_TEX_TYPE_LOCAL:
|
|
_frontCrossRenderer->setTexture(cross);
|
|
break;
|
|
case UI_TEX_TYPE_PLIST:
|
|
_frontCrossRenderer->setSpriteFrame(cross);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
_frontCrossRenderer->setColor(getColor());
|
|
_frontCrossRenderer->setOpacity(getOpacity());
|
|
frontCrossTextureScaleChangedWithSize();
|
|
}
|
|
|
|
void UICheckBox::loadTextureBackGroundDisabled(const char *backGroundDisabled,TextureResType texType)
|
|
{
|
|
if (!backGroundDisabled || strcmp(backGroundDisabled, "") == 0)
|
|
{
|
|
return;
|
|
}
|
|
_backGroundDisabledFileName = backGroundDisabled;
|
|
_backGroundDisabledTexType = texType;
|
|
switch (_backGroundDisabledTexType)
|
|
{
|
|
case UI_TEX_TYPE_LOCAL:
|
|
_backGroundBoxDisabledRenderer->setTexture(backGroundDisabled);
|
|
break;
|
|
case UI_TEX_TYPE_PLIST:
|
|
_backGroundBoxDisabledRenderer->setSpriteFrame(backGroundDisabled);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
_backGroundBoxDisabledRenderer->setColor(getColor());
|
|
_backGroundBoxDisabledRenderer->setOpacity(getOpacity());
|
|
backGroundDisabledTextureScaleChangedWithSize();
|
|
}
|
|
|
|
void UICheckBox::loadTextureFrontCrossDisabled(const char *frontCrossDisabled,TextureResType texType)
|
|
{
|
|
if (!frontCrossDisabled || strcmp(frontCrossDisabled, "") == 0)
|
|
{
|
|
return;
|
|
}
|
|
_frontCrossDisabledFileName = frontCrossDisabled;
|
|
_frontCrossDisabledTexType = texType;
|
|
switch (_frontCrossDisabledTexType)
|
|
{
|
|
case UI_TEX_TYPE_LOCAL:
|
|
_frontCrossDisabledRenderer->setTexture(frontCrossDisabled);
|
|
break;
|
|
case UI_TEX_TYPE_PLIST:
|
|
_frontCrossDisabledRenderer->setSpriteFrame(frontCrossDisabled);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
_frontCrossDisabledRenderer->setColor(getColor());
|
|
_frontCrossRenderer->setOpacity(getOpacity());
|
|
frontCrossDisabledTextureScaleChangedWithSize();
|
|
}
|
|
|
|
void UICheckBox::onTouchEnded(const cocos2d::Point &touchPoint)
|
|
{
|
|
if (_focus)
|
|
{
|
|
releaseUpEvent();
|
|
if (_isSelected){
|
|
setSelectedState(false);
|
|
unSelectedEvent();
|
|
}
|
|
else
|
|
{
|
|
setSelectedState(true);
|
|
selectedEvent();
|
|
}
|
|
}
|
|
setFocused(false);
|
|
_widgetParent->checkChildInfo(2,this,touchPoint);
|
|
}
|
|
|
|
void UICheckBox::onPressStateChangedToNormal()
|
|
{
|
|
_backGroundBoxRenderer->setVisible(true);
|
|
_backGroundSelectedBoxRenderer->setVisible(false);
|
|
_backGroundBoxDisabledRenderer->setVisible(false);
|
|
_frontCrossDisabledRenderer->setVisible(false);
|
|
}
|
|
|
|
void UICheckBox::onPressStateChangedToPressed()
|
|
{
|
|
_backGroundBoxRenderer->setVisible(false);
|
|
_backGroundSelectedBoxRenderer->setVisible(true);
|
|
_backGroundBoxDisabledRenderer->setVisible(false);
|
|
_frontCrossDisabledRenderer->setVisible(false);
|
|
}
|
|
|
|
void UICheckBox::onPressStateChangedToDisabled()
|
|
{
|
|
_backGroundBoxRenderer->setVisible(false);
|
|
_backGroundSelectedBoxRenderer->setVisible(false);
|
|
_backGroundBoxDisabledRenderer->setVisible(true);
|
|
_frontCrossRenderer->setVisible(false);
|
|
if (_isSelected)
|
|
{
|
|
_frontCrossDisabledRenderer->setVisible(true);
|
|
}
|
|
}
|
|
|
|
void UICheckBox::setSelectedState(bool selected)
|
|
{
|
|
if (selected == _isSelected)
|
|
{
|
|
return;
|
|
}
|
|
_isSelected = selected;
|
|
_frontCrossRenderer->setVisible(_isSelected);
|
|
}
|
|
|
|
bool UICheckBox::getSelectedState()
|
|
{
|
|
return _isSelected;
|
|
}
|
|
|
|
void UICheckBox::selectedEvent()
|
|
{
|
|
if (_checkBoxEventListener && _checkBoxEventSelector)
|
|
{
|
|
(_checkBoxEventListener->*_checkBoxEventSelector)(this,CHECKBOX_STATE_EVENT_SELECTED);
|
|
}
|
|
}
|
|
|
|
void UICheckBox::unSelectedEvent()
|
|
{
|
|
if (_checkBoxEventListener && _checkBoxEventSelector)
|
|
{
|
|
(_checkBoxEventListener->*_checkBoxEventSelector)(this,CHECKBOX_STATE_EVENT_UNSELECTED);
|
|
}
|
|
}
|
|
|
|
void UICheckBox::addEventListenerCheckBox(cocos2d::Object *target, SEL_SelectedStateEvent selector)
|
|
{
|
|
_checkBoxEventListener = target;
|
|
_checkBoxEventSelector = selector;
|
|
}
|
|
|
|
void UICheckBox::setFlipX(bool flipX)
|
|
{
|
|
_backGroundBoxRenderer->setFlippedX(flipX);
|
|
_backGroundSelectedBoxRenderer->setFlippedX(flipX);
|
|
_frontCrossRenderer->setFlippedX(flipX);
|
|
_backGroundBoxDisabledRenderer->setFlippedX(flipX);
|
|
_frontCrossDisabledRenderer->setFlippedX(flipX);
|
|
}
|
|
|
|
void UICheckBox::setFlipY(bool flipY)
|
|
{
|
|
_backGroundBoxRenderer->setFlippedY(flipY);
|
|
_backGroundSelectedBoxRenderer->setFlippedY(flipY);
|
|
_frontCrossRenderer->setFlippedY(flipY);
|
|
_backGroundBoxDisabledRenderer->setFlippedY(flipY);
|
|
_frontCrossDisabledRenderer->setFlippedY(flipY);
|
|
}
|
|
|
|
bool UICheckBox::isFlipX()
|
|
{
|
|
return _backGroundBoxRenderer->isFlippedX();
|
|
}
|
|
|
|
bool UICheckBox::isFlipY()
|
|
{
|
|
return _backGroundBoxRenderer->isFlippedY();
|
|
}
|
|
|
|
void UICheckBox::setAnchorPoint(const cocos2d::Point &pt)
|
|
{
|
|
UIWidget::setAnchorPoint(pt);
|
|
_backGroundBoxRenderer->setAnchorPoint(pt);
|
|
_backGroundSelectedBoxRenderer->setAnchorPoint(pt);
|
|
_backGroundBoxDisabledRenderer->setAnchorPoint(pt);
|
|
_frontCrossRenderer->setAnchorPoint(pt);
|
|
_frontCrossDisabledRenderer->setAnchorPoint(pt);
|
|
}
|
|
|
|
void UICheckBox::onSizeChanged()
|
|
{
|
|
backGroundTextureScaleChangedWithSize();
|
|
backGroundSelectedTextureScaleChangedWithSize();
|
|
frontCrossTextureScaleChangedWithSize();
|
|
backGroundDisabledTextureScaleChangedWithSize();
|
|
frontCrossDisabledTextureScaleChangedWithSize();
|
|
}
|
|
|
|
const cocos2d::Size& UICheckBox::getContentSize() const
|
|
{
|
|
return _backGroundBoxRenderer->getContentSize();
|
|
}
|
|
|
|
cocos2d::Node* UICheckBox::getVirtualRenderer()
|
|
{
|
|
return _backGroundBoxRenderer;
|
|
}
|
|
|
|
void UICheckBox::backGroundTextureScaleChangedWithSize()
|
|
{
|
|
if (_ignoreSize)
|
|
{
|
|
_backGroundBoxRenderer->setScale(1.0f);
|
|
_size = _backGroundBoxRenderer->getContentSize();
|
|
}
|
|
else
|
|
{
|
|
cocos2d::Size textureSize = _backGroundBoxRenderer->getContentSize();
|
|
if (textureSize.width <= 0.0f || textureSize.height <= 0.0f)
|
|
{
|
|
_backGroundBoxRenderer->setScale(1.0f);
|
|
return;
|
|
}
|
|
float scaleX = _size.width / textureSize.width;
|
|
float scaleY = _size.height / textureSize.height;
|
|
_backGroundBoxRenderer->setScaleX(scaleX);
|
|
_backGroundBoxRenderer->setScaleY(scaleY);
|
|
}
|
|
}
|
|
|
|
void UICheckBox::backGroundSelectedTextureScaleChangedWithSize()
|
|
{
|
|
if (_ignoreSize)
|
|
{
|
|
_backGroundSelectedBoxRenderer->setScale(1.0f);
|
|
}
|
|
else
|
|
{
|
|
cocos2d::Size textureSize = _backGroundSelectedBoxRenderer->getContentSize();
|
|
if (textureSize.width <= 0.0f || textureSize.height <= 0.0f)
|
|
{
|
|
_backGroundSelectedBoxRenderer->setScale(1.0f);
|
|
return;
|
|
}
|
|
float scaleX = _size.width / textureSize.width;
|
|
float scaleY = _size.height / textureSize.height;
|
|
_backGroundSelectedBoxRenderer->setScaleX(scaleX);
|
|
_backGroundSelectedBoxRenderer->setScaleY(scaleY);
|
|
}
|
|
}
|
|
|
|
void UICheckBox::frontCrossTextureScaleChangedWithSize()
|
|
{
|
|
if (_ignoreSize)
|
|
{
|
|
_frontCrossRenderer->setScale(1.0f);
|
|
}
|
|
else
|
|
{
|
|
cocos2d::Size textureSize = _frontCrossRenderer->getContentSize();
|
|
if (textureSize.width <= 0.0f || textureSize.height <= 0.0f)
|
|
{
|
|
_frontCrossRenderer->setScale(1.0f);
|
|
return;
|
|
}
|
|
float scaleX = _size.width / textureSize.width;
|
|
float scaleY = _size.height / textureSize.height;
|
|
_frontCrossRenderer->setScaleX(scaleX);
|
|
_frontCrossRenderer->setScaleY(scaleY);
|
|
}
|
|
}
|
|
|
|
void UICheckBox::backGroundDisabledTextureScaleChangedWithSize()
|
|
{
|
|
if (_ignoreSize)
|
|
{
|
|
_backGroundBoxDisabledRenderer->setScale(1.0f);
|
|
}
|
|
else
|
|
{
|
|
cocos2d::Size textureSize = _backGroundBoxDisabledRenderer->getContentSize();
|
|
if (textureSize.width <= 0.0f || textureSize.height <= 0.0f)
|
|
{
|
|
_backGroundBoxDisabledRenderer->setScale(1.0f);
|
|
return;
|
|
}
|
|
float scaleX = _size.width / textureSize.width;
|
|
float scaleY = _size.height / textureSize.height;
|
|
_backGroundBoxDisabledRenderer->setScaleX(scaleX);
|
|
_backGroundBoxDisabledRenderer->setScaleY(scaleY);
|
|
}
|
|
}
|
|
|
|
void UICheckBox::frontCrossDisabledTextureScaleChangedWithSize()
|
|
{
|
|
if (_ignoreSize)
|
|
{
|
|
_frontCrossDisabledRenderer->setScale(1.0f);
|
|
}
|
|
else
|
|
{
|
|
cocos2d::Size textureSize = _frontCrossDisabledRenderer->getContentSize();
|
|
if (textureSize.width <= 0.0f || textureSize.height <= 0.0f)
|
|
{
|
|
_frontCrossDisabledRenderer->setScale(1.0f);
|
|
return;
|
|
}
|
|
float scaleX = _size.width / textureSize.width;
|
|
float scaleY = _size.height / textureSize.height;
|
|
_frontCrossDisabledRenderer->setScaleX(scaleX);
|
|
_frontCrossDisabledRenderer->setScaleY(scaleY);
|
|
}
|
|
}
|
|
|
|
const char* UICheckBox::getDescription() const
|
|
{
|
|
return "CheckBox";
|
|
}
|
|
|
|
UIWidget* UICheckBox::createCloneInstance()
|
|
{
|
|
return UICheckBox::create();
|
|
}
|
|
|
|
void UICheckBox::copySpecialProperties(UIWidget *widget)
|
|
{
|
|
UICheckBox* checkBox = dynamic_cast<UICheckBox*>(widget);
|
|
if (checkBox)
|
|
{
|
|
loadTextureBackGround(checkBox->_backGroundFileName.c_str(), checkBox->_backGroundTexType);
|
|
loadTextureBackGroundSelected(checkBox->_backGroundSelectedFileName.c_str(), checkBox->_backGroundSelectedTexType);
|
|
loadTextureFrontCross(checkBox->_frontCrossFileName.c_str(), checkBox->_frontCrossTexType);
|
|
loadTextureBackGroundDisabled(checkBox->_backGroundDisabledFileName.c_str(), checkBox->_backGroundDisabledTexType);
|
|
loadTextureFrontCrossDisabled(checkBox->_frontCrossDisabledFileName.c_str(), checkBox->_frontCrossDisabledTexType);
|
|
setSelectedState(checkBox->_isSelected);
|
|
}
|
|
}
|
|
|
|
} |