summaryrefslogtreecommitdiff
path: root/gtk2_ardour/strip_silence_dialog.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-10-16 14:53:21 +0200
committerRobin Gareus <robin@gareus.org>2015-10-16 15:27:20 +0200
commita27e9a68b2be53809865b8145bb3d408f0994f47 (patch)
tree1247e2874ae16545aacdd895f957760626642c28 /gtk2_ardour/strip_silence_dialog.h
parentdead81d2840dbb551315798625cc7ae88d79e3f7 (diff)
strip silence: report analysis progress
Diffstat (limited to 'gtk2_ardour/strip_silence_dialog.h')
-rw-r--r--gtk2_ardour/strip_silence_dialog.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/gtk2_ardour/strip_silence_dialog.h b/gtk2_ardour/strip_silence_dialog.h
index 44f5409754..7445b72327 100644
--- a/gtk2_ardour/strip_silence_dialog.h
+++ b/gtk2_ardour/strip_silence_dialog.h
@@ -89,4 +89,9 @@ private:
PBD::Signal0<void> Completed; ///< emitted when a silence detection has completed
PBD::ScopedConnection _completed_connection;
ARDOUR::InterThreadInfo _interthread_info;
+
+ sigc::connection progress_idle_connection;
+ bool idle_update_progress(); ///< GUI-thread progress updates of background silence computation
+ int analysis_progress_cur;
+ int analysis_progress_max;
};