diff options
author | Arno <arno@disconnect.de> | 2020-07-29 06:27:33 +0200 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2020-07-29 06:27:33 +0200 |
commit | 7d9c0622668de64612fadb2dd6d26048935fa608 (patch) | |
tree | 9a781815bf5c391b3e7dc9c5bf4f9aaebfc0c77d /searchdialog.h | |
parent | b384639799a68ca7d7c07eee518d3ef4b34812d0 (diff) | |
download | SheMov-7d9c0622668de64612fadb2dd6d26048935fa608.tar.gz SheMov-7d9c0622668de64612fadb2dd6d26048935fa608.tar.bz2 SheMov-7d9c0622668de64612fadb2dd6d26048935fa608.zip |
Delete seriesparts from search dialog
Allow to delete seriesparts without files to be deleted from the search
dialog.
Diffstat (limited to 'searchdialog.h')
-rw-r--r-- | searchdialog.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/searchdialog.h b/searchdialog.h index 09ed259..c28b5a0 100644 --- a/searchdialog.h +++ b/searchdialog.h @@ -57,12 +57,14 @@ class ActorsAndMore : public QWidget { public slots: void doSearch(); + void getData(const QModelIndex &cur, const QModelIndex &prev); void doData(const QModelIndex &cur, const QModelIndex &prev); void dataDoubleClicked(const QModelIndex &index); void collapseAllResult() { mResultView->collapseAll(); } void expandAllResult() { mResultView->expandAll(); } void collapseAllData() { mDataView->collapseAll(); } void expandAllData() { mDataView->expandAll(); } + void deleteSeries(); private: void searchActor(const QString &actor); @@ -76,6 +78,7 @@ class ActorsAndMore : public QWidget { QStandardItemModel *mDataModel; SmView *mResultView; SmView *mDataView; + QAction *mDeleteSeriesA; }; class SearchDialog : public QDialog { |