summaryrefslogtreecommitdiffstats
path: root/archiveview.h
diff options
context:
space:
mode:
authorArno <am@disconnect.de>2013-07-09 12:18:21 +0200
committerArno <am@disconnect.de>2013-07-09 12:18:21 +0200
commitde9d8a08fe5e85cdb599022261e07e27b7646f6c (patch)
tree8f47cc0602b37f32b26972c077ae15aedac79304 /archiveview.h
parentfae552580c1214ff5b3e61c6f981c720b3f49263 (diff)
downloadSheMov-de9d8a08fe5e85cdb599022261e07e27b7646f6c.tar.gz
SheMov-de9d8a08fe5e85cdb599022261e07e27b7646f6c.tar.bz2
SheMov-de9d8a08fe5e85cdb599022261e07e27b7646f6c.zip
Show actors, genres and metadata when selecting a series
We're getting there, slowly, but steadily :)
Diffstat (limited to 'archiveview.h')
-rw-r--r--archiveview.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/archiveview.h b/archiveview.h
index ac7cda4..b164141 100644
--- a/archiveview.h
+++ b/archiveview.h
@@ -21,12 +21,14 @@ class QComboBox;
class QLabel;
class QLineEdit;
class QSortFilterProxyModel;
-
class ArchiveTree;
class ArchiveFiles;
class ArchiveProxy;
class ArchiveFilesProxy;
class ArchiveController;
+class QSplitter;
+class SimpleModel;
+class QTextEdit;
class ArchiveView : public QWidget {
Q_OBJECT
@@ -63,6 +65,12 @@ class ArchiveView : public QWidget {
QHash<int, QVariantList> mExpandedItems;
ArchiveController *mController;
QStringList mCurrentArchivePath;
+ SmTreeView *mActorView;
+ SmTreeView *mGenreView;
+ SimpleModel *mActorModel;
+ SimpleModel *mGenreModel;
+ QSplitter *mTreeSplitter;
+ QTextEdit *mMetadataView;
};
class ArchiveTree : public SmTreeView {