2006-08-10 23:24:57 -04:00
|
|
|
/*
|
2007-07-16 21:48:42 -04:00
|
|
|
Copyright (C) 2001-2007 Paul Davis
|
|
|
|
Author: Dave Robillard
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <cmath>
|
|
|
|
#include <cassert>
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
#include <gtkmm.h>
|
|
|
|
|
|
|
|
#include <gtkmm2ext/gtk_ui.h>
|
|
|
|
|
2007-07-16 21:48:42 -04:00
|
|
|
#include <sigc++/signal.h>
|
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
#include <ardour/playlist.h>
|
2007-07-14 21:56:11 -04:00
|
|
|
#include <ardour/tempo.h>
|
2006-08-10 23:24:57 -04:00
|
|
|
#include <ardour/midi_region.h>
|
|
|
|
#include <ardour/midi_source.h>
|
|
|
|
#include <ardour/midi_diskstream.h>
|
2007-06-01 19:27:29 -04:00
|
|
|
#include <ardour/midi_events.h>
|
2007-07-14 21:56:11 -04:00
|
|
|
#include <ardour/midi_model.h>
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
#include "streamview.h"
|
|
|
|
#include "midi_region_view.h"
|
2007-07-05 03:02:24 -04:00
|
|
|
#include "midi_streamview.h"
|
2006-08-10 23:24:57 -04:00
|
|
|
#include "midi_time_axis.h"
|
|
|
|
#include "simplerect.h"
|
|
|
|
#include "simpleline.h"
|
2007-07-30 12:33:10 -04:00
|
|
|
#include "canvas-hit.h"
|
2006-08-10 23:24:57 -04:00
|
|
|
#include "public_editor.h"
|
|
|
|
#include "ghostregion.h"
|
|
|
|
#include "midi_time_axis.h"
|
2007-08-17 13:25:20 -04:00
|
|
|
#include "automation_time_axis.h"
|
|
|
|
#include "automation_region_view.h"
|
2006-08-10 23:24:57 -04:00
|
|
|
#include "utils.h"
|
2007-08-04 14:43:32 -04:00
|
|
|
#include "midi_util.h"
|
2006-08-10 23:24:57 -04:00
|
|
|
#include "gui_thread.h"
|
2007-08-04 20:50:54 -04:00
|
|
|
#include "keyboard.h"
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
using namespace sigc;
|
|
|
|
using namespace ARDOUR;
|
|
|
|
using namespace PBD;
|
|
|
|
using namespace Editing;
|
|
|
|
using namespace ArdourCanvas;
|
|
|
|
|
2007-08-17 13:25:20 -04:00
|
|
|
MidiRegionView::MidiRegionView (ArdourCanvas::Group *parent, RouteTimeAxisView &tv, boost::shared_ptr<MidiRegion> r, double spu, Gdk::Color& basic_color)
|
2006-08-10 23:24:57 -04:00
|
|
|
: RegionView (parent, tv, r, spu, basic_color)
|
2007-08-03 21:07:21 -04:00
|
|
|
, _default_note_length(0.0)
|
2007-06-01 19:27:29 -04:00
|
|
|
, _active_notes(0)
|
2007-08-09 16:50:56 -04:00
|
|
|
, _note_group(new ArdourCanvas::Group(*parent))
|
2007-08-01 19:18:56 -04:00
|
|
|
, _delta_command(NULL)
|
2007-08-09 16:50:56 -04:00
|
|
|
, _mouse_state(None)
|
|
|
|
, _pressed_button(0)
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
2008-01-13 12:45:17 -05:00
|
|
|
group->lower_to_bottom();
|
2007-08-09 16:50:56 -04:00
|
|
|
_note_group->raise_to_top();
|
2008-01-13 12:45:17 -05:00
|
|
|
|
|
|
|
frame->property_fill_color_rgba() = 0xff000033;
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
|
2007-08-17 13:25:20 -04:00
|
|
|
MidiRegionView::MidiRegionView (ArdourCanvas::Group *parent, RouteTimeAxisView &tv, boost::shared_ptr<MidiRegion> r, double spu, Gdk::Color& basic_color, TimeAxisViewItem::Visibility visibility)
|
2006-08-10 23:24:57 -04:00
|
|
|
: RegionView (parent, tv, r, spu, basic_color, visibility)
|
2007-08-03 21:07:21 -04:00
|
|
|
, _default_note_length(0.0)
|
2007-06-01 19:27:29 -04:00
|
|
|
, _active_notes(0)
|
2007-08-09 16:50:56 -04:00
|
|
|
, _note_group(new ArdourCanvas::Group(*parent))
|
2007-08-01 19:18:56 -04:00
|
|
|
, _delta_command(NULL)
|
2007-08-09 16:50:56 -04:00
|
|
|
, _mouse_state(None)
|
|
|
|
, _pressed_button(0)
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
2007-08-09 16:50:56 -04:00
|
|
|
_note_group->raise_to_top();
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MidiRegionView::init (Gdk::Color& basic_color, bool wfd)
|
|
|
|
{
|
2007-08-01 19:18:56 -04:00
|
|
|
if (wfd)
|
|
|
|
midi_region()->midi_source(0)->load_model();
|
2007-08-03 21:07:21 -04:00
|
|
|
|
2007-10-07 03:20:09 -04:00
|
|
|
const Meter& m = trackview.session().tempo_map().meter_at(_region->position());
|
|
|
|
const Tempo& t = trackview.session().tempo_map().tempo_at(_region->position());
|
2007-08-03 21:07:21 -04:00
|
|
|
_default_note_length = m.frames_per_bar(t, trackview.session().frame_rate())
|
|
|
|
/ m.beats_per_bar();
|
2007-08-01 19:18:56 -04:00
|
|
|
|
2007-08-01 16:50:09 -04:00
|
|
|
_model = midi_region()->midi_source(0)->model();
|
|
|
|
_enable_display = false;
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2007-08-01 16:50:09 -04:00
|
|
|
RegionView::init(basic_color, false);
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
compute_colors (basic_color);
|
|
|
|
|
2006-08-29 17:21:48 -04:00
|
|
|
reset_width_dependent_items ((double) _region->length() / samples_per_unit);
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2007-05-17 06:41:14 -04:00
|
|
|
set_y_position_and_height (0, trackview.height);
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
region_muted ();
|
|
|
|
region_resized (BoundsChanged);
|
|
|
|
region_locked ();
|
|
|
|
|
2006-08-29 17:21:48 -04:00
|
|
|
_region->StateChanged.connect (mem_fun(*this, &MidiRegionView::region_changed));
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
set_colors ();
|
2007-06-03 16:06:01 -04:00
|
|
|
|
2007-08-01 16:50:09 -04:00
|
|
|
_enable_display = true;
|
|
|
|
|
|
|
|
if (_model) {
|
|
|
|
if (wfd) {
|
|
|
|
redisplay_model();
|
|
|
|
}
|
|
|
|
_model->ContentsChanged.connect(sigc::mem_fun(this, &MidiRegionView::redisplay_model));
|
|
|
|
}
|
2007-08-11 02:17:42 -04:00
|
|
|
|
|
|
|
midi_region()->midi_source(0)->Switched.connect(sigc::mem_fun(this, &MidiRegionView::switch_source));
|
2007-07-14 21:56:11 -04:00
|
|
|
|
2007-07-30 19:58:25 -04:00
|
|
|
group->signal_event().connect (mem_fun (this, &MidiRegionView::canvas_event), false);
|
2007-08-01 16:50:09 -04:00
|
|
|
|
2007-07-14 21:56:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
MidiRegionView::canvas_event(GdkEvent* ev)
|
|
|
|
{
|
2007-08-09 16:50:56 -04:00
|
|
|
static bool delete_mod = false;
|
|
|
|
static Editing::MidiEditMode original_mode;
|
2007-07-14 21:56:11 -04:00
|
|
|
|
2007-08-03 21:07:21 -04:00
|
|
|
static double drag_start_x, drag_start_y;
|
2007-07-30 12:33:10 -04:00
|
|
|
static double last_x, last_y;
|
|
|
|
double event_x, event_y;
|
2007-08-09 16:50:56 -04:00
|
|
|
nframes_t event_frame = 0;
|
2007-07-30 22:16:46 -04:00
|
|
|
|
2007-08-03 21:07:21 -04:00
|
|
|
static ArdourCanvas::SimpleRect* drag_rect = NULL;
|
2007-07-30 12:33:10 -04:00
|
|
|
|
|
|
|
if (trackview.editor.current_mouse_mode() != MouseNote)
|
|
|
|
return false;
|
2007-07-30 19:58:25 -04:00
|
|
|
|
2007-08-09 16:50:56 -04:00
|
|
|
// Mmmm, spaghetti
|
|
|
|
|
2007-07-30 12:33:10 -04:00
|
|
|
switch (ev->type) {
|
2007-08-01 17:59:07 -04:00
|
|
|
case GDK_KEY_PRESS:
|
2007-08-09 16:50:56 -04:00
|
|
|
if (ev->key.keyval == GDK_Delete && !delete_mod) {
|
|
|
|
delete_mod = true;
|
|
|
|
original_mode = trackview.editor.current_midi_edit_mode();
|
2007-08-08 15:13:36 -04:00
|
|
|
trackview.editor.set_midi_edit_mode(MidiEditErase);
|
2007-08-01 17:59:07 -04:00
|
|
|
start_remove_command();
|
2007-08-10 15:16:21 -04:00
|
|
|
_mouse_state = EraseTouchDragging;
|
|
|
|
} else if (ev->key.keyval == GDK_Shift_L || ev->key.keyval == GDK_Control_L) {
|
|
|
|
_mouse_state = SelectTouchDragging;
|
2007-08-08 15:13:36 -04:00
|
|
|
}
|
2007-08-09 18:34:56 -04:00
|
|
|
return true;
|
2007-08-01 17:59:07 -04:00
|
|
|
|
|
|
|
case GDK_KEY_RELEASE:
|
2007-08-09 16:50:56 -04:00
|
|
|
if (ev->key.keyval == GDK_Delete) {
|
2007-08-10 15:16:21 -04:00
|
|
|
if (_mouse_state == EraseTouchDragging) {
|
2007-08-09 16:50:56 -04:00
|
|
|
delete_selection();
|
|
|
|
apply_command();
|
|
|
|
}
|
|
|
|
if (delete_mod) {
|
|
|
|
trackview.editor.set_midi_edit_mode(original_mode);
|
|
|
|
delete_mod = false;
|
|
|
|
}
|
2007-08-10 15:16:21 -04:00
|
|
|
} else if (ev->key.keyval == GDK_Shift_L || ev->key.keyval == GDK_Control_L) {
|
|
|
|
_mouse_state = None;
|
2007-08-04 20:50:54 -04:00
|
|
|
}
|
2007-08-09 18:34:56 -04:00
|
|
|
return true;
|
2007-08-01 17:59:07 -04:00
|
|
|
|
2007-07-30 12:33:10 -04:00
|
|
|
case GDK_BUTTON_PRESS:
|
2007-08-10 15:16:21 -04:00
|
|
|
if (_mouse_state != SelectTouchDragging && _mouse_state != EraseTouchDragging)
|
|
|
|
_mouse_state = Pressed;
|
2007-08-09 16:50:56 -04:00
|
|
|
_pressed_button = ev->button.button;
|
2007-07-30 12:33:10 -04:00
|
|
|
return true;
|
|
|
|
|
2007-08-04 20:50:54 -04:00
|
|
|
case GDK_ENTER_NOTIFY:
|
|
|
|
/* FIXME: do this on switch to note tool, too, if the pointer is already in */
|
|
|
|
Keyboard::magic_widget_grab_focus();
|
|
|
|
group->grab_focus();
|
|
|
|
break;
|
|
|
|
|
2007-07-30 12:33:10 -04:00
|
|
|
case GDK_MOTION_NOTIFY:
|
|
|
|
event_x = ev->motion.x;
|
|
|
|
event_y = ev->motion.y;
|
|
|
|
group->w2i(event_x, event_y);
|
2007-08-09 16:50:56 -04:00
|
|
|
|
|
|
|
event_frame = trackview.editor.pixel_to_frame(event_x);
|
|
|
|
trackview.editor.snap_to(event_frame);
|
2007-07-30 12:33:10 -04:00
|
|
|
|
2007-08-09 16:50:56 -04:00
|
|
|
switch (_mouse_state) {
|
2007-07-30 22:16:46 -04:00
|
|
|
case Pressed: // Drag start
|
2007-08-03 21:07:21 -04:00
|
|
|
|
2007-08-09 18:34:56 -04:00
|
|
|
// Select drag start
|
2007-08-09 16:50:56 -04:00
|
|
|
if (_pressed_button == 1 && trackview.editor.current_midi_edit_mode() == MidiEditSelect) {
|
2007-07-30 22:16:46 -04:00
|
|
|
group->grab(GDK_POINTER_MOTION_MASK | GDK_BUTTON_RELEASE_MASK,
|
|
|
|
Gdk::Cursor(Gdk::FLEUR), ev->motion.time);
|
|
|
|
last_x = event_x;
|
|
|
|
last_y = event_y;
|
2007-08-03 21:07:21 -04:00
|
|
|
drag_start_x = event_x;
|
|
|
|
drag_start_y = event_y;
|
|
|
|
|
|
|
|
drag_rect = new ArdourCanvas::SimpleRect(*group);
|
|
|
|
drag_rect->property_x1() = event_x;
|
|
|
|
drag_rect->property_y1() = event_y;
|
|
|
|
drag_rect->property_x2() = event_x;
|
|
|
|
drag_rect->property_y2() = event_y;
|
|
|
|
drag_rect->property_outline_what() = 0xFF;
|
2007-08-04 14:43:32 -04:00
|
|
|
drag_rect->property_outline_color_rgba()
|
|
|
|
= ARDOUR_UI::config()->canvasvar_MidiSelectRectOutline.get();
|
|
|
|
drag_rect->property_fill_color_rgba()
|
|
|
|
= ARDOUR_UI::config()->canvasvar_MidiSelectRectFill.get();
|
2007-08-03 21:07:21 -04:00
|
|
|
|
2007-08-10 15:16:21 -04:00
|
|
|
_mouse_state = SelectRectDragging;
|
2007-08-03 21:07:21 -04:00
|
|
|
return true;
|
2007-07-30 22:16:46 -04:00
|
|
|
|
2007-08-09 16:50:56 -04:00
|
|
|
// Add note drag start
|
|
|
|
} else if (trackview.editor.current_midi_edit_mode() == MidiEditPencil) {
|
2007-08-03 21:07:21 -04:00
|
|
|
group->grab(GDK_POINTER_MOTION_MASK | GDK_BUTTON_RELEASE_MASK,
|
|
|
|
Gdk::Cursor(Gdk::FLEUR), ev->motion.time);
|
|
|
|
last_x = event_x;
|
|
|
|
last_y = event_y;
|
|
|
|
drag_start_x = event_x;
|
|
|
|
drag_start_y = event_y;
|
|
|
|
|
2007-08-04 01:34:51 -04:00
|
|
|
drag_rect = new ArdourCanvas::SimpleRect(*group);
|
2007-08-09 16:50:56 -04:00
|
|
|
drag_rect->property_x1() = trackview.editor.frame_to_pixel(event_frame);
|
2007-08-04 01:34:51 -04:00
|
|
|
|
2007-08-04 00:18:34 -04:00
|
|
|
drag_rect->property_y1() = midi_stream_view()->note_to_y(midi_stream_view()->y_to_note(event_y));
|
2007-08-03 21:07:21 -04:00
|
|
|
drag_rect->property_x2() = event_x;
|
2007-08-04 00:18:34 -04:00
|
|
|
drag_rect->property_y2() = drag_rect->property_y1() + floor(midi_stream_view()->note_height());
|
2007-08-03 21:07:21 -04:00
|
|
|
drag_rect->property_outline_what() = 0xFF;
|
|
|
|
drag_rect->property_outline_color_rgba() = 0xFFFFFF99;
|
2007-08-05 21:00:23 -04:00
|
|
|
|
2007-08-03 21:07:21 -04:00
|
|
|
drag_rect->property_fill_color_rgba() = 0xFFFFFF66;
|
|
|
|
|
2007-08-09 16:50:56 -04:00
|
|
|
_mouse_state = AddDragging;
|
2007-07-30 22:16:46 -04:00
|
|
|
return true;
|
|
|
|
}
|
2007-08-03 21:07:21 -04:00
|
|
|
|
2007-08-10 15:16:21 -04:00
|
|
|
return false;
|
2007-07-30 22:16:46 -04:00
|
|
|
|
2007-08-10 15:16:21 -04:00
|
|
|
case SelectRectDragging: // Select drag motion
|
2007-08-09 18:34:56 -04:00
|
|
|
case AddDragging: // Add note drag motion
|
2007-07-30 12:33:10 -04:00
|
|
|
if (ev->motion.is_hint) {
|
|
|
|
int t_x;
|
|
|
|
int t_y;
|
|
|
|
GdkModifierType state;
|
|
|
|
gdk_window_get_pointer(ev->motion.window, &t_x, &t_y, &state);
|
|
|
|
event_x = t_x;
|
|
|
|
event_y = t_y;
|
|
|
|
}
|
2007-07-14 21:56:11 -04:00
|
|
|
|
2007-08-09 16:50:56 -04:00
|
|
|
if (_mouse_state == AddDragging)
|
|
|
|
event_x = trackview.editor.frame_to_pixel(event_frame);
|
2007-08-04 01:34:51 -04:00
|
|
|
|
2007-08-03 21:07:21 -04:00
|
|
|
if (drag_rect)
|
2007-08-09 18:34:56 -04:00
|
|
|
if (event_x > drag_start_x)
|
|
|
|
drag_rect->property_x2() = event_x;
|
|
|
|
else
|
|
|
|
drag_rect->property_x1() = event_x;
|
2007-08-03 21:07:21 -04:00
|
|
|
|
2007-08-10 15:16:21 -04:00
|
|
|
if (drag_rect && _mouse_state == SelectRectDragging) {
|
2007-08-09 18:34:56 -04:00
|
|
|
if (event_y > drag_start_y)
|
|
|
|
drag_rect->property_y2() = event_y;
|
|
|
|
else
|
|
|
|
drag_rect->property_y1() = event_y;
|
|
|
|
|
2007-08-06 20:09:22 -04:00
|
|
|
update_drag_selection(drag_start_x, event_x, drag_start_y, event_y);
|
|
|
|
}
|
|
|
|
|
2007-07-30 12:33:10 -04:00
|
|
|
last_x = event_x;
|
|
|
|
last_y = event_y;
|
2007-07-14 21:56:11 -04:00
|
|
|
|
2007-08-10 15:16:21 -04:00
|
|
|
case EraseTouchDragging:
|
|
|
|
case SelectTouchDragging:
|
|
|
|
return false;
|
2007-08-09 16:50:56 -04:00
|
|
|
|
2007-07-30 12:33:10 -04:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GDK_BUTTON_RELEASE:
|
2007-08-03 21:07:21 -04:00
|
|
|
event_x = ev->motion.x;
|
|
|
|
event_y = ev->motion.y;
|
|
|
|
group->w2i(event_x, event_y);
|
2007-07-30 19:58:25 -04:00
|
|
|
group->ungrab(ev->button.time);
|
2007-08-09 16:50:56 -04:00
|
|
|
event_frame = trackview.editor.pixel_to_frame(event_x);
|
|
|
|
|
|
|
|
switch (_mouse_state) {
|
2007-07-30 22:16:46 -04:00
|
|
|
case Pressed: // Clicked
|
2007-08-09 16:50:56 -04:00
|
|
|
switch (trackview.editor.current_midi_edit_mode()) {
|
|
|
|
case MidiEditSelect:
|
2007-08-05 19:33:21 -04:00
|
|
|
clear_selection();
|
2007-08-09 16:50:56 -04:00
|
|
|
break;
|
|
|
|
case MidiEditPencil:
|
2007-10-14 01:45:31 -04:00
|
|
|
trackview.editor.snap_to(event_frame, -1);
|
2007-08-09 16:50:56 -04:00
|
|
|
event_x = trackview.editor.frame_to_pixel(event_frame);
|
2007-08-03 21:07:21 -04:00
|
|
|
create_note_at(event_x, event_y, _default_note_length);
|
2007-08-09 16:50:56 -04:00
|
|
|
default:
|
|
|
|
break;
|
2007-08-04 01:34:51 -04:00
|
|
|
}
|
2007-08-09 16:50:56 -04:00
|
|
|
_mouse_state = None;
|
2007-08-03 21:07:21 -04:00
|
|
|
return true;
|
2007-08-10 15:16:21 -04:00
|
|
|
case SelectRectDragging: // Select drag done
|
2007-08-09 16:50:56 -04:00
|
|
|
_mouse_state = None;
|
2007-08-03 21:07:21 -04:00
|
|
|
delete drag_rect;
|
|
|
|
drag_rect = NULL;
|
2007-07-30 12:33:10 -04:00
|
|
|
return true;
|
2007-08-03 21:07:21 -04:00
|
|
|
case AddDragging: // Add drag done
|
2007-08-09 16:50:56 -04:00
|
|
|
_mouse_state = None;
|
2007-08-03 21:07:21 -04:00
|
|
|
if (drag_rect->property_x2() > drag_rect->property_x1() + 2) {
|
|
|
|
create_note_at(drag_rect->property_x1(), drag_rect->property_y1(),
|
|
|
|
trackview.editor.pixel_to_frame(
|
|
|
|
drag_rect->property_x2() - drag_rect->property_x1()));
|
|
|
|
}
|
|
|
|
|
|
|
|
delete drag_rect;
|
|
|
|
drag_rect = NULL;
|
2007-07-30 12:33:10 -04:00
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
break;
|
2007-07-14 21:56:11 -04:00
|
|
|
}
|
|
|
|
|
2007-07-30 12:33:10 -04:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-07-14 21:56:11 -04:00
|
|
|
return false;
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
|
2007-06-09 02:10:30 -04:00
|
|
|
|
2007-07-30 12:33:10 -04:00
|
|
|
/** Add a note to the model, and the view, at a canvas (click) coordinate */
|
|
|
|
void
|
2007-08-03 21:07:21 -04:00
|
|
|
MidiRegionView::create_note_at(double x, double y, double dur)
|
2007-07-19 17:00:09 -04:00
|
|
|
{
|
2007-07-30 12:33:10 -04:00
|
|
|
MidiTimeAxisView* const mtv = dynamic_cast<MidiTimeAxisView*>(&trackview);
|
|
|
|
MidiStreamView* const view = mtv->midi_view();
|
|
|
|
|
2007-08-04 00:18:34 -04:00
|
|
|
double note = midi_stream_view()->y_to_note(y);
|
2007-08-02 00:43:43 -04:00
|
|
|
|
2007-07-30 12:33:10 -04:00
|
|
|
assert(note >= 0.0);
|
|
|
|
assert(note <= 127.0);
|
2007-07-19 17:00:09 -04:00
|
|
|
|
2007-07-30 12:33:10 -04:00
|
|
|
const nframes_t stamp = trackview.editor.pixel_to_frame (x);
|
|
|
|
assert(stamp >= 0);
|
|
|
|
//assert(stamp <= _region->length());
|
|
|
|
|
2007-08-03 21:07:21 -04:00
|
|
|
//const Meter& m = trackview.session().tempo_map().meter_at(stamp);
|
|
|
|
//const Tempo& t = trackview.session().tempo_map().tempo_at(stamp);
|
|
|
|
//double dur = m.frames_per_bar(t, trackview.session().frame_rate()) / m.beats_per_bar();
|
2007-07-30 12:33:10 -04:00
|
|
|
|
|
|
|
// Add a 1 beat long note (for now)
|
2007-10-14 01:45:31 -04:00
|
|
|
const boost::shared_ptr<Note> new_note(new Note(stamp, dur, (uint8_t)note, 0x40));
|
2007-08-01 16:50:09 -04:00
|
|
|
|
2007-10-14 01:45:31 -04:00
|
|
|
view->update_bounds(new_note->note());
|
2007-07-30 12:33:10 -04:00
|
|
|
|
2007-08-01 16:50:09 -04:00
|
|
|
MidiModel::DeltaCommand* cmd = _model->new_delta_command("add note");
|
|
|
|
cmd->add(new_note);
|
|
|
|
_model->apply_command(cmd);
|
|
|
|
|
|
|
|
//add_note(new_note);
|
2007-07-19 17:00:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-06-09 02:10:30 -04:00
|
|
|
void
|
2007-07-06 23:19:04 -04:00
|
|
|
MidiRegionView::clear_events()
|
2007-06-09 02:10:30 -04:00
|
|
|
{
|
2007-08-06 20:09:22 -04:00
|
|
|
for (std::vector<CanvasMidiEvent*>::iterator i = _events.begin(); i != _events.end(); ++i)
|
2007-06-09 02:10:30 -04:00
|
|
|
delete *i;
|
|
|
|
|
2008-02-10 13:16:25 -05:00
|
|
|
MidiGhostRegion* gr;
|
|
|
|
|
|
|
|
for(vector<GhostRegion*>::iterator g = ghosts.begin(); g != ghosts.end(); ++g) {
|
|
|
|
if((gr = dynamic_cast<MidiGhostRegion*>(*g)) != 0) {
|
|
|
|
gr->clear_events();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-09 02:10:30 -04:00
|
|
|
_events.clear();
|
2007-07-06 23:19:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2007-07-30 22:16:46 -04:00
|
|
|
MidiRegionView::display_model(boost::shared_ptr<MidiModel> model)
|
|
|
|
{
|
|
|
|
_model = model;
|
2007-08-01 16:50:09 -04:00
|
|
|
|
|
|
|
if (_enable_display)
|
|
|
|
redisplay_model();
|
2007-07-30 22:16:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
MidiRegionView::redisplay_model()
|
2007-07-06 23:19:04 -04:00
|
|
|
{
|
2007-08-15 21:25:58 -04:00
|
|
|
// Don't redisplay the model if we're currently recording and displaying that
|
|
|
|
if (_active_notes)
|
|
|
|
return;
|
2007-07-06 23:19:04 -04:00
|
|
|
|
2007-07-30 22:16:46 -04:00
|
|
|
if (_model) {
|
2007-08-17 13:25:20 -04:00
|
|
|
|
2007-08-15 21:25:58 -04:00
|
|
|
clear_events();
|
2007-07-30 22:16:46 -04:00
|
|
|
begin_write();
|
2007-08-17 13:25:20 -04:00
|
|
|
|
|
|
|
_model->read_lock();
|
2007-06-09 02:10:30 -04:00
|
|
|
|
2007-07-30 22:16:46 -04:00
|
|
|
for (size_t i=0; i < _model->n_notes(); ++i)
|
2007-10-14 01:45:31 -04:00
|
|
|
add_note(_model->note_at(i));
|
2007-06-09 02:10:30 -04:00
|
|
|
|
2007-07-30 22:16:46 -04:00
|
|
|
end_write();
|
2007-08-17 13:25:20 -04:00
|
|
|
|
2007-09-05 22:30:39 -04:00
|
|
|
/*for (Automatable::Controls::const_iterator i = _model->controls().begin();
|
2007-08-17 13:25:20 -04:00
|
|
|
i != _model->controls().end(); ++i) {
|
|
|
|
|
|
|
|
assert(i->second);
|
|
|
|
|
|
|
|
boost::shared_ptr<AutomationTimeAxisView> at
|
|
|
|
= midi_view()->automation_child(i->second->parameter());
|
|
|
|
if (!at)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
Gdk::Color col = midi_stream_view()->get_region_color();
|
|
|
|
|
|
|
|
boost::shared_ptr<AutomationRegionView> arv;
|
|
|
|
|
|
|
|
{
|
|
|
|
Glib::Mutex::Lock list_lock (i->second->list()->lock());
|
|
|
|
|
|
|
|
arv = boost::shared_ptr<AutomationRegionView>(
|
|
|
|
new AutomationRegionView(at->canvas_display,
|
|
|
|
*at.get(), _region, i->second->list(),
|
|
|
|
midi_stream_view()->get_samples_per_unit(), col));
|
|
|
|
}
|
|
|
|
|
2007-09-05 22:30:39 -04:00
|
|
|
arv->set_duration(_region->length(), this);
|
2007-08-17 13:25:20 -04:00
|
|
|
arv->init(col, true);
|
2007-09-05 22:30:39 -04:00
|
|
|
|
|
|
|
_automation_children.insert(std::make_pair(i->second->parameter(), arv));
|
|
|
|
}*/
|
2007-08-17 13:25:20 -04:00
|
|
|
|
|
|
|
_model->read_unlock();
|
|
|
|
|
2007-07-30 22:16:46 -04:00
|
|
|
} else {
|
2007-08-15 21:25:58 -04:00
|
|
|
cerr << "MidiRegionView::redisplay_model called without a model" << endmsg;
|
2007-07-30 22:16:46 -04:00
|
|
|
}
|
2007-06-09 02:10:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
MidiRegionView::~MidiRegionView ()
|
|
|
|
{
|
|
|
|
in_destructor = true;
|
2007-08-15 21:25:58 -04:00
|
|
|
if (_active_notes)
|
|
|
|
end_write();
|
|
|
|
|
|
|
|
clear_events();
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
RegionViewGoingAway (this); /* EMIT_SIGNAL */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-06-09 02:10:30 -04:00
|
|
|
void
|
|
|
|
MidiRegionView::region_resized (Change what_changed)
|
|
|
|
{
|
|
|
|
RegionView::region_resized(what_changed);
|
|
|
|
|
|
|
|
if (what_changed & ARDOUR::PositionChanged) {
|
|
|
|
|
2007-08-01 16:50:09 -04:00
|
|
|
if (_enable_display)
|
|
|
|
redisplay_model();
|
2007-06-09 02:10:30 -04:00
|
|
|
|
|
|
|
} else if (what_changed & Change (StartChanged)) {
|
|
|
|
|
|
|
|
//cerr << "MIDI RV START CHANGED" << endl;
|
|
|
|
|
|
|
|
} else if (what_changed & Change (LengthChanged)) {
|
|
|
|
|
|
|
|
//cerr << "MIDI RV LENGTH CHANGED" << endl;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MidiRegionView::reset_width_dependent_items (double pixel_width)
|
|
|
|
{
|
|
|
|
RegionView::reset_width_dependent_items(pixel_width);
|
|
|
|
assert(_pixel_width == pixel_width);
|
|
|
|
|
2007-08-01 16:50:09 -04:00
|
|
|
if (_enable_display)
|
|
|
|
redisplay_model();
|
2007-06-09 02:10:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MidiRegionView::set_y_position_and_height (double y, double h)
|
|
|
|
{
|
|
|
|
RegionView::set_y_position_and_height(y, h - 1);
|
2007-07-05 03:02:24 -04:00
|
|
|
|
2007-10-04 01:15:28 -04:00
|
|
|
if (_enable_display) {
|
|
|
|
|
|
|
|
_model->read_lock();
|
|
|
|
|
|
|
|
for (std::vector<CanvasMidiEvent*>::const_iterator i = _events.begin(); i != _events.end(); ++i) {
|
|
|
|
CanvasNote* note = dynamic_cast<CanvasNote*>(*i);
|
|
|
|
if (note && note->note()) {
|
2008-02-10 13:16:25 -05:00
|
|
|
if(note->note()->note() < midi_stream_view()->lowest_note() ||
|
|
|
|
note->note()->note() > midi_stream_view()->highest_note()) {
|
|
|
|
if(canvas_item_visible(note)) {
|
|
|
|
note->hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
const double y1 = midi_stream_view()->note_to_y(note->note()->note());
|
|
|
|
const double y2 = y1 + floor(midi_stream_view()->note_height());
|
|
|
|
|
|
|
|
if(!canvas_item_visible(note)) {
|
|
|
|
note->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
note->property_y1() = y1;
|
|
|
|
note->property_y2() = y2;
|
|
|
|
}
|
2007-10-04 01:15:28 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_model->read_unlock();
|
|
|
|
}
|
2007-06-09 02:10:30 -04:00
|
|
|
|
|
|
|
if (name_text) {
|
|
|
|
name_text->raise_to_top();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
GhostRegion*
|
2008-02-10 13:16:25 -05:00
|
|
|
MidiRegionView::add_ghost (TimeAxisView& tv)
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
2007-06-27 17:37:08 -04:00
|
|
|
RouteTimeAxisView* rtv = dynamic_cast<RouteTimeAxisView*>(&trackview);
|
2008-02-10 13:16:25 -05:00
|
|
|
CanvasNote* note;
|
2007-06-27 17:37:08 -04:00
|
|
|
assert(rtv);
|
|
|
|
|
|
|
|
double unit_position = _region->position () / samples_per_unit;
|
2008-02-10 13:16:25 -05:00
|
|
|
MidiTimeAxisView* mtv = dynamic_cast<MidiTimeAxisView*>(&tv);
|
|
|
|
MidiGhostRegion* ghost;
|
|
|
|
|
|
|
|
if(mtv && mtv->midi_view()) {
|
|
|
|
/* if ghost is inserted into midi track, use a dedicated midi ghost canvas group.
|
|
|
|
this is because it's nice to have midi notes on top of the note lines and
|
|
|
|
audio waveforms under it.
|
|
|
|
*/
|
|
|
|
ghost = new MidiGhostRegion (*mtv->midi_view(), trackview, unit_position);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ghost = new MidiGhostRegion (tv, trackview, unit_position);
|
|
|
|
}
|
2007-06-27 17:37:08 -04:00
|
|
|
|
|
|
|
ghost->set_height ();
|
|
|
|
ghost->set_duration (_region->length() / samples_per_unit);
|
|
|
|
ghosts.push_back (ghost);
|
|
|
|
|
2008-02-10 13:16:25 -05:00
|
|
|
for (std::vector<CanvasMidiEvent*>::iterator i = _events.begin(); i != _events.end(); ++i) {
|
|
|
|
if((note = dynamic_cast<CanvasNote*>(*i)) != 0) {
|
|
|
|
ghost->add_note(note);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-27 17:37:08 -04:00
|
|
|
ghost->GoingAway.connect (mem_fun(*this, &MidiRegionView::remove_ghost));
|
|
|
|
|
|
|
|
return ghost;
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
|
2007-06-01 19:27:29 -04:00
|
|
|
|
|
|
|
/** Begin tracking note state for successive calls to add_event
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
MidiRegionView::begin_write()
|
|
|
|
{
|
2007-08-15 21:25:58 -04:00
|
|
|
assert(!_active_notes);
|
2007-07-30 12:33:10 -04:00
|
|
|
_active_notes = new CanvasNote*[128];
|
2007-06-01 20:55:32 -04:00
|
|
|
for (unsigned i=0; i < 128; ++i)
|
|
|
|
_active_notes[i] = NULL;
|
2007-06-01 19:27:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** Destroy note state for add_event
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
MidiRegionView::end_write()
|
|
|
|
{
|
|
|
|
delete[] _active_notes;
|
|
|
|
_active_notes = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-04 01:15:28 -04:00
|
|
|
/** Resolve an active MIDI note (while recording).
|
2007-07-14 21:56:11 -04:00
|
|
|
*/
|
2007-06-01 19:27:29 -04:00
|
|
|
void
|
2007-10-04 01:15:28 -04:00
|
|
|
MidiRegionView::resolve_note(uint8_t note, double end_time)
|
2007-06-01 19:27:29 -04:00
|
|
|
{
|
2007-10-04 01:15:28 -04:00
|
|
|
if (midi_view()->note_mode() != Sustained)
|
|
|
|
return;
|
2007-06-01 19:27:29 -04:00
|
|
|
|
2007-10-04 01:15:28 -04:00
|
|
|
if (_active_notes && _active_notes[note]) {
|
|
|
|
_active_notes[note]->property_x2() = trackview.editor.frame_to_pixel((nframes_t)end_time);
|
|
|
|
_active_notes[note]->property_outline_what() = (guint32) 0xF; // all edges
|
|
|
|
_active_notes[note] = NULL;
|
2007-06-01 19:27:29 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-06-01 20:55:32 -04:00
|
|
|
/** Extend active notes to rightmost edge of region (if length is changed)
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
MidiRegionView::extend_active_notes()
|
|
|
|
{
|
|
|
|
if (!_active_notes)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (unsigned i=0; i < 128; ++i)
|
|
|
|
if (_active_notes[i])
|
|
|
|
_active_notes[i]->property_x2() = trackview.editor.frame_to_pixel(_region->length());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-07-30 12:33:10 -04:00
|
|
|
/** Add a MIDI note to the view (with duration).
|
2007-07-14 21:56:11 -04:00
|
|
|
*
|
2007-10-04 01:15:28 -04:00
|
|
|
* If in sustained mode, notes with duration 0 will be considered active
|
|
|
|
* notes, and resolve_note should be called when the corresponding note off
|
|
|
|
* event arrives, to properly display the note.
|
2007-07-14 21:56:11 -04:00
|
|
|
*/
|
|
|
|
void
|
2007-10-14 01:45:31 -04:00
|
|
|
MidiRegionView::add_note(const boost::shared_ptr<Note> note)
|
2007-07-14 21:56:11 -04:00
|
|
|
{
|
2007-10-14 01:45:31 -04:00
|
|
|
assert(note->time() >= 0);
|
|
|
|
//assert(note->time() < _region->length());
|
2008-01-14 22:32:51 -05:00
|
|
|
assert(midi_view()->note_mode() == Sustained || midi_view()->note_mode() == Percussive);
|
2007-07-14 21:56:11 -04:00
|
|
|
|
|
|
|
ArdourCanvas::Group* const group = (ArdourCanvas::Group*)get_canvas_group();
|
|
|
|
|
2007-08-03 21:07:21 -04:00
|
|
|
if (midi_view()->note_mode() == Sustained) {
|
2007-10-14 01:45:31 -04:00
|
|
|
|
|
|
|
//cerr << "MRV::add_note sustained " << note->note() << " @ " << note->time()
|
|
|
|
// << " .. " << note->end_time() << endl;
|
|
|
|
|
|
|
|
const double y1 = midi_stream_view()->note_to_y(note->note());
|
2007-07-14 21:56:11 -04:00
|
|
|
|
2007-10-14 01:45:31 -04:00
|
|
|
CanvasNote* ev_rect = new CanvasNote(*this, *group, note);
|
|
|
|
ev_rect->property_x1() = trackview.editor.frame_to_pixel((nframes_t)note->time());
|
2007-07-14 21:56:11 -04:00
|
|
|
ev_rect->property_y1() = y1;
|
2007-10-14 01:45:31 -04:00
|
|
|
if (note->duration() > 0)
|
|
|
|
ev_rect->property_x2() = trackview.editor.frame_to_pixel((nframes_t)(note->end_time()));
|
2007-10-04 01:15:28 -04:00
|
|
|
else
|
|
|
|
ev_rect->property_x2() = trackview.editor.frame_to_pixel(_region->length());
|
2007-08-04 00:18:34 -04:00
|
|
|
ev_rect->property_y2() = y1 + floor(midi_stream_view()->note_height());
|
2007-07-14 21:56:11 -04:00
|
|
|
|
2007-10-14 01:45:31 -04:00
|
|
|
ev_rect->property_fill_color_rgba() = note_fill_color(note->velocity());
|
|
|
|
ev_rect->property_outline_color_rgba() = note_outline_color(note->velocity());
|
2007-07-14 21:56:11 -04:00
|
|
|
|
2007-10-14 01:45:31 -04:00
|
|
|
if (note->duration() == 0) {
|
|
|
|
_active_notes[note->note()] = ev_rect;
|
2007-10-04 01:15:28 -04:00
|
|
|
/* outline all but right edge */
|
|
|
|
ev_rect->property_outline_what() = (guint32) (0x1 & 0x4 & 0x8);
|
|
|
|
} else {
|
|
|
|
/* outline all edges */
|
|
|
|
ev_rect->property_outline_what() = (guint32) 0xF;
|
|
|
|
}
|
|
|
|
|
2007-07-14 21:56:11 -04:00
|
|
|
ev_rect->show();
|
|
|
|
_events.push_back(ev_rect);
|
|
|
|
|
2008-02-10 13:16:25 -05:00
|
|
|
MidiGhostRegion* gr;
|
|
|
|
|
|
|
|
for(vector<GhostRegion*>::iterator g = ghosts.begin(); g != ghosts.end(); ++g) {
|
|
|
|
if((gr = dynamic_cast<MidiGhostRegion*>(*g)) != 0) {
|
|
|
|
gr->add_note(ev_rect);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-03 21:07:21 -04:00
|
|
|
} else if (midi_view()->note_mode() == Percussive) {
|
2007-10-14 01:45:31 -04:00
|
|
|
|
2008-01-14 22:32:51 -05:00
|
|
|
//cerr << "MRV::add_note percussive " << note->note() << " @ " << note->time()
|
|
|
|
// << " .. " << note->end_time() << endl;
|
2007-10-14 01:45:31 -04:00
|
|
|
|
2007-08-04 00:18:34 -04:00
|
|
|
const double diamond_size = midi_stream_view()->note_height() / 2.0;
|
2007-10-14 01:45:31 -04:00
|
|
|
const double x = trackview.editor.frame_to_pixel((nframes_t)note->time());
|
|
|
|
const double y = midi_stream_view()->note_to_y(note->note()) + ((diamond_size-2) / 4.0);
|
2007-07-14 21:56:11 -04:00
|
|
|
|
2007-08-04 00:18:34 -04:00
|
|
|
CanvasHit* ev_diamond = new CanvasHit(*this, *group, diamond_size);
|
2007-07-14 21:56:11 -04:00
|
|
|
ev_diamond->move(x, y);
|
|
|
|
ev_diamond->show();
|
2007-10-14 01:45:31 -04:00
|
|
|
ev_diamond->property_fill_color_rgba() = note_fill_color(note->velocity());
|
|
|
|
ev_diamond->property_outline_color_rgba() = note_outline_color(note->velocity());
|
2007-07-14 21:56:11 -04:00
|
|
|
_events.push_back(ev_diamond);
|
2008-01-14 22:32:51 -05:00
|
|
|
|
2007-07-14 21:56:11 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-04 20:50:54 -04:00
|
|
|
void
|
|
|
|
MidiRegionView::delete_selection()
|
|
|
|
{
|
|
|
|
assert(_delta_command);
|
|
|
|
|
|
|
|
for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i)
|
|
|
|
if ((*i)->selected())
|
2007-10-14 01:45:31 -04:00
|
|
|
_delta_command->remove((*i)->note());
|
2007-08-04 20:50:54 -04:00
|
|
|
|
|
|
|
_selection.clear();
|
|
|
|
}
|
|
|
|
|
2007-08-04 20:33:14 -04:00
|
|
|
void
|
|
|
|
MidiRegionView::clear_selection_except(ArdourCanvas::CanvasMidiEvent* ev)
|
|
|
|
{
|
|
|
|
for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i)
|
|
|
|
if ((*i)->selected() && (*i) != ev)
|
|
|
|
(*i)->selected(false);
|
|
|
|
|
|
|
|
_selection.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MidiRegionView::unique_select(ArdourCanvas::CanvasMidiEvent* ev)
|
|
|
|
{
|
|
|
|
for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i)
|
|
|
|
if ((*i) != ev)
|
|
|
|
(*i)->selected(false);
|
|
|
|
|
|
|
|
_selection.clear();
|
|
|
|
_selection.insert(ev);
|
2007-08-10 15:16:21 -04:00
|
|
|
|
|
|
|
if ( ! ev->selected())
|
|
|
|
ev->selected(true);
|
2007-08-04 20:33:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MidiRegionView::note_selected(ArdourCanvas::CanvasMidiEvent* ev, bool add)
|
|
|
|
{
|
|
|
|
if ( ! add)
|
|
|
|
clear_selection_except(ev);
|
|
|
|
|
|
|
|
_selection.insert(ev);
|
2007-08-10 15:16:21 -04:00
|
|
|
|
|
|
|
if ( ! ev->selected())
|
|
|
|
ev->selected(true);
|
2007-08-04 20:33:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
MidiRegionView::note_deselected(ArdourCanvas::CanvasMidiEvent* ev, bool add)
|
|
|
|
{
|
|
|
|
if ( ! add)
|
|
|
|
clear_selection_except(ev);
|
|
|
|
|
|
|
|
_selection.erase(ev);
|
2007-08-10 15:16:21 -04:00
|
|
|
|
|
|
|
if (ev->selected())
|
|
|
|
ev->selected(false);
|
2007-08-04 20:33:14 -04:00
|
|
|
}
|
|
|
|
|
2007-06-01 19:27:29 -04:00
|
|
|
|
2007-08-06 20:09:22 -04:00
|
|
|
void
|
2007-08-09 18:34:56 -04:00
|
|
|
MidiRegionView::update_drag_selection(double x1, double x2, double y1, double y2)
|
2007-08-06 20:09:22 -04:00
|
|
|
{
|
2007-08-09 18:34:56 -04:00
|
|
|
const double last_y = std::min(y1, y2);
|
|
|
|
const double y = std::max(y1, y2);
|
|
|
|
|
2007-08-06 20:09:22 -04:00
|
|
|
// FIXME: so, so, so much slower than this should be
|
2007-08-09 18:34:56 -04:00
|
|
|
|
|
|
|
if (x1 < x2) {
|
|
|
|
for (std::vector<CanvasMidiEvent*>::iterator i = _events.begin(); i != _events.end(); ++i) {
|
|
|
|
if ((*i)->x1() >= x1 && (*i)->x1() <= x2 && (*i)->y1() >= last_y && (*i)->y1() <= y) {
|
|
|
|
(*i)->selected(true);
|
|
|
|
_selection.insert(*i);
|
|
|
|
} else {
|
|
|
|
(*i)->selected(false);
|
|
|
|
_selection.erase(*i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (std::vector<CanvasMidiEvent*>::iterator i = _events.begin(); i != _events.end(); ++i) {
|
|
|
|
if ((*i)->x2() <= x1 && (*i)->x2() >= x2 && (*i)->y1() >= last_y && (*i)->y1() <= y) {
|
|
|
|
(*i)->selected(true);
|
|
|
|
_selection.insert(*i);
|
|
|
|
} else {
|
|
|
|
(*i)->selected(false);
|
|
|
|
_selection.erase(*i);
|
|
|
|
}
|
2007-08-06 20:09:22 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-07 22:01:14 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
MidiRegionView::move_selection(double dx, double dy)
|
|
|
|
{
|
|
|
|
for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i)
|
|
|
|
(*i)->item()->move(dx, dy);
|
|
|
|
}
|
|
|
|
|
2007-08-10 16:55:27 -04:00
|
|
|
|
2007-08-07 22:01:14 -04:00
|
|
|
void
|
|
|
|
MidiRegionView::note_dropped(CanvasMidiEvent* ev, double dt, uint8_t dnote)
|
|
|
|
{
|
|
|
|
// TODO: This would be faster/nicer with a MoveCommand that doesn't need to copy...
|
|
|
|
if (_selection.find(ev) != _selection.end()) {
|
|
|
|
start_delta_command();
|
|
|
|
|
|
|
|
for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
|
|
|
|
command_remove_note(*i);
|
2007-10-14 01:45:31 -04:00
|
|
|
const boost::shared_ptr<Note> copy(new Note(*(*i)->note().get()));
|
2007-08-07 22:01:14 -04:00
|
|
|
|
2007-10-14 01:45:31 -04:00
|
|
|
copy->set_time((*i)->note()->time() + dt);
|
|
|
|
copy->set_note((*i)->note()->note() + dnote);
|
2007-08-07 22:01:14 -04:00
|
|
|
|
|
|
|
command_add_note(copy);
|
|
|
|
}
|
|
|
|
apply_command();
|
|
|
|
}
|
|
|
|
}
|
2007-08-10 16:55:27 -04:00
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
MidiRegionView::note_entered(ArdourCanvas::CanvasMidiEvent* ev)
|
|
|
|
{
|
|
|
|
if (ev->note() && _mouse_state == EraseTouchDragging) {
|
|
|
|
start_delta_command();
|
|
|
|
ev->selected(true);
|
2007-10-14 01:45:31 -04:00
|
|
|
_delta_command->remove(ev->note());
|
2007-08-10 16:55:27 -04:00
|
|
|
} else if (_mouse_state == SelectTouchDragging) {
|
|
|
|
note_selected(ev, true);
|
|
|
|
}
|
|
|
|
}
|
2007-08-11 02:17:42 -04:00
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
MidiRegionView::switch_source(boost::shared_ptr<Source> src)
|
|
|
|
{
|
|
|
|
boost::shared_ptr<MidiSource> msrc = boost::dynamic_pointer_cast<MidiSource>(src);
|
|
|
|
if (msrc)
|
|
|
|
display_model(msrc->model());
|
|
|
|
}
|
2007-08-06 20:09:22 -04:00
|
|
|
|
2008-01-13 12:45:17 -05:00
|
|
|
void
|
|
|
|
MidiRegionView::set_frame_color()
|
|
|
|
{
|
|
|
|
if (frame) {
|
|
|
|
if (_selected && should_show_selection) {
|
|
|
|
frame->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_SelectedFrameBase.get();
|
|
|
|
} else {
|
|
|
|
frame->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_MidiFrameBase.get();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|