diff options
Diffstat (limited to 'searchdialog.h')
-rw-r--r-- | searchdialog.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/searchdialog.h b/searchdialog.h index 1cd9fdd..d469c28 100644 --- a/searchdialog.h +++ b/searchdialog.h @@ -57,14 +57,16 @@ 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 fetchData(const QModelIndex &cur, const QModelIndex &prev); + void doDataActions(const QModelIndex &cur, const QModelIndex &prev); + void doResultActions(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(); + void deleteActor(); void refreshActors(); private: @@ -79,6 +81,7 @@ class ActorsAndMore : public QWidget { QStandardItemModel *mDataModel; SmView *mResultView; SmView *mDataView; + QAction *mDeleteActorA; QAction *mDeleteSeriesA; }; |