diff options
author | Arno <am@disconnect.de> | 2010-07-04 11:44:23 +0200 |
---|---|---|
committer | Arno <am@disconnect.de> | 2010-07-04 11:44:23 +0200 |
commit | 7dd8c2dd2dd432dd234c604558620c6861cd1bbd (patch) | |
tree | 8b1abfdf28e9bea78623bb6334f19f4181b36653 /newmoviewizard.h | |
parent | 5dd4fe05df7619fb68356613b698fb373f4fccee (diff) | |
download | SheMov-7dd8c2dd2dd432dd234c604558620c6861cd1bbd.tar.gz SheMov-7dd8c2dd2dd432dd234c604558620c6861cd1bbd.tar.bz2 SheMov-7dd8c2dd2dd432dd234c604558620c6861cd1bbd.zip |
Added actors and genres to NewMovieWizard
Implemented 2 new pages for NewMovieWizard: actors and genres.
Diffstat (limited to 'newmoviewizard.h')
-rw-r--r-- | newmoviewizard.h | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/newmoviewizard.h b/newmoviewizard.h index e28a3a9..a0f80b4 100644 --- a/newmoviewizard.h +++ b/newmoviewizard.h @@ -13,15 +13,17 @@ #include <QHash> #include "smtreemodel.h" +#include "mappingtablewidget.h" class QTreeView; -class WizardTreeModel; -class SmTreeItem; class QLineEdit; class QSpinBox; class QPushButton; class QComboBox; class QCheckBox; +class QStringListModel; +class WizardTreeModel; +class SmTreeItem; class NewMovieWizard : public QWizard { Q_OBJECT @@ -61,6 +63,16 @@ class MovieInfoPage : public QWizardPage { SmTreeItem *mCoversItem; }; +class MovieMappingPage : public QWizardPage { + Q_OBJECT + public: + explicit MovieMappingPage(const QString &table, QWidget *parent = 0); + MappingTableItemModel *model() { return mWidget->model(); } + + private: + MappingTableWidget *mWidget; +}; + class WizardTreeModel : public SmTreeModel { Q_OBJECT public: |