more strip silence dialog changes, to use audio clocks, show smallest silence/audible...
authorPaul Davis <paul@linuxaudiosystems.com>
Fri, 5 Mar 2010 02:09:37 +0000 (02:09 +0000)
committerPaul Davis <paul@linuxaudiosystems.com>
Fri, 5 Mar 2010 02:09:37 +0000 (02:09 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@6734 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/ardour3_ui_dark.rc.in
gtk2_ardour/ardour_ui.cc
gtk2_ardour/audio_clock.cc
gtk2_ardour/audio_clock.h
gtk2_ardour/editor_ops.cc
gtk2_ardour/strip_silence_dialog.h

index cea780a766bc69af8de1e87690145434adb92ddd..ff7ecc9a3cd9ef143b69bfdfb415d0d0307524eb 100644 (file)
@@ -758,6 +758,18 @@ style "default_clock_display" = "medium text"
        bg[ACTIVE] = { 0, 0, 0 }
 }
 
+
+style "white_on_black_clock_display" = "medium text"
+{
+       fg[NORMAL] = { 1.0, 1.0, 1.0 }
+       fg[ACTIVE] = { 1.0, 0.0, 0.0 }
+       fg[SELECTED] = { 1.0, 0, 0 }
+       base[NORMAL] = { 0, 0, 0 }
+       base[ACTIVE] = { 0, 0, 0 }
+       bg[NORMAL] = { 0, 0, 0 }
+       bg[ACTIVE] = { 0, 0, 0 }
+}
+
 style "editor_time_ruler" = "small_text"
 {
        fg[NORMAL] = { 0.80, 0.80, 0.80 }
@@ -1440,6 +1452,7 @@ widget "*AudioClockBBTUpperInfo" style:highest "tempo_meter_clock_display"
 widget "*AudioClockBBTLowerInfo" style:highest "tempo_meter_clock_display"
 widget "*SelectionStartClock" style:highest "default_clock_display"
 widget "*SelectionEndClock" style:highest "default_clock_display"
+widget "*SilenceDurationClock" style:highest "white_on_black_clock_display"
 widget "*EditPointClock" style:highest "default_clock_display"
 widget "*PreRollClock" style:highest "default_clock_display"
 widget "*PostRollClock" style:highest "default_clock_display"
index b6486827e476ee9e509a6cffd7d9dde1af2c793a..039e328012aa1dcd7ee63146bfd86a62b1b4c661 100644 (file)
@@ -128,7 +128,7 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[])
 
          /* big clock */
 
-         big_clock (X_("bigclock"), false, "BigClockNonRecording", true, true, false, true),
+         big_clock (X_("bigclock"), false, "BigClockNonRecording", true, true, false, false),
 
          /* transport */
 
index bdf0ceda33fafa4f948ca0045a39371761b85460..a7430d9045adc5804de67d13932e90f1ca093ae6 100644 (file)
@@ -65,7 +65,7 @@ const uint32_t AudioClock::field_length[(int) AudioClock::AudioFrames+1] = {
        10   /* Audio Frame */
 };
 
-AudioClock::AudioClock (std::string clock_name, bool transient, std::string widget_name, 
+AudioClock::AudioClock (const string& clock_name, bool transient, const string& widget_name, 
                        bool allow_edit, bool follows_playhead, bool duration, bool with_info)
        : _name (clock_name),
          is_transient (transient),
index b9fc740543ef04427a9f6a159410d022db8f764c..c51c321ba46415af262ea5aabecba52c93c0103f 100644 (file)
@@ -43,7 +43,8 @@ class AudioClock : public Gtk::HBox, public ARDOUR::SessionHandlePtr
                Off
        };
 
-       AudioClock (std::string, bool, std::string, bool, bool, bool duration = false, bool with_info = false);
+       AudioClock (const std::string& clock_name, bool is_transient, const std::string& widget_name, 
+                    bool editable, bool follows_playhead, bool duration = false, bool with_info = false);
 
        Mode mode() const { return _mode; }
 
index 2866f82e61cafbc6ff94a88acdf7874c6432bd20..d4e8f4b54f622d53612588bbb985c15c1d668499 100644 (file)
@@ -4651,7 +4651,7 @@ Editor::strip_region_silence ()
                }
        }
 
-       StripSilenceDialog d (ar);
+       StripSilenceDialog d (_session, ar);
        int const r = d.run ();
 
        if (r == Gtk::RESPONSE_OK) {
index 2084d74de26eb739d4b5cad476bf87cfd20bfe68..c746edc6b5281d228fb3011fe5752233f16c1596 100644 (file)
 
 namespace ARDOUR {
        class AudioRegion;
+        class Session;
 }
 
 /// Dialog box to set options for the `strip silence' filter
 class StripSilenceDialog : public ArdourDialog
 {
 public:
-       StripSilenceDialog (std::list<boost::shared_ptr<ARDOUR::AudioRegion> > const &);
+        StripSilenceDialog (ARDOUR::Session*, std::list<boost::shared_ptr<ARDOUR::AudioRegion> > const &);
        ~StripSilenceDialog ();
 
        double threshold () const {
                return _threshold.get_value ();
        }
 
-       nframes_t minimum_length () const {
-               return _minimum_length.get_value_as_int ();
-       }
-
-       nframes_t fade_length () const {
-               return _fade_length.get_value_as_int ();
-       }
-
-    static void stop_thread ();
+        nframes_t minimum_length () const;
+        nframes_t fade_length () const;
+        static void stop_thread ();
 
 private:
        void create_waves ();
@@ -57,16 +52,17 @@ private:
         void redraw_silence_rects ();
 
        Gtk::SpinButton _threshold;
-       Gtk::SpinButton _minimum_length;
-       Gtk::SpinButton _fade_length;
+       AudioClock      _minimum_length;
+        AudioClock      _fade_length;
         Gtk::Label      _segment_count_label;
+        typedef std::list<std::pair<ARDOUR::frameoffset_t,ARDOUR::framecnt_t> > SilenceResult;
 
        struct Wave {
             boost::shared_ptr<ARDOUR::AudioRegion> region;
             ArdourCanvas::WaveView* view;
             std::list<ArdourCanvas::SimpleRect*> silence_rects;
             double samples_per_unit;
-            std::list<std::pair<ARDOUR::frameoffset_t,ARDOUR::framecnt_t> >silence;
+            SilenceResult silence;
           
             Wave() : view (0), samples_per_unit (1) { }
        };
@@ -77,12 +73,17 @@ private:
        int _wave_height;
         bool restart_queued;
 
-    static ARDOUR::InterThreadInfo itt;
-    static bool thread_should_exit;
-    static Glib::Cond *thread_run;
-    static Glib::Cond *thread_waiting;
-    static Glib::StaticMutex run_lock;
-    static StripSilenceDialog* current;
+        static ARDOUR::InterThreadInfo itt;
+        static bool thread_should_exit;
+        static Glib::Cond *thread_run;
+        static Glib::Cond *thread_waiting;
+        static Glib::StaticMutex run_lock;
+        static StripSilenceDialog* current;
+
+        ARDOUR::framecnt_t max_audible;
+        ARDOUR::framecnt_t min_audible;
+        ARDOUR::framecnt_t max_silence;
+        ARDOUR::framecnt_t min_silence;
 
        PBD::ScopedConnection _peaks_ready_connection;
     
@@ -93,4 +94,6 @@ private:
         void* detection_thread_work ();
         bool  start_silence_detection ();
         void  maybe_start_silence_detection ();
+
+        void update_stats (const SilenceResult&);
 };