Remove unused code.
[ardour.git] / libs / ardour / ardour / midi_region.h
index a7a5fb3a82dc7596b8500c48262a71373074f735..50352cc7601cce19c108475441d2c6062df869cd 100644 (file)
 class XMLNode;
 
 namespace ARDOUR {
-        namespace Properties {
-                /* this is pseudo-property: nothing has this as an actual
-                   property, but it allows us to signal changes to the
-                   MidiModel used by the MidiRegion 
-                */
-                extern PBD::PropertyDescriptor<void*> midi_data; 
-        }
+       namespace Properties {
+               /* this is pseudo-property: nothing has this as an actual
+                  property, but it allows us to signal changes to the
+                  MidiModel used by the MidiRegion
+               */
+               extern PBD::PropertyDescriptor<void*> midi_data;
+               extern PBD::PropertyDescriptor<Evoral::MusicalTime> length_beats;
+       }
 }
 
 namespace ARDOUR {
@@ -62,34 +63,34 @@ class MidiRegion : public Region
 
        ~MidiRegion();
 
-        boost::shared_ptr<MidiRegion> clone ();
-        
+       boost::shared_ptr<MidiRegion> clone () const;
+
        boost::shared_ptr<MidiSource> midi_source (uint32_t n=0) const;
 
        /* Stub Readable interface */
        virtual framecnt_t read (Sample*, framepos_t /*pos*/, framecnt_t /*cnt*/, int /*channel*/) const { return 0; }
        virtual framecnt_t readable_length() const { return length(); }
 
-       framecnt_t read_at (Evoral::EventSink<nframes_t>& dst,
-                           framepos_t position,
-                           framecnt_t dur,
-                           uint32_t  chan_n = 0,
-                           NoteMode  mode = Sustained,
-                           MidiStateTracker* tracker = 0) const;
-       
-       framepos_t master_read_at (MidiRingBuffer<nframes_t>& dst,
-                                  framepos_t position,
-                                  framecnt_t dur,
-                                  uint32_t  chan_n = 0,
-                                  NoteMode  mode = Sustained) const;
+       framecnt_t read_at (Evoral::EventSink<framepos_t>& dst,
+                           framepos_t position,
+                           framecnt_t dur,
+                           uint32_t  chan_n = 0,
+                           NoteMode  mode = Sustained,
+                           MidiStateTracker* tracker = 0) const;
+
+       framepos_t master_read_at (MidiRingBuffer<framepos_t>& dst,
+                                  framepos_t position,
+                                  framecnt_t dur,
+                                  uint32_t  chan_n = 0,
+                                  NoteMode  mode = Sustained) const;
 
        XMLNode& state ();
        int      set_state (const XMLNode&, int version);
-       
+
        int separate_by_channel (ARDOUR::Session&, std::vector< boost::shared_ptr<Region> >&) const;
 
        /* automation */
-       
+
        boost::shared_ptr<Evoral::Control>
        control(const Evoral::Parameter& id, bool create=false) {
                return model()->control(id, create);
@@ -107,36 +108,50 @@ class MidiRegion : public Region
        boost::shared_ptr<MidiModel> model()             { return midi_source()->model(); }
        boost::shared_ptr<const MidiModel> model() const { return midi_source()->model(); }
 
+       void fix_negative_start ();
+       void transpose (int);
+
+  protected:
+
+       virtual bool can_trim_start_before_source_start () const {
+               return true;
+       }
+
   private:
        friend class RegionFactory;
+       PBD::Property<Evoral::MusicalTime> _length_beats;
 
        MidiRegion (const SourceList&);
-       MidiRegion (boost::shared_ptr<const MidiRegion>, frameoffset_t offset = 0, bool offset_relative = true);
+       MidiRegion (boost::shared_ptr<const MidiRegion>);
+       MidiRegion (boost::shared_ptr<const MidiRegion>, frameoffset_t offset);
 
-  private:
-       framecnt_t _read_at (const SourceList&, Evoral::EventSink<nframes_t>& dst,
-                            framepos_t position,
-                            framecnt_t dur,
-                            uint32_t chan_n = 0,
-                            NoteMode mode = Sustained, 
-                            MidiStateTracker* tracker = 0) const;
+       framecnt_t _read_at (const SourceList&, Evoral::EventSink<framepos_t>& dst,
+                            framepos_t position,
+                            framecnt_t dur,
+                            uint32_t chan_n = 0,
+                            NoteMode mode = Sustained,
+                            MidiStateTracker* tracker = 0) const;
 
        void register_properties ();
+       void post_set (const PBD::PropertyChange&);
 
        void recompute_at_start ();
        void recompute_at_end ();
 
        void set_position_internal (framepos_t pos, bool allow_bbt_recompute);
+       void set_length_internal (framecnt_t len);
+       void update_length_beats ();
 
-       void switch_source(boost::shared_ptr<Source> source);
        void model_changed ();
        void model_automation_state_changed (Evoral::Parameter const &);
-        void model_contents_changed ();
+       void model_contents_changed ();
 
        std::set<Evoral::Parameter> _filtered_parameters; ///< parameters that we ask our source not to return when reading
        PBD::ScopedConnection _model_connection;
        PBD::ScopedConnection _source_connection;
-        PBD::ScopedConnection _model_contents_connection;
+       PBD::ScopedConnection _model_contents_connection;
+
+       double _last_length_beats;
 };
 
 } /* namespace ARDOUR */