-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwidthbutton.cpp
More file actions
64 lines (55 loc) · 2.04 KB
/
widthbutton.cpp
File metadata and controls
64 lines (55 loc) · 2.04 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
63
64
/*
Copyright 2017 SillyLossy.
This program is free software; you can redistribute it and/or
modify it under the terms of the Lesser GNU General Public License
as published by the Free Software Foundation; either version 3
of the License, or (at your option) any later version.
This program 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 Lesser GNU General Public License for more details.
You should have received a copy of the Lesser GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <QMenu>
#include <QWidgetAction>
#include "widthbutton.h"
#include "paintarea.h"
#include "mainwindow.h"
WidthButton::WidthButton(MainWindow* parent) : m_parent(parent), m_widthSlider(new QSlider)
{
connect(this, &QToolButton::clicked, this, &WidthButton::setWidthSliderValue);
setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
setPopupMode(QToolButton::InstantPopup);
auto menu = new QMenu();
auto action = new QWidgetAction(menu);
action->setDefaultWidget(m_widthSlider);
menu->addAction(action);
setMenu(menu);
m_widthSlider->setMinimum(PaintArea::MIN_PEN_WIDTH);
m_widthSlider->setMaximum(PaintArea::MAX_PEN_WIDTH);
m_widthSlider->setMinimumSize(150, 15);
m_widthSlider->setOrientation(Qt::Horizontal);
//m_widthSlider->setWindowFlag(Qt::Popup);
connect(m_widthSlider, &QSlider::valueChanged, this, &WidthButton::setWidthText);
QIcon icon;
icon.addFile(":/icons/lines.png");
setIcon(icon);
setWidthText(m_parent->paintArea()->pen().width());
}
WidthButton::~WidthButton()
{
delete m_widthSlider;
}
QSlider* WidthButton::widthSlider() const
{
return m_widthSlider;
}
void WidthButton::setWidthSliderValue()
{
m_widthSlider->setValue(m_parent->paintArea()->pen().width());
}
void WidthButton::setWidthText(int value)
{
setText(QStringLiteral("Pen width: ") + QString::number(value) + QStringLiteral(" px "));
}