This repository has been archived by the owner on Oct 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
/
CropDialog.cpp
139 lines (118 loc) · 5.26 KB
/
CropDialog.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/*
* Copyright (C) 2013-2018 Ofer Kashayov <oferkv@live.com>
* This file is part of Phototonic Image Viewer.
*
* Phototonic 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.
*
* Phototonic 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 Phototonic. If not, see <http://www.gnu.org/licenses/>.
*/
#include "CropDialog.h"
#include "Settings.h"
CropDialog::CropDialog(QWidget *parent, ImageViewer *imageViewer) : QDialog(parent) {
setWindowTitle(tr("Cropping"));
setWindowIcon(QIcon(":/images/crop.png"));
resize(350, 100);
if (Settings::dialogLastX)
move(Settings::dialogLastX, Settings::dialogLastY);
this->imageViewer = imageViewer;
QHBoxLayout *buttonsHbox = new QHBoxLayout;
QPushButton *resetButton = new QPushButton(tr("Reset"));
connect(resetButton, SIGNAL(clicked()), this, SLOT(reset()));
QPushButton *okButton = new QPushButton(tr("OK"));
connect(okButton, SIGNAL(clicked()), this, SLOT(ok()));
okButton->setDefault(true);
buttonsHbox->addWidget(resetButton, 0, Qt::AlignLeft);
buttonsHbox->addWidget(okButton, 0, Qt::AlignRight);
QSlider *topSlide = new QSlider(Qt::Horizontal);
topSlide->setTickPosition(QSlider::TicksAbove);
topSlide->setTickInterval(10);
topSlide->setTracking(false);
QSlider *bottomSlide = new QSlider(Qt::Horizontal);
bottomSlide->setTickPosition(QSlider::TicksAbove);
bottomSlide->setTickInterval(10);
bottomSlide->setTracking(false);
QSlider *leftSlide = new QSlider(Qt::Horizontal);
leftSlide->setTickPosition(QSlider::TicksAbove);
leftSlide->setTickInterval(10);
leftSlide->setTracking(false);
QSlider *rightSlide = new QSlider(Qt::Horizontal);
rightSlide->setTickPosition(QSlider::TicksAbove);
rightSlide->setTickInterval(10);
rightSlide->setTracking(false);
topSpinBox = new QSpinBox;
topSpinBox->setPrefix("% ");
bottomSpinBox = new QSpinBox;
bottomSpinBox->setPrefix("% ");
leftSpinBox = new QSpinBox;
leftSpinBox->setPrefix("% ");
rightSpinBox = new QSpinBox;
rightSpinBox->setPrefix("% ");
QLabel *leftLab = new QLabel(tr("Left"));
QLabel *rightLab = new QLabel(tr("Right"));
QLabel *topLab = new QLabel(tr("Top"));
QLabel *bottomLab = new QLabel(tr("Bottom"));
QGridLayout *mainGbox = new QGridLayout;
mainGbox->addWidget(leftLab, 0, 0, 1, 1);
mainGbox->addWidget(leftSlide, 0, 1, 1, 1);
mainGbox->addWidget(leftSpinBox, 0, 2, 1, 1);
mainGbox->addWidget(rightLab, 1, 0, 1, 1);
mainGbox->addWidget(rightSlide, 1, 1, 1, 1);
mainGbox->addWidget(rightSpinBox, 1, 2, 1, 1);
mainGbox->addWidget(topLab, 2, 0, 1, 1);
mainGbox->addWidget(topSlide, 2, 1, 1, 1);
mainGbox->addWidget(topSpinBox, 2, 2, 1, 1);
mainGbox->addWidget(bottomLab, 3, 0, 1, 1);
mainGbox->addWidget(bottomSlide, 3, 1, 1, 1);
mainGbox->addWidget(bottomSpinBox, 3, 2, 1, 1);
QVBoxLayout *mainVbox = new QVBoxLayout;
mainVbox->addLayout(mainGbox);
mainVbox->addLayout(buttonsHbox);
setLayout(mainVbox);
topSpinBox->setRange(0, 100);
bottomSpinBox->setRange(0, 100);
leftSpinBox->setRange(0, 100);
rightSpinBox->setRange(0, 100);
topSlide->setRange(0, 100);
bottomSlide->setRange(0, 100);
leftSlide->setRange(0, 100);
rightSlide->setRange(0, 100);
connect(topSlide, SIGNAL(valueChanged(int)), topSpinBox, SLOT(setValue(int)));
connect(bottomSlide, SIGNAL(valueChanged(int)), bottomSpinBox, SLOT(setValue(int)));
connect(leftSlide, SIGNAL(valueChanged(int)), leftSpinBox, SLOT(setValue(int)));
connect(rightSlide, SIGNAL(valueChanged(int)), rightSpinBox, SLOT(setValue(int)));
connect(topSpinBox, SIGNAL(valueChanged(int)), topSlide, SLOT(setValue(int)));
connect(bottomSpinBox, SIGNAL(valueChanged(int)), bottomSlide, SLOT(setValue(int)));
connect(leftSpinBox, SIGNAL(valueChanged(int)), leftSlide, SLOT(setValue(int)));
connect(rightSpinBox, SIGNAL(valueChanged(int)), rightSlide, SLOT(setValue(int)));
connect(topSpinBox, SIGNAL(valueChanged(int)), this, SLOT(applyCrop(int)));
connect(bottomSpinBox, SIGNAL(valueChanged(int)), this, SLOT(applyCrop(int)));
connect(leftSpinBox, SIGNAL(valueChanged(int)), this, SLOT(applyCrop(int)));
connect(rightSpinBox, SIGNAL(valueChanged(int)), this, SLOT(applyCrop(int)));
}
void CropDialog::applyCrop(int) {
Settings::cropLeftPercent = leftSpinBox->value();
Settings::cropTopPercent = topSpinBox->value();
Settings::cropWidthPercent = rightSpinBox->value();
Settings::cropHeightPercent = bottomSpinBox->value();
imageViewer->refresh();
}
void CropDialog::ok() {
Settings::dialogLastX = pos().x();
Settings::dialogLastY = pos().y();
accept();
}
void CropDialog::reset() {
leftSpinBox->setValue(0);
rightSpinBox->setValue(0);
topSpinBox->setValue(0);
bottomSpinBox->setValue(0);
}