blob: 8dfa7bfb07bc90b0937e1c4242b85732de175c03 (
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
/*
standard Button fo winamp Skin
Copyright (C) 1999 Martin Vogt
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation.
For more information look at the file COPYRIGHT in this package
*/
#include <tqbitmap.h>
#include "waButton.h"
WaButton::WaButton(int mapId) : WaWidget(mapId)
{
_togglable = false;
_toggled = false;
pressed = false;
}
WaButton::~WaButton() {
}
void WaButton::setPixmapUp(int pixId) {
nUpId=pixId;
}
void WaButton::setPixmapDown(int pixId) {
nDownId=pixId;
}
void WaButton::setPixmapUpSelected(int pixId) {
nUpIdSelected=pixId;
}
void WaButton::setPixmapDownSelected(int pixId) {
nDownIdSelected=pixId;
}
void WaButton::paintEvent(TQPaintEvent *) {
paintPixmap(getPixmapId());
}
void WaButton::mousePressEvent(TQMouseEvent* e) {
if (e->button() != Qt::LeftButton) {
// We can't deal with it, but maybe the widget can do something clever
WaWidget::mousePressEvent(e);
}
else {
pressed = true;
update();
}
}
void WaButton::mouseReleaseEvent(TQMouseEvent* e) {
if (!pressed) {
// We're not pressed, so just pass along the mouse event, it's not ours
WaWidget::mouseReleaseEvent(e);
}
else {
pressed = false;
if (TQT_TQRECT_OBJECT(this->rect()).contains(e->pos())){
if (_togglable) {
_toggled = !_toggled;
emit(toggleEvent(_toggled));
}
emit(clicked());
}
}
update();
}
int WaButton::getPixmapId() {
if (_toggled == true) {
if (pressed)
return nDownIdSelected;
else
return nUpIdSelected;
}
else {
if (pressed)
return nDownId;
else
return nUpId;
}
return -1;
}
#include "waButton.moc"
|