-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockWidgetTitleBarButton.cpp
70 lines (54 loc) · 2.06 KB
/
DockWidgetTitleBarButton.cpp
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
#include "DockWidgetTitleBarButton.h"
DockWidgetTitleBarButton::DockWidgetTitleBarButton ( QWidget *parent ) : QAbstractButton ( parent ) {
this->setFocusPolicy ( Qt::NoFocus );
}
void DockWidgetTitleBarButton::enterEvent ( QEvent *event ) {
if ( this->isEnabled () ) {
this->update ();
}
QAbstractButton::enterEvent ( event );
}
void DockWidgetTitleBarButton::leaveEvent ( QEvent *event ) {
if ( this->isEnabled () ) {
this->update ();
}
QAbstractButton::leaveEvent ( event );
}
void DockWidgetTitleBarButton::paintEvent ( QPaintEvent *event ) {
Q_UNUSED ( event )
QPainter *p = new QPainter ( this );
QRect r = this->rect ();
Q_UNUSED ( r )
//QStyleOptionToolButton opt = QStyleOptionToolButton ();
QStyleOptionToolButton *opt = new QStyleOptionToolButton ();
opt->init ( this );
opt->state |= QStyle::State_AutoRaise;
if ( this->isEnabled () && this->underMouse () && !this->isChecked () && !this->isDown () ) {
opt->state |= QStyle::State_Raised;
}
if ( this->isChecked () ) {
opt->state |= QStyle::State_On;
}
if ( this->isDown () ) {
opt->state |= QStyle::State_Sunken;
}
this->style ()->drawPrimitive ( QStyle::PE_PanelButtonTool, opt, p, this );
opt->icon = this->icon ();
opt->subControls = QStyle::SubControls ();
opt->activeSubControls = QStyle::SubControls ();
opt->features = QStyleOptionToolButton::None;
opt->arrowType = Qt::NoArrow;
int size = this->style ()->pixelMetric ( QStyle::PM_SmallIconSize, nullptr, this );
opt->iconSize = QSize ( size, size );
this->style ()->drawComplexControl ( QStyle::CC_ToolButton, opt, p, this );
}
QSize DockWidgetTitleBarButton::sizeHint () const {
this->ensurePolished ();
int margin = this->style ()->pixelMetric ( QStyle::PM_DockWidgetTitleBarButtonMargin, nullptr, this );
if ( this->icon ().isNull () ) {
return QSize ( margin, margin );
}
int iconSize = this->style ()->pixelMetric ( QStyle::PM_SmallIconSize, nullptr, this );
QPixmap pm = this->icon ().pixmap ( iconSize );
return QSize ( pm.width () + margin, pm.height () + margin );
}