mirror of https://github.com/axmolengine/axmol.git
57 lines
1.1 KiB
C++
57 lines
1.1 KiB
C++
#ifndef _FONT_TEST_H_
|
|
#define _FONT_TEST_H_
|
|
|
|
#include "cocos2d.h"
|
|
#include "../BaseTest.h"
|
|
|
|
DEFINE_TEST_SUITE(FontTests);
|
|
|
|
class FontTest : public TestCase
|
|
{
|
|
public:
|
|
static FontTest* create(const std::string& fontFile)
|
|
{
|
|
auto ret = new (std::nothrow) FontTest;
|
|
if (ret && ret->init())
|
|
{
|
|
ret->showFont(fontFile);
|
|
ret->autorelease();
|
|
}
|
|
else
|
|
{
|
|
delete ret;
|
|
ret = nullptr;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
void showFont(const std::string& fontFile);
|
|
|
|
virtual std::string title() const override;
|
|
};
|
|
|
|
class FontNoReplacementTest : public TestCase
|
|
{
|
|
public:
|
|
static FontNoReplacementTest* create();
|
|
~FontNoReplacementTest();
|
|
virtual void onEnter() override;
|
|
virtual std::string title() const override;
|
|
protected:
|
|
FontNoReplacementTest();
|
|
|
|
bool _replace;
|
|
};
|
|
|
|
class FontReplacementTest : public FontNoReplacementTest
|
|
{
|
|
public:
|
|
static FontReplacementTest* create();
|
|
virtual std::string title() const override;
|
|
protected:
|
|
FontReplacementTest();
|
|
};
|
|
|
|
#endif // _FONT_TEST_H_
|