2013-09-13 22:20:20 +08:00
|
|
|
/****************************************************************************
|
2014-01-07 11:47:11 +08:00
|
|
|
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
#ifndef __UILABELATLAS_H__
|
|
|
|
#define __UILABELATLAS_H__
|
|
|
|
|
2013-10-16 16:48:39 +08:00
|
|
|
#include "gui/UIWidget.h"
|
2013-09-13 22:20:20 +08:00
|
|
|
|
2013-12-23 15:02:52 +08:00
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2014-02-24 18:56:45 +08:00
|
|
|
namespace ui {
|
2013-09-13 22:20:20 +08:00
|
|
|
|
2013-11-06 16:04:06 +08:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2013-12-31 16:36:33 +08:00
|
|
|
class TextAtlas : public Widget
|
2013-09-13 22:20:20 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Default constructor
|
|
|
|
*/
|
2013-12-31 16:36:33 +08:00
|
|
|
TextAtlas();
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Default destructor
|
|
|
|
*/
|
2013-12-31 16:36:33 +08:00
|
|
|
virtual ~TextAtlas();
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Allocates and initializes.
|
|
|
|
*/
|
2013-12-31 16:36:33 +08:00
|
|
|
static TextAtlas* create();
|
2013-09-13 22:20:20 +08:00
|
|
|
|
2013-12-23 15:02:52 +08:00
|
|
|
/** initializes the LabelAtlas with a string, a char map file(the atlas), the width and height of each element and the starting char of the atlas */
|
2013-11-08 04:42:16 +08:00
|
|
|
void setProperty(const std::string& stringValue,const std::string& charMapFile, int itemWidth, int itemHeight, const std::string& startCharMap);
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
//set string value for labelatlas.
|
2013-11-08 04:42:16 +08:00
|
|
|
void setStringValue(const std::string& value);
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
//get string value for labelatlas.
|
2013-11-08 04:42:16 +08:00
|
|
|
const std::string& getStringValue() const;
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
//override "setAnchorPoint" method of widget.
|
2013-12-23 15:02:52 +08:00
|
|
|
virtual void setAnchorPoint(const Point &pt) override;
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
//override "getContentSize" method of widget.
|
2013-12-23 15:02:52 +08:00
|
|
|
virtual const Size& getContentSize() const override;
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
//override "getVirtualRenderer" method of widget.
|
2013-12-23 15:02:52 +08:00
|
|
|
virtual Node* getVirtualRenderer() override;
|
2013-09-17 17:59:20 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the "class name" of widget.
|
|
|
|
*/
|
2013-12-23 15:02:52 +08:00
|
|
|
virtual std::string getDescription() const override;
|
2013-11-06 16:04:06 +08:00
|
|
|
|
2013-09-13 22:20:20 +08:00
|
|
|
protected:
|
2013-11-14 13:42:10 +08:00
|
|
|
virtual void initRenderer() override;
|
|
|
|
virtual void onSizeChanged() override;
|
2013-09-13 22:20:20 +08:00
|
|
|
void labelAtlasScaleChangedWithSize();
|
2013-12-23 15:02:52 +08:00
|
|
|
virtual Widget* createCloneInstance() override;
|
|
|
|
virtual void copySpecialProperties(Widget* model) override;
|
2013-09-13 22:20:20 +08:00
|
|
|
protected:
|
2014-01-09 12:40:51 +08:00
|
|
|
LabelAtlas* _labelAtlasRenderer;
|
2013-11-06 16:04:06 +08:00
|
|
|
std::string _stringValue;
|
|
|
|
std::string _charMapFileName;
|
|
|
|
int _itemWidth;
|
|
|
|
int _itemHeight;
|
|
|
|
std::string _startCharMap;
|
2013-09-13 22:20:20 +08:00
|
|
|
};
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
}
|
2013-12-23 15:02:52 +08:00
|
|
|
NS_CC_END
|
2013-09-13 22:20:20 +08:00
|
|
|
|
2013-12-23 15:02:52 +08:00
|
|
|
#endif /* defined(__CocoGUI__LabelAtlas__) */
|