diff options
author | Arno <am@disconnect.de> | 2013-02-08 05:04:34 +0100 |
---|---|---|
committer | Arno <am@disconnect.de> | 2013-02-08 05:04:34 +0100 |
commit | 4f917c152b272f5cf6481205ba3c18acf456120b (patch) | |
tree | 88ca94af27663cd7e8147b91df227fb52639f932 /archivetreeview.h | |
parent | d400c3cd5ce533714832b854bad4c40c25dcd874 (diff) | |
download | SheMov-4f917c152b272f5cf6481205ba3c18acf456120b.tar.gz SheMov-4f917c152b272f5cf6481205ba3c18acf456120b.tar.bz2 SheMov-4f917c152b272f5cf6481205ba3c18acf456120b.zip |
Usability: SeriesTreeView
Switch back to normal view when in burn view and a series is selected in
SeriesTree.
Diffstat (limited to 'archivetreeview.h')
-rw-r--r-- | archivetreeview.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/archivetreeview.h b/archivetreeview.h index 9abbb44..a730fd6 100644 --- a/archivetreeview.h +++ b/archivetreeview.h @@ -30,6 +30,7 @@ class QSqlQuery; class QPushButton; class QContextMenuEvent; class QLabel; +class QAction; class ArchiveTreeView : public QWidget { @@ -41,6 +42,7 @@ class ArchiveTreeView : public QWidget SeriesTreeWidget *seriesWidget() { return mSeriesWidget; } FilesTreeWidget *filesWidget() { return mFilesWidget; } const QString windowTitle() { return mWindowTitle; } + void setNormalViewAction(QAction* a) { mNormalViewA = a; } signals: void needWindowTitleChange(QString); @@ -81,6 +83,7 @@ class ArchiveTreeView : public QWidget //misc QString mWindowTitle; NoCoverMovieDialog *mNoCoverDialog; + QAction *mNormalViewA; bool mShowAllFiles; }; #endif |