aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2004-01-11 12:53:46 (GMT)
committerfluxgen <fluxgen>2004-01-11 12:53:46 (GMT)
commit8448a652c4f80c3d7a31a1e9a5a2773db13230da (patch)
treecfd4d04df87e449ed04a98b737c8e6b01f1e4728
parent766a385c831125530ba005735c98c0d3d44a1655 (diff)
downloadfluxbox-8448a652c4f80c3d7a31a1e9a5a2773db13230da.zip
fluxbox-8448a652c4f80c3d7a31a1e9a5a2773db13230da.tar.bz2
fillstyle and fillrule
-rw-r--r--src/FbTk/GContext.hh8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/FbTk/GContext.hh b/src/FbTk/GContext.hh
index 462ea32..6d71cd1 100644
--- a/src/FbTk/GContext.hh
+++ b/src/FbTk/GContext.hh
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22// $Id: GContext.hh,v 1.7 2004/01/09 01:19:48 fluxgen Exp $ 22// $Id: GContext.hh,v 1.8 2004/01/11 12:53:46 fluxgen Exp $
23 23
24#ifndef FBTK_GCONTEXT_HH 24#ifndef FBTK_GCONTEXT_HH
25#define FBTK_GCONTEXT_HH 25#define FBTK_GCONTEXT_HH
@@ -88,6 +88,12 @@ public:
88 inline void setSubwindowMode(int mode) { 88 inline void setSubwindowMode(int mode) {
89 XSetSubwindowMode(m_display, m_gc, mode); 89 XSetSubwindowMode(m_display, m_gc, mode);
90 } 90 }
91 inline void setFillStyle(int style) {
92 XSetFillStyle(m_display, m_gc, style);
93 }
94 inline void setFillRule(int rule) {
95 XSetFillRule(m_display, m_gc, rule);
96 }
91 97
92 void copy(GC gc); 98 void copy(GC gc);
93 void copy(const GContext &gc); 99 void copy(const GContext &gc);