/* 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 COVERARCHIVEEDITOR_H #define COVERARCHIVEEDITOR_H #include #include #include class MovieModel; class QComboBox; class QPushButton; class QModelIndex; class CoverItem; class CoverArchiveEditor : public QDialog { Q_OBJECT public: CoverArchiveEditor(MovieModel *model, QWidget *parent = 0, Qt::WindowFlags f = 0); ~CoverArchiveEditor() {}; void setMovie(const QModelIndex &movie); public slots: void accept(); private slots: void addCover(); private: CoverItem coverItem(const QString &path, const QString &type) const; CoverItem realItem(const QString &filename, const QString &type) const; MovieModel *mModel; QComboBox *mFront; QComboBox *mBack; QComboBox *mCovers; QPushButton *mAddCover; QPushButton *mClose; QPushButton *mUpdate; QList mCoverList; QList mAddedCovers; int mMovId; }; #endif