diff options
author | fluxgen <fluxgen> | 2003-12-19 17:07:53 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2003-12-19 17:07:53 (GMT) |
commit | bfd09dc88ceeda456f93bb85e1a328bb1e2e42e0 (patch) | |
tree | 638a44f3138169099acbc3dcdeb0773eca3a6184 | |
parent | 574a9b09d92b83a9da11ba5f93505442da1a62ce (diff) | |
download | fluxbox-bfd09dc88ceeda456f93bb85e1a328bb1e2e42e0.zip fluxbox-bfd09dc88ceeda456f93bb85e1a328bb1e2e42e0.tar.bz2 |
accessor and manipulator for m_shadow
-rw-r--r-- | src/FbTk/Font.hh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/FbTk/Font.hh b/src/FbTk/Font.hh index 2ddb7fa..2502c1b 100644 --- a/src/FbTk/Font.hh +++ b/src/FbTk/Font.hh | |||
@@ -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: Font.hh,v 1.6 2003/12/16 17:06:51 fluxgen Exp $ | 22 | //$Id: Font.hh,v 1.7 2003/12/19 17:07:53 fluxgen Exp $ |
23 | 23 | ||
24 | #ifndef FBTK_FONT_HH | 24 | #ifndef FBTK_FONT_HH |
25 | #define FBTK_FONT_HH | 25 | #define FBTK_FONT_HH |
@@ -54,6 +54,7 @@ public: | |||
54 | /// @return true if utf-8 mode is enabled, else false | 54 | /// @return true if utf-8 mode is enabled, else false |
55 | static bool utf8() { return m_utf8mode; } | 55 | static bool utf8() { return m_utf8mode; } |
56 | void setAntialias(bool flag); | 56 | void setAntialias(bool flag); |
57 | inline void setShadow(bool flag) { m_shadow = flag; } | ||
57 | /** | 58 | /** |
58 | @param text text to check size | 59 | @param text text to check size |
59 | @param size length of text in bytes | 60 | @param size length of text in bytes |
@@ -88,6 +89,7 @@ public: | |||
88 | bool isRotated() const { return m_rotated; } | 89 | bool isRotated() const { return m_rotated; } |
89 | /// @return rotated angle | 90 | /// @return rotated angle |
90 | float angle() const { return m_angle; } | 91 | float angle() const { return m_angle; } |
92 | bool shadow() const { return m_shadow; } | ||
91 | private: | 93 | private: |
92 | 94 | ||
93 | std::auto_ptr<FontImp> m_fontimp; ///< font implementation | 95 | std::auto_ptr<FontImp> m_fontimp; ///< font implementation |