-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinputprompt.h
50 lines (36 loc) · 951 Bytes
/
inputprompt.h
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
#ifndef INPUTPROMPT_H
#define INPUTPROMPT_H
#include <QDialog>
#include <QSettings>
#include <QCommandLineParser>
#include "imageselector.h"
namespace Ui {
class InputPrompt;
}
class InputPrompt : public QDialog
{
Q_OBJECT
public:
explicit InputPrompt(QWidget *parent, QCommandLineParser& parser);
~InputPrompt();
private slots:
void on_imagesSelect_clicked();
void on_outputFolder_clicked();
void on_inputPath_textChanged();
void on_outputPath_textChanged();
void on_loopButton_stateChanged(int arg1);
void on_recurseButton_stateChanged(int arg1);
void on_buttonBox_accepted();
void on_pushButton_clicked();
private:
Ui::InputPrompt *ui;
const QString lastInDir = "last_in";
const QString lastOutDir = "last_out";
QSettings appSettings;
public:
QString inputFilepath;
QString outputFilepath;
bool loop = false;
bool recurse = false;
};
#endif // INPUTPROMPT_H