forked from KDE/brprint3d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBigButton.cpp
57 lines (45 loc) · 1.68 KB
/
BigButton.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
/*=====================================================================
BRPrint3D, Open Source 3D Printing Host
Copyright (C) 2015 BRPrint3D Authors
This file is part of the BRPrint3D project
BRPrint3D 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, either version 3 of the License, or
(at your option) any later version.
BRPrint3D is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with BRPrint3D. If not, see <http://www.gnu.org/licenses/>.
======================================================================*/
#include "BigButton.h"
#include "ui_BigButton.h"
BigButton::BigButton(QWidget *parent, const QString& name,const QString& iconPath, bool isCheckable) :
QWidget(parent),
ui(new Ui::BigButton)
{
ui->setupUi(this);
ui->label->setText(name);
ui->pushButton->setCheckable(isCheckable);
ui->pushButton->setIcon(QIcon(iconPath));
//The value bellow is the best size that the icon could have on the button
ui->pushButton->setIconSize(QSize(50,50));
connect(ui->pushButton, &QPushButton::clicked, this, &BigButton::clicked);
}
BigButton::~BigButton()
{
delete ui;
}
bool BigButton::isChecked()
{
return ui->pushButton->isChecked();
}
void BigButton::setIcon(const QIcon& icon)
{
ui->pushButton->setIcon(icon);
}
void BigButton::setChecked(bool b)
{
ui->pushButton->setChecked(b);
}