move assignments out of assert() in editor_drag (thanks lincoln); change mouse mode...
[ardour.git] / gtk2_ardour / public_editor.h
index 253c033eb8c27626acf5aa3563fcb6b326ac1fdb..85fb7faf70b3d96d7324bda2b83708599bba69af 100644 (file)
 #include <string>
 #include <glib.h>
 #include <gdk/gdktypes.h>
+#include <gtkmm/box.h>
 #include <gtkmm/window.h>
 #include <gtkmm/actiongroup.h>
 #include <jack/types.h>
 #include <sigc++/signal.h>
 
-#include <pbd/statefuldestructible.h> 
+#include "ardour/route_group.h"
+
+#include "pbd/statefuldestructible.h" 
 
 #include "editing.h"
 #include "canvas.h"
@@ -148,18 +151,22 @@ class PublicEditor : public Gtk::Window, public PBD::StatefulThingWithGoingAway
         * (defined in editing_syms.h)
         */
        virtual Editing::MouseMode current_mouse_mode () const = 0;
+
+       /** Switch into a mode in which editing is primarily focused on "within" regions,
+           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.
+       */
        
-       /** Set the midi edit mode (pencil, select, eraser, etc.)
-        * @param m Midi edit 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 midi edit mode is equal to \ref m)
+       virtual void set_internal_edit (bool yn) = 0;
+
+       /** @return Whether editing is currently in "internal" mode or not
         */
-       virtual void set_midi_edit_mode (Editing::MidiEditMode m, bool force = false) = 0;
-       
-       /** @return The current mouse mode (gain, object, range, timefx etc.)
-        * (defined in editing_syms.h)
+
+       virtual bool internal_editing() const = 0;
+
+       /** @return Sound edited notes in MIDI regions while editing
         */
-       virtual Editing::MidiEditMode current_midi_edit_mode () const = 0;
+       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,
@@ -168,14 +175,6 @@ class PublicEditor : public Gtk::Window, public PBD::StatefulThingWithGoingAway
         */
        virtual void consider_auditioning (boost::shared_ptr<ARDOUR::Region> r) = 0;
 
-       /** Set whether waveforms should be shown for audio tracks.
-        * @param yn true to show waveforms, otherwise false.
-        */
-       virtual void set_show_waveforms (bool yn) = 0;
-
-       /** @return true if waveforms are being shown, otherwise false */
-       virtual bool show_waveforms () const = 0;
-
        /** Set whether waveforms should be shown while recording audio tracks.
         * @param yn true to show waveforms, otherwise false.
         */
@@ -220,7 +219,6 @@ class PublicEditor : public Gtk::Window, public PBD::StatefulThingWithGoingAway
        virtual Editing::ZoomFocus get_zoom_focus () const = 0;
        virtual gdouble   get_current_zoom () const = 0;
        virtual PlaylistSelector& playlist_selector() const = 0;
-       virtual void route_name_changed (TimeAxisView *) = 0;
        virtual void clear_playlist (boost::shared_ptr<ARDOUR::Playlist>) = 0;
        virtual void new_playlists (TimeAxisView*) = 0;
        virtual void copy_playlists (TimeAxisView*) = 0;
@@ -229,7 +227,6 @@ class PublicEditor : public Gtk::Window, public PBD::StatefulThingWithGoingAway
        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 show_track_in_display (TimeAxisView& tv) = 0;
 
        /** Set whether the editor should follow the playhead.
         * @param yn true to follow playhead, otherwise false.
@@ -244,6 +241,7 @@ class PublicEditor : public Gtk::Window, public PBD::StatefulThingWithGoingAway
 
        /** @return true if the playhead is currently being dragged, otherwise false */
        virtual bool dragging_playhead () const = 0;
+       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;
@@ -264,7 +262,7 @@ class PublicEditor : public Gtk::Window, public PBD::StatefulThingWithGoingAway
        virtual void split_region_at_points (boost::shared_ptr<ARDOUR::Region>, ARDOUR::AnalysisFeatureList&, bool can_ferret) = 0;
        virtual void mouse_add_new_marker (nframes64_t where, bool is_cd=false, bool is_xrun=false) = 0;
        virtual void foreach_time_axis_view (sigc::slot<void,TimeAxisView&>) = 0;
-       virtual void add_to_idle_resize (TimeAxisView*,uint32_t) = 0;
+       virtual void add_to_idle_resize (TimeAxisView*, int32_t) = 0;
 
 #ifdef WITH_CMT
        virtual void add_imageframe_time_axis(const std::string & track_name, void*)  = 0;
@@ -276,7 +274,7 @@ class PublicEditor : public Gtk::Window, public PBD::StatefulThingWithGoingAway
 
        virtual RouteTimeAxisView* get_route_view_by_id (PBD::ID& id) = 0;
 
-       virtual void get_equivalent_regions (RegionView* rv, std::vector<RegionView*>&) const = 0;
+       virtual void get_equivalent_regions (RegionView* rv, std::vector<RegionView*>&, ARDOUR::RouteGroup::Property) const = 0;
 
        sigc::signal<void> ZoomFocusChanged;
        sigc::signal<void> ZoomChanged;
@@ -325,19 +323,27 @@ class PublicEditor : public Gtk::Window, public PBD::StatefulThingWithGoingAway
        virtual bool canvas_markerview_end_handle_event(GdkEvent* event, ArdourCanvas::Item*,MarkerView*) = 0;
 #endif
 
-       virtual void queue_draw_resize_line (int at) = 0;
-       virtual void start_resize_line_ops () = 0;
-       virtual void end_resize_line_ops () = 0;
-
        static const int window_border_width;
        static const int container_border_width;
        static const int vertical_spacing;
        static const int horizontal_spacing;
 
+#ifdef TOP_MENUBAR
+       /*
+        * This is needed for OS X primarily
+        * but also any other OS that uses a single
+        * top menubar instead of per window menus
+        */
+       virtual Gtk::HBox& get_status_bar_packer() = 0;
+#endif
 
        virtual gdouble get_trackview_group_vertical_offset () const = 0;
+       virtual gdouble get_canvas_timebars_vsize () const = 0;
+       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;
+
        /// Singleton instance, set up by Editor::Editor()
 
        static PublicEditor* _instance;