diff options
author | mathias <mathias> | 2004-12-21 23:42:09 (GMT) |
---|---|---|
committer | mathias <mathias> | 2004-12-21 23:42:09 (GMT) |
commit | bc7c988561f79edb03b2ece80bb4ba0c8c73fc2e (patch) | |
tree | a48f394504f8b44cdab668ef69daf054c178500c /src/FbTk/Font.cc | |
parent | 7e41a1494a65ecdb05c7a34c274693cbd950647f (diff) | |
download | fluxbox-bc7c988561f79edb03b2ece80bb4ba0c8c73fc2e.zip fluxbox-bc7c988561f79edb03b2ece80bb4ba0c8c73fc2e.tar.bz2 |
adds imlib2-support to fluxbox: allows us to load several imageformats
besides xpm. to get imlib2 support in fluxbox one has to
./configure --enable-imblib2
default is disabled. a fluxbox-binary that supports imlib2 will have
IMLIB2 in "fluxbox -info"-output
explanation to the changed files:
* xft.m4 -> acinclude.m4 + added ac_path_generic.m4
(from http://ac-archive.sourceforge.net/Miscellaneous/ac_path_generic.html)
* configure.in, Makefile.am, src/FbTk/Makefile.am changed to handle
imlib2-support
* Font.cc/hh Image.cc/hh App.cc fluxbox.cc consistent way of init for global
stuff for fonts and imagehandlers.
* rest of changes just add the imlib2-code, pretty straightforward
Diffstat (limited to 'src/FbTk/Font.cc')
-rw-r--r-- | src/FbTk/Font.cc | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/FbTk/Font.cc b/src/FbTk/Font.cc index e2e3dec..c7193f7 100644 --- a/src/FbTk/Font.cc +++ b/src/FbTk/Font.cc | |||
@@ -229,9 +229,14 @@ namespace FbTk { | |||
229 | bool Font::m_multibyte = false; | 229 | bool Font::m_multibyte = false; |
230 | bool Font::m_utf8mode = false; | 230 | bool Font::m_utf8mode = false; |
231 | 231 | ||
232 | // some initialisation for using fonts | 232 | |
233 | void fontInit() { | 233 | void Font::init() { |
234 | setlocale(LC_CTYPE, ""); | 234 | // must be set before the first XFontSet is created |
235 | setlocale(LC_CTYPE, ""); | ||
236 | } | ||
237 | |||
238 | void Font::shutdown() { | ||
239 | |||
235 | } | 240 | } |
236 | 241 | ||
237 | Font::Font(const char *name, bool antialias): | 242 | Font::Font(const char *name, bool antialias): |