blob: ac9b88e45726381d130014383e50846b585655fc (
plain)
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
|
#ifndef PREFERENCESDIALOG_H
#define PREFERENCESDIALOG_H
#include <QDialog>
#include "ui_preferencesDialog.h"
// set configuration options in the program
class PreferencesDialog : public QDialog {
Q_OBJECT
public:
PreferencesDialog();
private:
Ui::preferencesDialog ui;
QDialog::DialogCode ret_value = QDialog::Rejected;
void setupPathsTab();
private slots:
void dbPathDialog();
void close();
void apply();
void reload();
};
#endif
|