| 1 |
#ifndef PREFERENCES_H |
| 2 |
#define PREFERENCES_H |
| 3 |
|
| 4 |
#include <QDialog> |
| 5 |
#include <QFileDialog> |
| 6 |
#include <QSettings> |
| 7 |
#include <QMessageBox> |
| 8 |
#include <util.h> |
| 9 |
|
| 10 |
namespace Ui { |
| 11 |
class Preferences; |
| 12 |
} |
| 13 |
|
| 14 |
class Preferences : public QDialog |
| 15 |
{ |
| 16 |
Q_OBJECT |
| 17 |
|
| 18 |
public: |
| 19 |
Preferences(QWidget *parent, QSettings *vagoSettings); |
| 20 |
~Preferences(); |
| 21 |
|
| 22 |
private slots: |
| 23 |
|
| 24 |
void on_buttonBox_accepted(); |
| 25 |
|
| 26 |
void on_pbChooseWorkspace_clicked(); |
| 27 |
|
| 28 |
void on_pbChooseAE_clicked(); |
| 29 |
|
| 30 |
void on_buttonBox_rejected(); |
| 31 |
|
| 32 |
private: |
| 33 |
Ui::Preferences *ui; |
| 34 |
QSettings *vagoSettings; |
| 35 |
}; |
| 36 |
|
| 37 |
#endif // PREFERENCES_H |