1e14fb3f371a134e062d5f282c76a965ea772899
[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 upColumn (int i);
25     void downColumn (int i);
26     void    setupUi ();
27     QSettings& settings;
28     QComboBox* orient;
29     QStringList availableHeaders;
30     QVBoxLayout *headerLayout;
31 };
32
33 #endif // OPTIONDIALOG_H