2011-03-19 10:59:01 +08:00
|
|
|
/****************************************************************************
|
2012-09-24 21:22:20 +08:00
|
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
2011-03-19 10:59:01 +08:00
|
|
|
Copyright (c) 2008-2010 Ricardo Quesada
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
2012-04-14 19:11:57 +08:00
|
|
|
#ifndef __CCLABELTTF_H__
|
|
|
|
#define __CCLABELTTF_H__
|
|
|
|
|
2012-06-19 13:50:11 +08:00
|
|
|
#include "sprite_nodes/CCSprite.h"
|
|
|
|
#include "textures/CCTexture2D.h"
|
2011-03-19 10:59:01 +08:00
|
|
|
|
2012-04-14 19:11:57 +08:00
|
|
|
NS_CC_BEGIN
|
2010-08-11 18:09:10 +08:00
|
|
|
|
2012-06-20 18:09:11 +08:00
|
|
|
/**
|
|
|
|
* @addtogroup GUI
|
|
|
|
* @{
|
|
|
|
* @addtogroup label
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2012-04-14 19:11:57 +08:00
|
|
|
/** @brief CCLabelTTF is a subclass of CCTextureNode that knows how to render text labels
|
|
|
|
*
|
|
|
|
* All features from CCTextureNode are valid in CCLabelTTF
|
|
|
|
*
|
|
|
|
* CCLabelTTF objects are slow. Consider using CCLabelAtlas or CCLabelBMFont instead.
|
|
|
|
*/
|
|
|
|
class CC_DLL CCLabelTTF : public CCSprite, public CCLabelProtocol
|
|
|
|
{
|
|
|
|
public:
|
2012-04-19 14:35:52 +08:00
|
|
|
CCLabelTTF();
|
|
|
|
virtual ~CCLabelTTF();
|
2012-06-11 14:36:25 +08:00
|
|
|
const char* description();
|
|
|
|
|
2012-08-01 13:24:23 +08:00
|
|
|
/** creates a CCLabelTTF with a font name and font size in points
|
|
|
|
@since v2.0.1
|
|
|
|
*/
|
2012-06-14 15:13:16 +08:00
|
|
|
static CCLabelTTF * create(const char *string, const char *fontName, float fontSize);
|
2012-06-11 14:36:25 +08:00
|
|
|
|
|
|
|
/** creates a CCLabelTTF from a fontname, horizontal alignment, dimension in points, and font size in points.
|
2012-08-01 13:24:23 +08:00
|
|
|
@since v2.0.1
|
2012-06-11 14:36:25 +08:00
|
|
|
*/
|
2012-08-01 13:24:23 +08:00
|
|
|
static CCLabelTTF * create(const char *string, const char *fontName, float fontSize,
|
|
|
|
const CCSize& dimensions, CCTextAlignment hAlignment);
|
|
|
|
|
|
|
|
/** creates a CCLabel from a fontname, alignment, dimension in points and font size in points
|
|
|
|
@since v2.0.1
|
|
|
|
*/
|
|
|
|
static CCLabelTTF * create(const char *string, const char *fontName, float fontSize,
|
|
|
|
const CCSize& dimensions, CCTextAlignment hAlignment,
|
|
|
|
CCVerticalTextAlignment vAlignment);
|
2012-06-11 14:36:25 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
/** initializes the CCLabelTTF with a font name and font size */
|
2012-06-11 14:36:25 +08:00
|
|
|
bool initWithString(const char *string, const char *fontName, float fontSize);
|
|
|
|
|
2012-08-01 13:24:23 +08:00
|
|
|
/** initializes the CCLabelTTF with a font name, alignment, dimension and font size */
|
|
|
|
bool initWithString(const char *string, const char *fontName, float fontSize,
|
|
|
|
const CCSize& dimensions, CCTextAlignment hAlignment);
|
|
|
|
|
|
|
|
/** initializes the CCLabelTTF with a font name, alignment, dimension and font size */
|
|
|
|
bool initWithString(const char *string, const char *fontName, float fontSize,
|
|
|
|
const CCSize& dimensions, CCTextAlignment hAlignment,
|
|
|
|
CCVerticalTextAlignment vAlignment);
|
|
|
|
|
2013-04-26 09:22:26 +08:00
|
|
|
|
|
|
|
/** enable or disable shadow for the label */
|
|
|
|
void enableShadow(CCSize &shadowOffset, float shadowOpacity, float shadowBlur);
|
|
|
|
|
|
|
|
/** disable shadow rendering */
|
|
|
|
void disableShadow();
|
|
|
|
|
|
|
|
/** enable or disable stroke */
|
|
|
|
void enableStroke(ccColor3B &strokeColor, float strokeSize);
|
|
|
|
|
|
|
|
/** disable stroke */
|
|
|
|
void disableStroke();
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
/** initializes the CCLabelTTF */
|
|
|
|
bool init();
|
2012-06-06 08:12:41 +08:00
|
|
|
|
2012-06-14 18:32:44 +08:00
|
|
|
/** Creates an label.
|
|
|
|
*/
|
|
|
|
static CCLabelTTF * create();
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
/** changes the string to render
|
|
|
|
* @warning Changing the string is as expensive as creating a new CCLabelTTF. To obtain better performance use CCLabelAtlas
|
|
|
|
*/
|
|
|
|
virtual void setString(const char *label);
|
|
|
|
virtual const char* getString(void);
|
2012-06-11 14:36:25 +08:00
|
|
|
|
|
|
|
CCTextAlignment getHorizontalAlignment();
|
|
|
|
void setHorizontalAlignment(CCTextAlignment alignment);
|
|
|
|
|
|
|
|
CCVerticalTextAlignment getVerticalAlignment();
|
|
|
|
void setVerticalAlignment(CCVerticalTextAlignment verticalAlignment);
|
|
|
|
|
|
|
|
CCSize getDimensions();
|
2012-08-16 11:43:44 +08:00
|
|
|
void setDimensions(const CCSize &dim);
|
2012-06-11 14:36:25 +08:00
|
|
|
|
|
|
|
float getFontSize();
|
|
|
|
void setFontSize(float fontSize);
|
|
|
|
|
|
|
|
const char* getFontName();
|
|
|
|
void setFontName(const char *fontName);
|
2013-04-26 09:22:26 +08:00
|
|
|
|
2012-06-11 14:36:25 +08:00
|
|
|
private:
|
2012-11-14 18:05:15 +08:00
|
|
|
bool updateTexture();
|
2012-04-14 19:11:57 +08:00
|
|
|
protected:
|
2012-04-19 14:35:52 +08:00
|
|
|
/** Dimensions of the label in Points */
|
|
|
|
CCSize m_tDimensions;
|
2012-06-11 14:36:25 +08:00
|
|
|
/** The alignment of the label */
|
|
|
|
CCTextAlignment m_hAlignment;
|
|
|
|
/** The vertical alignment of the label */
|
|
|
|
CCVerticalTextAlignment m_vAlignment;
|
2012-04-19 14:35:52 +08:00
|
|
|
/** Font name used in the label */
|
2012-04-14 19:11:57 +08:00
|
|
|
std::string * m_pFontName;
|
2012-04-19 14:35:52 +08:00
|
|
|
/** Font size of the label */
|
|
|
|
float m_fFontSize;
|
2012-06-11 14:36:25 +08:00
|
|
|
|
2013-04-26 09:22:26 +08:00
|
|
|
/** font shadow */
|
|
|
|
bool m_shadowEnabled;
|
|
|
|
CCSize m_shadowOffset;
|
|
|
|
float m_shadowOpacity;
|
|
|
|
float m_shadowBlur;
|
|
|
|
|
|
|
|
/** font stroke */
|
|
|
|
bool m_strokeEnabled;
|
|
|
|
ccColor3B m_strokeColor;
|
|
|
|
float m_strokeSize;
|
|
|
|
|
|
|
|
|
2012-06-11 14:36:25 +08:00
|
|
|
std::string m_string;
|
2012-04-14 19:11:57 +08:00
|
|
|
};
|
2010-08-31 11:20:37 +08:00
|
|
|
|
2012-07-13 09:53:38 +08:00
|
|
|
|
2012-06-20 18:09:11 +08:00
|
|
|
// end of GUI group
|
|
|
|
/// @}
|
|
|
|
/// @}
|
|
|
|
|
2012-04-14 19:11:57 +08:00
|
|
|
NS_CC_END
|
2011-03-19 10:59:01 +08:00
|
|
|
|
|
|
|
#endif //__CCLABEL_H__
|
|
|
|
|