2005-12-31 13:20:42 -05:00
|
|
|
/*
|
2008-08-04 18:37:24 -04:00
|
|
|
Copyright (C) 2005 Paul Davis
|
2005-12-31 13:20:42 -05:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2006-04-25 16:23:50 -04:00
|
|
|
#include <pbd/convert.h>
|
2007-01-16 20:42:44 -05:00
|
|
|
#include <pbd/stacktrace.h>
|
2006-04-25 16:23:50 -04:00
|
|
|
|
2006-01-07 21:56:49 -05:00
|
|
|
#include <gtkmm2ext/utils.h>
|
|
|
|
|
2005-12-31 13:20:42 -05:00
|
|
|
#include <ardour/configuration.h>
|
|
|
|
#include <ardour/session.h>
|
|
|
|
#include <ardour/audioengine.h>
|
|
|
|
|
2007-12-15 18:29:30 -05:00
|
|
|
#ifdef HAVE_LIBLO
|
|
|
|
#include <ardour/osc.h>
|
|
|
|
#endif
|
|
|
|
|
2005-12-31 13:20:42 -05:00
|
|
|
#include "ardour_ui.h"
|
|
|
|
#include "actions.h"
|
2006-01-07 21:56:49 -05:00
|
|
|
#include "gui_thread.h"
|
2008-01-10 16:20:59 -05:00
|
|
|
#include "public_editor.h"
|
2006-01-07 21:56:49 -05:00
|
|
|
|
|
|
|
#include "i18n.h"
|
2005-12-31 13:20:42 -05:00
|
|
|
|
|
|
|
using namespace Gtk;
|
2006-01-07 21:56:49 -05:00
|
|
|
using namespace Gtkmm2ext;
|
2005-12-31 13:20:42 -05:00
|
|
|
using namespace ARDOUR;
|
2006-06-21 19:01:03 -04:00
|
|
|
using namespace PBD;
|
2006-09-25 17:24:00 -04:00
|
|
|
using namespace sigc;
|
2005-12-31 13:20:42 -05:00
|
|
|
|
2006-09-25 17:24:00 -04:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_time_master ()
|
|
|
|
{
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::toggle_config_state ("Transport", "ToggleTimeMaster", &Configuration::set_jack_time_master, &Configuration::get_jack_time_master);
|
2006-09-25 17:24:00 -04:00
|
|
|
}
|
|
|
|
|
2005-12-31 13:20:42 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_send_mtc ()
|
|
|
|
{
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::toggle_config_state ("options", "SendMTC", &Configuration::set_send_mtc, &Configuration::get_send_mtc);
|
2005-12-31 13:20:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_send_mmc ()
|
|
|
|
{
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::toggle_config_state ("options", "SendMMC", &Configuration::set_send_mmc, &Configuration::get_send_mmc);
|
2005-12-31 13:20:42 -05:00
|
|
|
}
|
|
|
|
|
2008-11-26 18:32:55 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_send_midi_clock ()
|
|
|
|
{
|
|
|
|
ActionManager::toggle_config_state ("options", "SendMidiClock", &Configuration::set_send_midi_clock, &Configuration::get_send_midi_clock);
|
|
|
|
}
|
|
|
|
|
2005-12-31 13:20:42 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_use_mmc ()
|
|
|
|
{
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::toggle_config_state ("options", "UseMMC", &Configuration::set_mmc_control, &Configuration::get_mmc_control);
|
2005-12-31 13:20:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-04-11 09:07:51 -04:00
|
|
|
ARDOUR_UI::toggle_use_osc ()
|
2005-12-31 13:20:42 -05:00
|
|
|
{
|
2007-04-11 09:07:51 -04:00
|
|
|
ActionManager::toggle_config_state ("options", "UseOSC", &Configuration::set_use_osc, &Configuration::get_use_osc);
|
2005-12-31 13:20:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_send_midi_feedback ()
|
|
|
|
{
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::toggle_config_state ("options", "SendMIDIfeedback", &Configuration::set_midi_feedback, &Configuration::get_midi_feedback);
|
|
|
|
}
|
|
|
|
|
2007-05-31 22:27:21 -04:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_denormal_protection ()
|
|
|
|
{
|
|
|
|
ActionManager::toggle_config_state ("options", "DenormalProtection", &Configuration::set_denormal_protection, &Configuration::get_denormal_protection);
|
|
|
|
}
|
|
|
|
|
2007-10-11 18:07:47 -04:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_only_copy_imported_files ()
|
|
|
|
{
|
|
|
|
ActionManager::toggle_config_state ("options", "OnlyCopyImportedFiles", &Configuration::set_only_copy_imported_files, &Configuration::get_only_copy_imported_files);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-29 17:39:39 -04:00
|
|
|
void
|
|
|
|
ARDOUR_UI::set_native_file_header_format (HeaderFormat hf)
|
|
|
|
{
|
2007-04-11 09:07:51 -04:00
|
|
|
const char *action = 0;
|
2006-09-29 17:39:39 -04:00
|
|
|
|
|
|
|
switch (hf) {
|
|
|
|
case BWF:
|
|
|
|
action = X_("FileHeaderFormatBWF");
|
|
|
|
break;
|
|
|
|
case WAVE:
|
|
|
|
action = X_("FileHeaderFormatWAVE");
|
|
|
|
break;
|
|
|
|
case WAVE64:
|
|
|
|
action = X_("FileHeaderFormatWAVE64");
|
|
|
|
break;
|
|
|
|
case iXML:
|
|
|
|
action = X_("FileHeaderFormatiXML");
|
|
|
|
break;
|
|
|
|
case RF64:
|
|
|
|
action = X_("FileHeaderFormatRF64");
|
|
|
|
break;
|
|
|
|
case CAF:
|
|
|
|
action = X_("FileHeaderFormatCAF");
|
|
|
|
break;
|
|
|
|
case AIFF:
|
|
|
|
action = X_("FileHeaderFormatAIFF");
|
|
|
|
break;
|
2007-01-16 21:35:16 -05:00
|
|
|
default:
|
|
|
|
fatal << string_compose (_("programming error: %1"), "illegal file header format in ::set_native_file_header_format") << endmsg;
|
2008-08-04 18:37:24 -04:00
|
|
|
/*NOTREACHED*/
|
2006-09-29 17:39:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("options", action);
|
|
|
|
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<RadioAction> ract = Glib::RefPtr<RadioAction>::cast_dynamic(act);
|
|
|
|
if (ract && ract->get_active() && Config->get_native_file_header_format() != hf) {
|
|
|
|
Config->set_native_file_header_format (hf);
|
|
|
|
}
|
|
|
|
}
|
2005-12-31 13:20:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-09-29 17:39:39 -04:00
|
|
|
ARDOUR_UI::set_native_file_data_format (SampleFormat sf)
|
2005-12-31 13:20:42 -05:00
|
|
|
{
|
2007-04-11 09:07:51 -04:00
|
|
|
const char* action = 0;
|
2006-09-29 17:39:39 -04:00
|
|
|
|
|
|
|
switch (sf) {
|
|
|
|
case FormatFloat:
|
|
|
|
action = X_("FileDataFormatFloat");
|
|
|
|
break;
|
|
|
|
case FormatInt24:
|
|
|
|
action = X_("FileDataFormat24bit");
|
|
|
|
break;
|
2007-07-16 18:04:52 -04:00
|
|
|
case FormatInt16:
|
|
|
|
action = X_("FileDataFormat16bit");
|
|
|
|
break;
|
2007-01-16 21:35:16 -05:00
|
|
|
default:
|
|
|
|
fatal << string_compose (_("programming error: %1"), "illegal file data format in ::set_native_file_data_format") << endmsg;
|
|
|
|
/*NOTREACHED*/
|
2006-09-29 17:39:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("options", action);
|
|
|
|
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<RadioAction> ract = Glib::RefPtr<RadioAction>::cast_dynamic(act);
|
|
|
|
if (ract && ract->get_active() && Config->get_native_file_data_format() != sf) {
|
|
|
|
Config->set_native_file_data_format (sf);
|
|
|
|
}
|
|
|
|
}
|
2005-12-31 13:20:42 -05:00
|
|
|
}
|
2006-09-29 17:39:39 -04:00
|
|
|
|
2005-12-31 13:20:42 -05:00
|
|
|
void
|
2006-09-29 17:39:39 -04:00
|
|
|
ARDOUR_UI::set_input_auto_connect (AutoConnectOption option)
|
2005-12-31 13:20:42 -05:00
|
|
|
{
|
2006-09-29 17:39:39 -04:00
|
|
|
const char* action;
|
2008-08-04 18:37:24 -04:00
|
|
|
|
2006-09-29 17:39:39 -04:00
|
|
|
switch (option) {
|
|
|
|
case AutoConnectPhysical:
|
|
|
|
action = X_("InputAutoConnectPhysical");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
action = X_("InputAutoConnectManual");
|
|
|
|
}
|
|
|
|
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("options", action);
|
|
|
|
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<RadioAction> ract = Glib::RefPtr<RadioAction>::cast_dynamic(act);
|
|
|
|
|
|
|
|
if (ract && ract->get_active() && Config->get_input_auto_connect() != option) {
|
|
|
|
Config->set_input_auto_connect (option);
|
|
|
|
}
|
|
|
|
}
|
2005-12-31 13:20:42 -05:00
|
|
|
}
|
2006-09-29 17:39:39 -04:00
|
|
|
|
2005-12-31 13:20:42 -05:00
|
|
|
void
|
2006-09-29 17:39:39 -04:00
|
|
|
ARDOUR_UI::set_output_auto_connect (AutoConnectOption option)
|
2005-12-31 13:20:42 -05:00
|
|
|
{
|
2006-09-29 17:39:39 -04:00
|
|
|
const char* action;
|
2008-08-04 18:37:24 -04:00
|
|
|
|
2006-09-29 17:39:39 -04:00
|
|
|
switch (option) {
|
|
|
|
case AutoConnectPhysical:
|
|
|
|
action = X_("OutputAutoConnectPhysical");
|
|
|
|
break;
|
|
|
|
case AutoConnectMaster:
|
|
|
|
action = X_("OutputAutoConnectMaster");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
action = X_("OutputAutoConnectManual");
|
|
|
|
}
|
|
|
|
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("options", action);
|
|
|
|
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<RadioAction> ract = Glib::RefPtr<RadioAction>::cast_dynamic(act);
|
|
|
|
|
|
|
|
if (ract && ract->get_active() && Config->get_output_auto_connect() != option) {
|
|
|
|
Config->set_output_auto_connect (option);
|
|
|
|
}
|
|
|
|
}
|
2005-12-31 13:20:42 -05:00
|
|
|
}
|
2006-09-29 17:39:39 -04:00
|
|
|
|
2005-12-31 13:20:42 -05:00
|
|
|
void
|
2006-09-29 17:39:39 -04:00
|
|
|
ARDOUR_UI::set_solo_model (SoloModel model)
|
2005-12-31 13:20:42 -05:00
|
|
|
{
|
2006-09-29 17:39:39 -04:00
|
|
|
const char* action = 0;
|
|
|
|
|
|
|
|
switch (model) {
|
|
|
|
case SoloBus:
|
|
|
|
action = X_("SoloViaBus");
|
|
|
|
break;
|
2008-08-04 18:37:24 -04:00
|
|
|
|
2006-09-29 17:39:39 -04:00
|
|
|
case InverseMute:
|
|
|
|
action = X_("SoloInPlace");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fatal << string_compose (_("programming error: unknown solo model in ARDOUR_UI::set_solo_model: %1"), model) << endmsg;
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("options", action);
|
|
|
|
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<RadioAction> ract = Glib::RefPtr<RadioAction>::cast_dynamic(act);
|
|
|
|
|
|
|
|
if (ract && ract->get_active() && Config->get_solo_model() != model) {
|
|
|
|
Config->set_solo_model (model);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-04-11 09:07:51 -04:00
|
|
|
void
|
|
|
|
ARDOUR_UI::set_remote_model (RemoteModel model)
|
|
|
|
{
|
|
|
|
const char* action = 0;
|
|
|
|
|
|
|
|
switch (model) {
|
|
|
|
case UserOrdered:
|
|
|
|
action = X_("RemoteUserDefined");
|
|
|
|
break;
|
|
|
|
case MixerOrdered:
|
|
|
|
action = X_("RemoteMixerDefined");
|
|
|
|
break;
|
|
|
|
case EditorOrdered:
|
|
|
|
action = X_("RemoteEditorDefined");
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
fatal << string_compose (_("programming error: unknown remote model in ARDOUR_UI::set_remote_model: %1"), model) << endmsg;
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("options", action);
|
|
|
|
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<RadioAction> ract = Glib::RefPtr<RadioAction>::cast_dynamic(act);
|
|
|
|
|
|
|
|
if (ract && ract->get_active() && Config->get_remote_model() != model) {
|
|
|
|
Config->set_remote_model (model);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-09-29 17:39:39 -04:00
|
|
|
void
|
|
|
|
ARDOUR_UI::set_monitor_model (MonitorModel model)
|
|
|
|
{
|
|
|
|
const char* action = 0;
|
|
|
|
|
|
|
|
switch (model) {
|
|
|
|
case HardwareMonitoring:
|
|
|
|
action = X_("UseHardwareMonitoring");
|
|
|
|
break;
|
2008-08-04 18:37:24 -04:00
|
|
|
|
2006-09-29 17:39:39 -04:00
|
|
|
case SoftwareMonitoring:
|
|
|
|
action = X_("UseSoftwareMonitoring");
|
|
|
|
break;
|
|
|
|
case ExternalMonitoring:
|
|
|
|
action = X_("UseExternalMonitoring");
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2006-11-24 11:37:43 -05:00
|
|
|
fatal << string_compose (_("programming error: unknown monitor model in ARDOUR_UI::set_monitor_model: %1"), model) << endmsg;
|
2006-09-29 17:39:39 -04:00
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("options", action);
|
|
|
|
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<RadioAction> ract = Glib::RefPtr<RadioAction>::cast_dynamic(act);
|
|
|
|
|
|
|
|
if (ract && ract->get_active() && Config->get_monitoring_model() != model) {
|
|
|
|
Config->set_monitoring_model (model);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-31 13:20:42 -05:00
|
|
|
}
|
2006-01-07 21:56:49 -05:00
|
|
|
|
2007-05-31 22:27:21 -04:00
|
|
|
void
|
|
|
|
ARDOUR_UI::set_denormal_model (DenormalModel model)
|
|
|
|
{
|
|
|
|
const char* action = 0;
|
|
|
|
|
|
|
|
switch (model) {
|
|
|
|
case DenormalNone:
|
|
|
|
action = X_("DenormalNone");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DenormalFTZ:
|
|
|
|
action = X_("DenormalFTZ");
|
|
|
|
break;
|
2008-08-04 18:37:24 -04:00
|
|
|
|
2007-05-31 22:27:21 -04:00
|
|
|
case DenormalDAZ:
|
|
|
|
action = X_("DenormalDAZ");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DenormalFTZDAZ:
|
|
|
|
action = X_("DenormalFTZDAZ");
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
fatal << string_compose (_("programming error: unknown denormal model in ARDOUR_UI::set_denormal_model: %1"), model) << endmsg;
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("options", action);
|
|
|
|
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<RadioAction> ract = Glib::RefPtr<RadioAction>::cast_dynamic(act);
|
|
|
|
|
|
|
|
if (ract && ract->get_active() && Config->get_denormal_model() != model) {
|
|
|
|
Config->set_denormal_model (model);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-01-08 00:19:38 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_auto_input ()
|
|
|
|
{
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::toggle_config_state ("Transport", "ToggleAutoInput", &Configuration::set_auto_input, &Configuration::get_auto_input);
|
2006-01-08 00:19:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_auto_play ()
|
|
|
|
{
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::toggle_config_state ("Transport", "ToggleAutoPlay", &Configuration::set_auto_play, &Configuration::get_auto_play);
|
2006-01-08 00:19:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_auto_return ()
|
|
|
|
{
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::toggle_config_state ("Transport", "ToggleAutoReturn", &Configuration::set_auto_return, &Configuration::get_auto_return);
|
2006-01-08 00:19:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_click ()
|
|
|
|
{
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::toggle_config_state ("Transport", "ToggleClick", &Configuration::set_clicking, &Configuration::get_clicking);
|
2006-01-08 00:19:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_session_auto_loop ()
|
|
|
|
{
|
|
|
|
if (session) {
|
2006-11-02 00:38:41 -05:00
|
|
|
if (session->get_play_loop()) {
|
2006-01-08 00:19:38 -05:00
|
|
|
if (session->transport_rolling()) {
|
|
|
|
transport_roll();
|
|
|
|
} else {
|
2006-09-25 17:24:00 -04:00
|
|
|
session->request_play_loop (false);
|
2006-01-08 00:19:38 -05:00
|
|
|
}
|
|
|
|
} else {
|
2006-09-25 17:24:00 -04:00
|
|
|
session->request_play_loop (true);
|
2006-01-08 00:19:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-17 16:54:03 -04:00
|
|
|
void
|
|
|
|
ARDOUR_UI::unset_dual_punch ()
|
|
|
|
{
|
|
|
|
Glib::RefPtr<Action> action = ActionManager::get_action ("Transport", "TogglePunch");
|
2008-08-04 18:37:24 -04:00
|
|
|
|
2008-03-17 16:54:03 -04:00
|
|
|
if (action) {
|
|
|
|
Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(action);
|
|
|
|
if (tact) {
|
|
|
|
ignore_dual_punch = true;
|
|
|
|
tact->set_active (false);
|
|
|
|
ignore_dual_punch = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_punch ()
|
|
|
|
{
|
|
|
|
if (ignore_dual_punch) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Glib::RefPtr<Action> action = ActionManager::get_action ("Transport", "TogglePunch");
|
|
|
|
|
|
|
|
if (action) {
|
|
|
|
|
|
|
|
Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(action);
|
|
|
|
|
|
|
|
if (!tact) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* drive the other two actions from this one */
|
|
|
|
|
|
|
|
Glib::RefPtr<Action> in_action = ActionManager::get_action ("Transport", "TogglePunchIn");
|
|
|
|
Glib::RefPtr<Action> out_action = ActionManager::get_action ("Transport", "TogglePunchOut");
|
|
|
|
|
|
|
|
if (in_action && out_action) {
|
|
|
|
Glib::RefPtr<ToggleAction> tiact = Glib::RefPtr<ToggleAction>::cast_dynamic(in_action);
|
|
|
|
Glib::RefPtr<ToggleAction> toact = Glib::RefPtr<ToggleAction>::cast_dynamic(out_action);
|
|
|
|
tiact->set_active (tact->get_active());
|
|
|
|
toact->set_active (tact->get_active());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-08 00:19:38 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_punch_in ()
|
|
|
|
{
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::toggle_config_state ("Transport", "TogglePunchIn", &Configuration::set_punch_in, &Configuration::get_punch_in);
|
2006-01-08 00:19:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_punch_out ()
|
|
|
|
{
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::toggle_config_state ("Transport", "TogglePunchOut", &Configuration::set_punch_out, &Configuration::get_punch_out);
|
2006-01-08 00:19:38 -05:00
|
|
|
}
|
|
|
|
|
2006-09-25 17:24:00 -04:00
|
|
|
void
|
2006-08-31 09:23:43 -04:00
|
|
|
ARDOUR_UI::toggle_video_sync()
|
|
|
|
{
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("Transport", "ToggleVideoSync");
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
|
|
|
|
Config->set_use_video_sync (tact->get_active());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-19 13:05:31 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_editing_space()
|
|
|
|
{
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("Common", "ToggleMaximalEditor");
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
|
|
|
|
if (tact->get_active()) {
|
|
|
|
maximise_editing_space ();
|
|
|
|
} else {
|
|
|
|
restore_editing_space ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_new_plugins_active ()
|
|
|
|
{
|
|
|
|
ActionManager::toggle_config_state ("options", "NewPluginsActive", &Configuration::set_new_plugins_active, &Configuration::get_new_plugins_active);
|
|
|
|
}
|
|
|
|
|
2005-12-31 13:20:42 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_StopPluginsWithTransport()
|
|
|
|
{
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::toggle_config_state ("options", "StopPluginsWithTransport", &Configuration::set_plugins_stop_with_transport, &Configuration::get_plugins_stop_with_transport);
|
2005-12-31 13:20:42 -05:00
|
|
|
}
|
2006-01-18 19:03:55 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_LatchedRecordEnable()
|
|
|
|
{
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::toggle_config_state ("options", "LatchedRecordEnable", &Configuration::set_latched_record_enable, &Configuration::get_latched_record_enable);
|
2006-01-18 19:03:55 -05:00
|
|
|
}
|
|
|
|
|
2007-01-23 20:56:20 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_RegionEquivalentsOverlap()
|
|
|
|
{
|
|
|
|
ActionManager::toggle_config_state ("options", "RegionEquivalentsOverlap", &Configuration::set_use_overlap_equivalency, &Configuration::get_use_overlap_equivalency);
|
|
|
|
}
|
|
|
|
|
2005-12-31 13:20:42 -05:00
|
|
|
void
|
2006-01-09 12:40:00 -05:00
|
|
|
ARDOUR_UI::toggle_DoNotRunPluginsWhileRecording()
|
2005-12-31 13:20:42 -05:00
|
|
|
{
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::toggle_config_state ("options", "DoNotRunPluginsWhileRecording", &Configuration::set_do_not_record_plugins, &Configuration::get_do_not_record_plugins);
|
2005-12-31 13:20:42 -05:00
|
|
|
}
|
2006-01-07 21:56:49 -05:00
|
|
|
|
2005-12-31 13:20:42 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_VerifyRemoveLastCapture()
|
|
|
|
{
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::toggle_config_state ("options", "VerifyRemoveLastCapture", &Configuration::set_verify_remove_last_capture, &Configuration::get_verify_remove_last_capture);
|
2005-12-31 13:20:42 -05:00
|
|
|
}
|
2006-01-07 21:56:49 -05:00
|
|
|
|
2007-04-26 16:54:31 -04:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_PeriodicSafetyBackups()
|
|
|
|
{
|
|
|
|
ActionManager::toggle_config_state ("options", "PeriodicSafetyBackups", &Configuration::set_periodic_safety_backups, &Configuration::get_periodic_safety_backups);
|
|
|
|
}
|
|
|
|
|
2005-12-31 13:20:42 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_StopRecordingOnXrun()
|
|
|
|
{
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::toggle_config_state ("options", "StopRecordingOnXrun", &Configuration::set_stop_recording_on_xrun, &Configuration::get_stop_recording_on_xrun);
|
2005-12-31 13:20:42 -05:00
|
|
|
}
|
2006-01-07 21:56:49 -05:00
|
|
|
|
2008-02-16 17:43:18 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_CreateXrunMarker()
|
|
|
|
{
|
|
|
|
ActionManager::toggle_config_state ("options", "CreateXrunMarker", &Configuration::set_create_xrun_marker, &Configuration::get_create_xrun_marker);
|
|
|
|
}
|
|
|
|
|
2007-10-11 18:07:47 -04:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_sync_order_keys ()
|
|
|
|
{
|
|
|
|
ActionManager::toggle_config_state ("options", "SyncEditorAndMixerTrackOrder", &Configuration::set_sync_all_route_ordering, &Configuration::get_sync_all_route_ordering);
|
|
|
|
}
|
|
|
|
|
2005-12-31 13:20:42 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_StopTransportAtEndOfSession()
|
|
|
|
{
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::toggle_config_state ("options", "StopTransportAtEndOfSession", &Configuration::set_stop_at_session_end, &Configuration::get_stop_at_session_end);
|
2005-12-31 13:20:42 -05:00
|
|
|
}
|
2006-01-07 21:56:49 -05:00
|
|
|
|
2005-12-31 13:20:42 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_GainReduceFastTransport()
|
|
|
|
{
|
2006-10-08 15:27:33 -04:00
|
|
|
ActionManager::toggle_config_state ("options", "GainReduceFastTransport", &Configuration::set_quieten_at_speed, &Configuration::get_quieten_at_speed);
|
2005-12-31 13:20:42 -05:00
|
|
|
}
|
2006-01-07 21:56:49 -05:00
|
|
|
|
2005-12-31 13:20:42 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_LatchedSolo()
|
|
|
|
{
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::toggle_config_state ("options", "LatchedSolo", &Configuration::set_solo_latched, &Configuration::get_solo_latched);
|
2005-12-31 13:20:42 -05:00
|
|
|
}
|
2006-01-07 21:56:49 -05:00
|
|
|
|
2007-04-11 09:07:51 -04:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_ShowSoloMutes()
|
|
|
|
{
|
|
|
|
ActionManager::toggle_config_state ("options", "ShowSoloMutes", &Configuration::set_show_solo_mutes, &Configuration::get_show_solo_mutes);
|
|
|
|
}
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_SoloMuteOverride()
|
|
|
|
{
|
|
|
|
ActionManager::toggle_config_state ("options", "SoloMuteOverride", &Configuration::set_solo_mute_override, &Configuration::get_solo_mute_override);
|
|
|
|
}
|
|
|
|
|
2007-05-13 22:48:28 -04:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_PrimaryClockDeltaEditCursor()
|
|
|
|
{
|
|
|
|
ActionManager::toggle_config_state ("options", "PrimaryClockDeltaEditCursor", &Configuration::set_primary_clock_delta_edit_cursor, &Configuration::get_primary_clock_delta_edit_cursor);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_SecondaryClockDeltaEditCursor()
|
|
|
|
{
|
|
|
|
ActionManager::toggle_config_state ("options", "SecondaryClockDeltaEditCursor", &Configuration::set_secondary_clock_delta_edit_cursor, &Configuration::get_secondary_clock_delta_edit_cursor);
|
|
|
|
}
|
|
|
|
|
2007-12-20 18:25:19 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_ShowTrackMeters()
|
|
|
|
{
|
|
|
|
ActionManager::toggle_config_state ("options", "ShowTrackMeters", &Configuration::set_show_track_meters, &Configuration::get_show_track_meters);
|
|
|
|
}
|
|
|
|
|
2008-02-17 12:49:38 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_TapeMachineMode ()
|
|
|
|
{
|
|
|
|
ActionManager::toggle_config_state ("options", "ToggleTapeMachineMode", &Configuration::set_tape_machine_mode, &Configuration::get_tape_machine_mode);
|
|
|
|
}
|
|
|
|
|
2008-01-10 17:22:29 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_use_narrow_ms()
|
|
|
|
{
|
|
|
|
ActionManager::toggle_config_state ("options", "DefaultNarrowMS", &Configuration::set_default_narrow_ms, &Configuration::get_default_narrow_ms);
|
|
|
|
}
|
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_NameNewMarkers()
|
|
|
|
{
|
|
|
|
ActionManager::toggle_config_state ("options", "NameNewMarkers", &Configuration::set_name_new_markers, &Configuration::get_name_new_markers);
|
|
|
|
}
|
|
|
|
|
2008-02-17 12:49:38 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_rubberbanding_snaps_to_grid ()
|
|
|
|
{
|
|
|
|
ActionManager::toggle_config_state ("options", "RubberbandingSnapsToGrid", &Configuration::set_rubberbanding_snaps_to_grid, &Configuration::get_rubberbanding_snaps_to_grid);
|
|
|
|
}
|
|
|
|
|
2008-04-11 10:06:50 -04:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_auto_analyse_audio ()
|
|
|
|
{
|
|
|
|
ActionManager::toggle_config_state ("options", "AutoAnalyseAudio", &Configuration::set_auto_analyse_audio, &Configuration::get_auto_analyse_audio);
|
|
|
|
}
|
|
|
|
|
2006-01-07 21:56:49 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::mtc_port_changed ()
|
|
|
|
{
|
|
|
|
bool have_mtc;
|
2008-08-04 18:37:24 -04:00
|
|
|
bool have_midi_clock;
|
2006-01-07 21:56:49 -05:00
|
|
|
|
|
|
|
if (session) {
|
|
|
|
if (session->mtc_port()) {
|
|
|
|
have_mtc = true;
|
|
|
|
} else {
|
|
|
|
have_mtc = false;
|
|
|
|
}
|
2008-08-04 18:37:24 -04:00
|
|
|
if (session->midi_clock_port()) {
|
|
|
|
have_midi_clock = true;
|
|
|
|
} else {
|
|
|
|
have_midi_clock = false;
|
|
|
|
}
|
2006-01-07 21:56:49 -05:00
|
|
|
} else {
|
|
|
|
have_mtc = false;
|
2008-08-04 18:37:24 -04:00
|
|
|
have_midi_clock = false;
|
2006-01-07 21:56:49 -05:00
|
|
|
}
|
|
|
|
|
2006-09-25 17:24:00 -04:00
|
|
|
positional_sync_strings.clear ();
|
|
|
|
positional_sync_strings.push_back (slave_source_to_string (None));
|
2006-01-07 21:56:49 -05:00
|
|
|
if (have_mtc) {
|
2006-09-25 17:24:00 -04:00
|
|
|
positional_sync_strings.push_back (slave_source_to_string (MTC));
|
2006-01-07 21:56:49 -05:00
|
|
|
}
|
2008-08-04 18:37:24 -04:00
|
|
|
if (have_midi_clock) {
|
|
|
|
positional_sync_strings.push_back (slave_source_to_string (MIDIClock));
|
|
|
|
}
|
2006-09-25 17:24:00 -04:00
|
|
|
positional_sync_strings.push_back (slave_source_to_string (JACK));
|
2008-08-04 18:37:24 -04:00
|
|
|
|
2006-01-07 21:56:49 -05:00
|
|
|
set_popdown_strings (sync_option_combo, positional_sync_strings);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-03-31 10:51:03 -05:00
|
|
|
ARDOUR_UI::setup_session_options ()
|
2006-01-07 21:56:49 -05:00
|
|
|
{
|
|
|
|
mtc_port_changed ();
|
|
|
|
|
2006-09-25 17:24:00 -04:00
|
|
|
Config->ParameterChanged.connect (mem_fun (*this, &ARDOUR_UI::parameter_changed));
|
2006-01-07 21:56:49 -05:00
|
|
|
}
|
|
|
|
|
2006-09-29 17:39:39 -04:00
|
|
|
|
2006-01-07 21:56:49 -05:00
|
|
|
void
|
2006-09-29 17:39:39 -04:00
|
|
|
ARDOUR_UI::map_solo_model ()
|
2006-01-07 21:56:49 -05:00
|
|
|
{
|
2006-09-29 17:39:39 -04:00
|
|
|
const char* on;
|
|
|
|
|
|
|
|
if (Config->get_solo_model() == InverseMute) {
|
2007-01-02 08:57:06 -05:00
|
|
|
on = X_("SoloInPlace");
|
2006-09-29 17:39:39 -04:00
|
|
|
} else {
|
2007-01-02 08:57:06 -05:00
|
|
|
on = X_("SoloViaBus");
|
2006-09-29 17:39:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("options", on);
|
2006-01-07 21:56:49 -05:00
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
|
2006-09-25 17:24:00 -04:00
|
|
|
|
2006-09-29 17:39:39 -04:00
|
|
|
if (tact && !tact->get_active()) {
|
|
|
|
tact->set_active (true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-09-29 09:10:46 -04:00
|
|
|
|
2006-09-29 17:39:39 -04:00
|
|
|
void
|
|
|
|
ARDOUR_UI::map_monitor_model ()
|
|
|
|
{
|
|
|
|
const char* on = 0;
|
|
|
|
|
|
|
|
switch (Config->get_monitoring_model()) {
|
|
|
|
case HardwareMonitoring:
|
|
|
|
on = X_("UseHardwareMonitoring");
|
|
|
|
break;
|
|
|
|
case SoftwareMonitoring:
|
|
|
|
on = X_("UseSoftwareMonitoring");
|
|
|
|
break;
|
|
|
|
case ExternalMonitoring:
|
|
|
|
on = X_("UseExternalMonitoring");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("options", on);
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
|
|
|
|
|
|
|
|
if (tact && !tact->get_active()) {
|
|
|
|
tact->set_active (true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-11 18:07:47 -04:00
|
|
|
void
|
|
|
|
ARDOUR_UI::map_denormal_protection ()
|
|
|
|
{
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("options", X_("DenormalProtection"));
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
|
|
|
|
|
|
|
|
if (tact && !tact->get_active()) {
|
|
|
|
tact->set_active (Config->get_denormal_protection());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-31 22:27:21 -04:00
|
|
|
void
|
|
|
|
ARDOUR_UI::map_denormal_model ()
|
|
|
|
{
|
|
|
|
const char* on = 0;
|
|
|
|
|
|
|
|
switch (Config->get_denormal_model()) {
|
|
|
|
case DenormalNone:
|
|
|
|
on = X_("DenormalNone");
|
|
|
|
break;
|
|
|
|
case DenormalFTZ:
|
|
|
|
on = X_("DenormalFTZ");
|
|
|
|
break;
|
|
|
|
case DenormalDAZ:
|
|
|
|
on = X_("DenormalDAZ");
|
|
|
|
break;
|
|
|
|
case DenormalFTZDAZ:
|
|
|
|
on = X_("DenormalFTZDAZ");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("options", on);
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
|
|
|
|
|
|
|
|
if (tact && !tact->get_active()) {
|
|
|
|
tact->set_active (true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-04-11 09:07:51 -04:00
|
|
|
void
|
|
|
|
ARDOUR_UI::map_remote_model ()
|
|
|
|
{
|
|
|
|
const char* on = 0;
|
|
|
|
|
|
|
|
switch (Config->get_remote_model()) {
|
|
|
|
case UserOrdered:
|
|
|
|
on = X_("RemoteUserDefined");
|
|
|
|
break;
|
|
|
|
case MixerOrdered:
|
|
|
|
on = X_("RemoteMixerDefined");
|
|
|
|
break;
|
|
|
|
case EditorOrdered:
|
|
|
|
on = X_("RemoteEditorDefined");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("options", on);
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
|
|
|
|
|
|
|
|
if (tact && !tact->get_active()) {
|
|
|
|
tact->set_active (true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-29 17:39:39 -04:00
|
|
|
void
|
|
|
|
ARDOUR_UI::map_file_header_format ()
|
|
|
|
{
|
|
|
|
const char* action = 0;
|
|
|
|
|
|
|
|
switch (Config->get_native_file_header_format()) {
|
|
|
|
case BWF:
|
|
|
|
action = X_("FileHeaderFormatBWF");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WAVE:
|
|
|
|
action = X_("FileHeaderFormatWAVE");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WAVE64:
|
|
|
|
action = X_("FileHeaderFormatWAVE64");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case iXML:
|
|
|
|
action = X_("FileHeaderFormatiXML");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RF64:
|
|
|
|
action = X_("FileHeaderFormatRF64");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CAF:
|
|
|
|
action = X_("FileHeaderFormatCAF");
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2008-08-04 18:37:24 -04:00
|
|
|
fatal << string_compose (_("programming error: unknown file header format passed to ARDOUR_UI::map_file_data_format: %1"),
|
2006-09-29 17:39:39 -04:00
|
|
|
Config->get_native_file_header_format()) << endmsg;
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("options", action);
|
|
|
|
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
|
|
|
|
|
|
|
|
if (tact && !tact->get_active()) {
|
|
|
|
tact->set_active (true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::map_file_data_format ()
|
|
|
|
{
|
|
|
|
const char* action = 0;
|
|
|
|
|
|
|
|
switch (Config->get_native_file_data_format()) {
|
|
|
|
case FormatFloat:
|
|
|
|
action = X_("FileDataFormatFloat");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FormatInt24:
|
|
|
|
action = X_("FileDataFormat24bit");
|
|
|
|
break;
|
|
|
|
|
2007-07-16 18:04:52 -04:00
|
|
|
case FormatInt16:
|
|
|
|
action = X_("FileDataFormat16bit");
|
|
|
|
break;
|
|
|
|
|
2006-09-29 17:39:39 -04:00
|
|
|
default:
|
2008-08-04 18:37:24 -04:00
|
|
|
fatal << string_compose (_("programming error: unknown file data format passed to ARDOUR_UI::map_file_data_format: %1"),
|
2006-09-29 17:39:39 -04:00
|
|
|
Config->get_native_file_data_format()) << endmsg;
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("options", action);
|
|
|
|
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
|
|
|
|
|
|
|
|
if (tact && !tact->get_active()) {
|
|
|
|
tact->set_active (true);
|
2006-01-07 21:56:49 -05:00
|
|
|
}
|
2006-09-29 17:39:39 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::map_input_auto_connect ()
|
|
|
|
{
|
|
|
|
const char* on;
|
|
|
|
|
|
|
|
if (Config->get_input_auto_connect() == (AutoConnectOption) 0) {
|
|
|
|
on = "InputAutoConnectManual";
|
2006-09-29 09:10:46 -04:00
|
|
|
} else {
|
2006-09-29 17:39:39 -04:00
|
|
|
on = "InputAutoConnectPhysical";
|
|
|
|
}
|
|
|
|
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("options", on);
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
|
|
|
|
|
|
|
|
if (tact && !tact->get_active()) {
|
|
|
|
tact->set_active (true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::map_output_auto_connect ()
|
|
|
|
{
|
|
|
|
const char* on;
|
|
|
|
|
|
|
|
if (Config->get_output_auto_connect() == (AutoConnectOption) 0) {
|
|
|
|
on = "OutputAutoConnectManual";
|
|
|
|
} else if (Config->get_output_auto_connect() == AutoConnectPhysical) {
|
|
|
|
on = "OutputAutoConnectPhysical";
|
|
|
|
} else {
|
|
|
|
on = "OutputAutoConnectMaster";
|
|
|
|
}
|
|
|
|
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("options", on);
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
|
2008-08-04 18:37:24 -04:00
|
|
|
|
2006-09-29 17:39:39 -04:00
|
|
|
if (tact && !tact->get_active()) {
|
|
|
|
tact->set_active (true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-11 18:07:47 -04:00
|
|
|
void
|
|
|
|
ARDOUR_UI::map_only_copy_imported_files ()
|
|
|
|
{
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("options", X_("OnlyCopyImportedFiles"));
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
|
|
|
|
|
|
|
|
if (tact && !tact->get_active()) {
|
|
|
|
tact->set_active (Config->get_only_copy_imported_files());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-29 17:39:39 -04:00
|
|
|
void
|
|
|
|
ARDOUR_UI::map_meter_falloff ()
|
|
|
|
{
|
2006-10-16 16:57:24 -04:00
|
|
|
const char* action = X_("MeterFalloffMedium");
|
2006-09-29 17:39:39 -04:00
|
|
|
|
|
|
|
float val = Config->get_meter_falloff ();
|
2007-01-03 15:49:03 -05:00
|
|
|
MeterFalloff code = meter_falloff_from_float(val);
|
2006-09-29 17:39:39 -04:00
|
|
|
|
|
|
|
switch (code) {
|
|
|
|
case MeterFalloffOff:
|
|
|
|
action = X_("MeterFalloffOff");
|
|
|
|
break;
|
|
|
|
case MeterFalloffSlowest:
|
|
|
|
action = X_("MeterFalloffSlowest");
|
|
|
|
break;
|
|
|
|
case MeterFalloffSlow:
|
|
|
|
action = X_("MeterFalloffSlow");
|
|
|
|
break;
|
|
|
|
case MeterFalloffMedium:
|
|
|
|
action = X_("MeterFalloffMedium");
|
|
|
|
break;
|
|
|
|
case MeterFalloffFast:
|
|
|
|
action = X_("MeterFalloffFast");
|
|
|
|
break;
|
|
|
|
case MeterFalloffFaster:
|
|
|
|
action = X_("MeterFalloffFaster");
|
|
|
|
break;
|
|
|
|
case MeterFalloffFastest:
|
|
|
|
action = X_("MeterFalloffFastest");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action (X_("options"), action);
|
|
|
|
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<RadioAction> ract = Glib::RefPtr<RadioAction>::cast_dynamic(act);
|
|
|
|
if (ract && !ract->get_active()) {
|
|
|
|
ract->set_active (true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::map_meter_hold ()
|
|
|
|
{
|
2006-10-16 16:57:24 -04:00
|
|
|
const char* action = X_("MeterHoldMedium");
|
2006-09-29 17:39:39 -04:00
|
|
|
|
|
|
|
/* XXX hack alert. Fix this. Please */
|
|
|
|
|
|
|
|
float val = Config->get_meter_hold ();
|
2006-10-16 16:57:24 -04:00
|
|
|
MeterHold code = (MeterHold) (int) (floor (val));
|
2006-09-29 17:39:39 -04:00
|
|
|
|
|
|
|
switch (code) {
|
|
|
|
case MeterHoldOff:
|
|
|
|
action = X_("MeterHoldOff");
|
|
|
|
break;
|
|
|
|
case MeterHoldShort:
|
|
|
|
action = X_("MeterHoldShort");
|
|
|
|
break;
|
|
|
|
case MeterHoldMedium:
|
|
|
|
action = X_("MeterHoldMedium");
|
|
|
|
break;
|
|
|
|
case MeterHoldLong:
|
|
|
|
action = X_("MeterHoldLong");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action (X_("options"), action);
|
|
|
|
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<RadioAction> ract = Glib::RefPtr<RadioAction>::cast_dynamic(act);
|
|
|
|
if (ract && !ract->get_active()) {
|
|
|
|
ract->set_active (true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-04 18:37:24 -04:00
|
|
|
void
|
2006-09-29 17:39:39 -04:00
|
|
|
ARDOUR_UI::set_meter_hold (MeterHold val)
|
|
|
|
{
|
|
|
|
const char* action = 0;
|
|
|
|
float fval;
|
|
|
|
|
|
|
|
fval = meter_hold_to_float (val);
|
|
|
|
|
|
|
|
switch (val) {
|
|
|
|
case MeterHoldOff:
|
|
|
|
action = X_("MeterHoldOff");
|
|
|
|
break;
|
|
|
|
case MeterHoldShort:
|
|
|
|
action = X_("MeterHoldShort");
|
|
|
|
break;
|
|
|
|
case MeterHoldMedium:
|
|
|
|
action = X_("MeterHoldMedium");
|
|
|
|
break;
|
|
|
|
case MeterHoldLong:
|
|
|
|
action = X_("MeterHoldLong");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action (X_("options"), action);
|
2008-08-04 18:37:24 -04:00
|
|
|
|
2006-09-29 17:39:39 -04:00
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<RadioAction> ract = Glib::RefPtr<RadioAction>::cast_dynamic(act);
|
|
|
|
if (ract && ract->get_active() && Config->get_meter_hold() != fval) {
|
|
|
|
Config->set_meter_hold (fval);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::set_meter_falloff (MeterFalloff val)
|
|
|
|
{
|
|
|
|
const char* action = 0;
|
|
|
|
float fval;
|
|
|
|
|
|
|
|
fval = meter_falloff_to_float (val);
|
|
|
|
|
|
|
|
switch (val) {
|
|
|
|
case MeterFalloffOff:
|
|
|
|
action = X_("MeterFalloffOff");
|
|
|
|
break;
|
|
|
|
case MeterFalloffSlowest:
|
|
|
|
action = X_("MeterFalloffSlowest");
|
|
|
|
break;
|
|
|
|
case MeterFalloffSlow:
|
|
|
|
action = X_("MeterFalloffSlow");
|
|
|
|
break;
|
|
|
|
case MeterFalloffMedium:
|
|
|
|
action = X_("MeterFalloffMedium");
|
|
|
|
break;
|
|
|
|
case MeterFalloffFast:
|
|
|
|
action = X_("MeterFalloffFast");
|
|
|
|
break;
|
|
|
|
case MeterFalloffFaster:
|
|
|
|
action = X_("MeterFalloffFaster");
|
|
|
|
break;
|
|
|
|
case MeterFalloffFastest:
|
|
|
|
action = X_("MeterFalloffFastest");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action (X_("options"), action);
|
|
|
|
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<RadioAction> ract = Glib::RefPtr<RadioAction>::cast_dynamic(act);
|
|
|
|
if (ract && ract->get_active() && Config->get_meter_falloff () != fval) {
|
|
|
|
Config->set_meter_falloff (fval);
|
|
|
|
}
|
2006-01-07 21:56:49 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-09-25 17:24:00 -04:00
|
|
|
ARDOUR_UI::parameter_changed (const char* parameter_name)
|
|
|
|
{
|
2007-01-17 15:20:19 -05:00
|
|
|
ENSURE_GUI_THREAD (bind (mem_fun (*this, &ARDOUR_UI::parameter_changed), parameter_name));
|
|
|
|
|
2006-09-25 17:24:00 -04:00
|
|
|
#define PARAM_IS(x) (!strcmp (parameter_name, (x)))
|
2008-08-04 18:37:24 -04:00
|
|
|
|
2006-09-25 17:24:00 -04:00
|
|
|
if (PARAM_IS ("slave-source")) {
|
|
|
|
|
|
|
|
sync_option_combo.set_active_text (slave_source_to_string (Config->get_slave_source()));
|
2008-08-04 18:37:24 -04:00
|
|
|
|
2007-04-11 09:07:51 -04:00
|
|
|
switch (Config->get_slave_source()) {
|
|
|
|
case None:
|
|
|
|
ActionManager::get_action ("Transport", "ToggleAutoPlay")->set_sensitive (true);
|
|
|
|
ActionManager::get_action ("Transport", "ToggleAutoReturn")->set_sensitive (true);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/* XXX need to make auto-play is off as well as insensitive */
|
|
|
|
ActionManager::get_action ("Transport", "ToggleAutoPlay")->set_sensitive (false);
|
|
|
|
ActionManager::get_action ("Transport", "ToggleAutoReturn")->set_sensitive (false);
|
|
|
|
break;
|
|
|
|
}
|
2006-09-25 17:24:00 -04:00
|
|
|
|
|
|
|
} else if (PARAM_IS ("send-mtc")) {
|
|
|
|
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::map_some_state ("options", "SendMTC", &Configuration::get_send_mtc);
|
2006-09-25 17:24:00 -04:00
|
|
|
|
|
|
|
} else if (PARAM_IS ("send-mmc")) {
|
|
|
|
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::map_some_state ("options", "SendMMC", &Configuration::get_send_mmc);
|
2006-09-25 17:24:00 -04:00
|
|
|
|
2007-04-11 09:07:51 -04:00
|
|
|
} else if (PARAM_IS ("use-osc")) {
|
|
|
|
|
|
|
|
#ifdef HAVE_LIBLO
|
|
|
|
if (Config->get_use_osc()) {
|
|
|
|
osc->start ();
|
|
|
|
} else {
|
|
|
|
osc->stop ();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ActionManager::map_some_state ("options", "UseOSC", &Configuration::get_use_osc);
|
2008-08-04 18:37:24 -04:00
|
|
|
|
2006-09-25 17:24:00 -04:00
|
|
|
} else if (PARAM_IS ("mmc-control")) {
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::map_some_state ("options", "UseMMC", &Configuration::get_mmc_control);
|
2006-09-25 17:24:00 -04:00
|
|
|
} else if (PARAM_IS ("midi-feedback")) {
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::map_some_state ("options", "SendMIDIfeedback", &Configuration::get_midi_feedback);
|
2006-09-25 17:24:00 -04:00
|
|
|
} else if (PARAM_IS ("do-not-record-plugins")) {
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::map_some_state ("options", "DoNotRunPluginsWhileRecording", &Configuration::get_do_not_record_plugins);
|
2006-09-25 17:24:00 -04:00
|
|
|
} else if (PARAM_IS ("latched-record-enable")) {
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::map_some_state ("options", "LatchedRecordEnable", &Configuration::get_latched_record_enable);
|
2006-09-26 17:54:51 -04:00
|
|
|
} else if (PARAM_IS ("solo-latched")) {
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::map_some_state ("options", "LatchedSolo", &Configuration::get_solo_latched);
|
2007-04-11 09:07:51 -04:00
|
|
|
} else if (PARAM_IS ("show-solo-mutes")) {
|
|
|
|
ActionManager::map_some_state ("options", "ShowSoloMutes", &Configuration::get_show_solo_mutes);
|
2008-12-12 09:43:24 -05:00
|
|
|
} else if (PARAM_IS ("solo-mute-override")) {
|
|
|
|
ActionManager::map_some_state ("options", "SoloMuteOverride", &Configuration::get_solo_mute_override);
|
2006-09-25 17:24:00 -04:00
|
|
|
} else if (PARAM_IS ("solo-model")) {
|
2006-09-29 17:39:39 -04:00
|
|
|
map_solo_model ();
|
2006-09-25 17:24:00 -04:00
|
|
|
} else if (PARAM_IS ("auto-play")) {
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::map_some_state ("Transport", "ToggleAutoPlay", &Configuration::get_auto_play);
|
2006-09-25 17:24:00 -04:00
|
|
|
} else if (PARAM_IS ("auto-return")) {
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::map_some_state ("Transport", "ToggleAutoReturn", &Configuration::get_auto_return);
|
2006-09-25 17:24:00 -04:00
|
|
|
} else if (PARAM_IS ("auto-input")) {
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::map_some_state ("Transport", "ToggleAutoInput", &Configuration::get_auto_input);
|
2008-02-17 12:49:38 -05:00
|
|
|
} else if (PARAM_IS ("tape-machine-mode")) {
|
|
|
|
ActionManager::map_some_state ("options", "ToggleTapeMachineMode", &Configuration::get_tape_machine_mode);
|
2006-09-25 17:24:00 -04:00
|
|
|
} else if (PARAM_IS ("punch-out")) {
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::map_some_state ("Transport", "TogglePunchOut", &Configuration::get_punch_out);
|
2008-03-17 16:54:03 -04:00
|
|
|
if (!Config->get_punch_out()) {
|
|
|
|
unset_dual_punch ();
|
|
|
|
}
|
2006-09-25 17:24:00 -04:00
|
|
|
} else if (PARAM_IS ("punch-in")) {
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::map_some_state ("Transport", "TogglePunchIn", &Configuration::get_punch_in);
|
2008-03-17 16:54:03 -04:00
|
|
|
if (!Config->get_punch_in()) {
|
|
|
|
unset_dual_punch ();
|
|
|
|
}
|
2006-09-25 17:24:00 -04:00
|
|
|
} else if (PARAM_IS ("clicking")) {
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::map_some_state ("Transport", "ToggleClick", &Configuration::get_clicking);
|
2006-09-25 17:24:00 -04:00
|
|
|
} else if (PARAM_IS ("jack-time-master")) {
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::map_some_state ("Transport", "ToggleTimeMaster", &Configuration::get_jack_time_master);
|
2006-09-25 17:24:00 -04:00
|
|
|
} else if (PARAM_IS ("plugins-stop-with-transport")) {
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::map_some_state ("options", "StopPluginsWithTransport", &Configuration::get_plugins_stop_with_transport);
|
2008-12-12 09:43:24 -05:00
|
|
|
} else if (PARAM_IS ("new-plugins-active")) {
|
|
|
|
ActionManager::map_some_state ("options", "NewPluginsActive", &Configuration::get_new_plugins_active);
|
2006-09-25 17:24:00 -04:00
|
|
|
} else if (PARAM_IS ("latched-record-enable")) {
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::map_some_state ("options", "LatchedRecordEnable", &Configuration::get_latched_record_enable);
|
2006-09-25 17:24:00 -04:00
|
|
|
} else if (PARAM_IS ("verify-remove-last-capture")) {
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::map_some_state ("options", "VerifyRemoveLastCapture", &Configuration::get_verify_remove_last_capture);
|
2007-04-26 16:54:31 -04:00
|
|
|
} else if (PARAM_IS ("periodic-safety-backups")) {
|
|
|
|
ActionManager::map_some_state ("options", "PeriodicSafetyBackups", &Configuration::get_periodic_safety_backups);
|
2006-09-25 17:24:00 -04:00
|
|
|
} else if (PARAM_IS ("stop-recording-on-xrun")) {
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::map_some_state ("options", "StopRecordingOnXrun", &Configuration::get_stop_recording_on_xrun);
|
2008-02-16 17:43:18 -05:00
|
|
|
} else if (PARAM_IS ("create-xrun-marker")) {
|
|
|
|
ActionManager::map_some_state ("options", "CreateXrunMarker", &Configuration::get_create_xrun_marker);
|
2007-10-11 18:07:47 -04:00
|
|
|
} else if (PARAM_IS ("sync-all-route-ordering")) {
|
|
|
|
ActionManager::map_some_state ("options", "SyncEditorAndMixerTrackOrder", &Configuration::get_sync_all_route_ordering);
|
2006-09-25 17:24:00 -04:00
|
|
|
} else if (PARAM_IS ("stop-at-session-end")) {
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::map_some_state ("options", "StopTransportAtEndOfSession", &Configuration::get_stop_at_session_end);
|
|
|
|
} else if (PARAM_IS ("monitoring-model")) {
|
|
|
|
map_monitor_model ();
|
2007-05-31 22:27:21 -04:00
|
|
|
} else if (PARAM_IS ("denormal-model")) {
|
|
|
|
map_denormal_model ();
|
2007-10-11 18:07:47 -04:00
|
|
|
} else if (PARAM_IS ("denormal-protection")) {
|
|
|
|
map_denormal_protection ();
|
2007-04-11 09:07:51 -04:00
|
|
|
} else if (PARAM_IS ("remote-model")) {
|
|
|
|
map_remote_model ();
|
2006-09-25 17:24:00 -04:00
|
|
|
} else if (PARAM_IS ("use-video-sync")) {
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::map_some_state ("Transport", "ToggleVideoSync", &Configuration::get_use_video_sync);
|
2006-09-25 17:24:00 -04:00
|
|
|
} else if (PARAM_IS ("quieten-at-speed")) {
|
2006-09-29 17:39:39 -04:00
|
|
|
ActionManager::map_some_state ("options", "GainReduceFastTransport", &Configuration::get_quieten_at_speed);
|
2006-09-25 17:24:00 -04:00
|
|
|
} else if (PARAM_IS ("shuttle-behaviour")) {
|
|
|
|
|
|
|
|
switch (Config->get_shuttle_behaviour ()) {
|
|
|
|
case Sprung:
|
|
|
|
shuttle_style_button.set_active_text (_("sprung"));
|
|
|
|
shuttle_fract = 0.0;
|
|
|
|
shuttle_box.queue_draw ();
|
|
|
|
if (session) {
|
|
|
|
if (session->transport_rolling()) {
|
|
|
|
shuttle_fract = SHUTTLE_FRACT_SPEED1;
|
|
|
|
session->request_transport_speed (1.0);
|
|
|
|
}
|
|
|
|
}
|
2006-01-07 21:56:49 -05:00
|
|
|
break;
|
2006-09-25 17:24:00 -04:00
|
|
|
case Wheel:
|
|
|
|
shuttle_style_button.set_active_text (_("wheel"));
|
2006-01-07 21:56:49 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-09-25 17:24:00 -04:00
|
|
|
} else if (PARAM_IS ("shuttle-units")) {
|
2008-08-04 18:37:24 -04:00
|
|
|
|
2006-09-25 17:24:00 -04:00
|
|
|
switch (Config->get_shuttle_units()) {
|
|
|
|
case Percentage:
|
|
|
|
shuttle_units_button.set_label("% ");
|
2006-01-07 21:56:49 -05:00
|
|
|
break;
|
2006-09-25 17:24:00 -04:00
|
|
|
case Semitones:
|
|
|
|
shuttle_units_button.set_label(_("ST"));
|
2006-01-07 21:56:49 -05:00
|
|
|
break;
|
|
|
|
}
|
2006-09-29 17:39:39 -04:00
|
|
|
} else if (PARAM_IS ("input-auto-connect")) {
|
|
|
|
map_input_auto_connect ();
|
|
|
|
} else if (PARAM_IS ("output-auto-connect")) {
|
|
|
|
map_output_auto_connect ();
|
|
|
|
} else if (PARAM_IS ("native-file-header-format")) {
|
|
|
|
map_file_header_format ();
|
|
|
|
} else if (PARAM_IS ("native-file-data-format")) {
|
|
|
|
map_file_data_format ();
|
|
|
|
} else if (PARAM_IS ("meter-hold")) {
|
|
|
|
map_meter_hold ();
|
|
|
|
} else if (PARAM_IS ("meter-falloff")) {
|
|
|
|
map_meter_falloff ();
|
2007-01-02 08:57:06 -05:00
|
|
|
} else if (PARAM_IS ("video-pullup") || PARAM_IS ("smpte-format")) {
|
2006-11-20 10:15:18 -05:00
|
|
|
if (session) {
|
|
|
|
primary_clock.set (session->audible_frame(), true);
|
|
|
|
secondary_clock.set (session->audible_frame(), true);
|
|
|
|
} else {
|
|
|
|
primary_clock.set (0, true);
|
|
|
|
secondary_clock.set (0, true);
|
|
|
|
}
|
2007-01-23 20:56:20 -05:00
|
|
|
} else if (PARAM_IS ("use-overlap-equivalency")) {
|
|
|
|
ActionManager::map_some_state ("options", "RegionEquivalentsOverlap", &Configuration::get_use_overlap_equivalency);
|
2007-05-13 22:48:28 -04:00
|
|
|
} else if (PARAM_IS ("primary-clock-delta-edit-cursor")) {
|
|
|
|
ActionManager::map_some_state ("options", "PrimaryClockDeltaEditCursor", &Configuration::get_primary_clock_delta_edit_cursor);
|
|
|
|
} else if (PARAM_IS ("secondary-clock-delta-edit-cursor")) {
|
|
|
|
ActionManager::map_some_state ("options", "SecondaryClockDeltaEditCursor", &Configuration::get_secondary_clock_delta_edit_cursor);
|
2007-10-11 18:07:47 -04:00
|
|
|
} else if (PARAM_IS ("only-copy-imported-files")) {
|
|
|
|
map_only_copy_imported_files ();
|
2008-01-10 16:20:59 -05:00
|
|
|
} else if (PARAM_IS ("show-track-meters")) {
|
|
|
|
ActionManager::map_some_state ("options", "ShowTrackMeters", &Configuration::get_show_track_meters);
|
|
|
|
editor->toggle_meter_updating();
|
2008-01-10 17:22:29 -05:00
|
|
|
} else if (PARAM_IS ("default-narrow_ms")) {
|
|
|
|
ActionManager::map_some_state ("options", "DefaultNarrowMS", &Configuration::get_default_narrow_ms);
|
2008-02-17 12:49:38 -05:00
|
|
|
} else if (PARAM_IS ("rubberbanding-snaps-to-grid")) {
|
|
|
|
ActionManager::map_some_state ("options", "RubberbandingSnapsToGrid", &Configuration::get_rubberbanding_snaps_to_grid);
|
2007-10-11 18:07:47 -04:00
|
|
|
}
|
2006-09-29 17:39:39 -04:00
|
|
|
|
2008-08-04 18:37:24 -04:00
|
|
|
|
2008-02-17 12:49:38 -05:00
|
|
|
|
2006-09-25 17:24:00 -04:00
|
|
|
#undef PARAM_IS
|
2006-01-07 21:56:49 -05:00
|
|
|
}
|