/* 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 "ardour/session.h" #include "gui_thread.h" #include "session_option_editor.h" #include "search_path_option.h" #include "i18n.h" using namespace std; using namespace ARDOUR; using namespace Timecode; SessionOptionEditor::SessionOptionEditor (Session* s) : OptionEditor (&(s->config), _("Session Properties")) , _session_config (&(s->config)) { set_session (s); set_name ("SessionProperties"); /* TIMECODE*/ add_option (_("Timecode"), new OptionEditorHeading (_("Timecode Settings"))); ComboOption* smf = new ComboOption ( "timecode-format", _("Timecode frames-per-second"), sigc::mem_fun (*_session_config, &SessionConfiguration::get_timecode_format), sigc::mem_fun (*_session_config, &SessionConfiguration::set_timecode_format) ); smf->add (timecode_23976, _("23.976")); smf->add (timecode_24, _("24")); smf->add (timecode_24976, _("24.975")); smf->add (timecode_25, _("25")); smf->add (timecode_2997, _("29.97")); smf->add (timecode_2997drop, _("29.97 drop")); smf->add (timecode_30, _("30")); smf->add (timecode_30drop, _("30 drop")); smf->add (timecode_5994, _("59.94")); smf->add (timecode_60, _("60")); add_option (_("Timecode"), smf); ComboOption* spf = new ComboOption ( "subframes-per-frame", _("Subframes per frame"), sigc::mem_fun (*_session_config, &SessionConfiguration::get_subframes_per_frame), sigc::mem_fun (*_session_config, &SessionConfiguration::set_subframes_per_frame) ); spf->add (80, _("80")); spf->add (100, _("100")); add_option (_("Timecode"), spf); ComboOption* vpu = new ComboOption ( "video-pullup", _("Pull-up / pull-down"), sigc::mem_fun (*_session_config, &SessionConfiguration::get_video_pullup), sigc::mem_fun (*_session_config, &SessionConfiguration::set_video_pullup) ); vpu->add (4.1667 + 0.1, _("4.1667 + 0.1%")); vpu->add (4.1667, _("4.1667")); vpu->add (4.1667 - 0.1, _("4.1667 - 0.1%")); vpu->add (0.1, _("0.1")); vpu->add (0, _("none")); vpu->add (-0.1, _("-0.1")); vpu->add (-4.1667 + 0.1, _("-4.1667 + 0.1%")); vpu->add (-4.1667, _("-4.1667")); vpu->add (-4.1667 - 0.1, _("-4.1667 - 0.1%")); add_option (_("Timecode"), vpu); ClockOption* co = new ClockOption ( "timecode-offset", _("Timecode offset"), sigc::mem_fun (*_session_config, &SessionConfiguration::get_timecode_offset), sigc::mem_fun (*_session_config, &SessionConfiguration::set_timecode_offset) ); co->set_session (_session); add_option (_("Timecode"), co); add_option (_("Timecode"), new BoolOption ( "timecode-offset-negative", _("Timecode Offset Negative"), sigc::mem_fun (*_session_config, &SessionConfiguration::get_timecode_offset_negative), sigc::mem_fun (*_session_config, &SessionConfiguration::set_timecode_offset_negative) )); add_option (_("Timecode"), new OptionEditorHeading (_("JACK Transport/Time Settings"))); add_option (_("Timecode"), new BoolOption ( "jack-time-master", string_compose (_("%1 is JACK Time Master (provides Bar|Beat|Tick and other information to JACK)"), PROGRAM_NAME), sigc::mem_fun (*_session_config, &SessionConfiguration::get_jack_time_master), sigc::mem_fun (*_session_config, &SessionConfiguration::set_jack_time_master) )); /* FADES */ ComboOption* cfm = new ComboOption ( "xfade-model", _("Crossfades are created"), sigc::mem_fun (*_session_config, &SessionConfiguration::get_xfade_model), sigc::mem_fun (*_session_config, &SessionConfiguration::set_xfade_model) ); cfm->add (FullCrossfade, _("to span entire overlap")); cfm->add (ShortCrossfade, _("short")); add_option (_("Fades"), cfm); ComboOption* cfc = new ComboOption ( "xfade-choice", _("Crossfade type"), sigc::mem_fun (*_session_config, &SessionConfiguration::get_xfade_choice), sigc::mem_fun (*_session_config, &SessionConfiguration::set_xfade_choice) ); cfc->add (ConstantPowerMinus3dB, _("constant power (-3dB)")); cfc->add (ConstantPowerMinus6dB, _("constant power (-6dB)")); cfc->add (RegionFades, _("use existing region fade shape")); add_option (_("Fades"), cfc); add_option (_("Fades"), new SpinOption ( _("short-xfade-seconds"), _("Short crossfade length"), sigc::mem_fun (*_session_config, &SessionConfiguration::get_short_xfade_seconds), sigc::mem_fun (*_session_config, &SessionConfiguration::set_short_xfade_seconds), 0, 1000, 1, 10, _("ms"), 0.001 )); add_option (_("Fades"), new SpinOption ( _("destructive-xfade-seconds"), _("Destructive crossfade length"), sigc::mem_fun (*_session_config, &SessionConfiguration::get_destructive_xfade_msecs), sigc::mem_fun (*_session_config, &SessionConfiguration::set_destructive_xfade_msecs), 0, 1000, 1, 10, _("ms") )); add_option (_("Fades"), new BoolOption ( "auto-xfade", _("Create crossfades automatically"), sigc::mem_fun (*_session_config, &SessionConfiguration::get_auto_xfade), sigc::mem_fun (*_session_config, &SessionConfiguration::set_auto_xfade) )); add_option (_("Fades"), new BoolOption ( "use-region-fades", _("Region fades active"), sigc::mem_fun (*_session_config, &SessionConfiguration::get_use_region_fades), sigc::mem_fun (*_session_config, &SessionConfiguration::set_use_region_fades) )); add_option (_("Fades"), new BoolOption ( "show-region-fades", _("Region fades visible"), sigc::mem_fun (*_session_config, &SessionConfiguration::get_show_region_fades), sigc::mem_fun (*_session_config, &SessionConfiguration::set_show_region_fades) )); /* Media */ add_option (_("Media"), new OptionEditorHeading (_("Audio file format"))); ComboOption* sf = new ComboOption ( "native-file-data-format", _("Sample format"), sigc::mem_fun (*_session_config, &SessionConfiguration::get_native_file_data_format), sigc::mem_fun (*_session_config, &SessionConfiguration::set_native_file_data_format) ); sf->add (FormatFloat, _("32-bit floating point")); sf->add (FormatInt24, _("24-bit integer")); sf->add (FormatInt16, _("16-bit integer")); add_option (_("Media"), sf); ComboOption* hf = new ComboOption ( "native-file-header-format", _("File type"), sigc::mem_fun (*_session_config, &SessionConfiguration::get_native_file_header_format), sigc::mem_fun (*_session_config, &SessionConfiguration::set_native_file_header_format) ); hf->add (BWF, _("Broadcast WAVE")); hf->add (WAVE, _("WAVE")); hf->add (WAVE64, _("WAVE-64")); hf->add (CAF, _("CAF")); add_option (_("Media"), hf); add_option (_("Media"), new OptionEditorHeading (_("File locations"))); SearchPathOption* spo = new SearchPathOption ("audio-search-path", _("Search for audio files in:"), sigc::mem_fun (*_session_config, &SessionConfiguration::get_audio_search_path), sigc::mem_fun (*_session_config, &SessionConfiguration::set_audio_search_path)); add_option (_("Media"), spo); spo = new SearchPathOption ("midi-search-path", _("Search for MIDI files in:"), sigc::mem_fun (*_session_config, &SessionConfiguration::get_midi_search_path), sigc::mem_fun (*_session_config, &SessionConfiguration::set_midi_search_path)); add_option (_("Media"), spo); /* Monitoring */ add_option (_("Monitoring"), new BoolOption ( "auto-input", _("Monitoring automatically follows transport state (\"auto-input\")"), sigc::mem_fun (*_session_config, &SessionConfiguration::get_auto_input), sigc::mem_fun (*_session_config, &SessionConfiguration::set_auto_input) )); add_option (_("Monitoring"), new BoolOption ( "have-monitor-section", _("Use monitor section in this session"), sigc::mem_fun (*this, &SessionOptionEditor::get_use_monitor_section), sigc::mem_fun (*this, &SessionOptionEditor::set_use_monitor_section) )); /* Misc */ add_option (_("Misc"), new OptionEditorHeading (_("MIDI Options"))); add_option (_("Misc"), new BoolOption ( "midi-copy-is-fork", _("MIDI region copies are independent"), sigc::mem_fun (*_session_config, &SessionConfiguration::get_midi_copy_is_fork), sigc::mem_fun (*_session_config, &SessionConfiguration::set_midi_copy_is_fork) )); ComboOption* li = new ComboOption ( "insert-merge-policy", _("Policy for handling overlapping notes\n on the same MIDI channel"), sigc::mem_fun (*_session_config, &SessionConfiguration::get_insert_merge_policy), sigc::mem_fun (*_session_config, &SessionConfiguration::set_insert_merge_policy) ); li->add (InsertMergeReject, _("never allow them")); li->add (InsertMergeRelax, _("don't do anything in particular")); li->add (InsertMergeReplace, _("replace any overlapped existing note")); li->add (InsertMergeTruncateExisting, _("shorten the overlapped existing note")); li->add (InsertMergeTruncateAddition, _("shorten the overlapping new note")); li->add (InsertMergeExtend, _("replace both overlapping notes with a single note")); add_option (_("Misc"), li); add_option (_("Misc"), new OptionEditorHeading (_("Glue to bars and beats"))); add_option (_("Misc"), new BoolOption ( "glue-new-markers-to-bars-and-beats", _("Glue new markers to bars and beats"), sigc::mem_fun (*_session_config, &SessionConfiguration::get_glue_new_markers_to_bars_and_beats), sigc::mem_fun (*_session_config, &SessionConfiguration::set_glue_new_markers_to_bars_and_beats) )); add_option (_("Misc"), new BoolOption ( "glue-new-regions-to-bars-and-beats", _("Glue new regions to bars and beats"), sigc::mem_fun (*_session_config, &SessionConfiguration::get_glue_new_regions_to_bars_and_beats), sigc::mem_fun (*_session_config, &SessionConfiguration::set_glue_new_regions_to_bars_and_beats) )); } void SessionOptionEditor::parameter_changed (std::string const & p) { OptionEditor::parameter_changed (p); } /* the presence of absence of a monitor section is not really a regular session * property so we provide these two functions to act as setter/getter slots */ bool SessionOptionEditor::set_use_monitor_section (bool yn) { bool had_monitor_section = _session->monitor_out(); if (yn) { _session->add_monitor_section (); } else { _session->remove_monitor_section (); } return had_monitor_section != yn; } bool SessionOptionEditor::get_use_monitor_section () { return _session->monitor_out() != 0; }