/* This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. */ #ifndef NEWMOVIEWIZARD_H #define NEWMOVIEWIZARD_H #include class MovieInfoPage; class MovieMappingPage; class MovieMetadataPage; class NewMovieWizard : public QWizard { Q_OBJECT public: explicit NewMovieWizard(QWidget *parent = nullptr); virtual void accept(); virtual void reject(); MovieInfoPage *infoPage() { return mInfoPage; } MovieMappingPage *actorPage() { return mActorPage; } MovieMappingPage *genrePage() { return mGenrePage; } MovieMetadataPage *metadataPage() { return mMetadataPage; } private: MovieInfoPage *mInfoPage; MovieMappingPage *mActorPage; MovieMappingPage *mGenrePage; MovieMetadataPage *mMetadataPage; }; #endif