cleanup
[tomamp] / tomamp / optiondialog.h
1 #ifndef OPTIONDIALOG_H
2 #define OPTIONDIALOG_H
3
4 #include <QDialog>
5 #include <QSettings>
6
7 class QComboBox;
8 class QVBoxLayout;
9
10 class OptionDialog : public QDialog
11 {
12     Q_OBJECT
13 public:
14     explicit OptionDialog(QWidget *parent, QSettings& set);
15     ~OptionDialog ();
16
17 signals:
18
19 public slots:
20 private slots:
21     void orderControl (QString);
22     void toggleFlip (bool);
23 private:
24     void    setupUi ();
25     QSettings& settings;
26     QComboBox* orient;
27     QStringList availableHeaders;
28     QVBoxLayout *headerLayout;
29 };
30
31 #endif // OPTIONDIALOG_H