diff options
author | Arno <am@disconnect.de> | 2010-05-29 17:05:19 +0200 |
---|---|---|
committer | Arno <am@disconnect.de> | 2010-05-29 17:09:07 +0200 |
commit | 253a4c77b1d7d845e3da367f6a58e4987168b7e6 (patch) | |
tree | c28ee3ff9b555312b6580280e15e298c668c08f4 /editarchiveitemdialog.h | |
parent | 482e7371d34477bd43d44c7b905354774de5d641 (diff) | |
download | SheMov-253a4c77b1d7d845e3da367f6a58e4987168b7e6.tar.gz SheMov-253a4c77b1d7d845e3da367f6a58e4987168b7e6.tar.bz2 SheMov-253a4c77b1d7d845e3da367f6a58e4987168b7e6.zip |
Get rid of obsolete classes
Get rid of EditArchiveItemDialog and CoverArchiveEditor. The
functionality of the classes is implemented in ArchiveItemEditDialog.
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 - |