X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Froute_ui.h;h=57416870402d9dbbe20a0c7c561fb06459526c66;hb=3ff2396b4acf00dc8a092de5c5d5c2a8465efdad;hp=275366cbe6804eff3346e211271eaca43848d063;hpb=90f95df20707995e267bd624b28980cfd9200bed;p=ardour.git diff --git a/gtk2_ardour/route_ui.h b/gtk2_ardour/route_ui.h index 275366cbe6..5741687040 100644 --- a/gtk2_ardour/route_ui.h +++ b/gtk2_ardour/route_ui.h @@ -23,6 +23,8 @@ #include #include "pbd/xml++.h" +#include "pbd/signals.h" + #include "ardour/ardour.h" #include "ardour/mute_master.h" #include "ardour/session_event.h" @@ -49,8 +51,8 @@ class BindableToggleButton; class RouteUI : public virtual AxisView { public: - RouteUI(ARDOUR::Session&); - RouteUI(boost::shared_ptr, ARDOUR::Session&); + RouteUI(ARDOUR::Session*); + RouteUI(boost::shared_ptr, ARDOUR::Session*); virtual ~RouteUI(); @@ -83,6 +85,7 @@ class RouteUI : public virtual AxisView bool multiple_mute_change; bool multiple_solo_change; + BindableToggleButton* invert_button; BindableToggleButton* mute_button; BindableToggleButton* solo_button; BindableToggleButton* rec_enable_button; /* audio tracks */ @@ -90,6 +93,7 @@ class RouteUI : public virtual AxisView Gtk::Label solo_button_label; Gtk::Label mute_button_label; + Gtk::Label invert_button_label; Gtk::Label rec_enable_button_label; void send_blink (bool); @@ -102,12 +106,12 @@ class RouteUI : public virtual AxisView Gtk::Menu* solo_menu; Gtk::Menu* sends_menu; - XMLNode *xml_node; void ensure_xml_node (); virtual XMLNode* get_automation_child_xml_node (Evoral::Parameter param); + void invert_toggled(); bool mute_press(GdkEventButton*); bool mute_release(GdkEventButton*); bool solo_press(GdkEventButton*); @@ -155,10 +159,6 @@ class RouteUI : public virtual AxisView void build_mute_menu(void); void init_mute_menu(ARDOUR::MuteMaster::MutePoint, Gtk::CheckMenuItem*); - void set_route_group_solo (boost::shared_ptr, bool); - void set_route_group_mute (boost::shared_ptr, bool); - void set_route_group_rec_enable (boost::shared_ptr, bool); - int set_color_from_route (); void remove_this_route (); @@ -166,15 +166,13 @@ class RouteUI : public virtual AxisView void route_rename(); - virtual void name_changed (); + virtual void property_changed (const PBD::PropertyChange&); void route_removed (); Gtk::CheckMenuItem *route_active_menu_item; void toggle_route_active (); virtual void route_active_changed (); - Gtk::CheckMenuItem *polarity_menu_item; - void toggle_polarity (); virtual void polarity_changed (); Gtk::CheckMenuItem *denormal_menu_item; @@ -191,32 +189,46 @@ class RouteUI : public virtual AxisView virtual void map_frozen (); - void reversibly_apply_route_boolean (std::string name, void (ARDOUR::Route::*func)(bool, void*), bool, void *); - void reversibly_apply_track_boolean (std::string name, void (ARDOUR::Track::*func)(bool, void*), bool, void *); - void adjust_latency (); void save_as_template (); void open_remote_control_id_dialog (); static int solo_visual_state (boost::shared_ptr); - static int mute_visual_state (ARDOUR::Session &, boost::shared_ptr); + static int solo_visual_state_with_isolate (boost::shared_ptr); + static int solo_isolate_visual_state (boost::shared_ptr); + static int solo_safe_visual_state (boost::shared_ptr); + static int mute_visual_state (ARDOUR::Session*, boost::shared_ptr); protected: - std::vector connections; + PBD::ScopedConnectionList route_connections; bool self_destruct; void init (); void reset (); - void queue_route_group_op (ARDOUR::RouteGroup::Property prop, void (ARDOUR::Session::*session_method)(boost::shared_ptr, bool), bool yn); + void self_delete (); private: void check_rec_enable_sensitivity (); void parameter_changed (std::string const &); void relabel_solo_button (); - void post_rtop_cleanup (ARDOUR::SessionEvent* ev); - void post_group_rtop_cleanup (ARDOUR::SessionEvent* ev, ARDOUR::RouteGroup*, ARDOUR::RouteGroup::Property); + struct SoloMuteRelease { + SoloMuteRelease (bool was_active) + : active (was_active) + , exclusive (false) {} + + boost::shared_ptr routes; + boost::shared_ptr routes_on; + boost::shared_ptr routes_off; + boost::shared_ptr route; + bool active; + bool exclusive; + }; + + SoloMuteRelease* _solo_release; + SoloMuteRelease* _mute_release; + }; #endif /* __ardour_route_ui__ */