blob: e35e7dbb7655cef796c9574f63c3cdcc827c3f24 (
plain) (
blame)
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
|
#ifndef SETTINGSDIALOG_H
#define SETTINGSDIALOG_H
#include <QDialog>
namespace Ui {
class SettingsDialog;
}
class SettingsDialog : public QDialog
{
Q_OBJECT
public:
explicit SettingsDialog(QWidget *parent = 0);
~SettingsDialog();
private slots:
void on_addDirButton_clicked();
void on_removeDirButton_clicked();
private:
Ui::SettingsDialog *m_ui;
QString m_lastPath;
};
#endif // SETTINGSDIALOG_H
|