source: s10k/Vago/preferences.h@ 1186

Last change on this file since 1186 was 1047, checked in by s10k, 8 years ago

Added Vago v1.0

File size: 632 bytes
Line 
1#ifndef PREFERENCES_H
2#define PREFERENCES_H
3
4#include <QDialog>
5#include <QFileDialog>
6#include <QSettings>
7#include <QMessageBox>
8
9#include "utilvago.h"
10
11namespace Ui {
12class Preferences;
13}
14
15class Preferences : public QDialog
16{
17 Q_OBJECT
18
19public:
20 Preferences(QWidget *parent, QSettings *vagoSettings);
21 ~Preferences();
22
23public slots:
24 void accept ();
25
26private slots:
27
28 void on_pbChooseWorkspace_clicked();
29
30 void on_pbChooseAE_clicked();
31
32 void on_buttonBox_rejected();
33
34private:
35 Ui::Preferences *ui;
36 QSettings *vagoSettings;
37};
38
39#endif // PREFERENCES_H
Note: See TracBrowser for help on using the repository browser.