all repos — openbox @ b5963e0e5393e62ecdcdd6df65e5cdf4482276f8

openbox fork - make it a bit more like ryudo

src/buttonwidget.cc (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-

#ifdef HAVE_CONFIG_H
# include "../config.h"
#endif

#include "buttonwidget.hh"
#include "otk/gccache.hh" // otk::BPen

namespace ob {

ButtonWidget::ButtonWidget(otk::Widget *parent,
                           WidgetBase::WidgetType type)
  : otk::Widget(parent),
    WidgetBase(type),
    _pressed(false),
    _button(0)
{
}


ButtonWidget::~ButtonWidget()
{
}


void ButtonWidget::setTextures()
{
  switch (type()) {
  case Type_LeftGrip:
  case Type_RightGrip:
    if (_focused)
      setTexture(_style->gripFocusBackground());
    else
      setTexture(_style->gripUnfocusBackground());
    break;
  case Type_StickyButton:
  case Type_CloseButton:
  case Type_MaximizeButton:
  case Type_IconifyButton:
    if (_pressed) {
      if (_focused)
        setTexture(_style->buttonPressFocusBackground());
      else
        setTexture(_style->buttonPressUnfocusBackground());
    } else {
      if (_focused)
        setTexture(_style->buttonUnpressFocusBackground());
      else
        setTexture(_style->buttonUnpressUnfocusBackground());
    }
    break;
  default:
    assert(false); // there's no other button widgets!
  }
}


void ButtonWidget::setStyle(otk::RenderStyle *style)
{
  otk::Widget::setStyle(style);
  setTextures();

  switch (type()) {
  case Type_LeftGrip:
  case Type_RightGrip:
    setBorderColor(_style->frameBorderColor());
    break;
  case Type_StickyButton:
  case Type_CloseButton:
  case Type_MaximizeButton:
  case Type_IconifyButton:
    break;
  default:
    assert(false); // there's no other button widgets!
  }
}


void ButtonWidget::update()
{
  printf("ButtonWidget::update()\n");
  otk::Widget::update();
}

void ButtonWidget::renderForeground()
{
  otk::PixmapMask *pm;
  int width;
  bool draw = _dirty;

  printf("ButtonWidget::renderForeground()\n");
  otk::Widget::renderForeground();

  if (draw) {
    switch (type()) {
    case Type_StickyButton:
      pm = _style->stickyMask();
      break;
    case Type_CloseButton:
      pm = _style->closeMask();
      break;
    case Type_MaximizeButton:
      pm = _style->maximizeMask();
      break;
    case Type_IconifyButton:
      pm = _style->iconifyMask();
      break;
    case Type_LeftGrip:
    case Type_RightGrip:
      return; // no drawing
    default:
      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();

    otk::RenderColor *color = (_focused ? _style->buttonFocusColor() :
                               _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(), x, y);

    // fill in the clipped region
    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);
    XSetClipOrigin(**otk::display, color->gc(), 0, 0);
  }
}


void ButtonWidget::adjust()
{
  // nothing to adjust. no children.
}


void ButtonWidget::focus()
{
  otk::Widget::focus();
  setTextures();
}


void ButtonWidget::unfocus()
{
  otk::Widget::unfocus();
  setTextures();
}


void ButtonWidget::buttonPressHandler(const XButtonEvent &e)
{
  otk::Widget::buttonPressHandler(e);
  if (_button) return;
  _button = e.button;
  _pressed = true;
  setTextures();
  update();
}


void ButtonWidget::buttonReleaseHandler(const XButtonEvent &e)
{
  otk::Widget::buttonPressHandler(e);
  if (e.button != _button) return;
  _button = 0;
  _pressed = false;
  setTextures();
  update();
}

}