diff options
Diffstat (limited to 'src/FbTk/FontImp.hh')
-rw-r--r-- | src/FbTk/FontImp.hh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/FbTk/FontImp.hh b/src/FbTk/FontImp.hh index 1e0f55f..cf28baf 100644 --- a/src/FbTk/FontImp.hh +++ b/src/FbTk/FontImp.hh | |||
@@ -1,5 +1,5 @@ | |||
1 | // FontImp.cc for FbTk | 1 | // FontImp.cc for FbTk |
2 | // Copyright (c) 2002-2003 Henrik Kinnunen (fluxgen(at)users.sourceforge.net) | 2 | // Copyright (c) 2002-2004 Henrik Kinnunen (fluxgen(at)users.sourceforge.net) |
3 | // | 3 | // |
4 | // Permission is hereby granted, free of charge, to any person obtaining a | 4 | // Permission is hereby granted, free of charge, to any person obtaining a |
5 | // copy of this software and associated documentation files (the "Software"), | 5 | // copy of this software and associated documentation files (the "Software"), |
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: FontImp.hh,v 1.3 2003/04/20 13:52:29 fluxgen Exp $ | 22 | // $Id: FontImp.hh,v 1.4 2004/09/11 22:58:20 fluxgen Exp $ |
23 | 23 | ||
24 | #ifndef FBTK_FONTIMP_HH | 24 | #ifndef FBTK_FONTIMP_HH |
25 | #define FBTK_FONTIMP_HH | 25 | #define FBTK_FONTIMP_HH |
@@ -32,6 +32,8 @@ | |||
32 | 32 | ||
33 | namespace FbTk { | 33 | namespace FbTk { |
34 | 34 | ||
35 | class FbDrawable; | ||
36 | |||
35 | /** | 37 | /** |
36 | FontImp, second part of the bridge pattern for fonts | 38 | FontImp, second part of the bridge pattern for fonts |
37 | pure interface class. | 39 | pure interface class. |
@@ -41,7 +43,7 @@ class FontImp { | |||
41 | public: | 43 | public: |
42 | virtual ~FontImp() { } | 44 | virtual ~FontImp() { } |
43 | virtual bool load(const std::string &name) = 0; | 45 | virtual bool load(const std::string &name) = 0; |
44 | virtual void drawText(Drawable w, int screen, GC gc, const char *text, size_t len, int x, int y) const = 0; | 46 | virtual void drawText(const FbDrawable &w, int screen, GC gc, const char *text, size_t len, int x, int y) const = 0; |
45 | virtual unsigned int textWidth(const char * const text, unsigned int size) const = 0; | 47 | virtual unsigned int textWidth(const char * const text, unsigned int size) const = 0; |
46 | virtual int ascent() const = 0; | 48 | virtual int ascent() const = 0; |
47 | virtual int descent() const = 0; | 49 | virtual int descent() const = 0; |