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
|
|
|
|
2013-11-06 16:04:06 +08:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2013-09-13 22:20:20 +08:00
|
|
|
class UILabel : public UIWidget
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Default constructor
|
|
|
|
*/
|
|
|
|
UILabel();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Default destructor
|
|
|
|
*/
|
|
|
|
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();
|
|
|
|
|
|
|
|
//override "setFlipX" method of widget.
|
|
|
|
virtual void setFlipX(bool flipX);
|
|
|
|
|
|
|
|
//override "setFlipY" method of widget.
|
|
|
|
virtual void setFlipY(bool flipY);
|
|
|
|
|
|
|
|
//override "isFlipX" method of widget.
|
|
|
|
virtual bool isFlipX();
|
|
|
|
|
|
|
|
//override "isFlipY" method of widget.
|
|
|
|
virtual bool isFlipY();
|
|
|
|
|
|
|
|
//override "setAnchorPoint" method of widget.
|
2013-10-15 18:00:03 +08:00
|
|
|
virtual void setAnchorPoint(const cocos2d::Point &pt);
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
//override "getContentSize" method of widget.
|
2013-10-15 18:00:03 +08:00
|
|
|
virtual const cocos2d::Size& getContentSize() const;
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
//override "getVirtualRenderer" method of widget.
|
2013-10-15 18:00:03 +08:00
|
|
|
virtual cocos2d::Node* getVirtualRenderer();
|
2013-09-13 22:20:20 +08:00
|
|
|
|
2013-09-17 17:59:20 +08:00
|
|
|
/**
|
|
|
|
* Returns the "class name" of widget.
|
|
|
|
*/
|
|
|
|
virtual const char* getDescription() const;
|
|
|
|
|
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:
|
|
|
|
virtual bool init();
|
|
|
|
virtual void initRenderer();
|
|
|
|
virtual void onPressStateChangedToNormal();
|
|
|
|
virtual void onPressStateChangedToPressed();
|
|
|
|
virtual void onPressStateChangedToDisabled();
|
|
|
|
virtual void onSizeChanged();
|
|
|
|
void clickScale(float scale);
|
|
|
|
void labelScaleChangedWithSize();
|
2013-11-06 16:04:06 +08:00
|
|
|
virtual UIWidget* createCloneInstance();
|
|
|
|
virtual void copySpecialProperties(UIWidget* model);
|
2013-09-13 22:20:20 +08:00
|
|
|
protected:
|
2013-09-16 20:54:13 +08:00
|
|
|
bool _touchScaleChangeEnabled;
|
|
|
|
float _normalScaleValue;
|
|
|
|
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__) */
|