diff options
author | Arno <am@disconnect.de> | 2013-07-09 12:18:21 +0200 |
---|---|---|
committer | Arno <am@disconnect.de> | 2013-07-09 12:18:21 +0200 |
commit | de9d8a08fe5e85cdb599022261e07e27b7646f6c (patch) | |
tree | 8f47cc0602b37f32b26972c077ae15aedac79304 /archiveview.h | |
parent | fae552580c1214ff5b3e61c6f981c720b3f49263 (diff) | |
download | SheMov-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.h | 10 |
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 { |