summaryrefslogtreecommitdiff
path: root/gtk2_ardour/rc_option_editor.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-05-14 00:15:38 +0000
committerCarl Hetherington <carl@carlh.net>2009-05-14 00:15:38 +0000
commit6cf41417a0358d819bd4b5c862caa55ce7acf2cf (patch)
tree6a2082a26d1ca57ed9ce7212a908f59489031ef0 /gtk2_ardour/rc_option_editor.h
parent015fc7b39fab97cee1875231694adce43155ceb5 (diff)
Add missing files from last commit, as per.
git-svn-id: svn://localhost/ardour2/branches/3.0@5076 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/rc_option_editor.h')
-rw-r--r--gtk2_ardour/rc_option_editor.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/gtk2_ardour/rc_option_editor.h b/gtk2_ardour/rc_option_editor.h
new file mode 100644
index 0000000000..6ad1e1b11c
--- /dev/null
+++ b/gtk2_ardour/rc_option_editor.h
@@ -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;
+};