diff options
Diffstat (limited to 'src/FbTk/GContext.hh')
-rw-r--r-- | src/FbTk/GContext.hh | 8 |
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); |