summaryrefslogtreecommitdiffstats
path: root/moviepropertiesdialog.h
blob: 63b03bfa94487fd9c70e974b2fdd31942ec099f5 (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
#ifndef MOVIEPROPERTIESDIALOG_H
#define MOVIEPROPERTIESDIALOG_H

#include <QDialog>

class QLineEdit;
class QRadioButton;
class SmView;
class QStandardItemModel;

class MoviePropertiesDialog : public QDialog {
    public:
        explicit MoviePropertiesDialog(QWidget *parent = nullptr);
        void setPartsId(int id);

    private:
        void setupDialog();
        QLineEdit *mSeriesNameLE;
        QLineEdit *mSubtitleLE;
        QLineEdit *mCommentLE;
        QLineEdit *mReleaseYearLE;
        QLineEdit *mSeriesPartLE;
        QRadioButton *mTorrentRB;
        QRadioButton *mUsenetRB;
        SmView *mActorV;
        QStandardItemModel *mActorM;
        SmView *mGenreV;
        QStandardItemModel *mGenreM;
        int mSeriesPartsId;
};

#endif // MOVIEPROPERTIESDIALOG_H