Added settings dialog
[speedfreak] / Client / settingsdialog.h
1 #ifndef SETTINGSDIALOG_H
2 #define SETTINGSDIALOG_H
3
4 #include <QDialog>
5
6 #include "instructionsdialog.h"
7
8 namespace Ui {
9     class SettingsDialog;
10 }
11
12 class SettingsDialog : public QDialog {
13     Q_OBJECT
14 public:
15     SettingsDialog(QWidget *parent = 0);
16     ~SettingsDialog();
17
18 protected:
19     void changeEvent(QEvent *e);
20
21 private:
22     Ui::SettingsDialog *ui;
23     InstructionsDialog *instructionsDialog;
24
25 private slots:
26     void on_pushButtonHelp_clicked();
27 };
28
29 #endif // SETTINGSDIALOG_H