ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/s10k/Vago/preferences.h
Revision: 771
Committed: Sun Mar 31 19:02:16 2013 UTC (12 years, 6 months ago) by s10k
Content type: text/x-chdr
Original Path: Vago/trunk/Vago/preferences.h
File size: 625 byte(s)
Log Message:

File Contents

# Content
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