all repos — fluxbox @ 28ec63785617dac8a6afe5eb6692b80d7fe8b03a

custom fork of the fluxbox windowmanager

minor comments fixes
fluxgen fluxgen
commit

28ec63785617dac8a6afe5eb6692b80d7fe8b03a

parent

58c7f9f683ba5c08191b56d002588a2dcb54391f

3 files changed, 20 insertions(+), 9 deletions(-)

jump to
M src/FbTk/XFontImp.hhsrc/FbTk/XFontImp.hh

@@ -1,5 +1,5 @@

// XFontImp.hh for FbTk fluxbox toolkit -// Copyright (c) 2002 Henrik Kinnunen (fluxgen@linuxmail.org) +// Copyright (c) 2002-2003 Henrik Kinnunen (fluxgen at users.sourceforge.net) // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"),

@@ -19,14 +19,18 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: XFontImp.hh,v 1.3 2002/12/09 22:10:01 fluxgen Exp $ +// $Id: XFontImp.hh,v 1.4 2003/01/05 23:39:50 fluxgen Exp $ #ifndef FBTK_XFONTIMP_HH #define FBTK_XFONTIMP_HH #include "FontImp.hh" + +#include <X11/Xlib.h> + namespace FbTk { +/// regular X font implementation for FbTk class XFontImp:public FbTk::FontImp { public: explicit XFontImp(const char *filename = 0);
M src/FbTk/XftFontImp.hhsrc/FbTk/XftFontImp.hh

@@ -1,5 +1,5 @@

// XftFontImp.hh Xft font implementation for FbTk -// Copyright (c) 2002 Henrik Kinnunen (fluxgen@linuxmail.org) +// Copyright (c) 2002-2003 Henrik Kinnunen (fluxgen at users.sourceforge.net) // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"),

@@ -19,15 +19,18 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -//$Id: XftFontImp.hh,v 1.2 2002/12/01 13:42:15 rathnor Exp $ +//$Id: XftFontImp.hh,v 1.3 2003/01/05 23:39:49 fluxgen Exp $ -#ifndef XFTFONTIMP_HH -#define XFTFONTIMP_HH +#ifndef FBTK_XFTFONTIMP_HH +#define FBTK_XFTFONTIMP_HH #include "FontImp.hh" + #include <X11/Xft/Xft.h> + namespace FbTk { +/// Handles Xft font drawing class XftFontImp:public FbTk::FontImp { public: XftFontImp(const char *fontname, bool utf8);

@@ -46,4 +49,4 @@ };

}; // end namespace FbTk -#endif // XFTFONTIMP_HH +#endif // FBTK_XFTFONTIMP_HH
M src/FbTk/XmbFontImp.hhsrc/FbTk/XmbFontImp.hh

@@ -1,5 +1,5 @@

// XmbFontImp.hh for FbTk fluxbox toolkit -// Copyright (c) 2002 Henrik Kinnunen (fluxgen at linuxmail.org) +// Copyright (c) 2002-2003 Henrik Kinnunen (fluxgen at users.sourceforge.net) // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"),

@@ -19,14 +19,18 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: XmbFontImp.hh,v 1.2 2002/12/01 13:42:15 rathnor Exp $ +// $Id: XmbFontImp.hh,v 1.3 2003/01/05 23:39:50 fluxgen Exp $ #ifndef FBTK_XMBFONTIMP_HH #define FBTK_XMBFONTIMP_HH #include "FontImp.hh" + +#include <X11/Xlib.h> + namespace FbTk { +/// multibyte font implementation for FbTk class XmbFontImp:public FbTk::FontImp { public: XmbFontImp(const char *fontname, bool utf8);