diff options
Diffstat (limited to 'src/FbTk')
-rw-r--r-- | src/FbTk/GContext.cc | 76 | ||||
-rw-r--r-- | src/FbTk/GContext.hh | 60 |
2 files changed, 136 insertions, 0 deletions
diff --git a/src/FbTk/GContext.cc b/src/FbTk/GContext.cc new file mode 100644 index 0000000..910e20f --- /dev/null +++ b/src/FbTk/GContext.cc | |||
@@ -0,0 +1,76 @@ | |||
1 | // GContext.cc for FbTk - fluxbox toolkit | ||
2 | // Copyright (c) 2003 Henrik Kinnunen (fluxgen at users.sourceforge.net) | ||
3 | // | ||
4 | // Permission is hereby granted, free of charge, to any person obtaining a | ||
5 | // copy of this software and associated documentation files (the "Software"), | ||
6 | // to deal in the Software without restriction, including without limitation | ||
7 | // the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
8 | // and/or sell copies of the Software, and to permit persons to whom the | ||
9 | // Software is furnished to do so, subject to the following conditions: | ||
10 | // | ||
11 | // The above copyright notice and this permission notice shall be included in | ||
12 | // all copies or substantial portions of the Software. | ||
13 | // | ||
14 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
15 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
16 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
17 | // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
18 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
20 | // DEALINGS IN THE SOFTWARE. | ||
21 | |||
22 | // $Id: GContext.cc,v 1.1 2003/08/27 13:45:11 fluxgen Exp $ | ||
23 | |||
24 | #include "GContext.hh" | ||
25 | |||
26 | #include "App.hh" | ||
27 | #include "FbDrawable.hh" | ||
28 | #include "FbPixmap.hh" | ||
29 | #include "Color.hh" | ||
30 | #include "Font.hh" | ||
31 | |||
32 | namespace FbTk { | ||
33 | |||
34 | GContext::GContext(const FbTk::FbDrawable &drawable): | ||
35 | m_gc(XCreateGC(FbTk::App::instance()->display(), | ||
36 | drawable.drawable(), | ||
37 | 0, 0)) { | ||
38 | } | ||
39 | |||
40 | GContext::GContext(Drawable drawable): | ||
41 | m_gc(XCreateGC(FbTk::App::instance()->display(), | ||
42 | drawable, | ||
43 | 0, 0)) { | ||
44 | } | ||
45 | |||
46 | GContext::~GContext() { | ||
47 | if (m_gc) | ||
48 | XFreeGC(FbTk::App::instance()->display(), m_gc); | ||
49 | } | ||
50 | |||
51 | void GContext::setForeground(const FbTk::Color &color) { | ||
52 | XSetForeground(FbTk::App::instance()->display(), m_gc, | ||
53 | color.pixel()); | ||
54 | } | ||
55 | |||
56 | void GContext::setBackground(const FbTk::Color &color) { | ||
57 | XSetBackground(FbTk::App::instance()->display(), m_gc, | ||
58 | color.pixel()); | ||
59 | } | ||
60 | |||
61 | /// not implemented! | ||
62 | void GContext::setFont(const FbTk::Font &font) { | ||
63 | //!! TODO | ||
64 | } | ||
65 | |||
66 | void GContext::setClipMask(const FbTk::FbPixmap &mask) { | ||
67 | XSetClipMask(FbTk::App::instance()->display(), m_gc, | ||
68 | mask.drawable()); | ||
69 | } | ||
70 | |||
71 | void GContext::setClipOrigin(int x, int y) { | ||
72 | XSetClipOrigin(FbTk::App::instance()->display(), m_gc, | ||
73 | x, y); | ||
74 | } | ||
75 | |||
76 | } // end namespace FbTk | ||
diff --git a/src/FbTk/GContext.hh b/src/FbTk/GContext.hh new file mode 100644 index 0000000..636c054 --- /dev/null +++ b/src/FbTk/GContext.hh | |||
@@ -0,0 +1,60 @@ | |||
1 | // GContext.hh for FbTk - fluxbox toolkit | ||
2 | // Copyright (c) 2003 Henrik Kinnunen (fluxgen at users.sourceforge.net) | ||
3 | // | ||
4 | // Permission is hereby granted, free of charge, to any person obtaining a | ||
5 | // copy of this software and associated documentation files (the "Software"), | ||
6 | // to deal in the Software without restriction, including without limitation | ||
7 | // the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
8 | // and/or sell copies of the Software, and to permit persons to whom the | ||
9 | // Software is furnished to do so, subject to the following conditions: | ||
10 | // | ||
11 | // The above copyright notice and this permission notice shall be included in | ||
12 | // all copies or substantial portions of the Software. | ||
13 | // | ||
14 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
15 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
16 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
17 | // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
18 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
20 | // DEALINGS IN THE SOFTWARE. | ||
21 | |||
22 | // $Id: GContext.hh,v 1.1 2003/08/27 13:45:11 fluxgen Exp $ | ||
23 | |||
24 | #ifndef FBTK_GCONTEXT_HH | ||
25 | #define FBTK_GCONTEXT_HH | ||
26 | |||
27 | #include <X11/Xlib.h> | ||
28 | |||
29 | namespace FbTk { | ||
30 | |||
31 | class FbDrawable; | ||
32 | class FbPixmap; | ||
33 | class Font; | ||
34 | class Color; | ||
35 | |||
36 | /// wrapper for X GC | ||
37 | class GContext { | ||
38 | public: | ||
39 | /// for FbTk drawable | ||
40 | explicit GContext(const FbTk::FbDrawable &drawable); | ||
41 | /// for X drawable | ||
42 | explicit GContext(Drawable drawable); | ||
43 | |||
44 | virtual ~GContext(); | ||
45 | |||
46 | void setForeground(const FbTk::Color &color); | ||
47 | void setBackground(const FbTk::Color &color); | ||
48 | void setFont(const FbTk::Font &font); | ||
49 | void setClipMask(const FbTk::FbPixmap &pm); | ||
50 | void setClipOrigin(int x, int y); | ||
51 | |||
52 | GC gc() const { return m_gc; } | ||
53 | |||
54 | private: | ||
55 | GC m_gc; | ||
56 | }; | ||
57 | |||
58 | } // end namespace FbTk | ||
59 | |||
60 | #endif // FBTK_GCONTEXT_HH | ||