Major Theme Manager changes, see ardour-dev
[ardour.git] / gtk2_ardour / route_time_axis.h
index 7489dc84feda3ba81efba8f308ec97b3e3d49912..368e29d0a021af492cdab42ab5f96b8b97a0e5e4 100644 (file)
@@ -15,7 +15,6 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id: audio_time_axis.h 664 2006-07-05 19:47:25Z drobilla $
 */
 
 #ifndef __ardour_route_time_axis_h__
@@ -73,19 +72,19 @@ public:
 
        void set_samples_per_unit (double);
        void set_height (TimeAxisView::TrackHeight);
-       void show_timestretch (jack_nframes_t start, jack_nframes_t end);
+       void show_timestretch (nframes_t start, nframes_t end);
        void hide_timestretch ();
        void selection_click (GdkEventButton*);
        void set_selected_points (PointSelection&);
        void set_selected_regionviews (RegionSelection&);
-       void get_selectables (jack_nframes_t start, jack_nframes_t end, double top, double bot, list<Selectable *>&);
+       void get_selectables (nframes_t start, nframes_t end, double top, double bot, list<Selectable *>&);
        void get_inverted_selectables (Selection&, list<Selectable*>&);
                
-       boost::shared_ptr<ARDOUR::Region> find_next_region (jack_nframes_t pos, ARDOUR::RegionPoint, int32_t dir);
+       boost::shared_ptr<ARDOUR::Region> find_next_region (nframes_t pos, ARDOUR::RegionPoint, int32_t dir);
 
        /* Editing operations */
        bool cut_copy_clear (Selection&, Editing::CutCopyOp);
-       bool paste (jack_nframes_t, float times, Selection&, size_t nth);
+       bool paste (nframes_t, float times, Selection&, size_t nth);
 
        list<TimeAxisView*> get_child_list();
 
@@ -99,7 +98,7 @@ public:
        string              name() const;
        StreamView*         view() const { return _view; }
        ARDOUR::RouteGroup* edit_group() const;
-       ARDOUR::Playlist*   playlist() const;
+       boost::shared_ptr<ARDOUR::Playlist> playlist() const;
 
 protected:
        friend class StreamView;
@@ -134,14 +133,6 @@ protected:
        
        gint edit_click  (GdkEventButton *);
 
-       void build_redirect_window ();
-       void redirect_click ();
-       void redirect_add ();
-       void redirect_remove ();
-       void redirect_edit ();
-       void redirect_relist ();
-       void redirect_row_selected (gint row, gint col, GdkEvent *ev);
-       void add_to_redirect_display (ARDOUR::Redirect *);
        void redirects_changed (void *);
        
        void add_redirect_to_subplugin_menu (boost::shared_ptr<ARDOUR::Redirect>);
@@ -164,13 +155,11 @@ protected:
        
        void reset_redirect_automation_curves ();
 
-       void update_automation_view (ARDOUR::AutomationType);
-       
        void take_name_changed (void *);
        void route_name_changed (void *);
        void name_entry_changed ();
 
-       void on_area_realize ();
+       void update_rec_display ();
 
        virtual void label_view ();
        
@@ -188,14 +177,12 @@ protected:
        void align_style_changed ();
        void set_align_style (ARDOUR::AlignStyle);
        
-       virtual void set_playlist (ARDOUR::Playlist *);
+       virtual void set_playlist (boost::shared_ptr<ARDOUR::Playlist>);
        void         playlist_click ();
        void         show_playlist_selector ();
        void         playlist_changed ();
-       void         playlist_state_changed (ARDOUR::Change);
        void         playlist_modified ();
 
-       void add_playlist_to_playlist_menu (ARDOUR::Playlist*);
        void rename_current_playlist ();
        
        void         automation_click ();
@@ -203,17 +190,16 @@ protected:
        virtual void show_existing_automation ();
        virtual void hide_all_automation ();
 
-       void timestretch (jack_nframes_t start, jack_nframes_t end);
+       void timestretch (nframes_t start, nframes_t end);
 
        void visual_click ();
        void hide_click ();
-       gint when_displayed (GdkEventAny*);
 
        void speed_changed ();
        
        void map_frozen ();
 
-       void color_handler (ColorID, uint32_t);
+       void color_handler ();
 
        void region_view_added (RegionView*);
        void add_ghost_to_redirect (RegionView*, AutomationTimeAxisView*);
@@ -238,17 +224,26 @@ protected:
        Gtk::Menu           edit_group_menu;
        Gtk::RadioMenuItem* align_existing_item;
        Gtk::RadioMenuItem* align_capture_item;
+       Gtk::RadioMenuItem* normal_track_mode_item;
+       Gtk::RadioMenuItem* destructive_track_mode_item;
        Gtk::Menu*          playlist_menu;
        Gtk::Menu*          playlist_action_menu;
        Gtk::MenuItem*      playlist_item;
 
+       void use_playlist (boost::weak_ptr<ARDOUR::Playlist>);
+
        ArdourCanvas::SimpleRect* timestretch_rect;
-       
+
+       void set_track_mode (ARDOUR::TrackMode);
+       void _set_track_mode (ARDOUR::Track* track, ARDOUR::TrackMode mode, Gtk::RadioMenuItem* reset_item);
+       void track_mode_changed ();
+
        list<RedirectAutomationInfo*>   redirect_automation;
        vector<RedirectAutomationLine*> redirect_automation_curves;
 
        sigc::connection modified_connection;
-       sigc::connection state_changed_connection;
+
+       void post_construct ();
 };
 
 #endif /* __ardour_route_time_axis_h__ */