X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Feditor_routes.h;h=e1bf61e82eb660f336ada67245d7c41ce7be7a7b;hb=cc82fc675b096c3dfec76d0c45671b78c85007cf;hp=6297f906bbe806921364a36982e7b35fe89a4e2e;hpb=9f3f3738e7444ee365a77277b1237b1b35786a7e;p=ardour.git diff --git a/gtk2_ardour/editor_routes.h b/gtk2_ardour/editor_routes.h index 6297f906bb..e1bf61e82e 100644 --- a/gtk2_ardour/editor_routes.h +++ b/gtk2_ardour/editor_routes.h @@ -21,8 +21,12 @@ #define __ardour_gtk_editor_route_h__ #include "pbd/signals.h" +#include "gtkmm2ext/widget_state.h" + #include "editor_component.h" +class VCATimeAxisView; + class EditorRoutes : public EditorComponent, public PBD::ScopedConnectionList, public ARDOUR::SessionHandlePtr { public: @@ -36,47 +40,61 @@ public: void move_selected_tracks (bool); void show_track_in_display (TimeAxisView &); - + + void suspend_redisplay () { - _no_redisplay = true; + if (!_no_redisplay) { + _no_redisplay = true; + _redisplay_on_resume = false; + } } - + void resume_redisplay () { _no_redisplay = false; - redisplay (); + if (_redisplay_on_resume) { + redisplay (); + } } - + void redisplay (); void update_visibility (); - void routes_added (std::list routes); + void time_axis_views_added (std::list); void route_removed (TimeAxisView *); void hide_track_in_display (TimeAxisView &); std::list views () const; void hide_all_tracks (bool); void clear (); - void sync_order_keys (std::string const &); + void sync_presentation_info_from_treeview (); private: - void initial_display (); + void redisplay_real (); + void on_input_active_changed (std::string const &); void on_tv_rec_enable_changed (std::string const &); + void on_tv_rec_safe_toggled (std::string const &); void on_tv_mute_enable_toggled (std::string const &); void on_tv_solo_enable_toggled (std::string const &); void on_tv_solo_isolate_toggled (std::string const &); void on_tv_solo_safe_toggled (std::string const &); void build_menu (); void show_menu (); - void route_deleted (Gtk::TreeModel::Path const &); + void presentation_info_changed (PBD::PropertyChange const &); + void sync_treeview_from_presentation_info (PBD::PropertyChange const &); + void row_deleted (Gtk::TreeModel::Path const &); void visible_changed (std::string const &); + void active_changed (std::string const &); void reordered (Gtk::TreeModel::Path const &, Gtk::TreeModel::iterator const &, int *); bool button_press (GdkEventButton *); - void route_property_changed (const PBD::PropertyChange&, boost::weak_ptr); + void route_property_changed (const PBD::PropertyChange&, boost::weak_ptr); void handle_gui_changes (std::string const &, void *); + bool idle_update_mute_rec_solo_etc (); void update_rec_display (); void update_mute_display (); - void update_solo_display (bool); + void update_solo_display (); void update_solo_isolate_display (); void update_solo_safe_display (); + void update_input_active_display (); + void update_active_display (); void set_all_tracks_visibility (bool); void set_all_audio_midi_visibility (int, bool); void show_all_routes (); @@ -88,12 +106,14 @@ private: void show_all_miditracks (); void hide_all_miditracks (); void show_tracks_with_regions_at_playhead (); - + void selection_changed (); + + int plugin_setup (boost::shared_ptr, boost::shared_ptr, ARDOUR::Route::PluginSetupOptions); + void display_drag_data_received ( Glib::RefPtr const &, gint, gint, Gtk::SelectionData const &, guint, guint ); - - void track_list_reorder (Gtk::TreeModel::Path const &, Gtk::TreeModel::iterator const & iter, int* new_order); + bool selection_filter (Glib::RefPtr const &, Gtk::TreeModel::Path const &, bool); void name_edit (std::string const &, std::string const &); void solo_changed_so_update_mute (); @@ -103,52 +123,70 @@ private: add (text); add (visible); add (rec_state); + add (rec_safe); add (mute_state); add (solo_state); + add (solo_visible); add (solo_isolate_state); add (solo_safe_state); add (is_track); add (tv); - add (route); + add (stripable); add (name_editable); + add (is_input_active); + add (is_midi); + add (active); } - - Gtk::TreeModelColumn text; + + Gtk::TreeModelColumn text; Gtk::TreeModelColumn visible; Gtk::TreeModelColumn rec_state; + Gtk::TreeModelColumn rec_safe; Gtk::TreeModelColumn mute_state; Gtk::TreeModelColumn solo_state; + /** true if the solo buttons are visible for this route, otherwise false */ + Gtk::TreeModelColumn solo_visible; Gtk::TreeModelColumn solo_isolate_state; Gtk::TreeModelColumn solo_safe_state; Gtk::TreeModelColumn is_track; Gtk::TreeModelColumn tv; - Gtk::TreeModelColumn > route; + Gtk::TreeModelColumn > stripable; Gtk::TreeModelColumn name_editable; + Gtk::TreeModelColumn is_input_active; + Gtk::TreeModelColumn is_midi; + Gtk::TreeModelColumn active; }; Gtk::ScrolledWindow _scroller; Gtkmm2ext::DnDTreeView > _display; Glib::RefPtr _model; ModelColumns _columns; - + int _name_column; + int _visible_column; + int _active_column; + bool _ignore_reorder; + bool _ignore_selection_change; bool _no_redisplay; - bool _redisplay_does_not_sync_order_keys; - bool _redisplay_does_not_reset_order_keys; - + bool _adding_routes; + bool _route_deletion_in_progress; + bool _redisplay_on_resume; + volatile gint _redisplay_active; + volatile gint _queue_tv_update; + Gtk::Menu* _menu; - Gtk::Widget* old_focus; - uint32_t selection_countdown; - Gtk::CellEditable* name_editable; - - bool key_press (GdkEventKey* ev); - bool focus_in (GdkEventFocus*); - bool focus_out (GdkEventFocus*); - bool enter_notify (GdkEventCrossing*); - bool leave_notify (GdkEventCrossing*); - void name_edit_started (Gtk::CellEditable*, const Glib::ustring&); - - bool get_relevant_routes (boost::shared_ptr rl); + Gtk::Widget* old_focus; + uint32_t selection_countdown; + Gtk::CellEditable* name_editable; + + bool key_press (GdkEventKey* ev); + bool focus_in (GdkEventFocus*); + bool focus_out (GdkEventFocus*); + bool enter_notify (GdkEventCrossing*); + bool leave_notify (GdkEventCrossing*); + void name_edit_started (Gtk::CellEditable*, const Glib::ustring&); + + bool get_relevant_routes (boost::shared_ptr rl); }; #endif /* __ardour_gtk_editor_route_h__ */