all repos — fluxbox @ 8448a652c4f80c3d7a31a1e9a5a2773db13230da

custom fork of the fluxbox windowmanager

fillstyle and fillrule
fluxgen fluxgen
commit

8448a652c4f80c3d7a31a1e9a5a2773db13230da

parent

766a385c831125530ba005735c98c0d3d44a1655

1 files changed, 7 insertions(+), 1 deletions(-)

jump to
M src/FbTk/GContext.hhsrc/FbTk/GContext.hh

@@ -19,7 +19,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: GContext.hh,v 1.7 2004/01/09 01:19:48 fluxgen Exp $ +// $Id: GContext.hh,v 1.8 2004/01/11 12:53:46 fluxgen Exp $ #ifndef FBTK_GCONTEXT_HH #define FBTK_GCONTEXT_HH

@@ -87,6 +87,12 @@ }

inline void setSubwindowMode(int mode) { XSetSubwindowMode(m_display, m_gc, mode); + } + inline void setFillStyle(int style) { + XSetFillStyle(m_display, m_gc, style); + } + inline void setFillRule(int rule) { + XSetFillRule(m_display, m_gc, rule); } void copy(GC gc);