2007-08-04 18:43:32 +00:00
|
|
|
/*
|
2019-08-02 23:26:43 +02:00
|
|
|
* Copyright (C) 2007-2011 David Robillard <d@drobilla.net>
|
|
|
|
|
* Copyright (C) 2008 Hans Baier <hansfbaier@googlemail.com>
|
|
|
|
|
*
|
|
|
|
|
* 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.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
*/
|
2007-08-04 18:43:32 +00:00
|
|
|
|
2024-09-25 18:38:59 -06:00
|
|
|
#pragma once
|
2007-08-04 18:43:32 +00:00
|
|
|
|
2024-10-20 00:46:31 +02:00
|
|
|
#include <cstdint>
|
2025-02-03 14:29:46 -07:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
|
|
namespace Gtk {
|
|
|
|
|
class Menu;
|
|
|
|
|
namespace Menu_Helpers {
|
|
|
|
|
class MenuList;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
|
class InstrumentInfo;
|
|
|
|
|
}
|
2024-10-20 00:46:31 +02:00
|
|
|
|
2009-02-15 19:44:27 +00:00
|
|
|
inline static void clamp_to_0_127(uint8_t &val)
|
2008-04-03 21:47:47 +00:00
|
|
|
{
|
2009-02-15 19:44:27 +00:00
|
|
|
if ((127 < val) && (val < 192)) {
|
2008-04-03 21:47:47 +00:00
|
|
|
val = 127;
|
2009-02-15 19:44:27 +00:00
|
|
|
} else if ((192 <= val) && (val < 255)) {
|
2008-04-03 21:47:47 +00:00
|
|
|
val = 0;
|
2009-10-14 16:10:01 +00:00
|
|
|
}
|
2008-04-03 21:47:47 +00:00
|
|
|
}
|
|
|
|
|
|
2007-08-04 18:43:32 +00:00
|
|
|
|
2025-02-03 14:29:46 -07:00
|
|
|
void
|
|
|
|
|
build_controller_menu (Gtk::Menu& menu, ARDOUR::InstrumentInfo const & instrument_info, uint16_t channel_mask,
|
|
|
|
|
std::function<void (Gtk::Menu_Helpers::MenuList&, int, const std::string&)> add_single,
|
2025-05-01 09:33:06 -06:00
|
|
|
std::function<void (Gtk::Menu_Helpers::MenuList&, uint16_t, int, const std::string&)> add_multi,
|
|
|
|
|
int button_name_length = 0);
|