aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/Font.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2004-08-10 11:22:10 (GMT)
committerfluxgen <fluxgen>2004-08-10 11:22:10 (GMT)
commit52cb3758861117dbd30c63fd2e24fad5e9900742 (patch)
tree970be66016b6e1433b5a06b84154cb8f3f58ed5b /src/FbTk/Font.hh
parent249a37333e729d662c55e8c1c85c7acd05b0d406 (diff)
downloadfluxbox-52cb3758861117dbd30c63fd2e24fad5e9900742.zip
fluxbox-52cb3758861117dbd30c63fd2e24fad5e9900742.tar.bz2
utf-8 fix, a fixed patch from Sergey Kuleshov
Diffstat (limited to 'src/FbTk/Font.hh')
-rw-r--r--src/FbTk/Font.hh6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/FbTk/Font.hh b/src/FbTk/Font.hh
index 2502c1b..fded0c4 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.7 2003/12/19 17:07:53 fluxgen Exp $ 22//$Id: Font.hh,v 1.8 2004/08/10 11:22:10 fluxgen Exp $
23 23
24#ifndef FBTK_FONT_HH 24#ifndef FBTK_FONT_HH
25#define FBTK_FONT_HH 25#define FBTK_FONT_HH
@@ -30,6 +30,8 @@
30#include <string> 30#include <string>
31#include <memory> 31#include <memory>
32 32
33#include <iconv.h>
34
33namespace FbTk { 35namespace FbTk {
34 36
35class FontImp; 37class FontImp;
@@ -100,6 +102,8 @@ private:
100 bool m_rotated; ///< wheter we're rotated or not 102 bool m_rotated; ///< wheter we're rotated or not
101 float m_angle; ///< rotation angle 103 float m_angle; ///< rotation angle
102 bool m_shadow; ///< shadow text 104 bool m_shadow; ///< shadow text
105 std::string m_locale; ///< system encoding
106 iconv_t m_iconv;
103}; 107};
104 108
105} //end namespace FbTk 109} //end namespace FbTk