2014-03-06 20:52:29 +08:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef __TestCpp__UIRichTextTest__
|
|
|
|
#define __TestCpp__UIRichTextTest__
|
|
|
|
|
|
|
|
#include "../UIScene.h"
|
|
|
|
|
|
|
|
class UIRichTextTest : public UIScene
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
UIRichTextTest();
|
|
|
|
~UIRichTextTest();
|
|
|
|
bool init();
|
2014-05-09 14:30:39 +08:00
|
|
|
void touchEvent(Ref *pSender, Widget::TouchEventType type);
|
2014-03-06 20:52:29 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
UI_SCENE_CREATE_FUNC(UIRichTextTest)
|
|
|
|
|
|
|
|
protected:
|
|
|
|
RichText* _richText;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* defined(__TestCpp__UIRichTextTest__) */
|