all repos — openbox @ 17d63184998b747e1a0554dc4364a36238b039e1

openbox fork - make it a bit more like ryudo

src/backgroundwidget.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
// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-

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

#include "backgroundwidget.hh"

namespace ob {

BackgroundWidget::BackgroundWidget(otk::Widget *parent,
                                   WidgetBase::WidgetType type)
  : otk::Widget(parent),
    WidgetBase(type)
{
}


BackgroundWidget::~BackgroundWidget()
{
}


void BackgroundWidget::setTextures()
{
  switch (type()) {
  case Type_Titlebar:
    if (_focused)
      setTexture(_style->getTitleFocus());
    else
      setTexture(_style->getTitleUnfocus());
    break;
  case Type_Handle:
    if (_focused)
      setTexture(_style->getHandleFocus());
    else
      setTexture(_style->getHandleUnfocus());
    break;
  case Type_Plate:
    if (_focused)
      setBorderColor(&_style->getFrameFocus()->color());
    else
      setBorderColor(&_style->getFrameUnfocus()->color());
    break;
  default:
    assert(false); // there's no other background widgets!
  }
}


void BackgroundWidget::setStyle(otk::Style *style)
{
  Widget::setStyle(style);
  setTextures();
  switch (type()) {
  case Type_Titlebar:
  case Type_Handle:
    setBorderColor(_style->getBorderColor());
    break;
  case Type_Plate:
    break;
  default:
    assert(false); // there's no other background widgets!
  }
}


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


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


void BackgroundWidget::adjust()
{
  // nothing to adjust here. its done in Frame::adjustSize
}

}