Merge branch 'cairocanvas'
[ardour.git] / libs / ardour / ardour / session_configuration_vars.h
1 /*
2     Copyright (C) 2009 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /*****************************************************
21     DO NOT USE uint8_t or any other type that resolves
22     to a single char, because the value will be
23     stored incorrectly when serialized. Use int32_t
24     instead and ensure that code correctly limits
25     the value of the variable.
26 *****************************************************/
27
28 CONFIG_VARIABLE (uint32_t, destructive_xfade_msecs,  "destructive-xfade-msecs", 2)
29 CONFIG_VARIABLE (bool, use_region_fades, "use-region-fades", true)
30 CONFIG_VARIABLE (bool, show_region_fades, "show-region-fades", true)
31 CONFIG_VARIABLE (SampleFormat, native_file_data_format,  "native-file-data-format", ARDOUR::FormatFloat)
32 CONFIG_VARIABLE (HeaderFormat, native_file_header_format,  "native-file-header-format", ARDOUR::WAVE)
33 CONFIG_VARIABLE (bool, auto_play, "auto-play", false)
34 CONFIG_VARIABLE (bool, auto_return, "auto-return", false)
35 CONFIG_VARIABLE (bool, auto_input, "auto-input", true)
36 CONFIG_VARIABLE (bool, punch_in, "punch-in", false)
37 CONFIG_VARIABLE (bool, punch_out, "punch-out", false)
38 CONFIG_VARIABLE (uint32_t, subframes_per_frame, "subframes-per-frame", 100)
39 CONFIG_VARIABLE (Timecode::TimecodeFormat, timecode_format, "timecode-format", Timecode::timecode_30)
40 CONFIG_VARIABLE_SPECIAL(std::string, raid_path, "raid-path", "", PBD::path_expand)
41 CONFIG_VARIABLE_SPECIAL(std::string, audio_search_path, "audio-search-path", "", PBD::search_path_expand)
42 CONFIG_VARIABLE_SPECIAL(std::string, midi_search_path, "midi-search-path", "", PBD::search_path_expand)
43 CONFIG_VARIABLE (bool, track_name_number, "track-name-number", false)
44 CONFIG_VARIABLE (bool, track_name_take, "track-name-take", false)
45 CONFIG_VARIABLE (std::string, take_name, "take-name", "Take1")
46 CONFIG_VARIABLE (bool, jack_time_master, "jack-time-master", true)
47 CONFIG_VARIABLE (bool, use_video_sync, "use-video-sync", false)
48 CONFIG_VARIABLE (float, video_pullup, "video-pullup", 0.0f)
49 CONFIG_VARIABLE (bool, show_summary, "show-summary", true)
50 CONFIG_VARIABLE (bool, show_group_tabs, "show-group-tabs", true)
51 CONFIG_VARIABLE (bool, external_sync, "external-sync", false)
52 CONFIG_VARIABLE (InsertMergePolicy, insert_merge_policy, "insert-merge-policy", InsertMergeRelax)
53 CONFIG_VARIABLE (framecnt_t, timecode_offset, "timecode-offset", 0)
54 CONFIG_VARIABLE (bool, timecode_offset_negative, "timecode-offset-negative", true)
55 CONFIG_VARIABLE (std::string, slave_timecode_offset, "slave-timecode-offset", " 00:00:00:00")
56 CONFIG_VARIABLE (std::string, timecode_generator_offset, "timecode-generator-offset", " 00:00:00:00")
57 CONFIG_VARIABLE (bool, glue_new_markers_to_bars_and_beats, "glue-new-markers-to-bars-and-beats", false)
58 CONFIG_VARIABLE (bool, midi_copy_is_fork, "midi-copy-is-fork", false)
59 CONFIG_VARIABLE (bool, glue_new_regions_to_bars_and_beats, "glue-new-regions-to-bars-and-beats", false)
60 CONFIG_VARIABLE (bool, use_video_file_fps, "use-video-file-fps", false)
61 CONFIG_VARIABLE (bool, videotimeline_pullup, "videotimeline-pullup", true)
62 CONFIG_VARIABLE (bool, show_busses_on_meterbridge, "show-busses-on-meterbridge", false)
63 CONFIG_VARIABLE (bool, show_master_on_meterbridge, "show-master-on-meterbridge", true)
64 CONFIG_VARIABLE (bool, show_midi_on_meterbridge, "show-midi-on-meterbridge", true)
65 CONFIG_VARIABLE (bool, show_rec_on_meterbridge, "show-rec-on-meterbridge", true)
66 CONFIG_VARIABLE (bool, show_mute_on_meterbridge, "show-mute-on-meterbridge", false)
67 CONFIG_VARIABLE (bool, show_solo_on_meterbridge, "show-solo-on-meterbridge", false)
68 CONFIG_VARIABLE (bool, show_monitor_on_meterbridge, "show-monitor-on-meterbridge", false)
69 CONFIG_VARIABLE (bool, show_name_on_meterbridge, "show-name-on-meterbridge", true)
70 CONFIG_VARIABLE (uint32_t, meterbridge_label_height,  "meterbridge-label-height", 0)