2006-08-10 23:24:57 -04:00
|
|
|
/*
|
2008-03-14 20:37:17 -04:00
|
|
|
Copyright (C) 2001-2007 Paul Davis
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __gtk_ardour_midi_region_view_h__
|
|
|
|
#define __gtk_ardour_midi_region_view_h__
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <libgnomecanvasmm.h>
|
|
|
|
#include <libgnomecanvasmm/polygon.h>
|
2007-08-07 16:51:24 -04:00
|
|
|
#include <ardour/midi_track.h>
|
2006-08-10 23:24:57 -04:00
|
|
|
#include <ardour/midi_region.h>
|
2007-07-14 21:56:11 -04:00
|
|
|
#include <ardour/midi_model.h>
|
2007-08-07 16:51:24 -04:00
|
|
|
#include <ardour/diskstream.h>
|
2007-06-01 19:27:29 -04:00
|
|
|
#include <ardour/types.h>
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
#include "region_view.h"
|
2007-08-01 22:05:00 -04:00
|
|
|
#include "midi_time_axis.h"
|
2006-08-10 23:24:57 -04:00
|
|
|
#include "time_axis_view_item.h"
|
|
|
|
#include "automation_line.h"
|
|
|
|
#include "enums.h"
|
|
|
|
#include "canvas.h"
|
2007-07-30 12:33:10 -04:00
|
|
|
#include "canvas-note.h"
|
2008-04-29 17:58:05 -04:00
|
|
|
#include "canvas-note-event.h"
|
2008-04-29 03:28:24 -04:00
|
|
|
#include "canvas-program-change.h"
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class MidiRegion;
|
2007-07-30 22:16:46 -04:00
|
|
|
class MidiModel;
|
2006-08-10 23:24:57 -04:00
|
|
|
};
|
|
|
|
|
2008-12-15 06:05:41 -05:00
|
|
|
namespace MIDI {
|
|
|
|
namespace Name {
|
|
|
|
struct PatchPrimaryKey;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
class MidiTimeAxisView;
|
|
|
|
class GhostRegion;
|
|
|
|
class AutomationTimeAxisView;
|
2007-08-17 13:25:20 -04:00
|
|
|
class AutomationRegionView;
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
class MidiRegionView : public RegionView
|
|
|
|
{
|
|
|
|
public:
|
2008-03-14 20:37:17 -04:00
|
|
|
MidiRegionView (ArdourCanvas::Group *,
|
2006-08-29 17:21:48 -04:00
|
|
|
RouteTimeAxisView&,
|
|
|
|
boost::shared_ptr<ARDOUR::MidiRegion>,
|
|
|
|
double initial_samples_per_unit,
|
|
|
|
Gdk::Color& basic_color);
|
2008-09-26 13:18:22 -04:00
|
|
|
|
|
|
|
MidiRegionView (const MidiRegionView& other);
|
|
|
|
MidiRegionView (const MidiRegionView& other, boost::shared_ptr<ARDOUR::MidiRegion>);
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
~MidiRegionView ();
|
2008-03-14 20:37:17 -04:00
|
|
|
|
2007-07-30 22:16:46 -04:00
|
|
|
virtual void init (Gdk::Color& basic_color, bool wfd);
|
2008-03-14 20:37:17 -04:00
|
|
|
|
2007-08-01 22:05:00 -04:00
|
|
|
inline const boost::shared_ptr<ARDOUR::MidiRegion> midi_region() const
|
|
|
|
{ return boost::dynamic_pointer_cast<ARDOUR::MidiRegion>(_region); }
|
|
|
|
|
|
|
|
inline MidiTimeAxisView* midi_view() const
|
|
|
|
{ return dynamic_cast<MidiTimeAxisView*>(&trackview); }
|
|
|
|
|
|
|
|
inline MidiStreamView* midi_stream_view() const
|
|
|
|
{ return midi_view()->midi_view(); }
|
2008-03-14 20:37:17 -04:00
|
|
|
|
2008-09-19 15:32:10 -04:00
|
|
|
void set_height (double);
|
2008-09-22 22:40:29 -04:00
|
|
|
void apply_note_range(uint8_t lowest, uint8_t highest, bool force=false);
|
2008-03-14 20:37:17 -04:00
|
|
|
|
2008-12-23 20:24:49 -05:00
|
|
|
inline ARDOUR::ColorMode color_mode() const { return midi_view()->color_mode(); }
|
|
|
|
|
2008-01-13 12:45:17 -05:00
|
|
|
void set_frame_color();
|
|
|
|
|
2007-08-06 01:30:18 -04:00
|
|
|
void redisplay_model();
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2008-02-10 13:16:25 -05:00
|
|
|
GhostRegion* add_ghost (TimeAxisView&);
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2008-09-18 20:47:49 -04:00
|
|
|
void add_note(const boost::shared_ptr<Evoral::Note> note);
|
2007-10-04 01:15:28 -04:00
|
|
|
void resolve_note(uint8_t note_num, double end_time);
|
2008-04-29 03:28:24 -04:00
|
|
|
|
2008-12-14 17:56:44 -05:00
|
|
|
struct ControlEvent
|
|
|
|
{
|
|
|
|
nframes_t time;
|
|
|
|
uint8_t value;
|
|
|
|
uint8_t channel;
|
|
|
|
|
|
|
|
ControlEvent(nframes_t a_time, uint8_t a_value, uint8_t a_channel)
|
|
|
|
: time(a_time), value(a_value), channel(a_channel) {}
|
2008-12-15 06:05:41 -05:00
|
|
|
|
|
|
|
ControlEvent& operator=(const ControlEvent& other) {
|
|
|
|
time = other.time;
|
|
|
|
value = other.value;
|
|
|
|
channel = other.channel;
|
|
|
|
return *this;
|
|
|
|
}
|
2008-12-14 17:56:44 -05:00
|
|
|
};
|
|
|
|
|
2008-12-23 16:05:50 -05:00
|
|
|
/** Add a new program change flag to the canvas.
|
2008-12-23 01:03:45 -05:00
|
|
|
* @param program the MidiRegionView::ControlEvent to add
|
|
|
|
* @param the text to display in the flag
|
|
|
|
*/
|
2008-12-14 17:56:44 -05:00
|
|
|
void add_pgm_change(ControlEvent& program, string displaytext);
|
2008-12-23 01:03:45 -05:00
|
|
|
|
2008-12-23 16:05:50 -05:00
|
|
|
/** Look up the given time and channel in the 'automation' and set keys accordingly.
|
2008-12-23 01:03:45 -05:00
|
|
|
* @param time the time of the program change event
|
|
|
|
* @param channel the MIDI channel of the event
|
|
|
|
* @key a reference to an instance of MIDI::Name::PatchPrimaryKey whose fields will
|
|
|
|
* will be set according to the result of the lookup
|
|
|
|
*/
|
2008-12-15 06:05:41 -05:00
|
|
|
void get_patch_key_at(double time, uint8_t channel, MIDI::Name::PatchPrimaryKey& key);
|
2008-12-23 01:03:45 -05:00
|
|
|
|
2008-12-23 16:05:50 -05:00
|
|
|
/** Change the 'automation' data of old_program to new values which correspond to new_patch.
|
2008-12-23 01:03:45 -05:00
|
|
|
* @param old_program identifies the program change event which is to be altered
|
|
|
|
* @param new_patch defines the new lsb, msb and program number which are to be set in the automation list data
|
|
|
|
*/
|
2008-12-15 06:05:41 -05:00
|
|
|
void alter_program_change(ControlEvent& old_program, const MIDI::Name::PatchPrimaryKey& new_patch);
|
2008-12-23 01:03:45 -05:00
|
|
|
|
2008-12-23 16:05:50 -05:00
|
|
|
/** Alter a given program to the new given one.
|
|
|
|
* (Called on context menu select on CanvasProgramChange)
|
2008-12-23 01:03:45 -05:00
|
|
|
*/
|
|
|
|
void program_selected(
|
|
|
|
ArdourCanvas::CanvasProgramChange& program,
|
|
|
|
const MIDI::Name::PatchPrimaryKey& new_patch);
|
|
|
|
|
2008-12-23 16:05:50 -05:00
|
|
|
/** Alter a given program to be its predecessor in the MIDNAM file.
|
2008-12-23 01:03:45 -05:00
|
|
|
*/
|
2008-12-15 06:05:41 -05:00
|
|
|
void previous_program(ArdourCanvas::CanvasProgramChange& program);
|
2008-12-23 01:03:45 -05:00
|
|
|
|
2008-12-23 16:05:50 -05:00
|
|
|
/** Alters a given program to be its successor in the MIDNAM file.
|
2008-12-23 01:03:45 -05:00
|
|
|
*/
|
2008-12-15 06:05:41 -05:00
|
|
|
void next_program(ArdourCanvas::CanvasProgramChange& program);
|
2008-12-23 01:03:45 -05:00
|
|
|
|
2008-12-23 16:05:50 -05:00
|
|
|
/** Displays all program changed events in the region as flags on the canvas.
|
2008-12-23 01:03:45 -05:00
|
|
|
*/
|
2008-12-11 03:06:27 -05:00
|
|
|
void find_and_insert_program_change_flags();
|
2007-06-01 19:27:29 -04:00
|
|
|
|
|
|
|
void begin_write();
|
|
|
|
void end_write();
|
2007-06-01 20:55:32 -04:00
|
|
|
void extend_active_notes();
|
2007-06-01 19:27:29 -04:00
|
|
|
|
2008-04-06 16:03:41 -04:00
|
|
|
void create_note_at(double x, double y, double duration);
|
2007-07-30 12:33:10 -04:00
|
|
|
|
2007-07-30 22:16:46 -04:00
|
|
|
void display_model(boost::shared_ptr<ARDOUR::MidiModel> model);
|
|
|
|
|
2008-05-21 21:02:04 -04:00
|
|
|
void start_delta_command(string name = "midi edit");
|
2008-09-18 20:47:49 -04:00
|
|
|
void command_add_note(const boost::shared_ptr<Evoral::Note> note, bool selected);
|
2008-05-21 21:02:04 -04:00
|
|
|
void command_remove_note(ArdourCanvas::CanvasNoteEvent* ev);
|
|
|
|
|
|
|
|
void apply_command();
|
|
|
|
void abort_command();
|
2008-03-14 20:37:17 -04:00
|
|
|
|
2008-04-29 03:28:24 -04:00
|
|
|
void note_entered(ArdourCanvas::CanvasNoteEvent* ev);
|
|
|
|
void unique_select(ArdourCanvas::CanvasNoteEvent* ev);
|
|
|
|
void note_selected(ArdourCanvas::CanvasNoteEvent* ev, bool add);
|
|
|
|
void note_deselected(ArdourCanvas::CanvasNoteEvent* ev, bool add);
|
2007-08-04 20:50:54 -04:00
|
|
|
void delete_selection();
|
2007-08-04 20:33:14 -04:00
|
|
|
size_t selection_size() { return _selection.size(); }
|
|
|
|
|
2007-08-07 22:01:14 -04:00
|
|
|
void move_selection(double dx, double dy);
|
2008-04-29 03:28:24 -04:00
|
|
|
void note_dropped(ArdourCanvas::CanvasNoteEvent* ev, double dt, uint8_t dnote);
|
2008-03-14 20:37:17 -04:00
|
|
|
|
2008-12-23 16:05:50 -05:00
|
|
|
/** Get the region position in pixels.
|
2008-03-26 07:11:47 -04:00
|
|
|
* This function is needed to subtract the region start in pixels
|
|
|
|
* from world coordinates submitted by the mouse
|
|
|
|
*/
|
2008-12-23 16:05:50 -05:00
|
|
|
double get_position_pixels();
|
2008-03-26 07:11:47 -04:00
|
|
|
|
2008-12-23 16:05:50 -05:00
|
|
|
/** Begin resizing of some notes.
|
|
|
|
* Called by CanvasMidiNote when resizing starts.
|
2008-03-26 07:11:47 -04:00
|
|
|
* @param note_end which end of the note, NOTE_ON or NOTE_OFF
|
|
|
|
*/
|
2008-03-14 20:37:17 -04:00
|
|
|
void begin_resizing(ArdourCanvas::CanvasNote::NoteEnd note_end);
|
2008-03-26 07:11:47 -04:00
|
|
|
|
2008-12-23 16:05:50 -05:00
|
|
|
/** Update resizing notes while user drags.
|
2008-03-26 07:11:47 -04:00
|
|
|
* @param note_end which end of the note, NOTE_ON or NOTE_OFF
|
|
|
|
* @param x the difference in mouse motion, ie the motion difference if relative=true
|
|
|
|
* or the absolute mouse position (track-relative) if relative is false
|
|
|
|
* @param relative true if relative resizing is taking place, false if absolute resizing
|
|
|
|
*/
|
|
|
|
void update_resizing(ArdourCanvas::CanvasNote::NoteEnd note_end, double x, bool relative);
|
|
|
|
|
2008-12-23 16:05:50 -05:00
|
|
|
/** Finish resizing notes when the user releases the mouse button.
|
2008-03-26 07:11:47 -04:00
|
|
|
* @param note_end which end of the note, NOTE_ON or NOTE_OFF
|
|
|
|
* @param event_x the absolute mouse position (track-relative)
|
|
|
|
* @param relative true if relative resizing is taking place, false if absolute resizing
|
|
|
|
*/
|
2008-03-14 20:37:17 -04:00
|
|
|
void commit_resizing(ArdourCanvas::CanvasNote::NoteEnd note_end, double event_x, bool relative);
|
|
|
|
|
2008-12-23 16:05:50 -05:00
|
|
|
/** Adjust the velocity on a note, and the selection if applicable.
|
|
|
|
* @param velocity the relative or absolute velocity
|
|
|
|
* @param relative whether velocity is relative or absolute
|
2008-04-03 17:47:47 -04:00
|
|
|
*/
|
2008-12-23 16:05:50 -05:00
|
|
|
void change_velocity(ArdourCanvas::CanvasNoteEvent* ev, int8_t velocity, bool relative=false);
|
2008-04-14 02:23:11 -04:00
|
|
|
|
2008-12-23 16:05:50 -05:00
|
|
|
/** Change the channel of the selection.
|
2008-04-14 02:23:11 -04:00
|
|
|
* @param channel - the channel number of the new channel, zero-based
|
|
|
|
*/
|
|
|
|
void change_channel(uint8_t channel);
|
2008-04-03 17:47:47 -04:00
|
|
|
|
2007-08-10 15:16:21 -04:00
|
|
|
enum MouseState { None, Pressed, SelectTouchDragging, SelectRectDragging, AddDragging, EraseTouchDragging };
|
|
|
|
MouseState mouse_state() const { return _mouse_state; }
|
2008-03-14 20:37:17 -04:00
|
|
|
|
|
|
|
struct NoteResizeData {
|
|
|
|
ArdourCanvas::CanvasNote *canvas_note;
|
|
|
|
ArdourCanvas::SimpleRect *resize_rect;
|
|
|
|
double current_x;
|
|
|
|
};
|
2008-04-05 09:56:20 -04:00
|
|
|
|
2008-12-23 16:05:50 -05:00
|
|
|
/** Snap a region relative pixel coordinate to pixel units.
|
2008-09-10 11:03:30 -04:00
|
|
|
* for pixel units (double) instead of nframes64_t
|
2008-04-05 09:56:20 -04:00
|
|
|
* @param x a pixel coordinate relative to region start
|
|
|
|
* @return the snapped pixel coordinate relative to region start
|
|
|
|
*/
|
|
|
|
double snap_to_pixel(double x);
|
2008-03-14 20:37:17 -04:00
|
|
|
|
2008-12-23 16:05:50 -05:00
|
|
|
/** Snap a region relative pixel coordinate to frame units.
|
2008-04-05 09:56:20 -04:00
|
|
|
* @param x a pixel coordinate relative to region start
|
2008-09-10 11:03:30 -04:00
|
|
|
* @return the snapped nframes64_t coordinate relative to region start
|
2008-04-05 09:56:20 -04:00
|
|
|
*/
|
2008-09-10 11:03:30 -04:00
|
|
|
nframes64_t snap_to_frame(double x);
|
2008-04-06 16:03:41 -04:00
|
|
|
|
2008-12-23 16:05:50 -05:00
|
|
|
/** Snap a region relative frame coordinate to frame units.
|
2008-04-06 16:03:41 -04:00
|
|
|
* @param x a pixel coordinate relative to region start
|
2008-09-10 11:03:30 -04:00
|
|
|
* @return the snapped nframes64_t coordinate relative to region start
|
2008-04-06 16:03:41 -04:00
|
|
|
*/
|
2008-09-10 11:03:30 -04:00
|
|
|
nframes64_t snap_to_frame(nframes64_t x);
|
2008-04-05 09:56:20 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
protected:
|
|
|
|
|
2008-12-23 16:05:50 -05:00
|
|
|
/** Allows derived types to specify their visibility requirements
|
|
|
|
* to the TimeAxisViewItem parent class.
|
|
|
|
*/
|
2008-03-14 20:37:17 -04:00
|
|
|
MidiRegionView (ArdourCanvas::Group *,
|
2006-08-29 17:21:48 -04:00
|
|
|
RouteTimeAxisView&,
|
|
|
|
boost::shared_ptr<ARDOUR::MidiRegion>,
|
|
|
|
double samples_per_unit,
|
|
|
|
Gdk::Color& basic_color,
|
|
|
|
TimeAxisViewItem::Visibility);
|
2008-03-14 20:37:17 -04:00
|
|
|
|
2007-06-09 02:10:30 -04:00
|
|
|
void region_resized (ARDOUR::Change);
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
void set_flags (XMLNode *);
|
|
|
|
void store_flags ();
|
2008-03-14 20:37:17 -04:00
|
|
|
|
2007-06-09 02:10:30 -04:00
|
|
|
void reset_width_dependent_items (double pixel_width);
|
2007-06-01 19:27:29 -04:00
|
|
|
|
|
|
|
private:
|
2009-01-06 21:40:13 -05:00
|
|
|
/** Play the NoteOn event of the given note immediately
|
|
|
|
* and schedule the playback of the corresponding NoteOff event.
|
2008-12-25 18:08:57 -05:00
|
|
|
*/
|
|
|
|
void play_midi_note(boost::shared_ptr<Evoral::Note> note);
|
|
|
|
|
2009-01-06 21:40:13 -05:00
|
|
|
/** Play the NoteOff-Event of the given note immediately
|
|
|
|
* (scheduled by @ref play_midi_note()).
|
2008-12-25 18:08:57 -05:00
|
|
|
*/
|
2009-01-06 21:40:13 -05:00
|
|
|
bool play_midi_note_off(boost::shared_ptr<Evoral::Note> note);
|
2008-12-25 18:08:57 -05:00
|
|
|
|
2007-07-06 23:19:04 -04:00
|
|
|
void clear_events();
|
2007-08-11 02:17:42 -04:00
|
|
|
void switch_source(boost::shared_ptr<ARDOUR::Source> src);
|
2007-06-09 02:10:30 -04:00
|
|
|
|
2007-07-14 21:56:11 -04:00
|
|
|
bool canvas_event(GdkEvent* ev);
|
2007-07-19 17:00:09 -04:00
|
|
|
bool note_canvas_event(GdkEvent* ev);
|
2008-04-20 18:33:13 -04:00
|
|
|
|
2008-05-11 22:40:48 -04:00
|
|
|
void midi_channel_mode_changed(ARDOUR::ChannelMode mode, uint16_t mask);
|
2008-12-11 03:06:27 -05:00
|
|
|
void midi_patch_settings_changed(std::string model, std::string custom_device_mode);
|
2008-12-23 16:05:50 -05:00
|
|
|
|
|
|
|
void change_note_velocity(ArdourCanvas::CanvasNoteEvent* ev, int8_t velocity, bool relative=false);
|
2008-03-14 20:37:17 -04:00
|
|
|
|
2008-04-29 03:28:24 -04:00
|
|
|
void clear_selection_except(ArdourCanvas::CanvasNoteEvent* ev);
|
2007-08-05 19:33:21 -04:00
|
|
|
void clear_selection() { clear_selection_except(NULL); }
|
2007-08-06 20:09:22 -04:00
|
|
|
void update_drag_selection(double last_x, double x, double last_y, double y);
|
2008-03-26 07:11:47 -04:00
|
|
|
|
2008-05-11 22:40:48 -04:00
|
|
|
int8_t _force_channel;
|
|
|
|
uint16_t _last_channel_selection;
|
|
|
|
double _default_note_length;
|
2008-09-22 22:40:29 -04:00
|
|
|
uint8_t _current_range_min;
|
|
|
|
uint8_t _current_range_max;
|
2008-12-11 03:06:27 -05:00
|
|
|
|
2009-01-14 04:36:56 -05:00
|
|
|
/// MIDNAM information of the current track: Model name of MIDNAM file
|
2008-12-11 03:06:27 -05:00
|
|
|
string _model_name;
|
2009-01-14 04:36:56 -05:00
|
|
|
|
|
|
|
/// MIDNAM information of the current track: CustomDeviceMode
|
2008-12-11 03:06:27 -05:00
|
|
|
string _custom_device_mode;
|
2007-08-03 21:07:21 -04:00
|
|
|
|
2008-09-22 22:40:29 -04:00
|
|
|
typedef std::vector<ArdourCanvas::CanvasNoteEvent*> Events;
|
|
|
|
typedef std::vector< boost::shared_ptr<ArdourCanvas::CanvasProgramChange> > PgmChanges;
|
|
|
|
|
|
|
|
boost::shared_ptr<ARDOUR::MidiModel> _model;
|
|
|
|
Events _events;
|
|
|
|
PgmChanges _pgm_changes;
|
|
|
|
ArdourCanvas::CanvasNote** _active_notes;
|
|
|
|
ArdourCanvas::Group* _note_group;
|
|
|
|
ARDOUR::MidiModel::DeltaCommand* _delta_command;
|
2008-03-14 20:37:17 -04:00
|
|
|
|
2007-08-09 16:50:56 -04:00
|
|
|
MouseState _mouse_state;
|
|
|
|
int _pressed_button;
|
2007-08-04 20:33:14 -04:00
|
|
|
|
2008-04-29 03:28:24 -04:00
|
|
|
typedef std::set<ArdourCanvas::CanvasNoteEvent*> Selection;
|
2008-05-21 21:02:04 -04:00
|
|
|
/// Currently selected CanvasNoteEvents
|
2007-08-04 20:33:14 -04:00
|
|
|
Selection _selection;
|
2008-03-14 20:37:17 -04:00
|
|
|
|
2008-05-21 21:02:04 -04:00
|
|
|
/** New notes (created in the current command) which should be selected
|
|
|
|
* when they appear after the command is applied. */
|
2008-09-18 20:47:49 -04:00
|
|
|
std::set< boost::shared_ptr<Evoral::Note> > _marked_for_selection;
|
2008-04-03 17:47:47 -04:00
|
|
|
|
2008-03-14 20:37:17 -04:00
|
|
|
std::vector<NoteResizeData *> _resize_data;
|
2006-08-10 23:24:57 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __gtk_ardour_midi_region_view_h__ */
|