Add settings retention to StripSilenceDialog
[ardour.git] / gtk2_ardour / strip_silence_dialog.h
1 /*
2  * Copyright (C) 2009-2010 Carl Hetherington <carl@carlh.net>
3  * Copyright (C) 2009-2011 David Robillard <d@drobilla.net>
4  * Copyright (C) 2009-2017 Paul Davis <paul@linuxaudiosystems.com>
5  * Copyright (C) 2015-2017 Robin Gareus <robin@gareus.org>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #include <gtkmm/spinbutton.h>
23 #include <glibmm/threads.h>
24
25 #include <pbd/xml++.h>
26
27 #include "ardour/types.h"
28 #include "ardour_dialog.h"
29 #include "progress_reporter.h"
30
31 namespace ARDOUR {
32         class Session;
33 }
34
35 class AudioClock;
36 class RegionView;
37
38 /// Dialog box to set options for the `strip silence' filter
39 class StripSilenceDialog : public ArdourDialog, public ProgressReporter
40 {
41 public:
42         StripSilenceDialog (ARDOUR::Session*, std::list<RegionView*> const &);
43         ~StripSilenceDialog ();
44
45         double threshold () const {
46                 return _threshold.get_value ();
47         }
48
49         void drop_rects ();
50
51         void silences (ARDOUR::AudioIntervalMap&);
52
53         ARDOUR::samplecnt_t minimum_length () const;
54         ARDOUR::samplecnt_t fade_length () const;
55
56         void on_response (int response_id) {
57                 Gtk::Dialog::on_response (response_id);
58         }
59
60         XMLNode& get_state ();
61         void set_state (const XMLNode &);
62
63 private:
64         void create_waves ();
65         void canvas_allocation (Gtk::Allocation &);
66         void update_silence_rects ();
67         void resize_silence_rects ();
68         void update ();
69         void update_threshold_line ();
70         void update_stats (ARDOUR::AudioIntervalResult const &);
71         void threshold_changed ();
72         void update_progress_gui (float);
73         void restart_thread ();
74
75         Gtk::SpinButton _threshold;
76         AudioClock*      _minimum_length;
77         AudioClock*      _fade_length;
78         Gtk::ProgressBar _progress_bar;
79
80         Gtk::Button* cancel_button;
81         Gtk::Button* apply_button;
82
83         struct ViewInterval {
84                 RegionView* view;
85                 ARDOUR::AudioIntervalResult intervals;
86
87                 ViewInterval (RegionView* rv) : view (rv) {}
88         };
89
90         std::list<ViewInterval> views;
91
92         bool _destroying;
93
94         pthread_t _thread; ///< thread to compute silence in the background
95         static void * _detection_thread_work (void *);
96         void * detection_thread_work ();
97         Glib::Threads::Mutex _lock; ///< lock held while the thread is doing work
98         Glib::Threads::Cond  _run_cond; ///< condition to wake the thread
99         bool _thread_should_finish; ///< true if the thread should terminate
100         PBD::Signal0<void> Completed; ///< emitted when a silence detection has completed
101         PBD::ScopedConnection _completed_connection;
102         ARDOUR::InterThreadInfo _interthread_info;
103
104         sigc::connection progress_idle_connection;
105         bool idle_update_progress(); ///< GUI-thread progress updates of background silence computation
106         int analysis_progress_cur;
107         int analysis_progress_max;
108
109         int _threshold_value;
110         ARDOUR::samplecnt_t _minimum_length_value;
111         ARDOUR::samplecnt_t _fade_length_value;
112 };