1 #include "option_editor.h"
3 /** @file rc_option_editor.h
4 * @brief Editing of options which are obtained from and written back to one of the .rc files.
6 * This is subclassed from OptionEditor. Simple options (e.g. boolean and simple choices)
7 * are expressed using subclasses of Option. More complex UI elements are represented
8 * using individual classes subclassed from OptionEditorBox.
11 /** Editor for options which are obtained from and written back to one of the .rc files. */
12 class RCOptionEditor
: public OptionEditor
18 void parameter_changed (std::string
const &);
20 ARDOUR::RCConfiguration
* _rc_config
;
21 BoolOption
* _solo_control_is_listen_control
;
22 ComboOption
<ARDOUR::ListenPosition
>* _listen_position
;