summaryrefslogtreecommitdiff
path: root/gtk2_ardour/public_editor.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2008-09-17 08:44:51 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2008-09-17 08:44:51 +0000
commit1c299d5a5c493986ca4a19bd55a69281dabada86 (patch)
treedae18913a2261a157ba32308ef804050e1232542 /gtk2_ardour/public_editor.h
parent8e9a83dfdc233898e7c470667c7c9b797c83fe8b (diff)
merge Sakari's (sbergen) branch back into 3.0, removing libsndfile and adding taglib
git-svn-id: svn://localhost/ardour2/branches/3.0@3736 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/public_editor.h')
-rw-r--r--gtk2_ardour/public_editor.h16
1 files changed, 7 insertions, 9 deletions
diff --git a/gtk2_ardour/public_editor.h b/gtk2_ardour/public_editor.h
index 937399e94f..253c033eb8 100644
--- a/gtk2_ardour/public_editor.h
+++ b/gtk2_ardour/public_editor.h
@@ -38,7 +38,6 @@
namespace ARDOUR {
class Session;
- class ExportSpecification;
class Region;
class Playlist;
class RouteGroup;
@@ -206,16 +205,15 @@ class PublicEditor : public Gtk::Window, public PBD::StatefulThingWithGoingAway
virtual bool show_measures () const = 0;
virtual bool redraw_measures () = 0;
- /** Open an export dialogue for the whole session */
- virtual void export_session () = 0;
-
- /** Open an export dialogue for currently selected time range, if there
- * is one; if not an error is displayed to the user.
- */
+ /** Open main export dialog */
+ virtual void export_audio () = 0;
+
+ /** Open export dialog with current selection pre-selected */
virtual void export_selection () = 0;
+
+ /** Open export dialog with current range pre-selected */
+ virtual void export_range () = 0;
- /** Open an export dialogue for marked ranges */
- virtual void export_range_markers () = 0;
virtual void register_actions () = 0;
virtual void add_toplevel_controls (Gtk::Container&) = 0;
virtual void set_zoom_focus (Editing::ZoomFocus) = 0;