X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fpublic_editor.h;h=bb498a8c4f4eff0c6f89b04697a6cce54911ad5d;hb=fcbb78b010a53686d1c350864d731a73bd204956;hp=c396131108fd61f0cab51be8df0c32805b967337;hpb=adeef356b239a25804c182b25e815f50f9d8fbab;p=ardour.git diff --git a/gtk2_ardour/public_editor.h b/gtk2_ardour/public_editor.h index c396131108..bb498a8c4f 100644 --- a/gtk2_ardour/public_editor.h +++ b/gtk2_ardour/public_editor.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2000-2007 Paul Davis + Copyright (C) 2000-2007 Paul Davis This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -34,7 +34,7 @@ #include "evoral/types.hpp" #include "ardour/route_group.h" -#include "pbd/statefuldestructible.h" +#include "pbd/statefuldestructible.h" #include "editing.h" #include "canvas.h" @@ -52,6 +52,10 @@ namespace Gtk { class Menu; } +namespace Gtkmm2ext { + class TearOff; +} + class Editor; class TimeAxisViewItem; class TimeAxisView; @@ -83,32 +87,35 @@ class MarkerView; * of PublicEditor need not be recompiled if private methods or member variables * change. */ -class PublicEditor : public Gtk::Window, public PBD::StatefulThingWithGoingAway { +class PublicEditor : public Gtk::Window, public PBD::StatefulDestructible { public: PublicEditor (); virtual ~PublicEditor (); - typedef TrackSelection TrackViewList; - /** @return Singleton PublicEditor instance */ static PublicEditor& instance () { return *_instance; } virtual bool have_idled() const = 0; virtual void first_idle() = 0; + virtual void setup_tooltips() = 0; + /** Attach this editor to a Session. * @param s Session to connect to. */ - virtual void connect_to_session (ARDOUR::Session* s) = 0; + virtual void set_session (ARDOUR::Session* s) = 0; /** @return The Session that we are editing, or 0 */ - virtual ARDOUR::Session* current_session () const = 0; + virtual ARDOUR::Session* session () const = 0; /** Set the snap type. * @param t Snap type (defined in editing_syms.h) */ virtual void set_snap_to (Editing::SnapType t) = 0; + virtual Editing::SnapType snap_type () const = 0; + virtual Editing::SnapMode snap_mode () const = 0; + /** Set the snap mode. * @param m Snap mode (defined in editing_syms.h) */ @@ -118,10 +125,10 @@ class PublicEditor : public Gtk::Window, public PBD::StatefulThingWithGoingAway * @param t Snap threshold in `units'. */ virtual void set_snap_threshold (double t) = 0; - + /** Snap a value according to the current snap setting. */ virtual void snap_to (nframes64_t& first, int32_t direction = 0, bool for_mark = false) = 0; - + /** Undo some transactions. * @param n Number of transactions to undo. */ @@ -136,7 +143,7 @@ class PublicEditor : public Gtk::Window, public PBD::StatefulThingWithGoingAway /** Set the mouse mode (gain, object, range, timefx etc.) * @param m Mouse mode (defined in editing_syms.h) * @param force Perform the effects of the change even if no change is required - * (ie even if the current mouse mode is equal to \ref m) + * (ie even if the current mouse mode is equal to @param m) */ virtual void set_mouse_mode (Editing::MouseMode m, bool force = false) = 0; @@ -154,7 +161,7 @@ class PublicEditor : public Gtk::Window, public PBD::StatefulThingWithGoingAway rather than regions as black-box objects. For Ardour3, this is aimed at editing MIDI regions but may expand in the future to other types of regions. */ - + virtual void set_internal_edit (bool yn) = 0; /** @return Whether editing is currently in "internal" mode or not @@ -166,28 +173,20 @@ class PublicEditor : public Gtk::Window, public PBD::StatefulThingWithGoingAway */ virtual bool sound_notes () const = 0; - /** Possibly start the audition of a region. If \ref r is 0, or not an AudioRegion - * any current audition is cancelled. If we are currently auditioning \ref r, - * the audition will be cancelled. Otherwise an audition of \ref r will start. + /** Possibly start the audition of a region. If @param r is 0, or not an AudioRegion + * any current audition is cancelled. If we are currently auditioning @param r, + * the audition will be cancelled. Otherwise an audition of @param r will start. * \param r Region to consider. */ virtual void consider_auditioning (boost::shared_ptr r) = 0; - /** Set whether waveforms should be shown while recording audio tracks. - * @param yn true to show waveforms, otherwise false. - */ - virtual void set_show_waveforms_recording (bool yn) = 0; - - /** @return true if waveforms are being shown while recording, otherwise false */ - virtual bool show_waveforms_recording () const = 0; virtual void new_region_from_selection () = 0; virtual void separate_region_from_selection () = 0; - virtual void toggle_playback (bool with_abort) = 0; virtual void transition_to_rolling (bool fwd) = 0; virtual nframes64_t unit_to_frame (double unit) const = 0; // XXX remove me when libardour goes nframes64_t - double frame_to_unit (nframes_t frame) const { + double frame_to_unit (nframes_t frame) const { return frame_to_unit ((nframes64_t) frame); } virtual double frame_to_unit (nframes64_t frame) const = 0; @@ -204,10 +203,10 @@ class PublicEditor : public Gtk::Window, public PBD::StatefulThingWithGoingAway /** 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; @@ -224,7 +223,11 @@ class PublicEditor : public Gtk::Window, public PBD::StatefulThingWithGoingAway virtual void select_all_tracks () = 0; virtual void set_selected_track (TimeAxisView&, Selection::Operation op = Selection::Set, bool no_remove = false) = 0; virtual void set_selected_mixer_strip (TimeAxisView&) = 0; - virtual void hide_track_in_display (TimeAxisView& tv, bool temporary = false) = 0; + virtual void hide_track_in_display (TimeAxisView* tv, bool temporary = false) = 0; + + virtual void set_stationary_playhead (bool yn) = 0; + virtual void toggle_stationary_playhead () = 0; + virtual bool stationary_playhead() const = 0; /** Set whether the editor should follow the playhead. * @param yn true to follow playhead, otherwise false. @@ -242,13 +245,11 @@ class PublicEditor : public Gtk::Window, public PBD::StatefulThingWithGoingAway virtual double get_physical_screen_width() const = 0; virtual void ensure_float (Gtk::Window&) = 0; virtual void show_window () = 0; - virtual TrackViewList* get_valid_views (TimeAxisView*, ARDOUR::RouteGroup* grp = 0) = 0; virtual nframes64_t leftmost_position() const = 0; virtual nframes64_t current_page_frames() const = 0; virtual void temporal_zoom_step (bool coarser) = 0; virtual void scroll_tracks_down_line () = 0; virtual void scroll_tracks_up_line () = 0; - virtual bool new_regionviews_display_gain () = 0; virtual void prepare_for_cleanup () = 0; virtual void finish_cleanup () = 0; virtual void reset_x_origin (nframes64_t frame) = 0; @@ -269,12 +270,12 @@ class PublicEditor : public Gtk::Window, public PBD::StatefulThingWithGoingAway virtual void add_imageframe_time_axis(const std::string & track_name, void*) = 0; virtual void add_imageframe_marker_time_axis(const std::string & track_name, TimeAxisView* marked_track, void*) = 0; virtual void scroll_timeaxis_to_imageframe_item(const TimeAxisViewItem* item) = 0; + virtual TimeAxisView* get_named_time_axis(const std::string & name) = 0; #endif - virtual TimeAxisView* get_named_time_axis(const std::string & name) = 0; virtual RouteTimeAxisView* get_route_view_by_id (PBD::ID& id) = 0; - virtual void get_equivalent_regions (RegionView* rv, std::vector&, ARDOUR::RouteGroup::Property) const = 0; + virtual void get_equivalent_regions (RegionView* rv, std::vector&, PBD::PropertyID) const = 0; sigc::signal ZoomFocusChanged; sigc::signal ZoomChanged; @@ -282,6 +283,8 @@ class PublicEditor : public Gtk::Window, public PBD::StatefulThingWithGoingAway sigc::signal Realized; sigc::signal UpdateAllTransportClocks; + static sigc::signal DropDownKeys; + Glib::RefPtr editor_actions; virtual void reset_focus () = 0; @@ -344,16 +347,27 @@ class PublicEditor : public Gtk::Window, public PBD::StatefulThingWithGoingAway virtual ArdourCanvas::Group* get_background_group () const = 0; virtual ArdourCanvas::Group* get_trackview_group () const = 0; - virtual TimeAxisView* axis_view_from_route (ARDOUR::Route *) const = 0; + virtual TimeAxisView* axis_view_from_route (boost::shared_ptr) const = 0; virtual void show_verbose_canvas_cursor_with (const std::string& txt) = 0; virtual void hide_verbose_canvas_cursor() = 0; + virtual void center_screen (nframes64_t) = 0; + + virtual TrackViewList axis_views_from_routes (boost::shared_ptr) const = 0; + virtual TrackViewList const & get_track_views () = 0; + + virtual Gtkmm2ext::TearOff* mouse_mode_tearoff () const = 0; + virtual Gtkmm2ext::TearOff* tools_tearoff () const = 0; + /// Singleton instance, set up by Editor::Editor() static PublicEditor* _instance; friend bool relay_key_press (GdkEventKey*, Gtk::Window*); + friend bool forward_key_press (GdkEventKey*); + + PBD::Signal0 SnapChanged; }; #endif // __gtk_ardour_public_editor_h__