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
|
/*
* Copyright (c) 2012 Tobias Markmann
* Licensed under the simplified BSD license.
* See Documentation/Licenses/BSD-simplified.txt for more information.
*/
#include "QtCloseButton.h"
#include <QMouseEvent>
#include <QPainter>
#include <QStyle>
#include <QStyleOption>
namespace Swift {
QtCloseButton::QtCloseButton(QWidget *parent) : QAbstractButton(parent) {
lightPixmap = QPixmap(12,12);
lightPixmap.fill(QColor(0,0,0,0));
QStyleOption opt;
opt.init(this);
opt.state = QStyle::State(0);
opt.state |= QStyle::State_MouseOver;
QPainter lightPixmapPainter(&lightPixmap);
style()->drawPrimitive(QStyle::PE_IndicatorTabClose, &opt, &lightPixmapPainter);
darkPixmap = QPixmap(12,12);
darkPixmap.fill(QColor(0,0,0,0));
opt.init(this);
opt.state = QStyle::State(0);
QPainter darkPixmapPainter(&darkPixmap);
style()->drawPrimitive(QStyle::PE_IndicatorTabClose, &opt, &darkPixmapPainter);
}
QSize QtCloseButton::sizeHint() const {
return QSize(width(), height());
}
bool QtCloseButton::event(QEvent *e) {
if (e->type() == QEvent::Enter || e->type() == QEvent::Leave) {
update();
}
return QAbstractButton::event(e);
}
void QtCloseButton::paintEvent(QPaintEvent *) {
QPainter painter(this);
painter.setRenderHint(QPainter::HighQualityAntialiasing);
if (underMouse()) {
painter.drawPixmap(0, 0, height(), height(), darkPixmap);
} else {
painter.drawPixmap(0, 0, height(), height(), lightPixmap);
}
}
}
|