blob: e30037a0231a54da4c5688a6dd9670ec169e9ad6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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
|