blob: 9d23dbd4fbcc30e774f2f243ce6361443436a9f8 (
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
51
|
/*
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 PROPERTIESDIALOG_H
#define PROPERTIESDIALOG_H
#include <QModelIndex>
#include "smdialog.h"
class SmTreeModel;
class FilesTreeModel;
class SeriesTreeModel;
class QLabel;
class QSplitter;
class QTreeView;
class QTabWidget;
class QPushButton;
class PropertiesDialog : public SmDialog {
Q_OBJECT
public:
enum NodeType { PictureFileNode, MovieFileNode, ScreenshotNode, DummyNode };
explicit PropertiesDialog(QWidget *parent = 0, Qt::WindowFlags f = 0);
virtual ~PropertiesDialog();
void populate(int seriesPartId);
private slots:
void showPicture(QModelIndex current, QModelIndex previous);
private:
void setupGui();
SmTreeModel *mDisplayModel;
FilesTreeModel *mFilesModel;
SeriesTreeModel *mSeriesModel;
int mCurrentId;
QLabel *mCaption;
QSplitter *mSplitter;
QWidget *mPicTab;
QLabel *mPictureLabel;
QTreeView *mFileView;
QTabWidget *mTab;
QPushButton *mOk;
QPushButton *mCancel;
};
#endif // PROPERTIESDIALOG_H
|