2013-09-13 22:20:20 +08:00
|
|
|
/****************************************************************************
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __UILABEL_H__
|
|
|
|
#define __UILABEL_H__
|
|
|
|
|
2013-10-16 16:48:39 +08:00
|
|
|
#include "gui/UIWidget.h"
|
2013-09-13 22:20:20 +08:00
|
|
|
|
2013-11-06 16:04:06 +08:00
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
namespace gui {
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
class UILabel : public UIWidget
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Default constructor
|
2013-11-20 12:04:47 +08:00
|
|
|
* @js ctor
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
|
|
|
UILabel();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Default destructor
|
2013-11-20 12:04:47 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
|
|
|
virtual ~UILabel();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allocates and initializes.
|
|
|
|
*/
|
|
|
|
static UILabel* create();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Changes the string value of label.
|
|
|
|
*
|
|
|
|
* @param text string value.
|
|
|
|
*/
|
2013-11-08 04:42:16 +08:00
|
|
|
void setText(const std::string& text);
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the string value of label.
|
|
|
|
*
|
|
|
|
* @return text string value.
|
|
|
|
*/
|
2013-11-08 04:42:16 +08:00
|
|
|
const std::string& getStringValue();
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the string length of label.
|
|
|
|
*
|
|
|
|
* @return string length.
|
|
|
|
*/
|
|
|
|
int getStringLength();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the font size of label.
|
|
|
|
*
|
|
|
|
* @param font size.
|
|
|
|
*/
|
|
|
|
void setFontSize(int size);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the font name of label.
|
|
|
|
*
|
|
|
|
* @param font name.
|
|
|
|
*/
|
2013-11-08 04:42:16 +08:00
|
|
|
void setFontName(const std::string& name);
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the touch scale enabled of label.
|
|
|
|
*
|
|
|
|
* @param touch scale enabled of label.
|
|
|
|
*/
|
|
|
|
void setTouchScaleChangeEnabled(bool enabled);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the touch scale enabled of label.
|
|
|
|
*
|
|
|
|
* @return touch scale enabled of label.
|
|
|
|
*/
|
|
|
|
bool isTouchScaleChangeEnabled();
|
2013-11-13 20:01:57 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Changes both X and Y scale factor of the widget.
|
|
|
|
*
|
|
|
|
* 1.0 is the default scale factor. It modifies the X and Y scale at the same time.
|
|
|
|
*
|
|
|
|
* @param scale The scale factor for both X and Y axis.
|
|
|
|
*/
|
2013-11-14 13:42:10 +08:00
|
|
|
virtual void setScale(float fScale) override;
|
2013-11-13 20:01:57 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Changes the scale factor on X axis of this widget
|
|
|
|
*
|
|
|
|
* The deafult value is 1.0 if you haven't changed it before
|
|
|
|
*
|
|
|
|
* @param fScaleX The scale factor on X axis.
|
|
|
|
*/
|
2013-11-14 13:42:10 +08:00
|
|
|
virtual void setScaleX(float fScaleX) override;
|
2013-11-13 20:01:57 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Changes the scale factor on Y axis of this widget
|
|
|
|
*
|
|
|
|
* The Default value is 1.0 if you haven't changed it before.
|
|
|
|
*
|
|
|
|
* @param fScaleY The scale factor on Y axis.
|
|
|
|
*/
|
2013-11-14 13:42:10 +08:00
|
|
|
virtual void setScaleY(float fScaleY) override;
|
2013-11-13 20:01:57 +08:00
|
|
|
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
//override "setFlipX" method of widget.
|
2013-11-14 13:42:10 +08:00
|
|
|
virtual void setFlipX(bool flipX) override;
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
//override "setFlipY" method of widget.
|
2013-11-14 13:42:10 +08:00
|
|
|
virtual void setFlipY(bool flipY) override;
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
//override "isFlipX" method of widget.
|
2013-11-14 13:42:10 +08:00
|
|
|
virtual bool isFlipX() override;
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
//override "isFlipY" method of widget.
|
2013-11-14 13:42:10 +08:00
|
|
|
virtual bool isFlipY() override;
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
//override "setAnchorPoint" method of widget.
|
2013-11-14 13:42:10 +08:00
|
|
|
virtual void setAnchorPoint(const cocos2d::Point &pt) override;
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
//override "getContentSize" method of widget.
|
2013-11-14 13:42:10 +08:00
|
|
|
virtual const cocos2d::Size& getContentSize() const override;
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
//override "getVirtualRenderer" method of widget.
|
2013-11-14 13:42:10 +08:00
|
|
|
virtual cocos2d::Node* getVirtualRenderer() override;
|
2013-09-13 22:20:20 +08:00
|
|
|
|
2013-09-17 17:59:20 +08:00
|
|
|
/**
|
|
|
|
* Returns the "class name" of widget.
|
|
|
|
*/
|
2013-11-14 13:42:10 +08:00
|
|
|
virtual const char* getDescription() const override;
|
2013-09-17 17:59:20 +08:00
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
void setTextAreaSize(const cocos2d::Size &size);
|
|
|
|
void setTextHorizontalAlignment(cocos2d::TextHAlignment alignment);
|
2013-11-06 16:04:06 +08:00
|
|
|
void setTextVerticalAlignment(cocos2d::TextVAlignment alignment);
|
2013-09-13 22:20:20 +08:00
|
|
|
protected:
|
2013-11-14 13:42:10 +08:00
|
|
|
virtual bool init() override;
|
|
|
|
virtual void initRenderer() override;
|
|
|
|
virtual void onPressStateChangedToNormal() override;
|
|
|
|
virtual void onPressStateChangedToPressed() override;
|
|
|
|
virtual void onPressStateChangedToDisabled() override;
|
|
|
|
virtual void onSizeChanged() override;
|
2013-11-13 20:01:57 +08:00
|
|
|
void clickScale(float scaleX, float scaleY);
|
2013-09-13 22:20:20 +08:00
|
|
|
void labelScaleChangedWithSize();
|
2013-11-14 13:42:10 +08:00
|
|
|
virtual UIWidget* createCloneInstance() override;
|
|
|
|
virtual void copySpecialProperties(UIWidget* model) override;
|
2013-09-13 22:20:20 +08:00
|
|
|
protected:
|
2013-09-16 20:54:13 +08:00
|
|
|
bool _touchScaleChangeEnabled;
|
2013-11-13 20:01:57 +08:00
|
|
|
float _normalScaleValueX;
|
|
|
|
float _normalScaleValueY;
|
2013-09-16 20:54:13 +08:00
|
|
|
std::string _fontName;
|
|
|
|
int _fontSize;
|
|
|
|
float _onSelectedScaleOffset;
|
2013-10-15 18:00:03 +08:00
|
|
|
cocos2d::LabelTTF* _labelRenderer;
|
2013-09-13 22:20:20 +08:00
|
|
|
};
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
}
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
#endif /* defined(__CocoGUI__Label__) */
|