2013-04-04 00:32:52 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2000-2010 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 <iostream>
|
|
|
|
|
2013-04-04 18:45:27 -04:00
|
|
|
#include <boost/algorithm/string.hpp>
|
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
#include <glibmm/regex.h>
|
|
|
|
|
|
|
|
#include "gtkmm2ext/keyboard.h"
|
2014-02-11 22:48:18 -05:00
|
|
|
#include "gtkmm2ext/utils.h"
|
|
|
|
|
2014-12-13 00:37:34 -05:00
|
|
|
#include "midi++/midnam_patch.h"
|
2014-02-11 22:48:18 -05:00
|
|
|
|
|
|
|
#include "canvas/debug.h"
|
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
#include "ardour_ui.h"
|
|
|
|
#include "editor.h"
|
|
|
|
#include "editor_drag.h"
|
2014-12-17 20:18:11 -05:00
|
|
|
#include "midi_region_view.h"
|
|
|
|
#include "patch_change.h"
|
2013-04-04 00:32:52 -04:00
|
|
|
|
|
|
|
using namespace MIDI::Name;
|
|
|
|
using namespace std;
|
2014-12-17 20:18:11 -05:00
|
|
|
using Gtkmm2ext::Keyboard;
|
2013-04-04 00:32:52 -04:00
|
|
|
|
|
|
|
/** @param x x position in pixels.
|
|
|
|
*/
|
2014-12-17 20:18:11 -05:00
|
|
|
PatchChange::PatchChange(MidiRegionView& region,
|
|
|
|
ArdourCanvas::Container* parent,
|
|
|
|
const string& text,
|
|
|
|
double height,
|
|
|
|
double x,
|
|
|
|
double y,
|
|
|
|
ARDOUR::InstrumentInfo& info,
|
|
|
|
ARDOUR::MidiModel::PatchChangePtr patch)
|
2013-04-04 00:32:52 -04:00
|
|
|
: _region (region)
|
2013-04-04 18:45:27 -04:00
|
|
|
, _info (info)
|
2013-04-04 00:32:52 -04:00
|
|
|
, _patch (patch)
|
|
|
|
, _popup_initialized(false)
|
|
|
|
{
|
|
|
|
_flag = new ArdourCanvas::Flag (
|
|
|
|
parent,
|
|
|
|
height,
|
2014-12-14 16:15:38 -05:00
|
|
|
ARDOUR_UI::config()->color ("midi patch change outline"),
|
2014-12-15 10:32:17 -05:00
|
|
|
ARDOUR_UI::config()->color_mod ("midi patch change fill", "midi patch change fill"),
|
2015-03-14 00:21:29 -04:00
|
|
|
ArdourCanvas::Duple (x, y),
|
|
|
|
true);
|
2013-04-04 00:32:52 -04:00
|
|
|
|
2014-02-11 22:48:18 -05:00
|
|
|
CANVAS_DEBUG_NAME (_flag, text);
|
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
_flag->Event.connect (sigc::mem_fun (*this, &PatchChange::event_handler));
|
2014-12-06 16:07:32 -05:00
|
|
|
_flag->set_font_description (ARDOUR_UI::config()->get_SmallFont());
|
2013-04-04 00:32:52 -04:00
|
|
|
_flag->set_text(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
PatchChange::~PatchChange()
|
|
|
|
{
|
2014-02-11 22:48:18 -05:00
|
|
|
delete _flag;
|
2013-04-04 00:32:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PatchChange::initialize_popup_menus()
|
|
|
|
{
|
2013-04-04 18:45:27 -04:00
|
|
|
using namespace MIDI::Name;
|
|
|
|
|
|
|
|
boost::shared_ptr<ChannelNameSet> channel_name_set = _info.get_patches (_patch->channel());
|
2013-04-04 00:32:52 -04:00
|
|
|
|
|
|
|
if (!channel_name_set) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ChannelNameSet::PatchBanks& patch_banks = channel_name_set->patch_banks();
|
|
|
|
|
2013-04-04 18:45:27 -04:00
|
|
|
if (patch_banks.size() > 1) {
|
|
|
|
|
|
|
|
// fill popup menu:
|
|
|
|
Gtk::Menu::MenuList& patch_bank_menus = _popup.items();
|
|
|
|
|
|
|
|
for (ChannelNameSet::PatchBanks::const_iterator bank = patch_banks.begin();
|
|
|
|
bank != patch_banks.end();
|
|
|
|
++bank) {
|
|
|
|
Glib::RefPtr<Glib::Regex> underscores = Glib::Regex::create("_");
|
|
|
|
std::string replacement(" ");
|
|
|
|
|
|
|
|
Gtk::Menu& patch_bank_menu = *manage(new Gtk::Menu());
|
|
|
|
|
|
|
|
const PatchNameList& patches = (*bank)->patch_name_list();
|
|
|
|
Gtk::Menu::MenuList& patch_menus = patch_bank_menu.items();
|
|
|
|
|
|
|
|
for (PatchNameList::const_iterator patch = patches.begin();
|
|
|
|
patch != patches.end();
|
|
|
|
++patch) {
|
|
|
|
std::string name = underscores->replace((*patch)->name().c_str(), -1, 0, replacement);
|
|
|
|
|
|
|
|
patch_menus.push_back(
|
|
|
|
Gtk::Menu_Helpers::MenuElem(
|
|
|
|
name,
|
|
|
|
sigc::bind(
|
|
|
|
sigc::mem_fun(*this, &PatchChange::on_patch_menu_selected),
|
|
|
|
(*patch)->patch_primary_key())) );
|
|
|
|
}
|
2013-04-04 00:32:52 -04:00
|
|
|
|
|
|
|
|
2013-04-04 18:45:27 -04:00
|
|
|
std::string name = underscores->replace((*bank)->name().c_str(), -1, 0, replacement);
|
2013-04-04 00:32:52 -04:00
|
|
|
|
2013-04-04 18:45:27 -04:00
|
|
|
patch_bank_menus.push_back(
|
2013-04-04 00:32:52 -04:00
|
|
|
Gtk::Menu_Helpers::MenuElem(
|
|
|
|
name,
|
2013-04-04 18:45:27 -04:00
|
|
|
patch_bank_menu) );
|
2013-04-04 00:32:52 -04:00
|
|
|
}
|
|
|
|
|
2013-04-04 18:45:27 -04:00
|
|
|
} else {
|
|
|
|
/* only one patch bank, so make it the initial menu */
|
2013-04-04 00:32:52 -04:00
|
|
|
|
2013-04-04 18:45:27 -04:00
|
|
|
const PatchNameList& patches = patch_banks.front()->patch_name_list();
|
|
|
|
Gtk::Menu::MenuList& patch_menus = _popup.items();
|
|
|
|
|
|
|
|
for (PatchNameList::const_iterator patch = patches.begin();
|
|
|
|
patch != patches.end();
|
|
|
|
++patch) {
|
|
|
|
std::string name = (*patch)->name();
|
|
|
|
boost::replace_all (name, "_", " ");
|
|
|
|
|
|
|
|
patch_menus.push_back (
|
|
|
|
Gtk::Menu_Helpers::MenuElem (
|
|
|
|
name,
|
|
|
|
sigc::bind (sigc::mem_fun(*this, &PatchChange::on_patch_menu_selected),
|
|
|
|
(*patch)->patch_primary_key())));
|
|
|
|
}
|
2013-04-04 00:32:52 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PatchChange::on_patch_menu_selected(const PatchPrimaryKey& key)
|
|
|
|
{
|
|
|
|
_region.change_patch_change (*this, key);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
PatchChange::event_handler (GdkEvent* ev)
|
|
|
|
{
|
2014-02-11 22:48:18 -05:00
|
|
|
/* XXX: icky dcast */
|
|
|
|
Editor* e = dynamic_cast<Editor*> (&_region.get_time_axis_view().editor());
|
2014-12-08 23:00:00 -05:00
|
|
|
|
2014-12-06 16:05:47 -05:00
|
|
|
if (!e->internal_editing()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
switch (ev->type) {
|
|
|
|
case GDK_BUTTON_PRESS:
|
2015-01-06 22:00:54 -05:00
|
|
|
if (e->current_mouse_mode() == Editing::MouseContent) {
|
2013-04-04 00:32:52 -04:00
|
|
|
|
|
|
|
if (Gtkmm2ext::Keyboard::is_delete_event (&ev->button)) {
|
|
|
|
|
|
|
|
_region.delete_patch_change (this);
|
|
|
|
return true;
|
|
|
|
|
|
|
|
} else if (Gtkmm2ext::Keyboard::is_edit_event (&ev->button)) {
|
|
|
|
|
|
|
|
_region.edit_patch_change (this);
|
|
|
|
return true;
|
|
|
|
|
|
|
|
} else if (ev->button.button == 1) {
|
|
|
|
e->drags()->set (new PatchChangeDrag (e, this, &_region), ev);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ev->button.button == 3) {
|
|
|
|
if (!_popup_initialized) {
|
|
|
|
initialize_popup_menus();
|
|
|
|
_popup_initialized = true;
|
|
|
|
}
|
|
|
|
_popup.popup(ev->button.button, ev->button.time);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GDK_KEY_PRESS:
|
|
|
|
switch (ev->key.keyval) {
|
|
|
|
case GDK_Up:
|
|
|
|
case GDK_KP_Up:
|
|
|
|
case GDK_uparrow:
|
2014-12-17 20:18:11 -05:00
|
|
|
_region.step_patch(
|
|
|
|
*this, Keyboard::modifier_state_contains(ev->key.state, Keyboard::TertiaryModifier), 1);
|
|
|
|
return true;
|
2013-04-04 00:32:52 -04:00
|
|
|
case GDK_Down:
|
|
|
|
case GDK_KP_Down:
|
|
|
|
case GDK_downarrow:
|
2014-12-17 20:18:11 -05:00
|
|
|
_region.step_patch(
|
|
|
|
*this, Keyboard::modifier_state_contains(ev->key.state, Keyboard::TertiaryModifier), -1);
|
|
|
|
return true;
|
2013-04-04 00:32:52 -04:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GDK_SCROLL:
|
|
|
|
if (ev->scroll.direction == GDK_SCROLL_UP) {
|
2014-12-17 20:18:11 -05:00
|
|
|
_region.step_patch(
|
|
|
|
*this, Keyboard::modifier_state_contains(ev->scroll.state, Keyboard::TertiaryModifier), 1);
|
2013-04-04 00:32:52 -04:00
|
|
|
return true;
|
|
|
|
} else if (ev->scroll.direction == GDK_SCROLL_DOWN) {
|
2014-12-17 20:18:11 -05:00
|
|
|
_region.step_patch(
|
|
|
|
*this, Keyboard::modifier_state_contains(ev->scroll.state, Keyboard::TertiaryModifier), -1);
|
2013-04-04 00:32:52 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GDK_ENTER_NOTIFY:
|
|
|
|
_region.patch_entered (this);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GDK_LEAVE_NOTIFY:
|
|
|
|
_region.patch_left (this);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PatchChange::move (ArdourCanvas::Duple d)
|
|
|
|
{
|
|
|
|
_flag->move (d);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PatchChange::set_height (ArdourCanvas::Distance height)
|
|
|
|
{
|
|
|
|
_flag->set_height (height);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PatchChange::hide ()
|
|
|
|
{
|
|
|
|
_flag->hide ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PatchChange::show ()
|
|
|
|
{
|
|
|
|
_flag->show ();
|
|
|
|
}
|