mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 05:35:47 +01:00
forward unhandled button events from MidiRegionView back to Editor
git-svn-id: svn://localhost/ardour2/branches/3.0@9068 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
91768171d8
commit
89d6f40e33
2 changed files with 13 additions and 3 deletions
|
|
@ -377,16 +377,20 @@ MidiRegionView::mouse_mode_changed ()
|
|||
bool
|
||||
MidiRegionView::button_press (GdkEventButton* ev)
|
||||
{
|
||||
if (ev->button != 1) {
|
||||
return false;
|
||||
}
|
||||
|
||||
_last_x = ev->x;
|
||||
_last_y = ev->y;
|
||||
|
||||
|
||||
group->w2i (_last_x, _last_y);
|
||||
|
||||
if (_mouse_state != SelectTouchDragging) {
|
||||
|
||||
|
||||
_pressed_button = ev->button;
|
||||
_mouse_state = Pressed;
|
||||
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
@ -401,6 +405,10 @@ MidiRegionView::button_release (GdkEventButton* ev)
|
|||
double event_x, event_y;
|
||||
framepos_t event_frame = 0;
|
||||
|
||||
if (ev->button != 1) {
|
||||
return false;
|
||||
}
|
||||
|
||||
event_x = ev->x;
|
||||
event_y = ev->y;
|
||||
|
||||
|
|
|
|||
|
|
@ -243,6 +243,7 @@ TimeAxisViewItem::hide_rect ()
|
|||
|
||||
if (name_highlight) {
|
||||
name_highlight->property_outline_what() = 0x0;
|
||||
name_highlight->property_fill_color_rgba() = UINT_RGBA_CHANGE_A(fill_color,64);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -254,6 +255,7 @@ TimeAxisViewItem::show_rect ()
|
|||
|
||||
if (name_highlight) {
|
||||
name_highlight->property_outline_what() = 0x4;
|
||||
name_highlight->property_fill_color_rgba() = fill_color;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue