/* 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 MOVIEMETADATAPAGE_H #define MOVIEMETADATAPAGE_H #include class MetadataEditorWidget; class QCheckBox; class MovieMetadataPage : public QWizardPage { Q_OBJECT public: explicit MovieMetadataPage(QWidget *parent = nullptr); MetadataEditorWidget *widget() { return mWidget; } virtual void initializePage(); virtual void setGuessedSubject(const QString subject); private: void setupGui(); /* defined in archiveview.h */ MetadataEditorWidget *mWidget; QCheckBox *mMetadataEnabled; QString mGuessedSubject; }; #endif // MOVIEMETADATAPAGE_H