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
|
|
|
};
|
|
|
|
|
|
|
|
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-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-09-18 20:47:49 -04:00
|
|
|
void add_pgm_change(boost::shared_ptr<Evoral::Event> event);
|
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-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
|
|
|
|
*/
|
|
|
|
double get_position_pixels(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function is called by CanvasMidiNote when resizing starts,
|
|
|
|
* i.e. when the user presses mouse-2 on the note
|
|
|
|
* @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
|
|
|
|
|
|
|
/**
|
|
|
|
* This function is called while the user moves the mouse when resizing notes
|
|
|
|
* @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);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function is called while the user releases the mouse button when resizing notes
|
|
|
|
* @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-04-03 17:47:47 -04:00
|
|
|
/**
|
|
|
|
* This function is called while the user adjusts the velocity on a selection of notes
|
2008-04-14 02:23:11 -04:00
|
|
|
* @param velocity the relative or absolute velocity, depending on the value of relative
|
2008-04-03 17:47:47 -04:00
|
|
|
* @param relative true if the given velocity represents a delta to be applied to all notes, false
|
|
|
|
* if the absolute value of the note shoud be set
|
|
|
|
*/
|
|
|
|
void change_velocity(uint8_t velocity, bool relative=false);
|
2008-04-14 02:23:11 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This function is called when the user adjusts the midi channel of a selection of notes
|
|
|
|
* @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-04-06 16:03:41 -04:00
|
|
|
* This function provides the snap function for region position relative coordinates
|
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-04-05 09:56:20 -04:00
|
|
|
/**
|
2008-04-06 16:03:41 -04:00
|
|
|
* This function provides the snap function for region position relative coordinates
|
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
|
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
|
|
|
|
|
|
|
/**
|
|
|
|
* This function provides the snap function for region position relative coordinates
|
|
|
|
* @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-03-26 07:11:47 -04:00
|
|
|
/**
|
|
|
|
* this constructor allows derived types
|
|
|
|
* to specify their visibility requirements
|
|
|
|
* to the TimeAxisViewItem parent class
|
2006-08-10 23:24:57 -04:00
|
|
|
*/
|
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:
|
|
|
|
|
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-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;
|
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__ */
|