Added help for settings dialog.
[speedfreak] / Client / helpsettingsdialog.h
1 #ifndef HELPSETTINGSDIALOG_H
2 #define HELPSETTINGSDIALOG_H
3
4 #include <QDialog>
5
6 namespace Ui {
7     class HelpSettingsDialog;
8 }
9
10 class HelpSettingsDialog : public QDialog {
11     Q_OBJECT
12 public:
13     HelpSettingsDialog(QWidget *parent = 0);
14     ~HelpSettingsDialog();
15
16 protected:
17     void changeEvent(QEvent *e);
18
19 private:
20     Ui::HelpSettingsDialog *ui;
21     int pageCounter;
22
23 private slots:
24     void on_pushButtonLast_clicked();
25     void on_pushButtonNext_clicked();
26 };
27
28 #endif // HELPSETTINGSDIALOG_H