mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Add missing files from last commit, as per.
git-svn-id: svn://localhost/ardour2/branches/3.0@5076 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
015fc7b39f
commit
6cf41417a0
8 changed files with 1769 additions and 36 deletions
19
gtk2_ardour/rc_option_editor.h
Normal file
19
gtk2_ardour/rc_option_editor.h
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#include "option_editor.h"
|
||||
|
||||
/** @file rc_option_editor.h
|
||||
* @brief Editing of options which are obtained from and written back to one of the .rc files.
|
||||
*
|
||||
* This is subclassed from OptionEditor. Simple options (e.g. boolean and simple choices)
|
||||
* are expressed using subclasses of Option. More complex UI elements are represented
|
||||
* using individual classes subclassed rom OptionEditorBox.
|
||||
*/
|
||||
|
||||
/** Editor for options which are obtained from and written back to one of the .rc files. */
|
||||
class RCOptionEditor : public OptionEditor
|
||||
{
|
||||
public:
|
||||
RCOptionEditor ();
|
||||
|
||||
private:
|
||||
ARDOUR::RCConfiguration* _rc_config;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue