Minor tidying-up.
authorCarl Hetherington <carl@carlh.net>
Thu, 17 Feb 2011 16:18:15 +0000 (16:18 +0000)
committerCarl Hetherington <carl@carlh.net>
Thu, 17 Feb 2011 16:18:15 +0000 (16:18 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@8882 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/automation_streamview.cc
gtk2_ardour/automation_time_axis.cc
gtk2_ardour/automation_time_axis.h
gtk2_ardour/midi_time_axis.cc

index 883f0449b3368f0f23d678a0099a24faeece9e1a..a543c9d68cdba8d2d3faac3d31c808fbc99df492 100644 (file)
@@ -68,10 +68,7 @@ AutomationStreamView::~AutomationStreamView ()
 RegionView*
 AutomationStreamView::add_region_view_internal (boost::shared_ptr<Region> region, bool wfd, bool /*recording*/)
 {
-       if ( ! region) {
-               cerr << "No region" << endl;
-               return NULL;
-       }
+       assert (region);
 
        if (wfd) {
                boost::shared_ptr<MidiRegion> mr = boost::dynamic_pointer_cast<MidiRegion>(region);
@@ -105,7 +102,7 @@ AutomationStreamView::add_region_view_internal (boost::shared_ptr<Region> region
                        (*i)->enable_display(wfd);
                        display_region(arv);
 
-                       return NULL;
+                       return 0;
                }
        }
 
@@ -166,10 +163,8 @@ AutomationStreamView::set_automation_state (AutoState state)
 void
 AutomationStreamView::redisplay_track ()
 {
-       list<RegionView *>::iterator i, tmp;
-
        // Flag region views as invalid and disable drawing
-       for (i = region_views.begin(); i != region_views.end(); ++i) {
+       for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
                (*i)->set_valid (false);
                (*i)->enable_display(false);
        }
index 2cdb6f7de924c421163d64da5447146a406ae820..35138e889be461b325b433008181a1428abbf387 100644 (file)
@@ -59,20 +59,28 @@ const string AutomationTimeAxisView::state_node_name = "AutomationChild";
  * For route child (e.g. plugin) automation, pass the child for \a.
  * For region automation (e.g. MIDI CC), pass null for \a.
  */
-AutomationTimeAxisView::AutomationTimeAxisView (Session* s, boost::shared_ptr<Route> r,
-               boost::shared_ptr<Automatable> a, boost::shared_ptr<AutomationControl> c,
-               PublicEditor& e, TimeAxisView& parent, bool show_regions,
-               ArdourCanvas::Canvas& canvas, const string & nom, const string & nomparent)
-       : AxisView (s),
-         TimeAxisView (s, e, &parent, canvas),
-         _route (r),
-         _control (c),
-         _automatable (a),
-         _controller(AutomationController::create(a, c->parameter(), c)),
-         _base_rect (0),
-         _view (show_regions ? new AutomationStreamView(*this) : NULL),
-         _name (nom),
-         auto_button (X_("")) /* force addition of a label */
+AutomationTimeAxisView::AutomationTimeAxisView (
+       Session* s,
+       boost::shared_ptr<Route> r,
+       boost::shared_ptr<Automatable> a,
+       boost::shared_ptr<AutomationControl> c,
+       PublicEditor& e,
+       TimeAxisView& parent,
+       bool show_regions,
+       ArdourCanvas::Canvas& canvas,
+       const string & nom,
+       const string & nomparent
+       )
+       : AxisView (s)
+       , TimeAxisView (s, e, &parent, canvas)
+       , _route (r)
+       , _control (c)
+       , _automatable (a)
+       , _controller (AutomationController::create (a, c->parameter(), c))
+       , _base_rect (0)
+       , _view (show_regions ? new AutomationStreamView (*this) : 0)
+       , _name (nom)
+       , auto_button (X_("")) /* force addition of a label */
 {
        if (!have_name_font) {
                name_font = get_font_for_style (X_("AutomationTrackName"));
@@ -209,13 +217,17 @@ AutomationTimeAxisView::AutomationTimeAxisView (Session* s, boost::shared_ptr<Ro
                assert(_view);
                _view->attach ();
 
-       /* no regions, just a single line for the entire track (e.g. bus gain) */
        } else {
-               boost::shared_ptr<AutomationLine> line(new AutomationLine (
-                                       ARDOUR::EventTypeMap::instance().to_symbol(_control->parameter()),
-                                       *this,
-                                       *_canvas_display,
-                                       _control->alist()));
+               /* no regions, just a single line for the entire track (e.g. bus gain) */
+               
+               boost::shared_ptr<AutomationLine> line (
+                       new AutomationLine (
+                               ARDOUR::EventTypeMap::instance().to_symbol(_control->parameter()),
+                               *this,
+                               *_canvas_display,
+                               _control->alist()
+                               )
+                       );
 
                line->set_line_color (ARDOUR_UI::config()->canvasvar_ProcessorAutomationLine.get());
                line->queue_reset ();
@@ -589,8 +601,9 @@ AutomationTimeAxisView::build_display_menu ()
 void
 AutomationTimeAxisView::add_automation_event (ArdourCanvas::Item* /*item*/, GdkEvent* /*event*/, framepos_t when, double y)
 {
-       if (!_line)
+       if (!_line) {
                return;
+       }
 
        double x = 0;
 
@@ -929,15 +942,17 @@ AutomationTimeAxisView::add_line (boost::shared_ptr<AutomationLine> line)
 void
 AutomationTimeAxisView::entered()
 {
-       if (_line)
+       if (_line) {
                _line->track_entered();
+       }
 }
 
 void
 AutomationTimeAxisView::exited ()
 {
-       if (_line)
+       if (_line) {
                _line->track_exited();
+       }
 }
 
 void
index 76e687da0de7f1a20aaf2f2a108713d8ef1a4eb1..885e95a864e1a774b255cb1726abfccc0ccde633 100644 (file)
@@ -58,6 +58,7 @@ class AutomationTimeAxisView : public TimeAxisView {
                                boost::shared_ptr<ARDOUR::Route>,
                                boost::shared_ptr<ARDOUR::Automatable>,
                                boost::shared_ptr<ARDOUR::AutomationControl>,
+                               Evoral::Parameter,
                                PublicEditor&,
                                TimeAxisView& parent,
                                bool show_regions,
@@ -117,14 +118,18 @@ class AutomationTimeAxisView : public TimeAxisView {
        }
 
   protected:
-       boost::shared_ptr<ARDOUR::Route> _route; ///< Parent route
+       /** parent route *
+       boost::shared_ptr<ARDOUR::Route> _route;
+       /** control; 0 if we are editing region-based automation */
        boost::shared_ptr<ARDOUR::AutomationControl> _control; ///< Control
-       boost::shared_ptr<ARDOUR::Automatable> _automatable; ///< Control owner, maybe = _route
-
+       /** control owner; may be _route, or 0 if we are editing region-based automation */
+       boost::shared_ptr<ARDOUR::Automatable> _automatable;
+       /** controller owner; 0 if we are editing region-based automation */
        boost::shared_ptr<AutomationController> _controller;
 
        ArdourCanvas::SimpleRect* _base_rect;
        boost::shared_ptr<AutomationLine> _line;
+
        /** AutomationStreamView if we are editing region-based automation (for MIDI), otherwise 0 */
        AutomationStreamView* _view;
 
index 3087f7be6bd8cc005533c5a5149f59fcaea42e17..84288db326ab7bf48f548e9cfef8c3dbe6354842 100644 (file)
@@ -845,15 +845,19 @@ MidiTimeAxisView::create_automation_child (const Evoral::Parameter& param, bool
                boost::shared_ptr<AutomationControl> c = _route->get_control (param);
                assert (c);
                
-               boost::shared_ptr<AutomationTimeAxisView> track(new AutomationTimeAxisView (_session,
-                                                                                           _route, 
-                                                                                            _route,
-                                                                                            c,
-                                                                                           _editor,
-                                                                                           *this,
-                                                                                           true,
-                                                                                           parent_canvas,
-                                                                                           _route->describe_parameter(param)));
+               boost::shared_ptr<AutomationTimeAxisView> track (
+                       new AutomationTimeAxisView (
+                               _session,
+                               _route, 
+                               _route,
+                               c,
+                               _editor,
+                               *this,
+                               true,
+                               parent_canvas,
+                               _route->describe_parameter(param)
+                               )
+                       );
                
                add_automation_child (param, track, show);
        }