Add browse button to recent session dialogue. Fixes #3357.
[ardour.git] / gtk2_ardour / route_time_axis.h
index 19715fe99d5142f03d367eb026be940d59145feb..576c3533340d9986c053e6d0e9325aeb23d0bb35 100644 (file)
@@ -48,7 +48,6 @@
 namespace ARDOUR {
        class Session;
        class Region;
-       class Diskstream;
        class RouteGroup;
        class IOProcessor;
        class Processor;
@@ -71,7 +70,7 @@ class RouteGroupMenu;
 class RouteTimeAxisView : public RouteUI, public TimeAxisView
 {
 public:
-       RouteTimeAxisView (PublicEditor&, ARDOUR::Session&, boost::shared_ptr<ARDOUR::Route>, ArdourCanvas::Canvas& canvas);
+       RouteTimeAxisView (PublicEditor&, ARDOUR::Session*, boost::shared_ptr<ARDOUR::Route>, ArdourCanvas::Canvas& canvas);
        virtual ~RouteTimeAxisView ();
 
        void show_selection (TimeSelection&);
@@ -86,7 +85,6 @@ public:
        void set_selected_regionviews (RegionSelection&);
        void get_selectables (nframes_t start, nframes_t end, double top, double bot, std::list<Selectable *>&);
        void get_inverted_selectables (Selection&, std::list<Selectable*>&);
-       bool show_automation(Evoral::Parameter param);
        void set_layer_display (LayerDisplay d);
        LayerDisplay layer_display () const;
 
@@ -99,6 +97,8 @@ public:
 
        TimeAxisView::Children get_child_list();
 
+       void toggle_automation_track (const Evoral::Parameter& param);
+
        /* The editor calls these when mapping an operation across multiple tracks */
        void use_new_playlist (bool prompt, std::vector<boost::shared_ptr<ARDOUR::Playlist> > const &);
        void use_copy_playlist (bool prompt, std::vector<boost::shared_ptr<ARDOUR::Playlist> > const &);
@@ -116,27 +116,18 @@ public:
        
        int set_state (const XMLNode&, int version);
        
-       /* This is a bit nasty to expose :/ */
-       struct RouteAutomationNode {
-               Evoral::Parameter                         param;
-               Gtk::CheckMenuItem*                       menu_item;
-               boost::shared_ptr<AutomationTimeAxisView> track;
-
-               RouteAutomationNode (Evoral::Parameter par, Gtk::CheckMenuItem* mi, boost::shared_ptr<AutomationTimeAxisView> tr)
-                   : param (par), menu_item (mi), track (tr) {}
-       };
-
        virtual void create_automation_child (const Evoral::Parameter& param, bool show) = 0;
 
        /* make sure we get the right version of this */
 
        XMLNode* get_automation_child_xml_node (Evoral::Parameter param) { return RouteUI::get_automation_child_xml_node (param); }
 
-       typedef std::map<Evoral::Parameter, RouteAutomationNode*> AutomationTracks;
+       typedef std::map<Evoral::Parameter, boost::shared_ptr<AutomationTimeAxisView> > AutomationTracks;
        AutomationTracks automation_tracks() { return _automation_tracks; }
 
        boost::shared_ptr<AutomationTimeAxisView> automation_child(Evoral::Parameter param);
-
+       virtual Gtk::CheckMenuItem* automation_child_menu_item (Evoral::Parameter);
+       
        std::string         name() const;
        StreamView*         view() const { return _view; }
        ARDOUR::RouteGroup* route_group() const;
@@ -148,7 +139,7 @@ public:
        void reset_meter ();
        void clear_meter ();
        void io_changed (ARDOUR::IOChange, void *);
-       void meter_changed (void *);
+       void meter_changed ();
        void effective_gain_display () { gm.effective_gain_display(); }
 
        static void setup_slider_pix ();
@@ -181,14 +172,13 @@ protected:
        };
 
 
-       void diskstream_changed ();
        void update_diskstream_display ();
 
        gint edit_click  (GdkEventButton *);
 
-       void processors_changed ();
+       void processors_changed (ARDOUR::RouteProcessorChange);
 
-       void add_processor_to_subplugin_menu (boost::weak_ptr<ARDOUR::Processor>);
+       virtual void add_processor_to_subplugin_menu (boost::weak_ptr<ARDOUR::Processor>);
        void remove_processor_automation_node (ProcessorAutomationNode* pan);
 
        void processor_menu_item_toggled (RouteTimeAxisView::ProcessorAutomationInfo*,
@@ -198,10 +188,7 @@ protected:
                                               boost::shared_ptr<ARDOUR::Processor>);
 
        void automation_track_hidden (Evoral::Parameter param);
-
-       RouteAutomationNode* automation_track(Evoral::Parameter param);
-       RouteAutomationNode* automation_track(ARDOUR::AutomationType type);
-
+       
        ProcessorAutomationNode*
        find_processor_automation_node (boost::shared_ptr<ARDOUR::Processor> i, Evoral::Parameter);
 
@@ -216,7 +203,7 @@ protected:
        void reset_processor_automation_curves ();
 
        void take_name_changed (void *src);
-       void route_name_changed ();
+       void route_property_changed (const PBD::PropertyChange&);
        void name_entry_changed ();
 
        void update_rec_display ();
@@ -243,16 +230,12 @@ protected:
        void rename_current_playlist ();
 
        void         automation_click ();
-       void         toggle_automation_track (Evoral::Parameter param);
        virtual void show_all_automation ();
        virtual void show_existing_automation ();
        virtual void hide_all_automation ();
 
        void timestretch (nframes_t start, nframes_t end);
 
-       void visual_click ();
-       void hide_click ();
-
        void speed_changed ();
 
        void map_frozen ();
@@ -270,13 +253,11 @@ protected:
        Gtk::Button processor_button;
        Gtk::Button route_group_button;
        Gtk::Button playlist_button;
-       Gtk::Button size_button;
        Gtk::Button automation_button;
-       Gtk::Button hide_button;
-       Gtk::Button visual_button;
 
        Gtk::Menu           subplugin_menu;
        Gtk::Menu*          automation_action_menu;
+       Gtk::MenuItem*      plugins_submenu_item;
        RouteGroupMenu*     route_group_menu;
        Gtk::RadioMenuItem* align_existing_item;
        Gtk::RadioMenuItem* align_capture_item;
@@ -289,10 +270,9 @@ protected:
        Gtk::Menu*          mode_menu;
        Gtk::Menu*          color_mode_menu;
 
-       virtual Gtk::Menu* build_mode_menu() { return 0; }
        virtual Gtk::Menu* build_color_mode_menu() { return 0; }
 
-       void use_playlist (boost::weak_ptr<ARDOUR::Playlist>);
+       void use_playlist (Gtk::RadioMenuItem *item, boost::weak_ptr<ARDOUR::Playlist> wpl);
 
        ArdourCanvas::SimpleRect* timestretch_rect;
 
@@ -305,10 +285,12 @@ protected:
        typedef std::vector<boost::shared_ptr<AutomationLine> > ProcessorAutomationCurves;
        ProcessorAutomationCurves processor_automation_curves;
 
-       // Set from XML so context menu automation buttons can be correctly initialized
-       std::set<Evoral::Parameter> _show_automation;
-
        AutomationTracks _automation_tracks;
+       typedef std::map<Evoral::Parameter, Gtk::CheckMenuItem*> ParameterMenuMap;
+       /** parameter -> menu item map for the main automation menu */
+       ParameterMenuMap _main_automation_menu_map;
+       /** parameter -> menu item map for the plugin automation menu */
+       ParameterMenuMap _subplugin_menu_map;
 
        void post_construct ();
 
@@ -323,6 +305,8 @@ protected:
        UnderlayList _underlay_streams;
        typedef std::list<RouteTimeAxisView*> UnderlayMirrorList;
        UnderlayMirrorList _underlay_mirrors;
+
+       bool _ignore_track_mode_change; ///< true to ignore track mode change signals
 };
 
 #endif /* __ardour_route_time_axis_h__ */