diff options
author | Arno Moeller <am@mindwerk.de> | 2010-07-09 17:47:08 +0200 |
---|---|---|
committer | Arno Moeller <am@mindwerk.de> | 2010-07-09 17:47:08 +0200 |
commit | 4f313fb96ada615b209a6e37832da140abf63b07 (patch) | |
tree | 5ed574d9726bd79dad4c7c6ae52e1995bafc1775 /newmoviewizard.h | |
parent | 36d60fc19f6cbc1a76931479664589544411763b (diff) | |
download | SheMov-4f313fb96ada615b209a6e37832da140abf63b07.tar.gz SheMov-4f313fb96ada615b209a6e37832da140abf63b07.tar.bz2 SheMov-4f313fb96ada615b209a6e37832da140abf63b07.zip |
First version of NewMovieWizard::accept
This version is not tested and may contain some very exiting, new bugs.
But it compiles.
Diffstat (limited to 'newmoviewizard.h')
-rw-r--r-- | newmoviewizard.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/newmoviewizard.h b/newmoviewizard.h index a0f80b4..7c671cd 100644 --- a/newmoviewizard.h +++ b/newmoviewizard.h @@ -31,6 +31,9 @@ class NewMovieWizard : public QWizard { explicit NewMovieWizard(QWidget *parent = 0); void accept(); + signals: + void seriesAdded(const QString series, int seriesPart); + }; class MovieInfoPage : public QWizardPage { @@ -85,6 +88,7 @@ class WizardTreeModel : public SmTreeModel { //data + flags virtual QVariant data(const QModelIndex &index, int role) const; virtual Qt::ItemFlags flags(const QModelIndex &index) const; + QHash<QString, int> files() const; //file types QStringList types() const; |