Use labs() for long instead of abs()
[ardour.git] / gtk2_ardour / strip_silence_dialog.h
index 7445b723277586767b28bff38bf3820839fed10d..39bab433b7a89e8d5da450cb7ab3a31271120579 100644 (file)
@@ -1,25 +1,29 @@
 /*
-    Copyright (C) 2009 Paul Davis
-
-    This program is free software; you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation; either version 2 of the License, or
-    (at your option) any later version.
-
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with this program; if not, write to the Free Software
-    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
-*/
+ * Copyright (C) 2009-2010 Carl Hetherington <carl@carlh.net>
+ * Copyright (C) 2009-2011 David Robillard <d@drobilla.net>
+ * Copyright (C) 2009-2017 Paul Davis <paul@linuxaudiosystems.com>
+ * Copyright (C) 2015-2017 Robin Gareus <robin@gareus.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
 
 #include <gtkmm/spinbutton.h>
 #include <glibmm/threads.h>
 
+#include <pbd/xml++.h>
+
 #include "ardour/types.h"
 #include "ardour_dialog.h"
 #include "progress_reporter.h"
@@ -46,8 +50,15 @@ public:
 
        void silences (ARDOUR::AudioIntervalMap&);
 
-       ARDOUR::framecnt_t minimum_length () const;
-       ARDOUR::framecnt_t fade_length () const;
+       ARDOUR::samplecnt_t minimum_length () const;
+       ARDOUR::samplecnt_t fade_length () const;
+
+       void on_response (int response_id) {
+               Gtk::Dialog::on_response (response_id);
+       }
+
+       XMLNode& get_state ();
+       void set_state (const XMLNode &);
 
 private:
        void create_waves ();
@@ -60,6 +71,7 @@ private:
        void threshold_changed ();
        void update_progress_gui (float);
        void restart_thread ();
+       void finished(int);
 
        Gtk::SpinButton _threshold;
        AudioClock*      _minimum_length;
@@ -94,4 +106,8 @@ private:
        bool idle_update_progress(); ///< GUI-thread progress updates of background silence computation
        int analysis_progress_cur;
        int analysis_progress_max;
+
+       int _threshold_value;
+       ARDOUR::samplecnt_t _minimum_length_value;
+       ARDOUR::samplecnt_t _fade_length_value;
 };