openbox/src/buttonwidget.cc

175 lines
3.6 KiB
C++
Raw Normal View History

2002-12-18 11:35:26 +00:00
// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
#ifdef HAVE_CONFIG_H
# include "../config.h"
#endif
#include "buttonwidget.hh"
2002-12-27 10:07:57 +00:00
#include "otk/gccache.hh" // otk::BPen
2002-12-18 11:35:26 +00:00
namespace ob {
OBButtonWidget::OBButtonWidget(otk::OtkWidget *parent,
OBWidget::WidgetType type)
: otk::OtkWidget(parent),
OBWidget(type),
_pressed(false),
_button(0)
2002-12-18 11:35:26 +00:00
{
}
OBButtonWidget::~OBButtonWidget()
{
}
void OBButtonWidget::setTextures()
{
switch (type()) {
case Type_LeftGrip:
case Type_RightGrip:
if (_focused)
setTexture(_style->getGripFocus());
else
setTexture(_style->getGripUnfocus());
break;
case Type_StickyButton:
case Type_CloseButton:
case Type_MaximizeButton:
case Type_IconifyButton:
if (_pressed) {
if (_focused)
setTexture(_style->getButtonPressedFocus());
else
setTexture(_style->getButtonPressedUnfocus());
} else {
if (_focused)
setTexture(_style->getButtonFocus());
else
setTexture(_style->getButtonUnfocus());
}
break;
default:
assert(false); // there's no other button widgets!
}
}
2002-12-18 11:35:26 +00:00
void OBButtonWidget::setStyle(otk::Style *style)
{
otk::OtkWidget::setStyle(style);
setTextures();
2002-12-18 11:35:26 +00:00
switch (type()) {
case Type_LeftGrip:
case Type_RightGrip:
setBorderColor(_style->getBorderColor());
break;
case Type_StickyButton:
case Type_CloseButton:
case Type_MaximizeButton:
case Type_IconifyButton:
2002-12-18 11:35:26 +00:00
break;
default:
assert(false); // there's no other button widgets!
2002-12-18 11:35:26 +00:00
}
}
2002-12-27 10:07:57 +00:00
void OBButtonWidget::update()
{
otk::PixmapMask *pm;
int width;
2002-12-27 16:29:32 +00:00
bool draw = _dirty;
2002-12-27 10:07:57 +00:00
otk::OtkWidget::update();
2002-12-27 16:29:32 +00:00
if (draw) {
switch (type()) {
case Type_StickyButton:
pm = _style->getStickyButtonMask();
break;
case Type_CloseButton:
pm = _style->getCloseButtonMask();
break;
case Type_MaximizeButton:
pm = _style->getMaximizeButtonMask();
break;
case Type_IconifyButton:
pm = _style->getIconifyButtonMask();
break;
case Type_LeftGrip:
case Type_RightGrip:
return; // no drawing
default:
assert(false); // there's no other button widgets!
}
2002-12-27 10:07:57 +00:00
2002-12-27 16:29:32 +00:00
if (pm->mask == None) return; // no mask for the button, leave it empty
2002-12-27 10:07:57 +00:00
2002-12-27 16:29:32 +00:00
width = _rect.width();
2002-12-27 10:07:57 +00:00
2002-12-27 16:29:32 +00:00
otk::BPen pen(_focused ? *_style->getButtonPicFocus() :
*_style->getButtonPicUnfocus());
// set the clip region
XSetClipMask(otk::OBDisplay::display, pen.gc(), pm->mask);
XSetClipOrigin(otk::OBDisplay::display, pen.gc(),
(width - pm->w)/2, (width - pm->h)/2);
// fill in the clipped region
XFillRectangle(otk::OBDisplay::display, _window, pen.gc(),
(width - pm->w)/2, (width - pm->h)/2,
(width + pm->w)/2, (width + pm->h)/2);
// unset the clip region
XSetClipMask(otk::OBDisplay::display, pen.gc(), None);
XSetClipOrigin(otk::OBDisplay::display, pen.gc(), 0, 0);
}
2002-12-27 10:07:57 +00:00
}
void OBButtonWidget::adjust()
{
// XXX: adjust shit
}
void OBButtonWidget::focus()
2002-12-18 11:35:26 +00:00
{
otk::OtkWidget::focus();
setTextures();
}
2002-12-18 11:35:26 +00:00
void OBButtonWidget::unfocus()
{
otk::OtkWidget::unfocus();
setTextures();
}
void OBButtonWidget::buttonPressHandler(const XButtonEvent &e)
{
OtkWidget::buttonPressHandler(e);
if (_button) return;
_button = e.button;
_pressed = true;
setTextures();
update();
}
void OBButtonWidget::buttonReleaseHandler(const XButtonEvent &e)
{
OtkWidget::buttonPressHandler(e);
if (e.button != _button) return;
_button = 0;
_pressed = false;
setTextures();
update();
}
2002-12-18 11:35:26 +00:00
}