2011-03-19 10:59:01 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010-2011 cocos2d-x.org
|
|
|
|
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-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-06-14 15:13:16 +08:00
|
|
|
/** creates a CCLabelTTF with a font name and font size in points
|
|
|
|
@warning: This interface will be deprecated in future.
|
|
|
|
*/
|
2012-06-14 17:18:05 +08:00
|
|
|
static CCLabelTTF * labelWithString(const char *string, const char *fontName, float fontSize);
|
2012-06-14 15:13:16 +08:00
|
|
|
|
|
|
|
/** creates a CCLabelTTF from a fontname, horizontal alignment, dimension in points, and font size in points.
|
|
|
|
@warning: This interface will be deprecated in future.
|
|
|
|
@since v1.0
|
|
|
|
*/
|
2012-06-14 17:18:05 +08:00
|
|
|
static CCLabelTTF * labelWithString(const char *string, const CCSize& dimensions, CCTextAlignment hAlignment,
|
|
|
|
const char *fontName, float fontSize);
|
2012-06-14 15:13:16 +08:00
|
|
|
|
|
|
|
/** creates a CCLabel from a fontname, alignment, dimension in points and font size in points
|
|
|
|
@warning: This interface will be deprecated in future.
|
|
|
|
*/
|
2012-06-14 17:18:05 +08:00
|
|
|
static CCLabelTTF * labelWithString(const char *string, const CCSize& dimensions, CCTextAlignment hAlignment,
|
|
|
|
CCVerticalTextAlignment vAlignment, const char *fontName, float fontSize);
|
2012-06-14 15:13:16 +08:00
|
|
|
|
2012-06-11 14:36:25 +08:00
|
|
|
/** creates a CCLabelTTF with a font name and font size in points*/
|
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.
|
|
|
|
@since v1.0
|
|
|
|
*/
|
2012-06-14 15:13:16 +08:00
|
|
|
static CCLabelTTF * create(const char *string, const CCSize& dimensions, CCTextAlignment hAlignment,
|
2012-06-11 14:36:25 +08:00
|
|
|
const char *fontName, float fontSize);
|
|
|
|
|
|
|
|
/** creates a CCLabel from a fontname, alignment, dimension in points and font size in points*/
|
2012-06-14 15:13:16 +08:00
|
|
|
static CCLabelTTF * create(const char *string, const CCSize& dimensions, CCTextAlignment hAlignment,
|
2012-06-11 14:36:25 +08:00
|
|
|
CCVerticalTextAlignment vAlignment, const char *fontName, float fontSize);
|
2012-06-14 15:13:16 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
/** initializes the CCLabelTTF with a font name, alignment, dimension and font size */
|
2012-06-11 14:36:25 +08:00
|
|
|
bool initWithString(const char *string, const CCSize& dimensions, CCTextAlignment hAlignment, const char *fontName, float fontSize);
|
|
|
|
|
|
|
|
/** initializes the CCLabelTTF with a font name, alignment, dimension and font size */
|
|
|
|
bool initWithString(const char *string, const CCSize& dimensions, CCTextAlignment hAlignment,
|
|
|
|
CCVerticalTextAlignment vAlignment, const char *fontName, float fontSize);
|
|
|
|
|
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-04-19 14:35:52 +08:00
|
|
|
/** initializes the CCLabelTTF */
|
|
|
|
bool init();
|
2012-05-31 06:34:50 +08:00
|
|
|
/** Creates an label.
|
|
|
|
*/
|
|
|
|
static CCLabelTTF * node();
|
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();
|
|
|
|
void setDimensions(CCSize &dim);
|
|
|
|
|
|
|
|
float getFontSize();
|
|
|
|
void setFontSize(float fontSize);
|
|
|
|
|
|
|
|
const char* getFontName();
|
|
|
|
void setFontName(const char *fontName);
|
2012-04-14 19:11:57 +08:00
|
|
|
|
2012-06-11 14:36:25 +08:00
|
|
|
private:
|
|
|
|
void 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
|
|
|
|
|
|
|
std::string m_string;
|
2012-04-14 19:11:57 +08:00
|
|
|
};
|
2010-08-31 11:20:37 +08:00
|
|
|
|
2012-04-14 19:11:57 +08:00
|
|
|
NS_CC_END
|
2011-03-19 10:59:01 +08:00
|
|
|
|
|
|
|
#endif //__CCLABEL_H__
|
|
|
|
|