Fix broken whitespace. I'd apologize for the compile times if it was my fault :D
[ardour.git] / libs / ardour / ardour / audioplaylist.h
index 910fcee0d717d0fb39254a2f7ddb43d6d7595741..5b1af2dc1ff2e86e08b4e073fea6d74f8e937a08 100644 (file)
@@ -34,13 +34,13 @@ class AudioRegion;
 class Source;
 
 namespace Properties {
-        /* fake the type, since crossfades are handled by SequenceProperty which doesn't
-           care about such things.
-        */
-        extern PBD::PropertyDescriptor<bool> crossfades;
+       /* fake the type, since crossfades are handled by SequenceProperty which doesn't
+          care about such things.
+       */
+       extern PBD::PropertyDescriptor<bool> crossfades;
 }
 
-class AudioPlaylist;   
+class AudioPlaylist;
 
 class CrossfadeListProperty : public PBD::SequenceProperty<std::list<boost::shared_ptr<Crossfade> > >
 {
@@ -57,12 +57,12 @@ private:
        /* copy construction only by ourselves */
        CrossfadeListProperty (CrossfadeListProperty const & p);
 
-        friend class AudioPlaylist;
-        /* we live and die with our playlist, no lifetime management needed */
-        AudioPlaylist& _playlist;
+       friend class AudioPlaylist;
+       /* we live and die with our playlist, no lifetime management needed */
+       AudioPlaylist& _playlist;
 };
 
-       
+
 class AudioPlaylist : public ARDOUR::Playlist
 {
 public:
@@ -78,12 +78,12 @@ public:
 
        void clear (bool with_signals=true);
 
-        framecnt_t read (Sample *dst, Sample *mixdown, float *gain_buffer, framepos_t start, framecnt_t cnt, uint32_t chan_n=0);
+       framecnt_t read (Sample *dst, Sample *mixdown, float *gain_buffer, framepos_t start, framecnt_t cnt, uint32_t chan_n=0);
 
        int set_state (const XMLNode&, int version);
 
        PBD::Signal1<void,boost::shared_ptr<Crossfade> >  NewCrossfade;
-       
+
        void foreach_crossfade (boost::function<void (boost::shared_ptr<Crossfade>)>);
        void crossfades_at (framepos_t frame, Crossfades&);
 
@@ -92,8 +92,8 @@ public:
        void update (const CrossfadeListProperty::ChangeRecord &);
 
        boost::shared_ptr<Crossfade> find_crossfade (const PBD::ID &) const;
-       
-    protected:
+
+protected:
 
        /* playlist "callbacks" */
        void notify_crossfade_added (boost::shared_ptr<Crossfade>);
@@ -101,28 +101,28 @@ public:
 
        void finalize_split_region (boost::shared_ptr<Region> orig, boost::shared_ptr<Region> left, boost::shared_ptr<Region> right);
 
-        void refresh_dependents (boost::shared_ptr<Region> region);
-        void check_dependents (boost::shared_ptr<Region> region, bool norefresh);
-        void remove_dependents (boost::shared_ptr<Region> region);
+       void refresh_dependents (boost::shared_ptr<Region> region);
+       void check_dependents (boost::shared_ptr<Region> region, bool norefresh);
+       void remove_dependents (boost::shared_ptr<Region> region);
        void copy_dependents (const std::vector<TwoRegions>&, Playlist*) const;
 
        void pre_combine (std::vector<boost::shared_ptr<Region> >&);
        void post_combine (std::vector<boost::shared_ptr<Region> >&, boost::shared_ptr<Region>);
        void pre_uncombine (std::vector<boost::shared_ptr<Region> >&, boost::shared_ptr<Region>);
 
-    private:
-       CrossfadeListProperty _crossfades;
-       Crossfades      _pending_xfade_adds;
+private:
+       CrossfadeListProperty _crossfades;
+       Crossfades            _pending_xfade_adds;
 
-       void crossfade_invalidated (boost::shared_ptr<Region>);
-       XMLNode& state (bool full_state);
-       void dump () const;
+       void crossfade_invalidated (boost::shared_ptr<Region>);
+       XMLNode& state (bool full_state);
+       void dump () const;
 
-       bool region_changed (const PBD::PropertyChange&, boost::shared_ptr<Region>);
-       void crossfade_changed (const PBD::PropertyChange&);
-       void add_crossfade (boost::shared_ptr<Crossfade>);
+       bool region_changed (const PBD::PropertyChange&, boost::shared_ptr<Region>);
+       void crossfade_changed (const PBD::PropertyChange&);
+       void add_crossfade (boost::shared_ptr<Crossfade>);
 
-       void source_offset_changed (boost::shared_ptr<AudioRegion> region);
+       void source_offset_changed (boost::shared_ptr<AudioRegion> region);
 };
 
 } /* namespace ARDOUR */