diff options
author | am <am@f440f766-f032-0410-8965-dc7d17de2ca0> | 2009-07-22 18:44:02 +0000 |
---|---|---|
committer | am <am@f440f766-f032-0410-8965-dc7d17de2ca0> | 2009-07-22 18:44:02 +0000 |
commit | 0e3e202c90e3ccb80310087409936c00189f0cea (patch) | |
tree | a4a38c32e761f024e2dfad6a59097cff15472b9e /coverarchiveeditor.h | |
parent | 84ed109c159dcbd0c9395717d54599e902060b26 (diff) | |
download | SheMov-0e3e202c90e3ccb80310087409936c00189f0cea.tar.gz SheMov-0e3e202c90e3ccb80310087409936c00189f0cea.tar.bz2 SheMov-0e3e202c90e3ccb80310087409936c00189f0cea.zip |
-Finished CoverArchiveEditor (finally, don't like that piece of code, too complicated)
-It's now possible to manually add a movie w/o a file
-Some usability fixes
git-svn-id: file:///var/svn/repos2/shemov/trunk@394 f440f766-f032-0410-8965-dc7d17de2ca0
Diffstat (limited to 'coverarchiveeditor.h')
-rw-r--r-- | coverarchiveeditor.h | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/coverarchiveeditor.h b/coverarchiveeditor.h new file mode 100644 index 0000000..e30037a --- /dev/null +++ b/coverarchiveeditor.h @@ -0,0 +1,50 @@ +/* + 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 <QDialog> +#include <QList> +#include <QVariant> + +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<QVariant> mCoverList; + QList<QString> mAddedCovers; + int mMovId; + +}; + +#endif |