summaryrefslogtreecommitdiff
path: root/src/buttonwidget.cc
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-01-23 02:08:04 +0000
committerDana Jansens <danakj@orodu.net>2003-01-23 02:08:04 +0000
commitb99508df011eaf8a264bf5725ac8849f0782ec7b (patch)
tree25d9ec430c8cbf9ac2cc139cda0da32948fd4810 /src/buttonwidget.cc
parente64d90be4d5b86a497ed8f03c6ba40512765e239 (diff)
bitmap masks return!
Diffstat (limited to 'src/buttonwidget.cc')
-rw-r--r--src/buttonwidget.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/buttonwidget.cc b/src/buttonwidget.cc
index 53a7ffd5..534bdc84 100644
--- a/src/buttonwidget.cc
+++ b/src/buttonwidget.cc
@@ -113,6 +113,7 @@ void ButtonWidget::renderForeground()
assert(false); // there's no other button widgets!
}
+ assert(pm->mask);
if (pm->mask == None) return; // no mask for the button, leave it empty
width = _rect.width();
@@ -121,14 +122,13 @@ void ButtonWidget::renderForeground()
_style->buttonUnfocusColor());
// set the clip region
+ int x = (width - pm->w) / 2, y = (width - pm->h) / 2;
XSetClipMask(**otk::display, color->gc(), pm->mask);
- XSetClipOrigin(**otk::display, color->gc(),
- (width - pm->w)/2, (width - pm->h)/2);
+ XSetClipOrigin(**otk::display, color->gc(), x, y);
// fill in the clipped region
- XFillRectangle(**otk::display, _window, color->gc(),
- (width - pm->w)/2, (width - pm->h)/2,
- (width + pm->w)/2, (width + pm->h)/2);
+ XFillRectangle(**otk::display, _surface->pixmap(), color->gc(), x, y,
+ x + pm->w, y + pm->h);
// unset the clip region
XSetClipMask(**otk::display, color->gc(), None);