summaryrefslogtreecommitdiffstats
path: root/addmoviewizard.h
diff options
context:
space:
mode:
Diffstat (limited to 'addmoviewizard.h')
-rw-r--r--addmoviewizard.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/addmoviewizard.h b/addmoviewizard.h
index adc293c..ba4816e 100644
--- a/addmoviewizard.h
+++ b/addmoviewizard.h
@@ -14,6 +14,7 @@
class QLineEdit;
class QSpinBox;
class QComboBox;
+class QPushButton;
class ActorWidget;
class AddMovieWizard : public QWizard {
@@ -58,4 +59,22 @@ class MovieGenrePage : public QWizardPage {
QComboBox *mGenre;
};
+class MovieCoverPage : public QWizardPage {
+ Q_OBJECT
+ public:
+ explicit MovieCoverPage(QWidget *parent = 0);
+
+ private slots:
+ void selectFile(QWidget *lineEdit);
+
+ private:
+ QLineEdit *mFrontCover;
+ QLineEdit *mBackCover;
+ QLineEdit *mGeneralCover;
+ QPushButton *mSelectFront;
+ QPushButton *mSelectBack;
+ QPushButton *mSelectGeneral;
+ QString mLastOpenedDir;
+};
+
#endif