00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef JPFONT_H
00020 #define JPFONT_H
00021
00022 #include "Font.h"
00023
00024 class ShapeFont;
00025
00026 class JPFont : public Pentagram::Font
00027 {
00028 public:
00029 JPFont(ShapeFont* jpfont, unsigned int fontnum);
00030 virtual ~JPFont();
00031
00032 int getWidth(int c);
00033
00034 virtual int getHeight();
00035 virtual int getBaseline();
00036 virtual int getBaselineSkip();
00037
00038 virtual void getStringSize(const std::string& text,
00039 int& width, int& height);
00040 virtual void getTextSize(const std::string& text,
00041 int& resultwidth, int& resultheight,
00042 unsigned int& remaining,
00043 int width=0, int height=0,
00044 TextAlign align=TEXT_LEFT, bool u8specials=false);
00045
00046 virtual RenderedText* renderText(const std::string& text,
00047 unsigned int& remaining,
00048 int width=0, int height=0,
00049 TextAlign align=TEXT_LEFT,
00050 bool u8specials=false,
00051 std::string::size_type cursor
00052 =std::string::npos);
00053
00054 ENABLE_RUNTIME_CLASSTYPE();
00055 protected:
00056
00057 unsigned int fontnum;
00058 ShapeFont* shapefont;
00059 };
00060
00061
00062 #endif