2006-07-23 12:03:19 +00:00
|
|
|
/*
|
2009-10-14 16:10:01 +00:00
|
|
|
Copyright (C) 2006 Paul Davis
|
2006-07-23 12:03:19 +00: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 __ardour_midi_time_axis_h__
|
|
|
|
|
#define __ardour_midi_time_axis_h__
|
|
|
|
|
|
|
|
|
|
#include <gtkmm/table.h>
|
|
|
|
|
#include <gtkmm/button.h>
|
|
|
|
|
#include <gtkmm/box.h>
|
|
|
|
|
#include <gtkmm/menu.h>
|
|
|
|
|
#include <gtkmm/menuitem.h>
|
|
|
|
|
#include <gtkmm/radiomenuitem.h>
|
|
|
|
|
#include <gtkmm/checkmenuitem.h>
|
|
|
|
|
|
|
|
|
|
#include <gtkmm2ext/selector.h>
|
|
|
|
|
#include <list>
|
|
|
|
|
|
2009-02-25 18:26:51 +00:00
|
|
|
#include "ardour/types.h"
|
|
|
|
|
#include "ardour/region.h"
|
2006-07-23 12:03:19 +00:00
|
|
|
|
|
|
|
|
#include "ardour_dialog.h"
|
|
|
|
|
#include "route_ui.h"
|
|
|
|
|
#include "enums.h"
|
|
|
|
|
#include "route_time_axis.h"
|
|
|
|
|
#include "canvas.h"
|
2007-07-15 01:56:11 +00:00
|
|
|
#include "midi_streamview.h"
|
2008-04-19 02:11:11 +00:00
|
|
|
#include "midi_channel_selector.h"
|
2006-07-23 12:03:19 +00:00
|
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
|
class Session;
|
|
|
|
|
class RouteGroup;
|
2007-06-27 20:23:48 +00:00
|
|
|
class Processor;
|
2006-07-23 12:03:19 +00:00
|
|
|
class Location;
|
|
|
|
|
class MidiPlaylist;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class PublicEditor;
|
2007-07-05 07:02:24 +00:00
|
|
|
class MidiStreamView;
|
2008-01-13 17:45:17 +00:00
|
|
|
class MidiScroomer;
|
|
|
|
|
class PianoRollHeader;
|
2010-08-03 19:22:57 +00:00
|
|
|
class StepEntry;
|
2006-07-23 12:03:19 +00:00
|
|
|
|
|
|
|
|
class MidiTimeAxisView : public RouteTimeAxisView
|
|
|
|
|
{
|
|
|
|
|
public:
|
2009-12-17 18:24:23 +00:00
|
|
|
MidiTimeAxisView (PublicEditor&, ARDOUR::Session*, boost::shared_ptr<ARDOUR::Route>, ArdourCanvas::Canvas& canvas);
|
2006-07-23 12:03:19 +00:00
|
|
|
virtual ~MidiTimeAxisView ();
|
|
|
|
|
|
2007-07-05 07:02:24 +00:00
|
|
|
MidiStreamView* midi_view();
|
|
|
|
|
|
2006-07-23 12:03:19 +00:00
|
|
|
/* overridden from parent to store display state */
|
|
|
|
|
guint32 show_at (double y, int& nth, Gtk::VBox *parent);
|
2008-09-27 18:07:37 +00:00
|
|
|
void set_height (uint32_t);
|
2006-07-23 12:03:19 +00:00
|
|
|
void hide ();
|
2007-06-27 15:51:50 +00:00
|
|
|
|
2010-08-13 14:11:01 +00:00
|
|
|
boost::shared_ptr<ARDOUR::MidiRegion> add_region (ARDOUR::framepos_t pos);
|
2009-09-03 12:39:50 +00:00
|
|
|
|
2008-09-19 17:24:52 +00:00
|
|
|
void show_all_automation ();
|
2008-02-19 03:24:44 +00:00
|
|
|
void show_existing_automation ();
|
2008-09-29 22:47:40 +00:00
|
|
|
void create_automation_child (const Evoral::Parameter& param, bool show);
|
2006-07-23 12:03:19 +00:00
|
|
|
|
2008-12-24 01:24:49 +00:00
|
|
|
ARDOUR::NoteMode note_mode() const { return _note_mode; }
|
|
|
|
|
ARDOUR::ColorMode color_mode() const { return _color_mode; }
|
2008-01-13 17:45:17 +00:00
|
|
|
|
2008-02-10 18:16:25 +00:00
|
|
|
void update_range();
|
2009-10-14 16:10:01 +00:00
|
|
|
|
|
|
|
|
sigc::signal<void, ARDOUR::ChannelMode, uint16_t>& signal_channel_mode_changed() {
|
|
|
|
|
return _channel_selector.mode_changed;
|
2008-12-11 08:06:27 +00:00
|
|
|
}
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2009-05-12 17:03:42 +00:00
|
|
|
sigc::signal<void, std::string, std::string>& signal_midi_patch_settings_changed() {
|
2008-12-11 08:06:27 +00:00
|
|
|
return _midi_patch_settings_changed;
|
|
|
|
|
}
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2009-09-05 14:11:48 +00:00
|
|
|
void check_step_edit ();
|
2010-08-04 17:04:20 +00:00
|
|
|
void step_edit_rest (Evoral::MusicalTime beats);
|
2010-08-04 20:28:10 +00:00
|
|
|
void step_edit_beat_sync ();
|
|
|
|
|
void step_edit_bar_sync ();
|
2010-08-11 18:21:37 +00:00
|
|
|
int step_add_bank_change (uint8_t channel, uint8_t bank);
|
|
|
|
|
int step_add_program_change (uint8_t channel, uint8_t program);
|
2010-08-03 04:13:05 +00:00
|
|
|
int step_add_note (uint8_t channel, uint8_t pitch, uint8_t velocity,
|
|
|
|
|
Evoral::MusicalTime beat_duration);
|
2010-08-13 14:11:01 +00:00
|
|
|
void step_edit_sustain (Evoral::MusicalTime beats);
|
2010-08-03 04:13:05 +00:00
|
|
|
bool step_edit_within_triplet () const;
|
|
|
|
|
void step_edit_toggle_triplet ();
|
|
|
|
|
bool step_edit_within_chord () const;
|
|
|
|
|
void step_edit_toggle_chord ();
|
2010-08-13 21:48:31 +00:00
|
|
|
void reset_step_edit_beat_pos ();
|
|
|
|
|
void resync_step_edit_to_edit_point ();
|
|
|
|
|
void move_step_edit_beat_pos (Evoral::MusicalTime beats);
|
2010-08-11 19:11:14 +00:00
|
|
|
void set_step_edit_cursor_width (Evoral::MusicalTime beats);
|
|
|
|
|
|
2010-05-28 21:39:12 +00:00
|
|
|
const MidiMultipleChannelSelector& channel_selector() { return _channel_selector; }
|
|
|
|
|
|
2010-06-08 21:48:38 +00:00
|
|
|
Gtk::CheckMenuItem* automation_child_menu_item (Evoral::Parameter);
|
2010-08-03 21:50:15 +00:00
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
void start_step_editing ();
|
|
|
|
|
void stop_step_editing ();
|
|
|
|
|
|
2006-07-23 12:03:19 +00:00
|
|
|
private:
|
2009-05-12 17:03:42 +00:00
|
|
|
sigc::signal<void, std::string, std::string> _midi_patch_settings_changed;
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2008-12-11 08:06:27 +00:00
|
|
|
void model_changed();
|
|
|
|
|
void custom_device_mode_changed();
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2007-07-15 01:56:11 +00:00
|
|
|
void append_extra_display_menu_items ();
|
2007-06-27 15:51:50 +00:00
|
|
|
void build_automation_action_menu ();
|
2008-12-29 01:02:41 +00:00
|
|
|
Gtk::Menu* build_note_mode_menu();
|
2008-12-24 01:24:49 +00:00
|
|
|
Gtk::Menu* build_color_mode_menu();
|
2007-07-07 03:19:04 +00:00
|
|
|
|
2008-12-24 01:24:49 +00:00
|
|
|
void set_note_mode (ARDOUR::NoteMode mode);
|
|
|
|
|
void set_color_mode(ARDOUR::ColorMode mode);
|
2007-07-15 01:56:11 +00:00
|
|
|
void set_note_range(MidiStreamView::VisibleNoteRange range);
|
2007-07-07 03:19:04 +00:00
|
|
|
|
2006-07-23 12:03:19 +00:00
|
|
|
void route_active_changed ();
|
|
|
|
|
|
2008-09-23 02:40:29 +00:00
|
|
|
bool _ignore_signals;
|
2008-04-20 22:33:13 +00:00
|
|
|
MidiScroomer* _range_scroomer;
|
|
|
|
|
PianoRollHeader* _piano_roll_header;
|
|
|
|
|
ARDOUR::NoteMode _note_mode;
|
|
|
|
|
Gtk::RadioMenuItem* _note_mode_item;
|
|
|
|
|
Gtk::RadioMenuItem* _percussion_mode_item;
|
2008-12-24 01:24:49 +00:00
|
|
|
ARDOUR::ColorMode _color_mode;
|
|
|
|
|
Gtk::RadioMenuItem* _meter_color_mode_item;
|
|
|
|
|
Gtk::RadioMenuItem* _channel_color_mode_item;
|
|
|
|
|
Gtk::RadioMenuItem* _track_color_mode_item;
|
2008-12-09 08:35:02 +00:00
|
|
|
Gtk::VBox _midi_controls_box;
|
2008-04-20 22:33:13 +00:00
|
|
|
MidiMultipleChannelSelector _channel_selector;
|
2008-12-11 08:06:27 +00:00
|
|
|
Gtk::ComboBoxText _model_selector;
|
|
|
|
|
Gtk::ComboBoxText _custom_device_mode_selector;
|
2009-09-03 12:39:50 +00:00
|
|
|
|
|
|
|
|
Gtk::CheckMenuItem* _step_edit_item;
|
2009-09-25 19:00:34 +00:00
|
|
|
Gtk::CheckMenuItem* _midi_thru_item;
|
|
|
|
|
Gtk::Menu* default_channel_menu;
|
2009-09-03 12:39:50 +00:00
|
|
|
|
|
|
|
|
nframes64_t step_edit_insert_position;
|
|
|
|
|
Evoral::MusicalTime step_edit_beat_pos;
|
2010-08-13 14:11:01 +00:00
|
|
|
boost::shared_ptr<ARDOUR::MidiRegion> step_edit_region;
|
2009-09-03 12:39:50 +00:00
|
|
|
MidiRegionView* step_edit_region_view;
|
2010-08-03 04:13:05 +00:00
|
|
|
uint8_t _step_edit_triplet_countdown;
|
|
|
|
|
bool _step_edit_within_chord;
|
|
|
|
|
Evoral::MusicalTime _step_edit_chord_duration;
|
2010-07-27 15:42:14 +00:00
|
|
|
void region_removed (boost::weak_ptr<ARDOUR::Region>);
|
|
|
|
|
void playlist_changed ();
|
|
|
|
|
PBD::ScopedConnection step_edit_region_connection;
|
2009-09-03 12:39:50 +00:00
|
|
|
|
2009-09-25 19:00:34 +00:00
|
|
|
Gtk::Menu* build_def_channel_menu();
|
|
|
|
|
void set_default_channel (int);
|
|
|
|
|
void toggle_midi_thru ();
|
2010-01-06 21:56:23 +00:00
|
|
|
|
2010-01-09 02:36:47 +00:00
|
|
|
void change_all_channel_tracks_visibility (bool yn, Evoral::Parameter param);
|
2010-01-06 21:56:23 +00:00
|
|
|
void add_basic_parameter_menu_item (Gtk::Menu_Helpers::MenuList& items, const std::string& label, Evoral::Parameter param);
|
2010-01-09 02:36:47 +00:00
|
|
|
void add_channel_command_menu_item (Gtk::Menu_Helpers::MenuList& items, const std::string& label, ARDOUR::AutomationType auto_type, uint8_t cmd);
|
2010-01-06 21:56:23 +00:00
|
|
|
|
2010-01-07 19:15:33 +00:00
|
|
|
Gtk::Menu* controller_menu;
|
|
|
|
|
void build_controller_menu ();
|
2010-01-09 02:36:47 +00:00
|
|
|
void set_channel_mode (ARDOUR::ChannelMode, uint16_t);
|
2010-01-07 19:15:33 +00:00
|
|
|
|
|
|
|
|
void add_note_selection (uint8_t note);
|
|
|
|
|
void extend_note_selection (uint8_t note);
|
|
|
|
|
void toggle_note_selection (uint8_t note);
|
|
|
|
|
void add_note_selection_region_view (RegionView* rv, uint8_t note, uint16_t chn_mask);
|
|
|
|
|
void extend_note_selection_region_view (RegionView*, uint8_t note, uint16_t chn_mask);
|
|
|
|
|
void toggle_note_selection_region_view (RegionView*, uint8_t note, uint16_t chn_mask);
|
2010-06-08 21:48:38 +00:00
|
|
|
|
|
|
|
|
/** parameter -> menu item map for the channel command items */
|
|
|
|
|
ParameterMenuMap _channel_command_menu_map;
|
|
|
|
|
/** parameter -> menu item map for the controller menu */
|
|
|
|
|
ParameterMenuMap _controller_menu_map;
|
2010-08-03 19:22:57 +00:00
|
|
|
|
|
|
|
|
StepEntry* step_editor;
|
|
|
|
|
bool step_editor_hidden (GdkEventAny*);
|
2010-08-11 19:42:42 +00:00
|
|
|
void step_editor_hide ();
|
2010-08-13 21:48:31 +00:00
|
|
|
void resync_step_edit_position ();
|
|
|
|
|
void prepare_step_edit_region ();
|
2006-07-23 12:03:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif /* __ardour_midi_time_axis_h__ */
|
|
|
|
|
|