X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fmidi_time_axis.cc;h=f64caaf2717b16e793f05d096fbccba978d83d6d;hb=69777d600fe2e1e034d24551ac9faec2c2481584;hp=ab9ce0c99f7518c0919fec679fb8ea36eb0c9114;hpb=83705d19b278dcc6421b306434dc4630a7f7bea0;p=ardour.git diff --git a/gtk2_ardour/midi_time_axis.cc b/gtk2_ardour/midi_time_axis.cc index ab9ce0c99f..f64caaf271 100644 --- a/gtk2_ardour/midi_time_axis.cc +++ b/gtk2_ardour/midi_time_axis.cc @@ -19,15 +19,17 @@ #include #include -#include // for ffs(3) - #include #include #include #include +#include +#include + #include "pbd/error.h" +#include "pbd/ffs.h" #include "pbd/stl_delete.h" #include "pbd/whitespace.h" #include "pbd/basename.h" @@ -36,10 +38,10 @@ #include "pbd/stateful_diff_command.h" #include "gtkmm2ext/gtk_ui.h" -#include "gtkmm2ext/selector.h" -#include "gtkmm2ext/bindable_button.h" #include "gtkmm2ext/utils.h" +#include "widgets/tooltips.h" + #include "ardour/event_type_map.h" #include "ardour/midi_patch_manager.h" #include "ardour/midi_playlist.h" @@ -51,6 +53,8 @@ #include "ardour/panner.h" #include "ardour/panner_shell.h" #include "ardour/playlist.h" +#include "ardour/plugin_insert.h" +#include "ardour/profile.h" #include "ardour/region.h" #include "ardour/region_factory.h" #include "ardour/route.h" @@ -60,12 +64,8 @@ #include "ardour/track.h" #include "ardour/types.h" -#include "ardour_ui.h" -#include "ardour_button.h" #include "automation_line.h" #include "automation_time_axis.h" -#include "canvas-note-event.h" -#include "canvas_impl.h" #include "editor.h" #include "enums.h" #include "ghostregion.h" @@ -76,36 +76,38 @@ #include "midi_streamview.h" #include "midi_region_view.h" #include "midi_time_axis.h" +#include "patch_change_dialog.h" +#include "patch_change_widget.h" #include "piano_roll_header.h" #include "playlist_selector.h" #include "plugin_selector.h" #include "plugin_ui.h" #include "point_selection.h" -#include "prompter.h" #include "region_view.h" #include "rgb_macros.h" #include "selection.h" #include "step_editor.h" -#include "simplerect.h" #include "utils.h" +#include "note_base.h" #include "ardour/midi_track.h" -#include "i18n.h" +#include "pbd/i18n.h" using namespace ARDOUR; using namespace PBD; using namespace Gtk; using namespace Gtkmm2ext; using namespace Editing; +using namespace std; // Minimum height at which a control is displayed -static const uint32_t MIDI_CONTROLS_BOX_MIN_HEIGHT = 140; +static const uint32_t MIDI_CONTROLS_BOX_MIN_HEIGHT = 160; static const uint32_t KEYBOARD_MIN_HEIGHT = 130; -MidiTimeAxisView::MidiTimeAxisView (PublicEditor& ed, Session* sess, Canvas& canvas) - : AxisView(sess) // virtually inherited - , RouteTimeAxisView(ed, sess, canvas) +MidiTimeAxisView::MidiTimeAxisView (PublicEditor& ed, Session* sess, ArdourCanvas::Canvas& canvas) + : SessionHandlePtr (sess) + , RouteTimeAxisView (ed, sess, canvas) , _ignore_signals(false) , _range_scroomer(0) , _piano_roll_header(0) @@ -119,15 +121,23 @@ MidiTimeAxisView::MidiTimeAxisView (PublicEditor& ed, Session* sess, Canvas& can , _channel_selector (0) , _step_edit_item (0) , controller_menu (0) + , poly_pressure_menu (0) , _step_editor (0) { + _midnam_model_selector.disable_scrolling(); + _midnam_custom_device_mode_selector.disable_scrolling(); +} + +void +MidiTimeAxisView::set_note_highlight (uint8_t note) { + _piano_roll_header->set_note_highlight (note); } void MidiTimeAxisView::set_route (boost::shared_ptr rt) { _route = rt; - + _view = new MidiStreamView (*this); if (is_track ()) { @@ -144,7 +154,7 @@ MidiTimeAxisView::set_route (boost::shared_ptr rt) */ RouteTimeAxisView::set_route (rt); - _view->apply_color (_color, StreamView::RegionColor); + _view->apply_color (ARDOUR_UI_UTILS::gdk_color_to_rgba (color()), StreamView::RegionColor); subplugin_menu.set_name ("ArdourContextMenu"); @@ -154,18 +164,13 @@ MidiTimeAxisView::set_route (boost::shared_ptr rt) true); } - midi_view()->NoteRangeChanged.connect ( - sigc::mem_fun (*this, &MidiTimeAxisView::note_range_changed)); _view->ContentsHeightChanged.connect ( sigc::mem_fun (*this, &MidiTimeAxisView::contents_height_changed)); ignore_toggle = false; if (is_midi_track()) { - controls_ebox.set_name ("MidiTimeAxisViewControlsBaseUnselected"); _note_mode = midi_track()->note_mode(); - } else { // MIDI bus (which doesn't exist yet..) - controls_ebox.set_name ("MidiBusControlsBaseUnselected"); } /* if set_state above didn't create a gain automation child, we need to make one */ @@ -173,19 +178,20 @@ MidiTimeAxisView::set_route (boost::shared_ptr rt) create_automation_child (GainAutomation, false); } + /* if set_state above didn't create a mute automation child, we need to make one */ + if (automation_child (MuteAutomation) == 0) { + create_automation_child (MuteAutomation, false); + } + if (_route->panner_shell()) { _route->panner_shell()->Changed.connect (*this, invalidator (*this), boost::bind (&MidiTimeAxisView::ensure_pan_views, this, false), gui_context()); } /* map current state of the route */ ensure_pan_views (false); - + update_control_names(); processors_changed (RouteProcessorChange ()); - _route->processors_changed.connect (*this, invalidator (*this), - boost::bind (&MidiTimeAxisView::processors_changed, this, _1), - gui_context()); - if (is_track()) { _piano_roll_header->SetNoteSelection.connect ( sigc::mem_fun (*this, &MidiTimeAxisView::set_note_selection)); @@ -196,29 +202,34 @@ MidiTimeAxisView::set_route (boost::shared_ptr rt) _piano_roll_header->ToggleNoteSelection.connect ( sigc::mem_fun (*this, &MidiTimeAxisView::toggle_note_selection)); - /* Suspend updates of the StreamView during scroomer drags to speed things up */ + /* Update StreamView during scroomer drags.*/ + _range_scroomer->DragStarting.connect ( - sigc::mem_fun (*midi_view(), &MidiStreamView::suspend_updates)); + sigc::mem_fun (*this, &MidiTimeAxisView::start_scroomer_update)); _range_scroomer->DragFinishing.connect ( - sigc::mem_fun (*midi_view(), &MidiStreamView::resume_updates)); + sigc::mem_fun (*this, &MidiTimeAxisView::stop_scroomer_update)); /* Put the scroomer and the keyboard in a VBox with a padding label so that they can be reduced in height for stacked-view tracks. */ + + HSeparator* separator = manage (new HSeparator()); + separator->set_name("TrackSeparator"); + separator->set_size_request(-1, 1); + separator->show(); + VBox* v = manage (new VBox); HBox* h = manage (new HBox); - h->pack_start (*_range_scroomer); - h->pack_start (*_piano_roll_header); - v->pack_start (*h, false, false); - v->pack_start (*manage (new Label ("")), true, true); + h->pack_end (*_piano_roll_header); + h->pack_end (*_range_scroomer); + v->pack_start (*separator, false, false); + v->pack_start (*h, true, true); v->show (); h->show (); - controls_hbox.pack_start(*v, false, false); - - controls_ebox.set_name ("MidiTrackControlsBaseUnselected"); - controls_base_selected_name = "MidiTrackControlsBaseSelected"; - controls_base_unselected_name = "MidiTrackControlsBaseUnselected"; + top_hbox.remove(scroomer_placeholder); + time_axis_hbox.pack_end(*v, false, false, 0); + midi_scroomer_size_group->add_widget (*v); midi_view()->NoteRangeChanged.connect ( sigc::mem_fun(*this, &MidiTimeAxisView::update_range)); @@ -227,22 +238,6 @@ MidiTimeAxisView::set_route (boost::shared_ptr rt) _view->RegionViewAdded.connect ( sigc::mem_fun(*this, &MidiTimeAxisView::region_view_added)); - midi_track()->PlaybackChannelModeChanged.connect (*this, invalidator (*this), - boost::bind (&MidiTimeAxisView::playback_channel_mode_changed, this), - gui_context()); - midi_track()->PlaybackChannelMaskChanged.connect (*this, invalidator (*this), - boost::bind (&MidiTimeAxisView::playback_channel_mode_changed, this), - gui_context()); - midi_track()->CaptureChannelModeChanged.connect (*this, invalidator (*this), - boost::bind (&MidiTimeAxisView::capture_channel_mode_changed, this), - gui_context()); - midi_track()->CaptureChannelMaskChanged.connect (*this, invalidator (*this), - boost::bind (&MidiTimeAxisView::capture_channel_mode_changed, this), - gui_context()); - - playback_channel_mode_changed (); - capture_channel_mode_changed (); - if (!_editor.have_idled()) { /* first idle will do what we need */ } else { @@ -250,13 +245,6 @@ MidiTimeAxisView::set_route (boost::shared_ptr rt) } } - MIDI::Name::MidiPatchManager& patch_manager = MIDI::Name::MidiPatchManager::instance(); - - MIDI::Name::MasterDeviceNames::Models::const_iterator m = patch_manager.all_models().begin(); - for (; m != patch_manager.all_models().end(); ++m) { - _midnam_model_selector.append_text(m->c_str()); - } - if (gui_property (X_("midnam-model-name")).empty()) { set_gui_property (X_("midnam-model-name"), "Generic"); } @@ -269,58 +257,24 @@ MidiTimeAxisView::set_route (boost::shared_ptr rt) } } - _midnam_model_selector.set_active_text (gui_property (X_("midnam-model-name"))); - _midnam_custom_device_mode_selector.set_active_text (gui_property (X_("midnam-custom-device-mode"))); + ArdourWidgets::set_tooltip (_midnam_model_selector, _("External MIDI Device")); + ArdourWidgets::set_tooltip (_midnam_custom_device_mode_selector, _("External Device Mode")); - ARDOUR_UI::instance()->set_tip (_midnam_model_selector, _("External MIDI Device")); - ARDOUR_UI::instance()->set_tip (_midnam_custom_device_mode_selector, _("External Device Mode")); + _midi_controls_box.pack_start (_midnam_model_selector, false, false, 2); + _midi_controls_box.pack_start (_midnam_custom_device_mode_selector, false, false, 2); _midi_controls_box.set_homogeneous(false); - _midi_controls_box.set_border_width (10); - - _channel_status_box.set_homogeneous (false); - _channel_status_box.set_spacing (6); - - _channel_selector_button.set_label (_("Chns")); - ARDOUR_UI::instance()->set_tip (_channel_selector_button, _("Click to edit channel settings")); - - /* fixed sized labels to prevent silly nonsense (though obviously, - * they cause their own too) - */ - - _playback_channel_status.set_size_request (65, -1); - _capture_channel_status.set_size_request (60, -1); - - _channel_status_box.pack_start (_playback_channel_status, false, false); - _channel_status_box.pack_start (_capture_channel_status, false, false); - _channel_status_box.pack_start (_channel_selector_button, false, false); - _channel_status_box.show_all (); - - _channel_selector_button.signal_clicked().connect (sigc::mem_fun (*this, &MidiTimeAxisView::toggle_channel_selector)); - - _midi_controls_box.pack_start (_channel_status_box, false, false, 10); + _midi_controls_box.set_border_width (2); - if (!patch_manager.all_models().empty()) { + MIDI::Name::MidiPatchManager::instance().PatchesChanged.connect (*this, invalidator (*this), + boost::bind (&MidiTimeAxisView::setup_midnam_patches, this), + gui_context()); - _midnam_model_selector.set_size_request(22, 30); - _midnam_model_selector.set_border_width(2); - _midnam_model_selector.show (); - _midi_controls_box.pack_start (_midnam_model_selector); - - _midnam_custom_device_mode_selector.set_size_request(10, 30); - _midnam_custom_device_mode_selector.set_border_width(2); - _midnam_custom_device_mode_selector.show (); + setup_midnam_patches (); + update_patch_selector (); - _midi_controls_box.pack_start (_midnam_custom_device_mode_selector); - } - - model_changed(); - custom_device_mode_changed(); - - _midnam_model_selector.signal_changed().connect( - sigc::mem_fun(*this, &MidiTimeAxisView::model_changed)); - _midnam_custom_device_mode_selector.signal_changed().connect( - sigc::mem_fun(*this, &MidiTimeAxisView::custom_device_mode_changed)); + model_changed (gui_property(X_("midnam-model-name"))); + custom_device_mode_changed (gui_property(X_("midnam-custom-device-mode"))); controls_vbox.pack_start(_midi_controls_box, false, false); @@ -328,7 +282,7 @@ MidiTimeAxisView::set_route (boost::shared_ptr rt) if (!color_mode.empty()) { _color_mode = ColorMode (string_2_enum(color_mode, _color_mode)); if (_channel_selector && _color_mode == ChannelColors) { - _channel_selector->set_channel_colors(CanvasNoteEvent::midi_channel_colors); + _channel_selector->set_channel_colors(NoteBase::midi_channel_colors); } } @@ -356,11 +310,18 @@ MidiTimeAxisView::set_route (boost::shared_ptr rt) *i, route_id, has_parameter, parameter); if (p && route_id == _route->id () && has_parameter) { const std::string& visible = gui_object_state().get_string (*i, X_("visible")); - create_automation_child (parameter, string_is_affirmative (visible)); + create_automation_child (parameter, string_to (visible)); } } } +void +MidiTimeAxisView::processors_changed (RouteProcessorChange c) +{ + RouteTimeAxisView::processors_changed (c); + update_patch_selector (); +} + void MidiTimeAxisView::first_idle () { @@ -384,64 +345,140 @@ MidiTimeAxisView::~MidiTimeAxisView () } void -MidiTimeAxisView::enter_internal_edit_mode () +MidiTimeAxisView::check_step_edit () { - if (midi_view()) { - midi_view()->enter_internal_edit_mode (); - } + ensure_step_editor (); + _step_editor->check_step_edit (); } void -MidiTimeAxisView::leave_internal_edit_mode () +MidiTimeAxisView::setup_midnam_patches () { - if (midi_view()) { - midi_view()->leave_internal_edit_mode (); + typedef MIDI::Name::MidiPatchManager PatchManager; + PatchManager& patch_manager = PatchManager::instance(); + + _midnam_model_selector.clear_items (); + for (PatchManager::DeviceNamesByMaker::const_iterator m = patch_manager.devices_by_manufacturer().begin(); + m != patch_manager.devices_by_manufacturer().end(); ++m) { + Menu* menu = Gtk::manage(new Menu); + Menu_Helpers::MenuList& items = menu->items(); + + // Build manufacturer submenu + for (MIDI::Name::MIDINameDocument::MasterDeviceNamesList::const_iterator n = m->second.begin(); + n != m->second.end(); ++n) { + Menu_Helpers::MenuElem elem = Gtk::Menu_Helpers::MenuElem( + n->first.c_str(), + sigc::bind(sigc::mem_fun(*this, &MidiTimeAxisView::model_changed), + n->first.c_str())); + + items.push_back(elem); + } + + // Add manufacturer submenu to selector + _midnam_model_selector.AddMenuElem(Menu_Helpers::MenuElem(m->first, *menu)); + } + + if (!get_device_names()) { + model_changed ("Generic"); } } void -MidiTimeAxisView::check_step_edit () +MidiTimeAxisView::start_scroomer_update () { - ensure_step_editor (); - _step_editor->check_step_edit (); + _note_range_changed_connection.disconnect(); + _note_range_changed_connection = midi_view()->NoteRangeChanged.connect ( + sigc::mem_fun (*this, &MidiTimeAxisView::note_range_changed)); +} +void +MidiTimeAxisView::stop_scroomer_update () +{ + _note_range_changed_connection.disconnect(); +} + +void +MidiTimeAxisView::update_patch_selector () +{ + typedef MIDI::Name::MidiPatchManager PatchManager; + PatchManager& patch_manager = PatchManager::instance(); + + bool pluginprovided = false; + if (_route) { + boost::shared_ptr pi = boost::dynamic_pointer_cast (_route->the_instrument ()); + if (pi && pi->plugin ()->has_midnam ()) { + pluginprovided = true; + std::string model_name = pi->plugin ()->midnam_model (); + if (gui_property (X_("midnam-model-name")) != model_name) { + model_changed (model_name); + } + } + } + + if (patch_manager.all_models().empty() || pluginprovided) { + _midnam_model_selector.hide (); + _midnam_custom_device_mode_selector.hide (); + } else { + _midnam_model_selector.show (); + _midnam_custom_device_mode_selector.show (); + } } + void -MidiTimeAxisView::model_changed() +MidiTimeAxisView::model_changed(const std::string& model) { - const Glib::ustring model = _midnam_model_selector.get_active_text(); set_gui_property (X_("midnam-model-name"), model); const std::list device_modes = MIDI::Name::MidiPatchManager::instance() .custom_device_mode_names_by_model(model); + _midnam_model_selector.set_text(model); _midnam_custom_device_mode_selector.clear_items(); for (std::list::const_iterator i = device_modes.begin(); i != device_modes.end(); ++i) { - _midnam_custom_device_mode_selector.append_text(*i); + _midnam_custom_device_mode_selector.AddMenuElem( + Gtk::Menu_Helpers::MenuElem( + *i, sigc::bind(sigc::mem_fun(*this, &MidiTimeAxisView::custom_device_mode_changed), + *i))); } - _midnam_custom_device_mode_selector.set_active(0); - - _route->instrument_info().set_external_instrument ( - _midnam_model_selector.get_active_text(), - _midnam_custom_device_mode_selector.get_active_text()); + if (!device_modes.empty()) { + custom_device_mode_changed(device_modes.front()); + } + + if (device_modes.size() > 1) { + _midnam_custom_device_mode_selector.show(); + } else { + _midnam_custom_device_mode_selector.hide(); + } + + // now this is a real bad hack + if (device_modes.size() > 0) { + _route->instrument_info().set_external_instrument (model, device_modes.front()); + } else { + _route->instrument_info().set_external_instrument (model, ""); + } // Rebuild controller menu _controller_menu_map.clear (); delete controller_menu; controller_menu = 0; build_automation_action_menu(false); + + if (patch_change_dialog ()) { + patch_change_dialog ()->refresh (); + } } void -MidiTimeAxisView::custom_device_mode_changed() +MidiTimeAxisView::custom_device_mode_changed(const std::string& mode) { - const Glib::ustring mode = _midnam_custom_device_mode_selector.get_active_text(); + const std::string model = gui_property (X_("midnam-model-name")); + set_gui_property (X_("midnam-custom-device-mode"), mode); - _route->instrument_info().set_external_instrument ( - _midnam_model_selector.get_active_text(), mode); + _midnam_custom_device_mode_selector.set_text(mode); + _route->instrument_info().set_external_instrument (model, mode); } MidiStreamView* @@ -451,14 +488,14 @@ MidiTimeAxisView::midi_view() } void -MidiTimeAxisView::set_height (uint32_t h) +MidiTimeAxisView::set_height (uint32_t h, TrackHeightMode m) { if (h >= MIDI_CONTROLS_BOX_MIN_HEIGHT) { _midi_controls_box.show (); } else { _midi_controls_box.hide(); } - + if (h >= KEYBOARD_MIN_HEIGHT) { if (is_track() && _range_scroomer) { _range_scroomer->show(); @@ -480,7 +517,7 @@ MidiTimeAxisView::set_height (uint32_t h) which needs to know if we have just shown or hidden a scroomer / piano roll. */ - RouteTimeAxisView::set_height (h); + RouteTimeAxisView::set_height (h, m); } void @@ -497,7 +534,7 @@ MidiTimeAxisView::append_extra_display_menu_items () range_items.push_back ( MenuElem (_("Show Full Range"), - sigc::bind (sigc::mem_fun(*this, &MidiTimeAxisView::set_note_range), + sigc::bind (sigc::mem_fun(*this, &MidiTimeAxisView::set_note_range), MidiStreamView::FullRange, true))); range_items.push_back ( @@ -507,14 +544,17 @@ MidiTimeAxisView::append_extra_display_menu_items () items.push_back (MenuElem (_("Note Range"), *range_menu)); items.push_back (MenuElem (_("Note Mode"), *build_note_mode_menu())); - items.push_back (MenuElem (_("Channel Selector"), + items.push_back (MenuElem (_("Channel Selector..."), sigc::mem_fun(*this, &MidiTimeAxisView::toggle_channel_selector))); + items.push_back (MenuElem (_("Patch Selector..."), + sigc::mem_fun(*this, &RouteUI::select_midi_patch))); + color_mode_menu = build_color_mode_menu(); if (color_mode_menu) { items.push_back (MenuElem (_("Color Mode"), *color_mode_menu)); } - + items.push_back (SeparatorElem ()); } @@ -525,7 +565,7 @@ MidiTimeAxisView::toggle_channel_selector () _channel_selector = new MidiChannelSelectorWindow (midi_track()); if (_color_mode == ChannelColors) { - _channel_selector->set_channel_colors(CanvasNoteEvent::midi_channel_colors); + _channel_selector->set_channel_colors(NoteBase::midi_channel_colors); } else { _channel_selector->set_default_channel_color (); } @@ -587,8 +627,14 @@ MidiTimeAxisView::build_automation_action_menu (bool for_selection) build_controller_menu (); - automation_items.push_back (SeparatorElem()); automation_items.push_back (MenuElem (_("Controllers"), *controller_menu)); + + if (!poly_pressure_menu) { + poly_pressure_menu = new Gtk::Menu; + } + + automation_items.push_back (MenuElem (_("Polyphonic Pressure"), *poly_pressure_menu)); + automation_items.back().set_sensitive ( !for_selection || _editor.get_selection().tracks.size() == 1); } else { @@ -596,27 +642,6 @@ MidiTimeAxisView::build_automation_action_menu (bool for_selection) MenuElem (string_compose ("%1", _("No MIDI Channels selected")))); dynamic_cast (automation_items.back().get_child())->set_use_markup (true); } - - automation_items.push_back (SeparatorElem()); - automation_items.push_back (CheckMenuElem (_("Fader"), sigc::mem_fun (*this, &MidiTimeAxisView::update_gain_track_visibility))); - gain_automation_item = dynamic_cast (&automation_items.back ()); - gain_automation_item->set_active ((!for_selection || _editor.get_selection().tracks.size() == 1) && - (gain_track && string_is_affirmative (gain_track->gui_property ("visible")))); - - _main_automation_menu_map[Evoral::Parameter(GainAutomation)] = gain_automation_item; - - if (!pan_tracks.empty()) { - automation_items.push_back (CheckMenuElem (_("Pan"), sigc::mem_fun (*this, &MidiTimeAxisView::update_pan_track_visibility))); - pan_automation_item = dynamic_cast (&automation_items.back ()); - pan_automation_item->set_active ((!for_selection || _editor.get_selection().tracks.size() == 1) && - (!pan_tracks.empty() && string_is_affirmative (pan_tracks.front()->gui_property ("visible")))); - - set const & params = _route->pannable()->what_can_be_automated (); - for (set::iterator p = params.begin(); p != params.end(); ++p) { - _main_automation_menu_map[*p] = pan_automation_item; - } - } - } void @@ -699,7 +724,7 @@ MidiTimeAxisView::add_channel_command_menu_item (Menu_Helpers::MenuList& items, } } - CheckMenuItem* cmi = static_cast(&chn_items.back()); + Gtk::CheckMenuItem* cmi = static_cast(&chn_items.back()); _channel_command_menu_map[fully_qualified_param] = cmi; cmi->set_active (visible); } @@ -731,7 +756,7 @@ MidiTimeAxisView::add_channel_command_menu_item (Menu_Helpers::MenuList& items, } } - CheckMenuItem* cmi = static_cast(&items.back()); + Gtk::CheckMenuItem* cmi = static_cast(&items.back()); _channel_command_menu_map[fully_qualified_param] = cmi; cmi->set_active (visible); @@ -773,7 +798,7 @@ MidiTimeAxisView::add_single_channel_controller_item(Menu_Helpers::MenuList& ctl } } - CheckMenuItem* cmi = static_cast(&ctl_items.back()); + Gtk::CheckMenuItem* cmi = static_cast(&ctl_items.back()); _controller_menu_map[fully_qualified_param] = cmi; cmi->set_active (visible); @@ -829,7 +854,7 @@ MidiTimeAxisView::add_multi_channel_controller_item(Menu_Helpers::MenuList& ctl_ } } - CheckMenuItem* cmi = static_cast(&chn_items.back()); + Gtk::CheckMenuItem* cmi = static_cast(&chn_items.back()); _controller_menu_map[fully_qualified_param] = cmi; cmi->set_active (visible); } @@ -918,7 +943,7 @@ MidiTimeAxisView::build_controller_menu () l != device_names->controls().end(); ++l) { boost::shared_ptr name_list = l->second; Menu* ctl_menu = NULL; - + for (ControlNameList::Controls::const_iterator c = name_list->controls().begin(); c != name_list->controls().end();) { const uint16_t ctl = c->second->number(); @@ -928,7 +953,7 @@ MidiTimeAxisView::build_controller_menu () /* Create a new submenu */ ctl_menu = manage (new Menu); } - + MenuList& ctl_items (ctl_menu->items()); if (chn_cnt > 1) { add_multi_channel_controller_item(ctl_items, ctl, c->second->name()); @@ -1066,15 +1091,15 @@ MidiTimeAxisView::set_color_mode (ColorMode mode, bool force, bool redisplay, bo if (_color_mode == mode && !force) { return; } - + if (_channel_selector) { if (mode == ChannelColors) { - _channel_selector->set_channel_colors(CanvasNoteEvent::midi_channel_colors); + _channel_selector->set_channel_colors(NoteBase::midi_channel_colors); } else { _channel_selector->set_default_channel_color(); } } - + _color_mode = mode; set_gui_property ("color-mode", enum_2_string(_color_mode)); if (redisplay) { @@ -1099,116 +1124,61 @@ MidiTimeAxisView::set_note_range (MidiStreamView::VisibleNoteRange range, bool a void MidiTimeAxisView::update_range() { - MidiGhostRegion* mgr; - - for (list::iterator i = ghosts.begin(); i != ghosts.end(); ++i) { - if ((mgr = dynamic_cast(*i)) != 0) { - mgr->update_range(); - } - } -} - -void -MidiTimeAxisView::ensure_pan_views (bool show) -{ - bool changed = false; - for (list >::iterator i = pan_tracks.begin(); i != pan_tracks.end(); ++i) { - changed = true; - (*i)->set_marked_for_display (false); - } - if (changed) { - _route->gui_changed (X_("visible_tracks"), (void *) 0); /* EMIT_SIGNAL */ - } - pan_tracks.clear(); - - if (!_route->panner()) { - return; - } - - set params = _route->panner()->what_can_be_automated(); - set::iterator p; - - for (p = params.begin(); p != params.end(); ++p) { - boost::shared_ptr pan_control = _route->pannable()->automation_control(*p); - - if (pan_control->parameter().type() == NullAutomation) { - error << "Pan control has NULL automation type!" << endmsg; - continue; - } - - if (automation_child (pan_control->parameter ()).get () == 0) { - - /* we don't already have an AutomationTimeAxisView for this parameter */ - - std::string const name = _route->panner()->describe_parameter (pan_control->parameter ()); - - boost::shared_ptr t ( - new AutomationTimeAxisView (_session, - _route, - _route->pannable(), - pan_control, - pan_control->parameter (), - _editor, - *this, - false, - parent_canvas, - name) - ); - - pan_tracks.push_back (t); - add_automation_child (*p, t, show); - } else { - pan_tracks.push_back (automation_child (pan_control->parameter ())); - } - } -} - -void -MidiTimeAxisView::update_gain_track_visibility () -{ - bool const showit = gain_automation_item->get_active(); - - if (showit != string_is_affirmative (gain_track->gui_property ("visible"))) { - gain_track->set_marked_for_display (showit); - - /* now trigger a redisplay */ - - if (!no_redraw) { - _route->gui_changed (X_("visible_tracks"), (void *) 0); /* EMIT_SIGNAL */ - } - } -} - -void -MidiTimeAxisView::update_pan_track_visibility () -{ - bool const showit = pan_automation_item->get_active(); - bool changed = false; - - for (list >::iterator i = pan_tracks.begin(); i != pan_tracks.end(); ++i) { - if ((*i)->set_marked_for_display (showit)) { - changed = true; - } - } - - if (changed) { - _route->gui_changed (X_("visible_tracks"), (void *) 0); /* EMIT_SIGNAL */ - } } void MidiTimeAxisView::show_all_automation (bool apply_to_selection) { + using namespace MIDI::Name; + if (apply_to_selection) { _editor.get_selection().tracks.foreach_midi_time_axis ( boost::bind (&MidiTimeAxisView::show_all_automation, _1, false)); } else { if (midi_track()) { + // Show existing automation const set params = midi_track()->midi_playlist()->contained_automation(); for (set::const_iterator i = params.begin(); i != params.end(); ++i) { create_automation_child(*i, true); } + + // Show automation for all controllers named in midnam file + boost::shared_ptr device_names = get_device_names(); + if (gui_property (X_("midnam-model-name")) != "Generic" && + device_names && !device_names->controls().empty()) { + const std::string device_mode = gui_property (X_("midnam-custom-device-mode")); + const uint16_t selected_channels = midi_track()->get_playback_channel_mask(); + for (uint32_t chn = 0; chn < 16; ++chn) { + if ((selected_channels & (0x0001 << chn)) == 0) { + // Channel not in use + continue; + } + + boost::shared_ptr chan_names = device_names->channel_name_set_by_channel( + device_mode, chn); + if (!chan_names) { + continue; + } + + boost::shared_ptr control_names = device_names->control_name_list( + chan_names->control_list_name()); + if (!control_names) { + continue; + } + + for (ControlNameList::Controls::const_iterator c = control_names->controls().begin(); + c != control_names->controls().end(); + ++c) { + const uint16_t ctl = c->second->number(); + if (ctl != MIDI_CTL_MSB_BANK && ctl != MIDI_CTL_LSB_BANK) { + /* Skip bank select controllers since they're handled specially */ + const Evoral::Parameter param(MidiCCAutomation, chn, ctl); + create_automation_child(param, true); + } + } + } + } } RouteTimeAxisView::show_all_automation (); @@ -1252,7 +1222,9 @@ MidiTimeAxisView::create_automation_child (const Evoral::Parameter& param, bool * since it will have been set visible by default. */ - if (existing->second->set_marked_for_display (show) && !no_redraw) { + existing->second->set_marked_for_display (show); + + if (!no_redraw) { request_redraw (); } @@ -1260,6 +1232,8 @@ MidiTimeAxisView::create_automation_child (const Evoral::Parameter& param, bool } boost::shared_ptr track; + boost::shared_ptr control; + switch (param.type()) { @@ -1267,6 +1241,10 @@ MidiTimeAxisView::create_automation_child (const Evoral::Parameter& param, bool create_gain_automation_child (param, show); break; + case MuteAutomation: + create_mute_automation_child (param, show); + break; + case PluginAutomation: /* handled elsewhere */ break; @@ -1278,15 +1256,19 @@ MidiTimeAxisView::create_automation_child (const Evoral::Parameter& param, bool case MidiSystemExclusiveAutomation: /* These controllers are region "automation" - they are owned * by regions (and their MidiModels), not by the track. As a - * result we do not create an AutomationList/Line for the track - * ... except here we are doing something!! XXX + * result there is no AutomationList/Line for the track, but we create + * a controller for the user to write immediate events, so the editor + * can act as a control surface for the present MIDI controllers. + * + * TODO: Record manipulation of the controller to regions? */ + control = _route->automation_control(param, true); track.reset (new AutomationTimeAxisView ( _session, _route, - boost::shared_ptr (), - boost::shared_ptr (), + control ? _route : boost::shared_ptr (), + control, param, _editor, *this, @@ -1300,6 +1282,10 @@ MidiTimeAxisView::create_automation_child (const Evoral::Parameter& param, bool } add_automation_child (param, track, show); + if (selected ()) { + reshow_selection (_editor.get_selection().time); + } + break; case PanWidthAutomation: @@ -1318,39 +1304,46 @@ void MidiTimeAxisView::route_active_changed () { RouteUI::route_active_changed (); + update_control_names(); +} +void +MidiTimeAxisView::update_control_names () +{ if (is_track()) { if (_route->active()) { - 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 { + } else { // MIDI bus (which doesn't exist yet..) if (_route->active()) { - 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"; } } + + if (selected()) { + controls_ebox.set_name (controls_base_selected_name); + time_axis_frame.set_name (controls_base_selected_name); + } else { + controls_ebox.set_name (controls_base_unselected_name); + time_axis_frame.set_name (controls_base_unselected_name); + } } void MidiTimeAxisView::set_note_selection (uint8_t note) { - if (!_editor.internal_editing()) { - return; - } - uint16_t chn_mask = midi_track()->get_playback_channel_mask(); + _editor.begin_reversible_selection_op (X_("Set Note Selection")); + if (_view->num_selected_regionviews() == 0) { _view->foreach_regionview ( sigc::bind (sigc::mem_fun (*this, &MidiTimeAxisView::set_note_selection_region_view), @@ -1360,17 +1353,17 @@ MidiTimeAxisView::set_note_selection (uint8_t note) sigc::bind (sigc::mem_fun (*this, &MidiTimeAxisView::set_note_selection_region_view), note, chn_mask)); } + + _editor.commit_reversible_selection_op(); } void MidiTimeAxisView::add_note_selection (uint8_t note) { - if (!_editor.internal_editing()) { - return; - } - const uint16_t chn_mask = midi_track()->get_playback_channel_mask(); + _editor.begin_reversible_selection_op (X_("Add Note Selection")); + if (_view->num_selected_regionviews() == 0) { _view->foreach_regionview ( sigc::bind (sigc::mem_fun (*this, &MidiTimeAxisView::add_note_selection_region_view), @@ -1380,17 +1373,17 @@ MidiTimeAxisView::add_note_selection (uint8_t note) sigc::bind (sigc::mem_fun (*this, &MidiTimeAxisView::add_note_selection_region_view), note, chn_mask)); } + + _editor.commit_reversible_selection_op(); } void MidiTimeAxisView::extend_note_selection (uint8_t note) { - if (!_editor.internal_editing()) { - return; - } - const uint16_t chn_mask = midi_track()->get_playback_channel_mask(); + _editor.begin_reversible_selection_op (X_("Extend Note Selection")); + if (_view->num_selected_regionviews() == 0) { _view->foreach_regionview ( sigc::bind (sigc::mem_fun (*this, &MidiTimeAxisView::extend_note_selection_region_view), @@ -1400,17 +1393,17 @@ MidiTimeAxisView::extend_note_selection (uint8_t note) sigc::bind (sigc::mem_fun (*this, &MidiTimeAxisView::extend_note_selection_region_view), note, chn_mask)); } + + _editor.commit_reversible_selection_op(); } void MidiTimeAxisView::toggle_note_selection (uint8_t note) { - if (!_editor.internal_editing()) { - return; - } - const uint16_t chn_mask = midi_track()->get_playback_channel_mask(); + _editor.begin_reversible_selection_op (X_("Toggle Note Selection")); + if (_view->num_selected_regionviews() == 0) { _view->foreach_regionview ( sigc::bind (sigc::mem_fun (*this, &MidiTimeAxisView::toggle_note_selection_region_view), @@ -1420,6 +1413,15 @@ MidiTimeAxisView::toggle_note_selection (uint8_t note) sigc::bind (sigc::mem_fun (*this, &MidiTimeAxisView::toggle_note_selection_region_view), note, chn_mask)); } + + _editor.commit_reversible_selection_op(); +} + +void +MidiTimeAxisView::get_per_region_note_selection (list > > > >& selection) +{ + _view->foreach_regionview ( + sigc::bind (sigc::mem_fun (*this, &MidiTimeAxisView::get_per_region_note_selection_region_view), sigc::ref(selection))); } void @@ -1446,6 +1448,24 @@ MidiTimeAxisView::toggle_note_selection_region_view (RegionView* rv, uint8_t not dynamic_cast(rv)->toggle_matching_notes (note, chn_mask); } +void +MidiTimeAxisView::get_per_region_note_selection_region_view (RegionView* rv, list > > > > &selection) +{ + Evoral::Sequence::Notes selected; + dynamic_cast(rv)->selection_as_notelist (selected, false); + + std::set > > notes; + + Evoral::Sequence::Notes::iterator sel_it; + for (sel_it = selected.begin(); sel_it != selected.end(); ++sel_it) { + notes.insert (*sel_it); + } + + if (!notes.empty()) { + selection.push_back (make_pair ((rv)->region()->id(), notes)); + } +} + void MidiTimeAxisView::set_channel_mode (ChannelMode, uint16_t) { @@ -1515,14 +1535,17 @@ MidiTimeAxisView::automation_child_menu_item (Evoral::Parameter param) } boost::shared_ptr -MidiTimeAxisView::add_region (framepos_t pos, framecnt_t length, bool commit) +MidiTimeAxisView::add_region (samplepos_t f, samplecnt_t length, bool commit) { Editor* real_editor = dynamic_cast (&_editor); + MusicSample pos (f, 0); - real_editor->begin_reversible_command (Operations::create_region); + if (commit) { + real_editor->begin_reversible_command (Operations::create_region); + } playlist()->clear_changes (); - real_editor->snap_to (pos, 0); + real_editor->snap_to (pos, RoundNearest); boost::shared_ptr src = _session->create_midi_source_by_stealing_name (view()->trackview().track()); PropertyList plist; @@ -1532,8 +1555,9 @@ MidiTimeAxisView::add_region (framepos_t pos, framecnt_t length, bool commit) plist.add (ARDOUR::Properties::name, PBD::basename_nosuffix(src->name())); boost::shared_ptr region = (RegionFactory::create (src, plist)); - - playlist()->add_region (region, pos); + /* sets beat position */ + region->set_position (pos.sample, pos.division); + playlist()->add_region (region, pos.sample, 1.0, false, pos.division); _session->add_command (new StatefulDiffCommand (playlist())); if (commit) { @@ -1604,37 +1628,16 @@ MidiTimeAxisView::note_range_changed () void MidiTimeAxisView::contents_height_changed () { - _range_scroomer->set_size_request (-1, _view->child_height ()); + _range_scroomer->queue_resize (); } -void -MidiTimeAxisView::playback_channel_mode_changed () +bool +MidiTimeAxisView::paste (samplepos_t pos, const Selection& selection, PasteContext& ctx, const int32_t sub_num) { - switch (midi_track()->get_playback_channel_mode()) { - case AllChannels: - _playback_channel_status.set_markup (string_compose ("%1: %2", _("Play"), _("all"))); - break; - case FilterChannels: - _playback_channel_status.set_markup (string_compose ("%1: %2", _("Play"), _("some"))); - break; - case ForceChannel: - _playback_channel_status.set_markup (string_compose ("%1: %2>%3", _("Play"), _("all"), ffs (midi_track()->get_playback_channel_mask()))); - break; + if (!_editor.internal_editing()) { + // Non-internal paste, paste regions like any other route + return RouteTimeAxisView::paste(pos, selection, ctx, sub_num); } -} -void -MidiTimeAxisView::capture_channel_mode_changed () -{ - switch (midi_track()->get_capture_channel_mode()) { - case AllChannels: - _capture_channel_status.set_markup (string_compose ("%1: %2", _("Rec"), _("all"))); - break; - case FilterChannels: - _capture_channel_status.set_markup (string_compose ("%1: %2", _("Rec"), _("some"))); - break; - case ForceChannel: - _capture_channel_status.set_markup (string_compose ("%1: %2>%3", _("Rec"), _("all"), ffs (midi_track()->get_capture_channel_mask()))); - break; - } + return midi_view()->paste(pos, selection, ctx, sub_num); }