aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/main_window.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/qt/main_window.h')
-rw-r--r--ui/qt/main_window.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/ui/qt/main_window.h b/ui/qt/main_window.h
index 6ca0c9dafe..a40b5e8d4e 100644
--- a/ui/qt/main_window.h
+++ b/ui/qt/main_window.h
@@ -181,6 +181,7 @@ private:
QMenu* findOrAddMenu(QMenu *parent_menu, QString& menu_text);
void recursiveCopyProtoTreeItems(QTreeWidgetItem *item, QString &clip, int ident_level);
+ void captureFileReadStarted(const QString &action);
signals:
void showProgress(struct progdlg **dlg_p, bool animate, const QString message, bool terminate_is_stop, bool *stop_flag, float pct);
@@ -209,10 +210,13 @@ public slots:
void captureCaptureFailed(capture_session *);
void captureFileOpened();
- void captureFileReadStarted();
+ void captureFileReadStarted() { captureFileReadStarted(tr("Loading")); }
void captureFileReadFinished();
+ void captureFileReloadStarted() { captureFileReadStarted(tr("Reloading")); }
+ void captureFileRescanStarted() { captureFileReadStarted(tr("Rescanning")); }
void captureFileClosing();
void captureFileClosed();
+ void captureFileSaveStarted(const QString &file_path);
void filterExpressionsChanged();