new fade in/fade out colors from chrisg
git-svn-id: svn://localhost/ardour2/branches/3.0@7272 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
1ee298a235
commit
3a048e1d6c
@ -308,40 +308,36 @@ AudioRegionView::fade_out_changed ()
|
||||
void
|
||||
AudioRegionView::fade_in_active_changed ()
|
||||
{
|
||||
uint32_t r,g,b,a;
|
||||
uint32_t col;
|
||||
UINT_TO_RGBA(fade_color,&r,&g,&b,&a);
|
||||
// uint32_t r,g,b,a;
|
||||
// uint32_t col;
|
||||
// UINT_TO_RGBA(fade_color,&r,&g,&b,&a);
|
||||
|
||||
if (audio_region()->fade_in_active()) {
|
||||
col = RGBA_TO_UINT(r,g,b,120);
|
||||
fade_in_shape->property_fill_color_rgba() = col;
|
||||
fade_in_shape->property_width_pixels() = 0;
|
||||
fade_in_shape->property_outline_color_rgba() = RGBA_TO_UINT(r,g,b,0);
|
||||
} else {
|
||||
col = RGBA_TO_UINT(r,g,b,0);
|
||||
fade_in_shape->property_fill_color_rgba() = col;
|
||||
fade_in_shape->property_fill_color_rgba() = RGBA_TO_UINT(45,45,45,90); // FIXME make a themeable colour
|
||||
fade_in_shape->property_width_pixels() = 1;
|
||||
fade_in_shape->property_outline_color_rgba() = RGBA_TO_UINT(r,g,b,255);
|
||||
fade_in_shape->property_outline_color_rgba() = RGBA_TO_UINT(180,180,180,190); // FIXME make a themeable colour
|
||||
} else {
|
||||
fade_in_shape->property_fill_color_rgba() = RGBA_TO_UINT(45,45,45,20); // FIXME make a themeable colour
|
||||
fade_in_shape->property_width_pixels() = 1;
|
||||
fade_in_shape->property_outline_color_rgba() = RGBA_TO_UINT(45,45,45,150); // FIXME make a themeable colour
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
AudioRegionView::fade_out_active_changed ()
|
||||
{
|
||||
uint32_t r,g,b,a;
|
||||
uint32_t col;
|
||||
UINT_TO_RGBA(fade_color,&r,&g,&b,&a);
|
||||
// uint32_t r,g,b,a;
|
||||
// uint32_t col;
|
||||
// UINT_TO_RGBA(fade_color,&r,&g,&b,&a);
|
||||
|
||||
if (audio_region()->fade_out_active()) {
|
||||
col = RGBA_TO_UINT(r,g,b,120);
|
||||
fade_out_shape->property_fill_color_rgba() = col;
|
||||
fade_out_shape->property_width_pixels() = 0;
|
||||
fade_out_shape->property_outline_color_rgba() = RGBA_TO_UINT(r,g,b,0);
|
||||
} else {
|
||||
col = RGBA_TO_UINT(r,g,b,0);
|
||||
fade_out_shape->property_fill_color_rgba() = col;
|
||||
fade_out_shape->property_fill_color_rgba() = RGBA_TO_UINT(45,45,45,90); // FIXME make a themeable colour
|
||||
fade_out_shape->property_width_pixels() = 1;
|
||||
fade_out_shape->property_outline_color_rgba() = RGBA_TO_UINT(r,g,b,255);
|
||||
fade_out_shape->property_outline_color_rgba() = RGBA_TO_UINT(180,180,180,200); // FIXME make a themeable colour
|
||||
} else {
|
||||
fade_out_shape->property_fill_color_rgba() = RGBA_TO_UINT(45,45,45,20); // FIXME make a themeable colour
|
||||
fade_out_shape->property_width_pixels() = 1;
|
||||
fade_out_shape->property_outline_color_rgba() = RGBA_TO_UINT(45,45,45,200); // FIXME make a themeable colour
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2184,6 +2184,7 @@ FadeInDrag::start_grab (GdkEvent* event, Gdk::Cursor* cursor)
|
||||
|
||||
_pointer_frame_offset = grab_frame() - ((nframes64_t) r->fade_in()->back()->when + r->position());
|
||||
_editor->show_verbose_duration_cursor (r->position(), r->position() + r->fade_in()->back()->when, 10);
|
||||
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -375,8 +375,8 @@ RegionView::set_colors ()
|
||||
TimeAxisViewItem::set_colors ();
|
||||
|
||||
if (sync_mark) {
|
||||
sync_mark->property_fill_color_rgba() = fill_color;
|
||||
sync_line->property_fill_color_rgba() = fill_color;
|
||||
sync_mark->property_fill_color_rgba() = RGBA_TO_UINT(0,255,0,255); // fill_color; // FIXME make a themeable colour
|
||||
sync_line->property_fill_color_rgba() = RGBA_TO_UINT(0,255,0,255); // fill_color; // FIXME make a themeable colour
|
||||
}
|
||||
}
|
||||
|
||||
@ -481,10 +481,10 @@ RegionView::region_sync_changed ()
|
||||
/* points set below */
|
||||
|
||||
sync_mark = new ArdourCanvas::Polygon (*group);
|
||||
sync_mark->property_fill_color_rgba() = fill_color;
|
||||
sync_mark->property_fill_color_rgba() = RGBA_TO_UINT(0,255,0,255); // fill_color; // FIXME make a themeable colour
|
||||
|
||||
sync_line = new ArdourCanvas::Line (*group);
|
||||
sync_line->property_fill_color_rgba() = fill_color;
|
||||
sync_line->property_fill_color_rgba() = RGBA_TO_UINT(0,255,0,255); // fill_color; // FIXME make a themeable colour
|
||||
sync_line->property_width_pixels() = 1;
|
||||
}
|
||||
|
||||
|
@ -564,6 +564,7 @@ MidiTrack::MidiControl::set_value(float val)
|
||||
void
|
||||
MidiTrack::set_step_editing (bool yn)
|
||||
{
|
||||
cerr << name() << " IS NOW STEP EDITING\n";
|
||||
_step_editing = yn;
|
||||
}
|
||||
|
||||
|
@ -470,6 +470,9 @@ MTC_Slave::speed_and_position (double& speed, nframes64_t& pos)
|
||||
|
||||
DEBUG_TRACE (DEBUG::MTC, string_compose ("MTC::speed_and_position FINAL %1 %2\n", last.speed, pos));
|
||||
|
||||
|
||||
DEBUG_TRACE (DEBUG::MTC, string_compose ("last = %1 elapsed = %2 pos = %3 speed = %4\n", last.position, elapsed, pos, speed));
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user