2006-08-10 23:24:57 -04:00
|
|
|
/*
|
2007-08-17 13:25:20 -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"
|
2007-08-01 17:59:07 -04:00
|
|
|
#include "canvas-midi-event.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:
|
|
|
|
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);
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
~MidiRegionView ();
|
|
|
|
|
2007-07-30 22:16:46 -04:00
|
|
|
virtual void init (Gdk::Color& basic_color, bool wfd);
|
2006-08-10 23:24:57 -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(); }
|
|
|
|
|
2007-06-09 02:10:30 -04:00
|
|
|
void set_y_position_and_height (double, double);
|
2007-08-06 01:30:18 -04:00
|
|
|
|
|
|
|
void redisplay_model();
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
GhostRegion* add_ghost (AutomationTimeAxisView&);
|
|
|
|
|
2007-10-14 01:45:31 -04:00
|
|
|
void add_note(const boost::shared_ptr<ARDOUR::Note> note);
|
2007-10-04 01:15:28 -04:00
|
|
|
void resolve_note(uint8_t note_num, double end_time);
|
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
|
|
|
|
2007-08-03 21:07:21 -04:00
|
|
|
void create_note_at(double x, double y, double dur);
|
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);
|
|
|
|
|
2007-08-02 00:43:43 -04:00
|
|
|
/* This stuff is a bit boilerplatey ATM. Work in progress. */
|
|
|
|
|
2007-08-01 17:59:07 -04:00
|
|
|
inline void start_remove_command() {
|
|
|
|
if (!_delta_command)
|
|
|
|
_delta_command = _model->new_delta_command();
|
|
|
|
}
|
2007-08-02 00:43:43 -04:00
|
|
|
|
|
|
|
inline void start_delta_command() {
|
|
|
|
if (!_delta_command)
|
|
|
|
_delta_command = _model->new_delta_command();
|
|
|
|
}
|
|
|
|
|
2007-10-14 01:45:31 -04:00
|
|
|
void command_add_note(const boost::shared_ptr<ARDOUR::Note> note) {
|
2007-08-10 16:55:27 -04:00
|
|
|
if (_delta_command)
|
2007-08-02 00:43:43 -04:00
|
|
|
_delta_command->add(note);
|
|
|
|
}
|
2007-08-01 17:59:07 -04:00
|
|
|
|
2007-08-10 16:55:27 -04:00
|
|
|
void command_remove_note(ArdourCanvas::CanvasMidiEvent* ev) {
|
|
|
|
if (_delta_command && ev->note()) {
|
2007-10-14 01:45:31 -04:00
|
|
|
_delta_command->remove(ev->note());
|
2007-08-10 16:55:27 -04:00
|
|
|
ev->selected(true);
|
2007-08-05 21:00:23 -04:00
|
|
|
}
|
2007-08-01 17:59:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void abort_command() {
|
|
|
|
delete _delta_command;
|
|
|
|
_delta_command = NULL;
|
2007-08-05 21:00:23 -04:00
|
|
|
clear_selection();
|
2007-08-01 17:59:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void apply_command() {
|
|
|
|
if (_delta_command) {
|
|
|
|
_model->apply_command(_delta_command);
|
|
|
|
_delta_command = NULL;
|
|
|
|
}
|
2007-08-07 16:51:24 -04:00
|
|
|
midi_view()->midi_track()->diskstream()->playlist_modified();
|
2007-08-01 17:59:07 -04:00
|
|
|
}
|
2007-08-10 16:55:27 -04:00
|
|
|
|
|
|
|
void note_entered(ArdourCanvas::CanvasMidiEvent* ev);
|
2007-08-04 20:33:14 -04:00
|
|
|
void unique_select(ArdourCanvas::CanvasMidiEvent* ev);
|
|
|
|
void note_selected(ArdourCanvas::CanvasMidiEvent* ev, bool add);
|
|
|
|
void note_deselected(ArdourCanvas::CanvasMidiEvent* 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);
|
|
|
|
void note_dropped(ArdourCanvas::CanvasMidiEvent* ev, double dt, uint8_t dnote);
|
2007-08-10 15:16:21 -04:00
|
|
|
|
|
|
|
enum MouseState { None, Pressed, SelectTouchDragging, SelectRectDragging, AddDragging, EraseTouchDragging };
|
|
|
|
MouseState mouse_state() const { return _mouse_state; }
|
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
protected:
|
|
|
|
|
|
|
|
/* this constructor allows derived types
|
|
|
|
to specify their visibility requirements
|
|
|
|
to the TimeAxisViewItem parent class
|
|
|
|
*/
|
|
|
|
|
|
|
|
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);
|
2006-08-10 23:24:57 -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 ();
|
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);
|
2007-08-04 20:33:14 -04:00
|
|
|
|
|
|
|
void clear_selection_except(ArdourCanvas::CanvasMidiEvent* 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);
|
2007-07-14 21:56:11 -04:00
|
|
|
|
2007-08-03 21:07:21 -04:00
|
|
|
double _default_note_length;
|
|
|
|
|
2007-08-06 20:09:22 -04:00
|
|
|
boost::shared_ptr<ARDOUR::MidiModel> _model;
|
|
|
|
std::vector<ArdourCanvas::CanvasMidiEvent*> _events;
|
|
|
|
ArdourCanvas::CanvasNote** _active_notes;
|
2007-08-09 16:50:56 -04:00
|
|
|
ArdourCanvas::Group* _note_group;
|
2007-08-06 20:09:22 -04:00
|
|
|
ARDOUR::MidiModel::DeltaCommand* _delta_command;
|
2007-08-10 15:16:21 -04:00
|
|
|
|
2007-08-09 16:50:56 -04:00
|
|
|
MouseState _mouse_state;
|
|
|
|
int _pressed_button;
|
2007-08-04 20:33:14 -04:00
|
|
|
|
|
|
|
typedef std::set<ArdourCanvas::CanvasMidiEvent*> Selection;
|
|
|
|
Selection _selection;
|
2006-08-10 23:24:57 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __gtk_ardour_midi_region_view_h__ */
|