summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_routes.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-07-03 18:37:15 +0000
committerCarl Hetherington <carl@carlh.net>2009-07-03 18:37:15 +0000
commitb233455b3fd00789e4f8a951f9fe205de92f94e2 (patch)
tree016011049c624b36944dcf8f11b1d770aff52acd /gtk2_ardour/editor_routes.h
parent6e614ae3bfecf157149e651e49b92dc04cf4cda6 (diff)
Split route group list out of Editor.
git-svn-id: svn://localhost/ardour2/branches/3.0@5308 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_routes.h')
-rw-r--r--gtk2_ardour/editor_routes.h101
1 files changed, 101 insertions, 0 deletions
diff --git a/gtk2_ardour/editor_routes.h b/gtk2_ardour/editor_routes.h
new file mode 100644
index 0000000000..b493b0a905
--- /dev/null
+++ b/gtk2_ardour/editor_routes.h
@@ -0,0 +1,101 @@
+/*
+ Copyright (C) 2009 Paul Davis
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
+class EditorRoutes : public EditorComponent
+{
+public:
+ EditorRoutes (Editor *);
+
+ Gtk::Widget& widget () {
+ return _scroller;
+ }
+
+ void move_selected_tracks (bool);
+ void initial_display ();
+ void show_track_in_display (TimeAxisView &);
+ void suspend_redisplay () {
+ _no_redisplay = true;
+ }
+ void resume_redisplay () {
+ _no_redisplay = false;
+ redisplay ();
+ }
+ void redisplay ();
+ void update_visibility ();
+ void routes_added (std::list<RouteTimeAxisView*> routes);
+ void hide_track_in_display (TimeAxisView &);
+ std::list<TimeAxisView*> views () const;
+ void hide_all_tracks (bool);
+ void clear ();
+
+private:
+
+ void on_tv_rec_enable_toggled (Glib::ustring const &);
+ void build_menu ();
+ void show_menu ();
+ void route_deleted (Gtk::TreeModel::Path const &);
+ void changed (Gtk::TreeModel::Path const &, Gtk::TreeModel::iterator const &);
+ void reordered (Gtk::TreeModel::Path const &, Gtk::TreeModel::iterator const &, int *);
+ bool button_press (GdkEventButton *);
+ void route_name_changed (boost::weak_ptr<ARDOUR::Route>);
+ void sync_order_keys (char const *);
+ void route_removed (TimeAxisView *);
+ void handle_gui_changes (std::string const &, void *);
+ void update_rec_display ();
+ void set_all_tracks_visibility (bool);
+ void set_all_audio_visibility (int, bool);
+ void show_all_routes ();
+ void hide_all_routes ();
+ void show_all_audiotracks ();
+ void hide_all_audiotracks ();
+ void show_all_audiobus ();
+ void hide_all_audiobus ();
+ void display_drag_data_received (
+ Glib::RefPtr<Gdk::DragContext> 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<Gtk::TreeModel> const &, Gtk::TreeModel::Path const &, bool);
+
+ struct ModelColumns : public Gtk::TreeModel::ColumnRecord {
+ ModelColumns() {
+ add (text);
+ add (visible);
+ add (rec_enabled);
+ add (is_track);
+ add (tv);
+ add (route);
+ }
+ Gtk::TreeModelColumn<Glib::ustring> text;
+ Gtk::TreeModelColumn<bool> visible;
+ Gtk::TreeModelColumn<bool> rec_enabled;
+ Gtk::TreeModelColumn<bool> is_track;
+ Gtk::TreeModelColumn<TimeAxisView*> tv;
+ Gtk::TreeModelColumn<boost::shared_ptr<ARDOUR::Route> > route;
+ };
+
+ Gtk::ScrolledWindow _scroller;
+ Gtkmm2ext::DnDTreeView<boost::shared_ptr<ARDOUR::Route> > _display;
+ Glib::RefPtr<Gtk::ListStore> _model;
+ ModelColumns _columns;
+ bool _ignore_reorder;
+ bool _no_redisplay;
+ bool _redisplay_does_not_sync_order_keys;
+ bool _redisplay_does_not_reset_order_keys;
+ Gtk::Menu* _menu;
+};