mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Make colors for clip markers controllable by ardour.colors. Default
color is totally transparent. Thanks Torben! git-svn-id: svn://localhost/ardour2/trunk@1656 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
54de497572
commit
edfc81352e
8 changed files with 99 additions and 14 deletions
|
|
@ -251,6 +251,22 @@ Glib::PropertyProxy_ReadOnly<guint> WaveView::property_wave_color() const
|
|||
{
|
||||
return Glib::PropertyProxy_ReadOnly<guint> (this, "wave_color");
|
||||
}
|
||||
Glib::PropertyProxy<guint> WaveView::property_clip_color()
|
||||
{
|
||||
return Glib::PropertyProxy<guint> (this, "clip_color");
|
||||
}
|
||||
Glib::PropertyProxy_ReadOnly<guint> WaveView::property_clip_color() const
|
||||
{
|
||||
return Glib::PropertyProxy_ReadOnly<guint> (this, "clip_color");
|
||||
}
|
||||
Glib::PropertyProxy<guint> WaveView::property_zero_color()
|
||||
{
|
||||
return Glib::PropertyProxy<guint> (this, "zero_color");
|
||||
}
|
||||
Glib::PropertyProxy_ReadOnly<guint> WaveView::property_zero_color() const
|
||||
{
|
||||
return Glib::PropertyProxy_ReadOnly<guint> (this, "zero_color");
|
||||
}
|
||||
Glib::PropertyProxy<gint> WaveView::property_rectified()
|
||||
{
|
||||
return Glib::PropertyProxy<gint> (this, "rectified");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue