diff options
author | fluxgen <fluxgen> | 2003-08-27 13:45:11 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2003-08-27 13:45:11 (GMT) |
commit | d4931615fe08bc376b6873a2c002336eb62768ba (patch) | |
tree | 022d38b7c3099723aaa62b50df5756193e090a2d /src/FbTk/GContext.hh | |
parent | 1df3ad4f71cba8cb198f5319834423ef2045ec64 (diff) | |
download | fluxbox-d4931615fe08bc376b6873a2c002336eb62768ba.zip fluxbox-d4931615fe08bc376b6873a2c002336eb62768ba.tar.bz2 |
a X GC wrapper
Diffstat (limited to 'src/FbTk/GContext.hh')
-rw-r--r-- | src/FbTk/GContext.hh | 60 |
1 files changed, 60 insertions, 0 deletions
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 | ||