2006-07-23 08:03:19 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2000 Paul Davis
|
|
|
|
|
|
|
|
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 <cstdlib>
|
|
|
|
#include <cmath>
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <sigc++/bind.h>
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "pbd/error.h"
|
|
|
|
#include "pbd/stl_delete.h"
|
|
|
|
#include "pbd/whitespace.h"
|
|
|
|
#include "pbd/enumwriter.h"
|
2006-07-23 08:03:19 -04:00
|
|
|
|
|
|
|
#include <gtkmm2ext/gtk_ui.h>
|
|
|
|
#include <gtkmm2ext/selector.h>
|
|
|
|
#include <gtkmm2ext/stop_signal.h>
|
|
|
|
#include <gtkmm2ext/bindable_button.h>
|
|
|
|
#include <gtkmm2ext/utils.h>
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/midi_playlist.h"
|
|
|
|
#include "ardour/midi_diskstream.h"
|
|
|
|
#include "ardour/midi_patch_manager.h"
|
|
|
|
#include "ardour/processor.h"
|
|
|
|
#include "ardour/ladspa_plugin.h"
|
|
|
|
#include "ardour/location.h"
|
|
|
|
#include "ardour/playlist.h"
|
|
|
|
#include "ardour/session.h"
|
|
|
|
#include "ardour/session_playlist.h"
|
|
|
|
#include "ardour/utils.h"
|
2006-07-23 08:03:19 -04:00
|
|
|
|
|
|
|
#include "ardour_ui.h"
|
|
|
|
#include "midi_time_axis.h"
|
|
|
|
#include "automation_time_axis.h"
|
2007-06-30 14:41:50 -04:00
|
|
|
#include "automation_line.h"
|
2007-06-27 17:37:08 -04:00
|
|
|
#include "add_midi_cc_track_dialog.h"
|
2006-07-23 08:03:19 -04:00
|
|
|
#include "canvas_impl.h"
|
|
|
|
#include "crossfade_view.h"
|
|
|
|
#include "enums.h"
|
|
|
|
#include "gui_thread.h"
|
|
|
|
#include "keyboard.h"
|
|
|
|
#include "playlist_selector.h"
|
|
|
|
#include "plugin_selector.h"
|
|
|
|
#include "plugin_ui.h"
|
|
|
|
#include "point_selection.h"
|
|
|
|
#include "prompter.h"
|
|
|
|
#include "public_editor.h"
|
2006-08-01 13:19:38 -04:00
|
|
|
#include "region_view.h"
|
2006-07-23 08:03:19 -04:00
|
|
|
#include "rgb_macros.h"
|
|
|
|
#include "selection.h"
|
|
|
|
#include "simplerect.h"
|
|
|
|
#include "midi_streamview.h"
|
|
|
|
#include "utils.h"
|
2008-01-13 12:45:17 -05:00
|
|
|
#include "midi_scroomer.h"
|
|
|
|
#include "piano_roll_header.h"
|
2008-02-10 13:16:25 -05:00
|
|
|
#include "ghostregion.h"
|
2008-12-25 04:28:57 -05:00
|
|
|
#include "canvas-note-event.h"
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/midi_track.h"
|
2006-07-23 08:03:19 -04:00
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
using namespace ARDOUR;
|
|
|
|
using namespace PBD;
|
|
|
|
using namespace Gtk;
|
2008-04-18 22:11:11 -04:00
|
|
|
using namespace sigc;
|
2006-07-23 08:03:19 -04:00
|
|
|
using namespace Editing;
|
2008-10-04 22:32:05 -04:00
|
|
|
|
|
|
|
// Minimum height at which a control is displayed
|
2008-12-09 03:35:02 -05:00
|
|
|
static const uint32_t MIDI_CONTROLS_BOX_MIN_HEIGHT = 162;
|
2008-10-04 22:32:05 -04:00
|
|
|
static const uint32_t KEYBOARD_MIN_HEIGHT = 140;
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2009-02-16 00:13:05 -05:00
|
|
|
MidiTimeAxisView::MidiTimeAxisView (PublicEditor& ed, Session& sess,
|
|
|
|
boost::shared_ptr<Route> rt, Canvas& canvas)
|
2008-09-22 22:40:29 -04:00
|
|
|
: AxisView(sess) // virtually inherited
|
2007-07-06 23:19:04 -04:00
|
|
|
, RouteTimeAxisView(ed, sess, rt, canvas)
|
2008-09-22 22:40:29 -04:00
|
|
|
, _ignore_signals(false)
|
2008-01-13 12:45:17 -05:00
|
|
|
, _range_scroomer(0)
|
|
|
|
, _piano_roll_header(0)
|
2007-08-17 13:25:20 -04:00
|
|
|
, _note_mode(Sustained)
|
2008-12-23 20:24:49 -05:00
|
|
|
, _note_mode_item(0)
|
|
|
|
, _percussion_mode_item(0)
|
|
|
|
, _color_mode(MeterColors)
|
|
|
|
, _meter_color_mode_item(0)
|
|
|
|
, _channel_color_mode_item(0)
|
|
|
|
, _track_color_mode_item(0)
|
2006-07-23 08:03:19 -04:00
|
|
|
{
|
|
|
|
subplugin_menu.set_name ("ArdourContextMenu");
|
|
|
|
|
|
|
|
_view = new MidiStreamView (*this);
|
|
|
|
|
|
|
|
ignore_toggle = false;
|
|
|
|
|
|
|
|
mute_button->set_active (false);
|
|
|
|
solo_button->set_active (false);
|
|
|
|
|
2007-07-06 23:19:04 -04:00
|
|
|
if (is_midi_track()) {
|
2006-07-23 08:03:19 -04:00
|
|
|
controls_ebox.set_name ("MidiTimeAxisViewControlsBaseUnselected");
|
2007-07-06 23:19:04 -04:00
|
|
|
_note_mode = midi_track()->note_mode();
|
|
|
|
} else { // MIDI bus (which doesn't exist yet..)
|
2006-07-23 08:03:19 -04:00
|
|
|
controls_ebox.set_name ("MidiBusControlsBaseUnselected");
|
2007-07-06 23:19:04 -04:00
|
|
|
}
|
2006-07-23 08:03:19 -04:00
|
|
|
|
|
|
|
/* map current state of the route */
|
|
|
|
|
2007-06-27 16:23:48 -04:00
|
|
|
processors_changed ();
|
2006-07-23 08:03:19 -04:00
|
|
|
|
|
|
|
ensure_xml_node ();
|
|
|
|
|
|
|
|
set_state (*xml_node);
|
|
|
|
|
2007-06-27 16:23:48 -04:00
|
|
|
_route->processors_changed.connect (mem_fun(*this, &MidiTimeAxisView::processors_changed));
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2006-08-14 04:44:14 -04:00
|
|
|
if (is_track()) {
|
2008-01-13 12:45:17 -05:00
|
|
|
_piano_roll_header = new PianoRollHeader(*midi_view());
|
|
|
|
_range_scroomer = new MidiScroomer(midi_view()->note_range_adjustment);
|
|
|
|
|
|
|
|
controls_hbox.pack_start(*_range_scroomer);
|
|
|
|
controls_hbox.pack_start(*_piano_roll_header);
|
2006-07-23 08:03:19 -04:00
|
|
|
|
|
|
|
controls_ebox.set_name ("MidiTrackControlsBaseUnselected");
|
|
|
|
controls_base_selected_name = "MidiTrackControlsBaseSelected";
|
|
|
|
controls_base_unselected_name = "MidiTrackControlsBaseUnselected";
|
|
|
|
|
2008-02-10 13:16:25 -05:00
|
|
|
midi_view()->NoteRangeChanged.connect (mem_fun(*this, &MidiTimeAxisView::update_range));
|
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
/* ask for notifications of any new RegionViews */
|
2008-02-10 13:16:25 -05:00
|
|
|
_view->RegionViewAdded.connect (mem_fun(*this, &MidiTimeAxisView::region_view_added));
|
2006-08-14 04:44:14 -04:00
|
|
|
_view->attach ();
|
2007-09-05 22:30:39 -04:00
|
|
|
}
|
2008-04-19 06:30:38 -04:00
|
|
|
|
2008-12-09 03:35:02 -05:00
|
|
|
HBox* midi_controls_hbox = manage(new HBox());
|
2008-12-11 03:06:27 -05:00
|
|
|
|
2008-12-09 02:42:19 -05:00
|
|
|
MIDI::Name::MidiPatchManager& patch_manager = MIDI::Name::MidiPatchManager::instance();
|
|
|
|
|
2009-02-16 00:13:05 -05:00
|
|
|
MIDI::Name::MasterDeviceNames::Models::const_iterator m = patch_manager.all_models().begin();
|
|
|
|
for (; m != patch_manager.all_models().end(); ++m) {
|
|
|
|
_model_selector.append_text(m->c_str());
|
2008-12-09 02:42:19 -05:00
|
|
|
}
|
|
|
|
|
2008-12-11 03:06:27 -05:00
|
|
|
_model_selector.signal_changed().connect(mem_fun(*this, &MidiTimeAxisView::model_changed));
|
2008-12-09 02:42:19 -05:00
|
|
|
|
2008-12-11 03:06:27 -05:00
|
|
|
_custom_device_mode_selector.signal_changed().connect(
|
|
|
|
mem_fun(*this, &MidiTimeAxisView::custom_device_mode_changed));
|
2008-12-10 05:54:45 -05:00
|
|
|
|
|
|
|
// TODO: persist the choice
|
2008-12-11 03:06:27 -05:00
|
|
|
// this initializes the comboboxes and sends out the signal
|
|
|
|
_model_selector.set_active(0);
|
|
|
|
|
2008-12-09 03:35:02 -05:00
|
|
|
midi_controls_hbox->pack_start(_channel_selector, true, false);
|
2008-12-10 05:54:45 -05:00
|
|
|
if (!patch_manager.all_models().empty()) {
|
2008-12-11 03:06:27 -05:00
|
|
|
_midi_controls_box.pack_start(_model_selector, true, false);
|
|
|
|
_midi_controls_box.pack_start(_custom_device_mode_selector, true, false);
|
2008-12-10 05:54:45 -05:00
|
|
|
}
|
|
|
|
|
2008-12-09 03:35:02 -05:00
|
|
|
_midi_controls_box.pack_start(*midi_controls_hbox, true, true);
|
|
|
|
|
|
|
|
controls_vbox.pack_start(_midi_controls_box, false, false);
|
|
|
|
|
2008-04-21 11:10:13 -04:00
|
|
|
boost::shared_ptr<MidiDiskstream> diskstream = midi_track()->midi_diskstream();
|
2008-05-11 22:40:48 -04:00
|
|
|
|
2008-04-21 11:10:13 -04:00
|
|
|
// restore channel selector settings
|
2009-02-16 00:13:05 -05:00
|
|
|
_channel_selector.set_channel_mode(diskstream->get_channel_mode(),
|
|
|
|
diskstream->get_channel_mask());
|
2008-05-11 22:40:48 -04:00
|
|
|
_channel_selector.mode_changed.connect(
|
|
|
|
mem_fun(*midi_track()->midi_diskstream(), &MidiDiskstream::set_channel_mode));
|
2008-04-21 05:39:05 -04:00
|
|
|
|
2008-12-28 20:02:41 -05:00
|
|
|
XMLProperty *prop;
|
|
|
|
if ((prop = xml_node->property ("color-mode")) != 0) {
|
|
|
|
_color_mode = ColorMode (string_2_enum(prop->value(), _color_mode));
|
|
|
|
if (_color_mode == ChannelColors) {
|
|
|
|
_channel_selector.set_channel_colors(CanvasNoteEvent::midi_channel_colors);
|
|
|
|
}
|
|
|
|
}
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
MidiTimeAxisView::~MidiTimeAxisView ()
|
|
|
|
{
|
2008-02-21 20:45:29 -05:00
|
|
|
delete _piano_roll_header;
|
|
|
|
_piano_roll_header = 0;
|
2008-02-10 13:16:25 -05:00
|
|
|
|
2008-02-21 20:45:29 -05:00
|
|
|
delete _range_scroomer;
|
|
|
|
_range_scroomer = 0;
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
|
2008-12-11 03:06:27 -05:00
|
|
|
void MidiTimeAxisView::model_changed()
|
|
|
|
{
|
|
|
|
std::list<std::string> device_modes = MIDI::Name::MidiPatchManager::instance()
|
|
|
|
.custom_device_mode_names_by_model(_model_selector.get_active_text());
|
|
|
|
|
|
|
|
_custom_device_mode_selector.clear_items();
|
|
|
|
|
2009-02-16 00:13:05 -05:00
|
|
|
for (std::list<std::string>::const_iterator i = device_modes.begin();
|
|
|
|
i != device_modes.end(); ++i) {
|
2008-12-12 01:57:38 -05:00
|
|
|
cerr << "found custom device mode " << *i << " thread_id: " << pthread_self() << endl;
|
2008-12-11 03:06:27 -05:00
|
|
|
_custom_device_mode_selector.append_text(*i);
|
|
|
|
}
|
|
|
|
|
|
|
|
_custom_device_mode_selector.set_active(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MidiTimeAxisView::custom_device_mode_changed()
|
|
|
|
{
|
2009-02-16 00:13:05 -05:00
|
|
|
_midi_patch_settings_changed.emit(_model_selector.get_active_text(),
|
|
|
|
_custom_device_mode_selector.get_active_text());
|
2008-12-11 03:06:27 -05:00
|
|
|
}
|
|
|
|
|
2007-07-05 03:02:24 -04:00
|
|
|
MidiStreamView*
|
|
|
|
MidiTimeAxisView::midi_view()
|
|
|
|
{
|
|
|
|
return dynamic_cast<MidiStreamView*>(_view);
|
|
|
|
}
|
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
guint32
|
|
|
|
MidiTimeAxisView::show_at (double y, int& nth, Gtk::VBox *parent)
|
|
|
|
{
|
|
|
|
ensure_xml_node ();
|
2008-10-05 19:14:48 -04:00
|
|
|
xml_node->add_property ("shown-editor", "yes");
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2008-01-13 16:34:04 -05:00
|
|
|
guint32 ret = TimeAxisView::show_at (y, nth, parent);
|
|
|
|
return ret;
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MidiTimeAxisView::hide ()
|
|
|
|
{
|
|
|
|
ensure_xml_node ();
|
2008-10-05 19:14:48 -04:00
|
|
|
xml_node->add_property ("shown-editor", "no");
|
2006-07-23 08:03:19 -04:00
|
|
|
|
|
|
|
TimeAxisView::hide ();
|
|
|
|
}
|
|
|
|
|
2008-09-27 14:07:37 -04:00
|
|
|
void
|
|
|
|
MidiTimeAxisView::set_height (uint32_t h)
|
|
|
|
{
|
|
|
|
RouteTimeAxisView::set_height (h);
|
|
|
|
|
2008-12-09 03:35:02 -05:00
|
|
|
if (height >= MIDI_CONTROLS_BOX_MIN_HEIGHT) {
|
|
|
|
_midi_controls_box.show();
|
2008-10-04 22:32:05 -04:00
|
|
|
} else {
|
2008-12-09 03:35:02 -05:00
|
|
|
_midi_controls_box.hide();
|
2008-10-04 22:32:05 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (height >= KEYBOARD_MIN_HEIGHT) {
|
2008-09-27 14:07:37 -04:00
|
|
|
if (is_track() && _range_scroomer)
|
|
|
|
_range_scroomer->show();
|
|
|
|
if (is_track() && _piano_roll_header)
|
|
|
|
_piano_roll_header->show();
|
|
|
|
} else {
|
|
|
|
if (is_track() && _range_scroomer)
|
|
|
|
_range_scroomer->hide();
|
|
|
|
if (is_track() && _piano_roll_header)
|
|
|
|
_piano_roll_header->hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-14 21:56:11 -04:00
|
|
|
void
|
|
|
|
MidiTimeAxisView::append_extra_display_menu_items ()
|
|
|
|
{
|
|
|
|
using namespace Menu_Helpers;
|
|
|
|
|
|
|
|
MenuList& items = display_menu->items();
|
|
|
|
|
|
|
|
// Note range
|
|
|
|
Menu *range_menu = manage(new Menu);
|
|
|
|
MenuList& range_items = range_menu->items();
|
|
|
|
range_menu->set_name ("ArdourContextMenu");
|
|
|
|
|
2008-09-22 22:40:29 -04:00
|
|
|
range_items.push_back (MenuElem (_("Show Full Range"), bind (
|
2007-07-14 21:56:11 -04:00
|
|
|
mem_fun(*this, &MidiTimeAxisView::set_note_range),
|
|
|
|
MidiStreamView::FullRange)));
|
|
|
|
|
2008-09-22 22:40:29 -04:00
|
|
|
range_items.push_back (MenuElem (_("Fit Contents"), bind (
|
2007-07-14 21:56:11 -04:00
|
|
|
mem_fun(*this, &MidiTimeAxisView::set_note_range),
|
|
|
|
MidiStreamView::ContentsRange)));
|
|
|
|
|
|
|
|
items.push_back (MenuElem (_("Note range"), *range_menu));
|
2009-02-15 16:19:01 -05:00
|
|
|
|
|
|
|
items.push_back (MenuElem (_("Note mode"), *build_note_mode_menu()));
|
2007-07-14 21:56:11 -04:00
|
|
|
}
|
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
void
|
2007-06-27 11:51:50 -04:00
|
|
|
MidiTimeAxisView::build_automation_action_menu ()
|
2006-07-23 08:03:19 -04:00
|
|
|
{
|
2007-06-27 11:51:50 -04:00
|
|
|
using namespace Menu_Helpers;
|
|
|
|
|
|
|
|
RouteTimeAxisView::build_automation_action_menu ();
|
|
|
|
|
|
|
|
MenuList& automation_items = automation_action_menu->items();
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2007-06-27 11:51:50 -04:00
|
|
|
automation_items.push_back (SeparatorElem());
|
|
|
|
automation_items.push_back (MenuElem (_("Controller..."),
|
2008-09-21 14:08:18 -04:00
|
|
|
mem_fun(*this, &MidiTimeAxisView::add_cc_track)));
|
2009-01-21 03:32:23 -05:00
|
|
|
automation_items.push_back (MenuElem (_("Program Change"),
|
|
|
|
sigc::bind(mem_fun(*this, &MidiTimeAxisView::add_parameter_track),
|
|
|
|
Evoral::Parameter(MidiPgmChangeAutomation))));
|
2008-09-21 14:08:18 -04:00
|
|
|
automation_items.push_back (MenuElem (_("Bender"),
|
|
|
|
sigc::bind(mem_fun(*this, &MidiTimeAxisView::add_parameter_track),
|
2008-09-29 18:47:40 -04:00
|
|
|
Evoral::Parameter(MidiPitchBenderAutomation))));
|
2008-09-21 14:08:18 -04:00
|
|
|
automation_items.push_back (MenuElem (_("Pressure"),
|
|
|
|
sigc::bind(mem_fun(*this, &MidiTimeAxisView::add_parameter_track),
|
2008-09-29 18:47:40 -04:00
|
|
|
Evoral::Parameter(MidiChannelPressureAutomation))));
|
2007-06-27 11:51:50 -04:00
|
|
|
}
|
|
|
|
|
2007-07-06 23:19:04 -04:00
|
|
|
Gtk::Menu*
|
2008-12-28 20:02:41 -05:00
|
|
|
MidiTimeAxisView::build_note_mode_menu()
|
2007-07-06 23:19:04 -04:00
|
|
|
{
|
|
|
|
using namespace Menu_Helpers;
|
|
|
|
|
|
|
|
Menu* mode_menu = manage (new Menu);
|
|
|
|
MenuList& items = mode_menu->items();
|
|
|
|
mode_menu->set_name ("ArdourContextMenu");
|
|
|
|
|
|
|
|
RadioMenuItem::Group mode_group;
|
2007-07-28 03:09:21 -04:00
|
|
|
items.push_back (RadioMenuElem (mode_group, _("Sustained"),
|
|
|
|
bind (mem_fun (*this, &MidiTimeAxisView::set_note_mode), Sustained)));
|
2007-07-06 23:19:04 -04:00
|
|
|
_note_mode_item = dynamic_cast<RadioMenuItem*>(&items.back());
|
2007-07-28 03:09:21 -04:00
|
|
|
_note_mode_item->set_active(_note_mode == Sustained);
|
2007-07-06 23:19:04 -04:00
|
|
|
|
2007-07-28 03:09:21 -04:00
|
|
|
items.push_back (RadioMenuElem (mode_group, _("Percussive"),
|
|
|
|
bind (mem_fun (*this, &MidiTimeAxisView::set_note_mode), Percussive)));
|
2007-07-06 23:19:04 -04:00
|
|
|
_percussion_mode_item = dynamic_cast<RadioMenuItem*>(&items.back());
|
2007-07-28 03:09:21 -04:00
|
|
|
_percussion_mode_item->set_active(_note_mode == Percussive);
|
2007-07-06 23:19:04 -04:00
|
|
|
|
|
|
|
return mode_menu;
|
|
|
|
}
|
2008-12-23 20:24:49 -05:00
|
|
|
|
|
|
|
Gtk::Menu*
|
|
|
|
MidiTimeAxisView::build_color_mode_menu()
|
|
|
|
{
|
|
|
|
using namespace Menu_Helpers;
|
|
|
|
|
|
|
|
Menu* mode_menu = manage (new Menu);
|
|
|
|
MenuList& items = mode_menu->items();
|
|
|
|
mode_menu->set_name ("ArdourContextMenu");
|
|
|
|
|
|
|
|
RadioMenuItem::Group mode_group;
|
|
|
|
items.push_back (RadioMenuElem (mode_group, _("Meter Colors"),
|
|
|
|
bind (mem_fun (*this, &MidiTimeAxisView::set_color_mode), MeterColors)));
|
|
|
|
_meter_color_mode_item = dynamic_cast<RadioMenuItem*>(&items.back());
|
|
|
|
_meter_color_mode_item->set_active(_color_mode == MeterColors);
|
|
|
|
|
|
|
|
items.push_back (RadioMenuElem (mode_group, _("Channel Colors"),
|
|
|
|
bind (mem_fun (*this, &MidiTimeAxisView::set_color_mode), ChannelColors)));
|
|
|
|
_channel_color_mode_item = dynamic_cast<RadioMenuItem*>(&items.back());
|
|
|
|
_channel_color_mode_item->set_active(_color_mode == ChannelColors);
|
|
|
|
|
|
|
|
items.push_back (RadioMenuElem (mode_group, _("Track Color"),
|
|
|
|
bind (mem_fun (*this, &MidiTimeAxisView::set_color_mode), TrackColor)));
|
|
|
|
_channel_color_mode_item = dynamic_cast<RadioMenuItem*>(&items.back());
|
|
|
|
_channel_color_mode_item->set_active(_color_mode == TrackColor);
|
|
|
|
|
|
|
|
return mode_menu;
|
|
|
|
}
|
2007-07-06 23:19:04 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
MidiTimeAxisView::set_note_mode(NoteMode mode)
|
|
|
|
{
|
2008-01-14 22:32:51 -05:00
|
|
|
if (_note_mode != mode || midi_track()->note_mode() != mode) {
|
2007-07-06 23:19:04 -04:00
|
|
|
_note_mode = mode;
|
|
|
|
midi_track()->set_note_mode(mode);
|
|
|
|
_view->redisplay_diskstream();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-23 20:24:49 -05:00
|
|
|
void
|
|
|
|
MidiTimeAxisView::set_color_mode(ColorMode mode)
|
|
|
|
{
|
|
|
|
if (_color_mode != mode) {
|
2008-12-25 04:28:57 -05:00
|
|
|
if (mode == ChannelColors) {
|
|
|
|
_channel_selector.set_channel_colors(CanvasNoteEvent::midi_channel_colors);
|
|
|
|
} else {
|
|
|
|
_channel_selector.set_default_channel_color();
|
|
|
|
}
|
|
|
|
|
2008-12-23 20:24:49 -05:00
|
|
|
_color_mode = mode;
|
2008-12-28 20:02:41 -05:00
|
|
|
xml_node->add_property ("color-mode", enum_2_string(_color_mode));
|
2008-12-23 20:24:49 -05:00
|
|
|
_view->redisplay_diskstream();
|
|
|
|
}
|
|
|
|
}
|
2007-07-14 21:56:11 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
MidiTimeAxisView::set_note_range(MidiStreamView::VisibleNoteRange range)
|
|
|
|
{
|
2008-09-22 22:40:29 -04:00
|
|
|
if (!_ignore_signals)
|
2007-07-14 21:56:11 -04:00
|
|
|
midi_view()->set_note_range(range);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-10 13:16:25 -05:00
|
|
|
void
|
2008-02-18 22:24:44 -05:00
|
|
|
MidiTimeAxisView::update_range()
|
|
|
|
{
|
2008-02-10 13:16:25 -05:00
|
|
|
MidiGhostRegion* mgr;
|
|
|
|
|
|
|
|
for(list<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
|
2008-02-21 20:45:29 -05:00
|
|
|
if ((mgr = dynamic_cast<MidiGhostRegion*>(*i)) != 0) {
|
2008-02-10 13:16:25 -05:00
|
|
|
mgr->update_range();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-19 13:24:52 -04:00
|
|
|
void
|
|
|
|
MidiTimeAxisView::show_all_automation ()
|
|
|
|
{
|
|
|
|
if (midi_track()) {
|
2008-09-29 18:47:40 -04:00
|
|
|
const set<Evoral::Parameter> params = midi_track()->midi_diskstream()->
|
2008-09-19 13:24:52 -04:00
|
|
|
midi_playlist()->contained_automation();
|
|
|
|
|
2008-09-29 18:47:40 -04:00
|
|
|
for (set<Evoral::Parameter>::const_iterator i = params.begin(); i != params.end(); ++i) {
|
2008-09-19 13:24:52 -04:00
|
|
|
create_automation_child(*i, true);
|
2008-09-21 12:17:02 -04:00
|
|
|
}
|
2008-09-19 13:24:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
RouteTimeAxisView::show_all_automation ();
|
|
|
|
}
|
|
|
|
|
2008-02-18 22:24:44 -05:00
|
|
|
void
|
|
|
|
MidiTimeAxisView::show_existing_automation ()
|
|
|
|
{
|
|
|
|
if (midi_track()) {
|
2008-09-29 18:47:40 -04:00
|
|
|
const set<Evoral::Parameter> params = midi_track()->midi_diskstream()->
|
2008-02-18 22:24:44 -05:00
|
|
|
midi_playlist()->contained_automation();
|
|
|
|
|
2008-09-29 18:47:40 -04:00
|
|
|
for (set<Evoral::Parameter>::const_iterator i = params.begin(); i != params.end(); ++i) {
|
2008-02-18 22:24:44 -05:00
|
|
|
create_automation_child(*i, true);
|
2008-09-21 12:17:02 -04:00
|
|
|
}
|
2008-02-18 22:24:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
RouteTimeAxisView::show_existing_automation ();
|
|
|
|
}
|
|
|
|
|
2007-06-27 11:51:50 -04:00
|
|
|
/** Prompt for a controller with a dialog and add an automation track for it
|
|
|
|
*/
|
|
|
|
void
|
2008-09-21 14:08:18 -04:00
|
|
|
MidiTimeAxisView::add_cc_track()
|
2007-06-27 11:51:50 -04:00
|
|
|
{
|
2007-07-02 22:37:24 -04:00
|
|
|
int response;
|
2008-09-29 18:47:40 -04:00
|
|
|
Evoral::Parameter param(0, 0, 0);
|
2007-07-02 22:37:24 -04:00
|
|
|
|
|
|
|
{
|
|
|
|
AddMidiCCTrackDialog dialog;
|
2009-01-01 19:17:55 -05:00
|
|
|
dialog.set_transient_for (_editor);
|
2007-07-02 22:37:24 -04:00
|
|
|
response = dialog.run();
|
|
|
|
|
|
|
|
if (response == Gtk::RESPONSE_ACCEPT)
|
|
|
|
param = dialog.parameter();
|
2007-06-27 17:37:08 -04:00
|
|
|
}
|
2007-07-02 22:37:24 -04:00
|
|
|
|
2008-09-29 18:47:40 -04:00
|
|
|
if (param.type() != 0 && response == Gtk::RESPONSE_ACCEPT)
|
2007-07-03 20:39:00 -04:00
|
|
|
create_automation_child(param, true);
|
2007-06-27 11:51:50 -04:00
|
|
|
}
|
|
|
|
|
2008-09-21 14:08:18 -04:00
|
|
|
|
|
|
|
/** Add an automation track for the given parameter (pitch bend, channel pressure).
|
|
|
|
*/
|
|
|
|
void
|
2008-09-29 18:47:40 -04:00
|
|
|
MidiTimeAxisView::add_parameter_track(const Evoral::Parameter& param)
|
2008-09-21 14:08:18 -04:00
|
|
|
{
|
2009-01-21 05:20:27 -05:00
|
|
|
if ( !EventTypeMap::instance().is_midi_parameter(param) ) {
|
2009-01-21 03:32:23 -05:00
|
|
|
error << "MidiTimeAxisView: unknown automation child "
|
|
|
|
<< ARDOUR::EventTypeMap::instance().to_symbol(param) << endmsg;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// create the parameter lane for each selected channel
|
|
|
|
uint16_t selected_channels = _channel_selector.get_selected_channels();
|
|
|
|
|
|
|
|
for (uint8_t i = 0; i < 16; i++) {
|
|
|
|
if (selected_channels & (0x0001 << i)) {
|
|
|
|
Evoral::Parameter param_with_channel(param.type(), i, param.id());
|
|
|
|
create_automation_child(param_with_channel, true);
|
|
|
|
}
|
|
|
|
}
|
2008-09-21 14:08:18 -04:00
|
|
|
}
|
|
|
|
|
2007-06-27 11:51:50 -04:00
|
|
|
void
|
2008-09-29 18:47:40 -04:00
|
|
|
MidiTimeAxisView::create_automation_child (const Evoral::Parameter& param, bool show)
|
2007-06-27 11:51:50 -04:00
|
|
|
{
|
2009-01-21 03:32:23 -05:00
|
|
|
/* These controllers are region "automation", so we do not create
|
|
|
|
* an AutomationList/Line for the track */
|
2008-09-21 12:17:02 -04:00
|
|
|
|
2009-02-15 23:53:01 -05:00
|
|
|
if (param.type() == NullAutomation) {
|
|
|
|
cerr << "WARNING: Attempt to create NullAutomation child, ignoring" << endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-01-21 03:32:23 -05:00
|
|
|
AutomationTracks::iterator existing = _automation_tracks.find(param);
|
|
|
|
if (existing != _automation_tracks.end())
|
|
|
|
return;
|
2007-06-27 11:51:50 -04:00
|
|
|
|
2009-01-21 03:32:23 -05:00
|
|
|
boost::shared_ptr<AutomationControl> c
|
|
|
|
= boost::dynamic_pointer_cast<AutomationControl>(_route->data().control(param));
|
2007-06-27 11:51:50 -04:00
|
|
|
|
2009-01-21 03:32:23 -05:00
|
|
|
if (!c) {
|
|
|
|
c = boost::dynamic_pointer_cast<AutomationControl>(_route->control_factory(param));
|
|
|
|
_route->add_control(c);
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
2009-01-27 23:55:31 -05:00
|
|
|
|
|
|
|
assert(c);
|
2009-01-21 03:32:23 -05:00
|
|
|
|
|
|
|
boost::shared_ptr<AutomationTimeAxisView> track(new AutomationTimeAxisView (_session,
|
|
|
|
_route, boost::shared_ptr<ARDOUR::Automatable>(), c,
|
|
|
|
_editor,
|
|
|
|
*this,
|
|
|
|
true,
|
|
|
|
parent_canvas,
|
|
|
|
_route->describe_parameter(param)));
|
|
|
|
|
|
|
|
add_automation_child(param, track, show);
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
|
2009-01-21 03:32:23 -05:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
void
|
|
|
|
MidiTimeAxisView::route_active_changed ()
|
|
|
|
{
|
|
|
|
RouteUI::route_active_changed ();
|
|
|
|
|
2006-08-14 04:44:14 -04:00
|
|
|
if (is_track()) {
|
2006-07-27 21:08:57 -04:00
|
|
|
if (_route->active()) {
|
2006-07-23 08:03:19 -04:00
|
|
|
controls_ebox.set_name ("MidiTrackControlsBaseUnselected");
|
|
|
|
controls_base_selected_name = "MidiTrackControlsBaseSelected";
|
|
|
|
controls_base_unselected_name = "MidiTrackControlsBaseUnselected";
|
|
|
|
} else {
|
|
|
|
controls_ebox.set_name ("MidiTrackControlsBaseInactiveUnselected");
|
|
|
|
controls_base_selected_name = "MidiTrackControlsBaseInactiveSelected";
|
|
|
|
controls_base_unselected_name = "MidiTrackControlsBaseInactiveUnselected";
|
|
|
|
}
|
|
|
|
} else {
|
2006-08-14 04:44:14 -04:00
|
|
|
|
|
|
|
throw; // wha?
|
|
|
|
|
2006-07-27 21:08:57 -04:00
|
|
|
if (_route->active()) {
|
2006-07-23 08:03:19 -04:00
|
|
|
controls_ebox.set_name ("BusControlsBaseUnselected");
|
|
|
|
controls_base_selected_name = "BusControlsBaseSelected";
|
|
|
|
controls_base_unselected_name = "BusControlsBaseUnselected";
|
|
|
|
} else {
|
|
|
|
controls_ebox.set_name ("BusControlsBaseInactiveUnselected");
|
|
|
|
controls_base_selected_name = "BusControlsBaseInactiveSelected";
|
|
|
|
controls_base_unselected_name = "BusControlsBaseInactiveUnselected";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-04-19 06:30:38 -04:00
|
|
|
|