summaryrefslogtreecommitdiffstats
path: root/coverarchiveeditor.h
diff options
context:
space:
mode:
authorArno <am@disconnect.de>2010-05-29 17:05:19 +0200
committerArno <am@disconnect.de>2010-05-29 17:09:07 +0200
commit253a4c77b1d7d845e3da367f6a58e4987168b7e6 (patch)
treec28ee3ff9b555312b6580280e15e298c668c08f4 /coverarchiveeditor.h
parent482e7371d34477bd43d44c7b905354774de5d641 (diff)
downloadSheMov-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 'coverarchiveeditor.h')
-rw-r--r--coverarchiveeditor.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/coverarchiveeditor.h b/coverarchiveeditor.h
deleted file mode 100644
index e30037a..0000000
--- a/coverarchiveeditor.h
+++ /dev/null
@@ -1,50 +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 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