diff options
Diffstat (limited to 'randomtab.h')
-rw-r--r-- | randomtab.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/randomtab.h b/randomtab.h index 12d98c2..a4917a0 100644 --- a/randomtab.h +++ b/randomtab.h @@ -26,6 +26,7 @@ class RandomTab : public QWidget { enum CustomRoles { IdRole = Qt::UserRole + 1, SizeRole = Qt::UserRole + 2, DurationRole = Qt::UserRole + 3, DvdNoRole = Qt::UserRole + 4 }; enum { ColumnCount = 6 }; explicit RandomTab(QWidget *parent = 0); + virtual ~RandomTab(); public slots: void setupModels(); @@ -36,6 +37,8 @@ class RandomTab : public QWidget { private: void setupGui(); + void writeSettings(); + void readSettings(); QStringList validDvdNos(); QComboBox *mGenre1; QComboBox *mGenre2; |