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>
|
|
|
|
|
|
|
|
#include <pbd/error.h>
|
|
|
|
#include <pbd/stl_delete.h>
|
|
|
|
#include <pbd/whitespace.h>
|
|
|
|
|
|
|
|
#include <gtkmm2ext/gtk_ui.h>
|
|
|
|
#include <gtkmm2ext/selector.h>
|
|
|
|
#include <gtkmm2ext/stop_signal.h>
|
|
|
|
#include <gtkmm2ext/bindable_button.h>
|
|
|
|
#include <gtkmm2ext/utils.h>
|
|
|
|
|
|
|
|
#include <ardour/midi_playlist.h>
|
|
|
|
#include <ardour/midi_diskstream.h>
|
2007-06-27 16:23:48 -04:00
|
|
|
#include <ardour/processor.h>
|
2006-07-23 08:03:19 -04:00
|
|
|
#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>
|
|
|
|
|
|
|
|
#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"
|
|
|
|
|
|
|
|
#include <ardour/midi_track.h>
|
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
using namespace ARDOUR;
|
|
|
|
using namespace PBD;
|
|
|
|
using namespace Gtk;
|
|
|
|
using namespace Editing;
|
|
|
|
|
|
|
|
|
2006-07-27 21:08:57 -04:00
|
|
|
MidiTimeAxisView::MidiTimeAxisView (PublicEditor& ed, Session& sess, boost::shared_ptr<Route> rt, Canvas& canvas)
|
2007-07-06 23:19:04 -04:00
|
|
|
: AxisView(sess) // FIXME: won't compile without this, why??
|
|
|
|
, RouteTimeAxisView(ed, sess, rt, canvas)
|
|
|
|
, _note_mode_item(NULL)
|
|
|
|
, _percussion_mode_item(NULL)
|
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()) {
|
2006-07-23 08:03:19 -04:00
|
|
|
|
|
|
|
controls_ebox.set_name ("MidiTrackControlsBaseUnselected");
|
|
|
|
controls_base_selected_name = "MidiTrackControlsBaseSelected";
|
|
|
|
controls_base_unselected_name = "MidiTrackControlsBaseUnselected";
|
|
|
|
|
|
|
|
/* ask for notifications of any new RegionViews */
|
2006-08-14 04:44:14 -04:00
|
|
|
_view->RegionViewAdded.connect (mem_fun(*this, &MidiTimeAxisView::region_view_added));
|
|
|
|
_view->attach ();
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2007-06-15 15:58:19 -04:00
|
|
|
} /*else { // no MIDI busses yet
|
2006-07-23 08:03:19 -04:00
|
|
|
|
|
|
|
controls_ebox.set_name ("MidiBusControlsBaseUnselected");
|
|
|
|
controls_base_selected_name = "MidiBusControlsBaseSelected";
|
|
|
|
controls_base_unselected_name = "MidiBusControlsBaseUnselected";
|
2007-06-15 15:58:19 -04:00
|
|
|
}*/
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
MidiTimeAxisView::~MidiTimeAxisView ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
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 ();
|
|
|
|
xml_node->add_property ("shown_editor", "yes");
|
|
|
|
|
|
|
|
return TimeAxisView::show_at (y, nth, parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MidiTimeAxisView::hide ()
|
|
|
|
{
|
|
|
|
ensure_xml_node ();
|
|
|
|
xml_node->add_property ("shown_editor", "no");
|
|
|
|
|
|
|
|
TimeAxisView::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");
|
|
|
|
|
|
|
|
RadioMenuItem::Group range_group;
|
|
|
|
|
|
|
|
range_items.push_back (RadioMenuElem (range_group, _("Show Full Range"), bind (
|
|
|
|
mem_fun(*this, &MidiTimeAxisView::set_note_range),
|
|
|
|
MidiStreamView::FullRange)));
|
|
|
|
|
|
|
|
range_items.push_back (RadioMenuElem (range_group, _("Fit Contents"), bind (
|
|
|
|
mem_fun(*this, &MidiTimeAxisView::set_note_range),
|
|
|
|
MidiStreamView::ContentsRange)));
|
|
|
|
|
|
|
|
items.push_back (MenuElem (_("Note range"), *range_menu));
|
|
|
|
}
|
|
|
|
|
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..."),
|
|
|
|
mem_fun(*this, &MidiTimeAxisView::add_controller_track)));
|
|
|
|
}
|
|
|
|
|
2007-07-06 23:19:04 -04:00
|
|
|
Gtk::Menu*
|
|
|
|
MidiTimeAxisView::build_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, _("Note"),
|
|
|
|
bind (mem_fun (*this, &MidiTimeAxisView::set_note_mode), Note)));
|
|
|
|
_note_mode_item = dynamic_cast<RadioMenuItem*>(&items.back());
|
|
|
|
_note_mode_item->set_active(_note_mode == Note);
|
|
|
|
|
|
|
|
items.push_back (RadioMenuElem (mode_group, _("Percussion"),
|
|
|
|
bind (mem_fun (*this, &MidiTimeAxisView::set_note_mode), Percussion)));
|
|
|
|
_percussion_mode_item = dynamic_cast<RadioMenuItem*>(&items.back());
|
|
|
|
_percussion_mode_item->set_active(_note_mode == Percussion);
|
|
|
|
|
|
|
|
return mode_menu;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MidiTimeAxisView::set_note_mode(NoteMode mode)
|
|
|
|
{
|
|
|
|
if (_note_mode != mode) {
|
|
|
|
_note_mode = mode;
|
|
|
|
midi_track()->set_note_mode(mode);
|
|
|
|
_view->redisplay_diskstream();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-14 21:56:11 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
MidiTimeAxisView::set_note_range(MidiStreamView::VisibleNoteRange range)
|
|
|
|
{
|
|
|
|
//if (midi_view()->note_range() != range) {
|
|
|
|
midi_view()->set_note_range(range);
|
|
|
|
midi_view()->redisplay_diskstream();
|
|
|
|
//}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-06-27 11:51:50 -04:00
|
|
|
/** Prompt for a controller with a dialog and add an automation track for it
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
MidiTimeAxisView::add_controller_track()
|
|
|
|
{
|
2007-07-02 22:37:24 -04:00
|
|
|
int response;
|
2007-07-03 14:39:09 -04:00
|
|
|
Parameter param;
|
2007-07-02 22:37:24 -04:00
|
|
|
|
|
|
|
{
|
|
|
|
AddMidiCCTrackDialog dialog;
|
|
|
|
dialog.set_transient_for(editor);
|
|
|
|
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
|
|
|
|
|
|
|
if (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
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-07-03 20:39:00 -04:00
|
|
|
MidiTimeAxisView::create_automation_child (Parameter param, bool show)
|
2007-06-27 11:51:50 -04:00
|
|
|
{
|
|
|
|
if (param.type() == MidiCCAutomation) {
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2007-06-27 11:51:50 -04:00
|
|
|
/* FIXME: this all probably leaks */
|
|
|
|
|
2007-07-02 22:37:24 -04:00
|
|
|
boost::shared_ptr<AutomationControl> c = _route->control(param);
|
2007-06-27 11:51:50 -04:00
|
|
|
|
2007-06-29 00:02:58 -04:00
|
|
|
if (!c) {
|
|
|
|
boost::shared_ptr<AutomationList> al(new ARDOUR::AutomationList(param, 0, 127, 64));
|
2007-07-05 22:37:35 -04:00
|
|
|
c = boost::shared_ptr<AutomationControl>(_route->control_factory(al));
|
2007-06-29 00:02:58 -04:00
|
|
|
_route->add_control(c);
|
|
|
|
}
|
2007-06-27 11:51:50 -04:00
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
boost::shared_ptr<AutomationTimeAxisView> track(new AutomationTimeAxisView (_session,
|
|
|
|
_route, _route, c,
|
2007-06-27 11:51:50 -04:00
|
|
|
editor,
|
|
|
|
*this,
|
|
|
|
parent_canvas,
|
2007-07-03 20:39:00 -04:00
|
|
|
_route->describe_parameter(param)));
|
2007-07-02 22:37:24 -04:00
|
|
|
|
2007-07-03 20:39:00 -04:00
|
|
|
add_automation_child(param, track, show);
|
2007-06-27 11:51:50 -04:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
} else {
|
2007-06-27 11:51:50 -04:00
|
|
|
error << "MidiTimeAxisView: unknown automation child " << param.to_string() << endmsg;
|
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";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-14 21:56:11 -04:00
|
|
|
|