-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpicbutton.cpp
More file actions
62 lines (53 loc) · 1.24 KB
/
picbutton.cpp
File metadata and controls
62 lines (53 loc) · 1.24 KB
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
#include "picbutton.h"
picButton::picButton(QWidget *parent)
{
}
void picButton::SetIcons(const QString &normal, const QString &hover, const QString &pressed)
{
m_normal = normal;
m_hover = hover;
m_pressed = pressed;
QPixmap tmpPixmap;
tmpPixmap.load(normal);
this->resize(tmpPixmap.size());
this->setIcon(tmpPixmap);
this->setIconSize(tmpPixmap.size());
}
bool picButton::event(QEvent *e)
{
switch (e->type()) {
case QEvent::Enter:
setHover();
break;
case QEvent::Leave:
setNormalIcon();
break;
case QEvent::MouseButtonPress:
setPressed();
break;
case QEvent::MouseButtonRelease:
setNormalIcon();
break;
default:
break;
}
return QPushButton::event(e);
}
void picButton::setNormalIcon()
{
QPixmap tmpPixmap;
tmpPixmap.load(m_normal);
this->setIcon(tmpPixmap);
}
void picButton::setHover()
{
QPixmap tmpPixmap;
tmpPixmap.load(m_hover);
this->setIcon(tmpPixmap);
}
void picButton::setPressed()
{
QPixmap tmpPixmap;
tmpPixmap.load(m_pressed);
this->setIcon(tmpPixmap);
}