summaryrefslogtreecommitdiff
path: root/gtk2_ardour/option_editor.h
diff options
context:
space:
mode:
authorTaybin Rutkin <taybin@taybin.com>2005-12-09 14:16:02 +0000
committerTaybin Rutkin <taybin@taybin.com>2005-12-09 14:16:02 +0000
commit991a00f80a5012d36dfedc5227474b2b4612fbe4 (patch)
treebde03ec4a83bec38a31bac307c261d603538ebf7 /gtk2_ardour/option_editor.h
parentcdd680f0b72a2081e05ad981d0467526310150c8 (diff)
Uploaded start of CoreAudioSource. More sfdb work.
git-svn-id: svn://localhost/trunk/ardour2@184 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/option_editor.h')
-rw-r--r--gtk2_ardour/option_editor.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/gtk2_ardour/option_editor.h b/gtk2_ardour/option_editor.h
index 3cce36611d..77e55dce7a 100644
--- a/gtk2_ardour/option_editor.h
+++ b/gtk2_ardour/option_editor.h
@@ -80,6 +80,18 @@ class OptionEditor : public Gtk::Dialog
Gtk::ComboBoxText native_format_combo;
+ Glib::RefPtr<Gtk::ListStore> sfdb_paths;
+ Gtk::TreeView sfdb_path_view;
+
+ struct SoundFilePathColumns : public Gtk::TreeModel::ColumnRecord
+ {
+ public:
+ Gtk::TreeModelColumn<std::string> paths;
+
+ SoundFilePathColumns() { add (paths); }
+ };
+ SoundFilePathColumns sfdb_path_columns;
+
void setup_path_options();
void add_session_paths ();
void remove_session_paths ();