blob: e7f7e732086f185843b4215528cae5a8322af46f (
plain)
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 {
OBBackgroundWidget::OBBackgroundWidget(otk::OtkWidget *parent,
OBWidget::WidgetType type)
: otk::OtkWidget(parent),
OBWidget(type)
{
}
OBBackgroundWidget::~OBBackgroundWidget()
{
}
void OBBackgroundWidget::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 OBBackgroundWidget::setStyle(otk::Style *style)
{
OtkWidget::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 OBBackgroundWidget::focus()
{
otk::OtkWidget::focus();
setTextures();
}
void OBBackgroundWidget::unfocus()
{
otk::OtkWidget::unfocus();
setTextures();
}
void OBBackgroundWidget::adjust()
{
// nothing to adjust here. its done in OBFrame::adjustSize
}
}
|