diff options
Diffstat (limited to 'libjin/Graphics/Font.h')
-rw-r--r-- | libjin/Graphics/Font.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/libjin/Graphics/Font.h b/libjin/Graphics/Font.h deleted file mode 100644 index 6c5a1fc..0000000 --- a/libjin/Graphics/Font.h +++ /dev/null @@ -1,30 +0,0 @@ -#ifndef __LIBJIN_FONT_H -#define __LIBJIN_FONT_H -#include <vector> -#include "Unicode.h" - -namespace jin -{ -namespace graphics -{ - - struct Page; - - class Font - { - public: - Font() {} - virtual ~Font() {}; - - virtual void print(const Page* page, int x, int y) = 0; - virtual void print(const unicode::Sentence& text, int x, int y, int lineheight, int spacing = 0) = 0; - virtual Page* typeset(const unicode::Sentence& text, int lineheight, int spacing = 0) = 0; - virtual void print(unicode::Iterator& itor, int x, int y, int lineheight, int spacing = 0) = 0; - virtual Page* typeset(unicode::Iterator& itor, int lineheight, int spacing = 0) = 0; - - }; - -} // graphics -} // jin - -#endif
\ No newline at end of file |