-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainwindow.cpp
62 lines (52 loc) · 1.59 KB
/
mainwindow.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
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "QFileDialog"
#include <QMessageBox>
static QString filenameFromPath(QString filepath);
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
// imageLabel = ui->imageLabel;
// loadImageButton = ui->loadImageButton;
// exportButton = ui->exportButton;
connect(ui->loadImageButton, SIGNAL(clicked(bool)), this, SLOT(showLoadImageDialog()));
connect(ui->exportButton, SIGNAL(clicked()), this, SLOT(showExportFileDialog()));
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::open()
{
showLoadImageDialog();
}
void MainWindow::showLoadImageDialog()
{
QString filepath = QFileDialog::getOpenFileName(this, tr("Load image file"), QDir::currentPath());
if(!filepath.isEmpty()) {
this->setImage(filepath);
}
}
void MainWindow::showExportFileDialog()
{
QString filepath = QFileDialog::getSaveFileName(this, tr("Export file to..."), QDir::currentPath(), "PNG");
if (!filepath.isEmpty()) {
ui->imageLabel->getImage()->save(filepath);
}
}
void MainWindow::setImage(QString filepath)
{
QImage tempImage(filepath);
if (tempImage.isNull()) {
QMessageBox::information(this, tr("Image Viewer"), tr("Fail to load %1").arg(filepath));
return;
}
ui->imageLabel->setImage(&tempImage);
this->filename = filenameFromPath(filepath);
}
static QString filenameFromPath(QString filepath){
int index = filepath.lastIndexOf(QRegExp("[\\/]"));
return filepath.right(filepath.length() - index - 1);
}