fix math bug with numthreads computation
[ardour2.git] / gtk2_ardour / automation_region_view.h
blob6d3a00d4b6a69133a2251aeda535a872879f8d97
1 /*
2 Copyright (C) 2007 Paul Davis
3 Author: Dave Robillard
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #ifndef __gtk_ardour_automation_region_view_h__
21 #define __gtk_ardour_automation_region_view_h__
23 #include "ardour/diskstream.h"
24 #include "ardour/types.h"
26 #include "region_view.h"
27 #include "automation_time_axis.h"
28 #include "automation_line.h"
29 #include "enums.h"
30 #include "canvas.h"
32 namespace ARDOUR {
33 class AutomationList;
34 class Parameter;
37 class TimeAxisView;
39 class AutomationRegionView : public RegionView
41 public:
42 AutomationRegionView(ArdourCanvas::Group*,
43 AutomationTimeAxisView&,
44 boost::shared_ptr<ARDOUR::Region>,
45 const Evoral::Parameter& parameter,
46 boost::shared_ptr<ARDOUR::AutomationList>,
47 double initial_samples_per_unit,
48 Gdk::Color const & basic_color);
50 ~AutomationRegionView() {}
52 void init (Gdk::Color const & basic_color, bool wfd);
54 inline AutomationTimeAxisView* automation_view() const
55 { return dynamic_cast<AutomationTimeAxisView*>(&trackview); }
57 void set_line(boost::shared_ptr<AutomationLine> line) { _line = line; }
58 boost::shared_ptr<AutomationLine> line() { return _line; }
60 // We are a ghost. Meta ghosts? Crazy talk.
61 virtual GhostRegion* add_ghost(TimeAxisView&) { return NULL; }
63 void set_height (double);
64 void reset_width_dependent_items(double pixel_width);
66 protected:
67 void create_line(boost::shared_ptr<ARDOUR::AutomationList> list);
68 bool set_position(nframes64_t pos, void* src, double* ignored);
69 void region_resized (const PBD::PropertyChange&);
70 bool canvas_event(GdkEvent* ev);
71 void add_automation_event (GdkEvent* event, nframes_t when, double y);
72 void entered();
73 void exited();
75 private:
76 Evoral::Parameter _parameter;
77 boost::shared_ptr<AutomationLine> _line;
80 #endif /* __gtk_ardour_automation_region_view_h__ */