summaryrefslogtreecommitdiff
path: root/gtk2_ardour/automation_line.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-07-04 22:14:00 +0200
committerRobin Gareus <robin@gareus.org>2016-07-05 00:39:43 +0200
commit4f7d3069abdf4feb7e7c5df9bf155ec591b4b3c6 (patch)
tree6c371e84377474a9480a9b622bf67ad97c68a667 /gtk2_ardour/automation_line.h
parent17b162c5dac40ccd608fc90117d3fa5c2012cb71 (diff)
highlight area below automation lanes
Diffstat (limited to 'gtk2_ardour/automation_line.h')
-rw-r--r--gtk2_ardour/automation_line.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk2_ardour/automation_line.h b/gtk2_ardour/automation_line.h
index 816cefedef..d51e437bdd 100644
--- a/gtk2_ardour/automation_line.h
+++ b/gtk2_ardour/automation_line.h
@@ -73,6 +73,7 @@ public:
void queue_reset ();
void reset ();
void clear ();
+ void set_fill (bool f) { _fill = f; } // owner needs to call set_height
void set_selected_points (PointSelection const &);
void get_selectables (ARDOUR::framepos_t, ARDOUR::framepos_t, double, double, std::list<Selectable*>&);
@@ -236,6 +237,8 @@ private:
/** maximum time that a point on this line can be at, relative to the position of its region or start of its track */
ARDOUR::framecnt_t _maximum_time;
+ bool _fill;
+
const ARDOUR::ParameterDescriptor _desc;
friend class AudioRegionGainLine;