axmol/cocos/gui/UITextAtlas.h

123 lines
3.7 KiB
C
Raw Normal View History

2013-09-13 22:20:20 +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__
#include "gui/UIWidget.h"
2013-09-13 22:20:20 +08:00
2013-12-23 15:02:52 +08:00
NS_CC_BEGIN
namespace gui {
2013-09-13 22:20:20 +08:00
2013-11-06 16:04:06 +08:00
/**
* @js NA
* @lua NA
*/
2013-12-23 15:02:52 +08:00
class UICCLabelAtlas : public LabelAtlas
2013-09-13 22:20:20 +08:00
{
public:
/**
* Default constructor
*/
UICCLabelAtlas();
/**
* Default destructor
*/
virtual ~UICCLabelAtlas();
/**
* Allocates and initializes.
*/
static UICCLabelAtlas* create();
void setProperty(const std::string& string, const std::string& charMapFile, unsigned int itemWidth, unsigned int itemHeight, unsigned int startCharMap);
2013-12-23 15:02:52 +08:00
void setProperty(const std::string& string, Texture2D *texture, unsigned int itemWidth, unsigned int itemHeight, unsigned int startCharMap);
2013-11-14 13:42:10 +08:00
virtual void draw(void) override;
2013-09-13 22:20:20 +08:00
};
2013-11-06 16:04:06 +08:00
/**
* @js NA
* @lua NA
*/
class TextAtlas : public Widget
2013-09-13 22:20:20 +08:00
{
public:
/**
* Default constructor
*/
TextAtlas();
2013-09-13 22:20:20 +08:00
/**
* Default destructor
*/
virtual ~TextAtlas();
2013-09-13 22:20:20 +08:00
/**
* Allocates and initializes.
*/
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 */
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.
void setStringValue(const std::string& value);
2013-09-13 22:20:20 +08:00
//get string value for labelatlas.
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:
2013-12-24 20:22:14 +08:00
UICCLabelAtlas* _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-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__) */