aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-08-27 13:45:11 (GMT)
committerfluxgen <fluxgen>2003-08-27 13:45:11 (GMT)
commitd4931615fe08bc376b6873a2c002336eb62768ba (patch)
tree022d38b7c3099723aaa62b50df5756193e090a2d
parent1df3ad4f71cba8cb198f5319834423ef2045ec64 (diff)
downloadfluxbox_pavel-d4931615fe08bc376b6873a2c002336eb62768ba.zip
fluxbox_pavel-d4931615fe08bc376b6873a2c002336eb62768ba.tar.bz2
a X GC wrapper
-rw-r--r--src/FbTk/GContext.cc76
-rw-r--r--src/FbTk/GContext.hh60
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
32namespace FbTk {
33
34GContext::GContext(const FbTk::FbDrawable &drawable):
35 m_gc(XCreateGC(FbTk::App::instance()->display(),
36 drawable.drawable(),
37 0, 0)) {
38}
39
40GContext::GContext(Drawable drawable):
41 m_gc(XCreateGC(FbTk::App::instance()->display(),
42 drawable,
43 0, 0)) {
44}
45
46GContext::~GContext() {
47 if (m_gc)
48 XFreeGC(FbTk::App::instance()->display(), m_gc);
49}
50
51void GContext::setForeground(const FbTk::Color &color) {
52 XSetForeground(FbTk::App::instance()->display(), m_gc,
53 color.pixel());
54}
55
56void GContext::setBackground(const FbTk::Color &color) {
57 XSetBackground(FbTk::App::instance()->display(), m_gc,
58 color.pixel());
59}
60
61/// not implemented!
62void GContext::setFont(const FbTk::Font &font) {
63 //!! TODO
64}
65
66void GContext::setClipMask(const FbTk::FbPixmap &mask) {
67 XSetClipMask(FbTk::App::instance()->display(), m_gc,
68 mask.drawable());
69}
70
71void 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
29namespace FbTk {
30
31class FbDrawable;
32class FbPixmap;
33class Font;
34class Color;
35
36/// wrapper for X GC
37class GContext {
38public:
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
54private:
55 GC m_gc;
56};
57
58} // end namespace FbTk
59
60#endif // FBTK_GCONTEXT_HH