diff options
Diffstat (limited to 'editarchiveitemdialog.h')
-rw-r--r-- | editarchiveitemdialog.h | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/editarchiveitemdialog.h b/editarchiveitemdialog.h deleted file mode 100644 index 2cf4a2a..0000000 --- a/editarchiveitemdialog.h +++ /dev/null @@ -1,62 +0,0 @@ -/* - 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 EDITARCHIVEITEMDIALOG_H -#define EDITARCHIVEITEMDIALOG_H - -#include <QDialog> -#include <QHash> -#include <QVariant> - -class ListModel; -class MovieModel; -class QLineEdit; -class QComboBox; -class QSpinBox; -class QTextEdit; -class QPushButton; -class QModelIndex; -class QTreeView; -class FileInfoModel; -class ActorWidget; -class ActorModel; - -class EditArchiveItemDialog : public QDialog { - Q_OBJECT - public: - EditArchiveItemDialog(ListModel *genre, ListModel *actors, MovieModel *movies, QWidget *parent = 0, Qt::WindowFlags f = 0); - ~EditArchiveItemDialog() {}; - void setMovie(const QModelIndex &movie); - - private slots: - void addActor(const QString &actor); - void updateMovie(); - - private: - void setMovieInfo(const QModelIndex &movie); - ListModel *mGenreModel; - ListModel *mActorsModel; - ActorModel *mCurrentActors; - FileInfoModel *mFileInfoModel; - MovieModel *mMovieModel; - QComboBox *mGenre; - QComboBox *mActors; - QTreeView *mMovieInfo; - ActorWidget *mActorsDisplay; - QSpinBox *mQuality; - QSpinBox *mSeriesNo; - QSpinBox *mPartNo; - QSpinBox *mDvd; - QPushButton *mUpdate; - QPushButton *mClose; - QLineEdit *mTitle; - QList<QVariant> mCovers; - int mMovieId; -}; - -#endif - |