Merge branch 'windows+cc' into cairocanvas
[ardour.git] / gtk2_ardour / editor_routes.h
1 /*
2     Copyright (C) 2009 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __ardour_gtk_editor_route_h__
21 #define __ardour_gtk_editor_route_h__
22
23 #include "pbd/signals.h"
24 #include "gtkmm2ext/widget_state.h"
25 #include "editor_component.h"
26
27 class EditorRoutes : public EditorComponent, public PBD::ScopedConnectionList, public ARDOUR::SessionHandlePtr
28 {
29 public:
30         EditorRoutes (Editor *);
31
32         void set_session (ARDOUR::Session *);
33
34         Gtk::Widget& widget () {
35                 return _scroller;
36         }
37
38         void move_selected_tracks (bool);
39         void show_track_in_display (TimeAxisView &);
40
41         void suspend_redisplay () {
42                 _no_redisplay = true;
43         }
44
45         void allow_redisplay () { 
46                 _no_redisplay = false;
47         }
48
49         void resume_redisplay () {
50                 _no_redisplay = false;
51                 redisplay ();
52         }
53
54         void redisplay ();
55         void update_visibility ();
56         void routes_added (std::list<RouteTimeAxisView*> routes);
57         void route_removed (TimeAxisView *);
58         void hide_track_in_display (TimeAxisView &);
59         std::list<TimeAxisView*> views () const;
60         void hide_all_tracks (bool);
61         void clear ();
62         void sync_order_keys_from_treeview ();
63         void reset_remote_control_ids ();
64
65 private:
66         void initial_display ();
67         void on_input_active_changed (std::string const &);
68         void on_tv_rec_enable_changed (std::string const &);
69         void on_tv_mute_enable_toggled (std::string const &);
70         void on_tv_solo_enable_toggled (std::string const &);
71         void on_tv_solo_isolate_toggled (std::string const &);
72         void on_tv_solo_safe_toggled (std::string const &);
73         void build_menu ();
74         void show_menu ();
75         void sync_treeview_from_order_keys ();
76         void route_deleted (Gtk::TreeModel::Path const &);
77         void visible_changed (std::string const &);
78         void active_changed (std::string const &);
79         void reordered (Gtk::TreeModel::Path const &, Gtk::TreeModel::iterator const &, int *);
80         bool button_press (GdkEventButton *);
81         void route_property_changed (const PBD::PropertyChange&, boost::weak_ptr<ARDOUR::Route>);
82         void handle_gui_changes (std::string const &, void *);
83         void update_rec_display ();
84         void update_mute_display ();
85         void update_solo_display (bool);
86         void update_solo_isolate_display ();
87         void update_solo_safe_display ();
88         void update_input_active_display ();
89         void update_active_display ();
90         void set_all_tracks_visibility (bool);
91         void set_all_audio_midi_visibility (int, bool);
92         void show_all_routes ();
93         void hide_all_routes ();
94         void show_all_audiotracks ();
95         void hide_all_audiotracks ();
96         void show_all_audiobus ();
97         void hide_all_audiobus ();
98         void show_all_miditracks ();
99         void hide_all_miditracks ();
100         void show_tracks_with_regions_at_playhead ();
101
102         void display_drag_data_received (
103                 Glib::RefPtr<Gdk::DragContext> const &, gint, gint, Gtk::SelectionData const &, guint, guint
104                 );
105
106         bool selection_filter (Glib::RefPtr<Gtk::TreeModel> const &, Gtk::TreeModel::Path const &, bool);
107         void name_edit (std::string const &, std::string const &);
108         void solo_changed_so_update_mute ();
109
110         struct ModelColumns : public Gtk::TreeModel::ColumnRecord {
111                 ModelColumns() {
112                         add (text);
113                         add (visible);
114                         add (rec_state);
115                         add (mute_state);
116                         add (solo_state);
117                         add (solo_visible);
118                         add (solo_isolate_state);
119                         add (solo_safe_state);
120                         add (is_track);
121                         add (tv);
122                         add (route);
123                         add (name_editable);
124                         add (is_input_active);
125                         add (is_midi);
126                         add (active);
127                 }
128
129                 Gtk::TreeModelColumn<std::string>    text;
130                 Gtk::TreeModelColumn<bool>           visible;
131                 Gtk::TreeModelColumn<uint32_t>       rec_state;
132                 Gtk::TreeModelColumn<uint32_t>       mute_state;
133                 Gtk::TreeModelColumn<uint32_t>       solo_state;
134                 /** true if the solo buttons are visible for this route, otherwise false */
135                 Gtk::TreeModelColumn<bool>           solo_visible;
136                 Gtk::TreeModelColumn<uint32_t>       solo_isolate_state;
137                 Gtk::TreeModelColumn<uint32_t>       solo_safe_state;
138                 Gtk::TreeModelColumn<bool>           is_track;
139                 Gtk::TreeModelColumn<TimeAxisView*>  tv;
140                 Gtk::TreeModelColumn<boost::shared_ptr<ARDOUR::Route> >  route;
141                 Gtk::TreeModelColumn<bool>           name_editable;
142                 Gtk::TreeModelColumn<bool>           is_input_active;
143                 Gtk::TreeModelColumn<bool>           is_midi;
144                 Gtk::TreeModelColumn<bool>           active;
145         };
146
147         Gtk::ScrolledWindow _scroller;
148         Gtkmm2ext::DnDTreeView<boost::shared_ptr<ARDOUR::Route> > _display;
149         Glib::RefPtr<Gtk::ListStore> _model;
150         ModelColumns _columns;
151         int _name_column;
152         int _visible_column;
153         int _active_column;
154
155         bool _ignore_reorder;
156         bool _no_redisplay;
157         bool _adding_routes;
158
159         Gtk::Menu* _menu;
160         Gtk::Widget* old_focus;
161         uint32_t selection_countdown;
162         Gtk::CellEditable* name_editable;
163
164         bool key_press (GdkEventKey* ev);
165         bool focus_in (GdkEventFocus*);
166         bool focus_out (GdkEventFocus*);
167         bool enter_notify (GdkEventCrossing*);
168         bool leave_notify (GdkEventCrossing*);
169         void name_edit_started (Gtk::CellEditable*, const Glib::ustring&);
170
171         bool get_relevant_routes (boost::shared_ptr<ARDOUR::RouteList> rl);
172 };
173
174 #endif /* __ardour_gtk_editor_route_h__ */