WiiFlow_Lite/source/gui/text.hpp

77 lines
2.2 KiB
C++
Raw Normal View History

2012-01-21 21:57:41 +01:00
#ifndef __TEXT_HPP
#define __TEXT_HPP
#include <vector>
2012-01-21 21:57:41 +01:00
#include <string>
#include "fmt.h"
2012-01-21 21:57:41 +01:00
#include "FreeTypeGX.h"
#include "video.hpp"
#include "wstringEx/wstringEx.hpp"
2012-01-21 21:57:41 +01:00
using namespace std;
class SFont// should be either struct SFont or class CFont
2012-01-21 21:57:41 +01:00
{
public:
SFont(void) : font(NULL), fSize(0), lineSpacing(0), weight(0), index(0), data(NULL), dataSize(0) { memset(name, 0, 128); };
~SFont(void) { };
void ClearData(void);
bool fromBuffer(const u8 *buffer, const u32 bufferSize, u32 size, u32 lspacing, u32 w = 0, u32 idx = 0, const char *fontname = "");
bool fromFile(const char *path, u32 size, u32 lspacing, u32 w = 0, u32 idx = 0, const char *fontname = "");
FreeTypeGX *font;
u32 fSize;
2012-01-21 21:57:41 +01:00
u32 lineSpacing;
u32 weight;
u32 index;
char name[128];
private:
u8 *data;
u32 dataSize;
2012-01-21 21:57:41 +01:00
};
struct SWord
{
wstringEx text;
Vector3D pos;
Vector3D targetPos;
};
typedef vector<SWord> CLine;
2012-01-21 21:57:41 +01:00
class CText
{
public:
void setText(const SFont &font, const wstringEx &t);
void setText(const SFont &font, const wstringEx &t, u32 startline);
2012-01-21 21:57:41 +01:00
void setColor(const CColor &c);
void setFrame(float width, u16 style, bool ignoreNewlines = false, bool instant = false);
void tick(void);
void draw(void);
int getTotalHeight();
private:
vector<CLine> m_lines;
2012-01-21 21:57:41 +01:00
SFont m_font;
CColor m_color;
u32 firstLine;
u32 totalHeight;
};
// Nothing to do with CText. Q&D helpers for string formating.
2012-01-21 21:57:41 +01:00
std::string sfmt(const char *format, ...);
wstringEx wfmt(const wstringEx &format, ...);
bool checkFmt(const wstringEx &ref, const wstringEx &format);
std::string vectorToString(const vector<std::string> &vect, std::string sep);
wstringEx vectorToString(const vector<wstringEx> &vect, char sep);
vector<wstringEx> stringToVector(const wstringEx &text, char sep);
vector<std::string> stringToVector(const std::string &text, char sep);
2012-01-21 21:57:41 +01:00
std::string upperCase(std::string text);
std::string lowerCase(std::string text);
std::string ltrim(std::string s);
std::string rtrim(std::string s);
bool wchar_cmp(const wchar_t *first, const wchar_t *second, u32 first_len, u32 second_len);
bool char_cmp(const char *first, const char *second, u32 first_len, u32 second_len);
2012-01-21 21:57:41 +01:00
#endif // !defined(__TEXT_HPP)