diff options
Diffstat (limited to 'moviewidget.h')
-rw-r--r-- | moviewidget.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/moviewidget.h b/moviewidget.h index a3ea99e..8c8fc84 100644 --- a/moviewidget.h +++ b/moviewidget.h @@ -8,6 +8,7 @@ class QComboBox; class QTreeView; class QSortFilterProxyModel; class QStandardItemModel; +class SmView; class MovieWidget : public QWidget { Q_OBJECT @@ -26,6 +27,7 @@ class MovieWidget : public QWidget { void populateByActors(); void populateByGenres(); void topSelectionChanged(); + void bottomDoubleClicked(const QModelIndex &idx); private: void setupWidget(); @@ -34,7 +36,7 @@ class MovieWidget : public QWidget { QTreeView *mTopView; QSortFilterProxyModel *mTopProxy; QStandardItemModel *mTopModel; - QTreeView *mBottomView; + SmView *mBottomView; QSortFilterProxyModel *mBottomProxy; QStandardItemModel *mBottomModel; }; |