Set route remote control IDs from a dialog rather than a menu. I think this is
[ardour.git] / gtk2_ardour / route_ui.h
1 /*
2     Copyright (C) 2002 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_route_ui__
21 #define __ardour_route_ui__
22
23 #include <list>
24
25 #include "pbd/xml++.h"
26 #include "ardour/ardour.h"
27 #include "ardour/mute_master.h"
28 #include "ardour/route.h"
29 #include "ardour/track.h"
30
31 #include "axis_view.h"
32
33 namespace ARDOUR {
34         class AudioTrack;
35         class MidiTrack;
36 }
37
38 namespace Gtk {
39         class Menu;
40         class CheckMenuItem;
41         class Widget;
42 }
43
44 class BindableToggleButton;
45
46 class RouteUI : public virtual AxisView
47 {
48   public:
49         RouteUI(ARDOUR::Session&);
50         RouteUI(boost::shared_ptr<ARDOUR::Route>, ARDOUR::Session&);
51
52         virtual ~RouteUI();
53
54         virtual void set_route (boost::shared_ptr<ARDOUR::Route>);
55         virtual void set_button_names () = 0;
56
57         bool is_track() const;
58         bool is_audio_track() const;
59         bool is_midi_track() const;
60
61         boost::shared_ptr<ARDOUR::Route> route() const { return _route; }
62         
63         boost::shared_ptr<ARDOUR::Track>      track() const;
64         boost::shared_ptr<ARDOUR::AudioTrack> audio_track() const;
65         boost::shared_ptr<ARDOUR::MidiTrack>  midi_track() const;
66         
67         boost::shared_ptr<ARDOUR::Diskstream> get_diskstream() const;
68
69         std::string name() const;
70
71         // protected: XXX sigh this should be here
72
73         boost::shared_ptr<ARDOUR::Route> _route;
74         
75         void set_color (const Gdk::Color & c);
76         bool choose_color ();
77
78         bool ignore_toggle;
79         bool wait_for_release;
80         bool multiple_mute_change;
81         bool multiple_solo_change;
82
83         BindableToggleButton* mute_button;
84         BindableToggleButton* solo_button;
85         BindableToggleButton* rec_enable_button; /* audio tracks */
86         BindableToggleButton* show_sends_button; /* busses */
87
88         Gtk::Label solo_button_label;
89         Gtk::Label mute_button_label;
90         Gtk::Label rec_enable_button_label;
91
92         void send_blink (bool);
93         sigc::connection send_blink_connection;
94         
95         virtual std::string solo_button_name () const { return "SoloButton"; }
96         virtual std::string safe_solo_button_name () const { return "SafeSoloButton"; }
97         
98         Gtk::Menu* mute_menu;
99         Gtk::Menu* solo_menu;
100         Gtk::Menu* sends_menu;
101
102         XMLNode *xml_node;
103         void ensure_xml_node ();
104
105         virtual XMLNode* get_automation_child_xml_node (Evoral::Parameter param);
106         
107         bool mute_press(GdkEventButton*);
108         bool mute_release(GdkEventButton*);
109         bool solo_press(GdkEventButton*);
110         bool solo_release(GdkEventButton*);
111         bool rec_enable_press(GdkEventButton*);
112         bool rec_enable_release(GdkEventButton*);
113         bool show_sends_press(GdkEventButton*);
114         bool show_sends_release(GdkEventButton*);
115
116         void step_gain_up ();
117         void step_gain_down ();
118         void page_gain_up ();
119         void page_gain_down ();
120
121         void build_sends_menu ();
122         void set_sends_gain_from_track ();
123         void set_sends_gain_to_zero ();
124         void set_sends_gain_to_unity ();
125         void create_sends (ARDOUR::Placement);
126
127         void solo_changed(void*);
128         void solo_changed_so_update_mute ();
129         void mute_changed(void*);
130         void listen_changed(void*);
131         virtual void processors_changed () {}
132         void route_rec_enable_changed();
133         void session_rec_enable_changed();
134
135         void build_solo_menu ();
136
137         void solo_isolated_toggle (void*, Gtk::CheckMenuItem*);
138         void toggle_solo_isolated (Gtk::CheckMenuItem*);
139
140         void toggle_mute_menu(ARDOUR::MuteMaster::MutePoint, Gtk::CheckMenuItem*);
141         void pre_fader_toggle(void*, Gtk::CheckMenuItem*);
142         void post_fader_toggle(void*, Gtk::CheckMenuItem*);
143         void control_outs_toggle(void*, Gtk::CheckMenuItem*);
144         void main_outs_toggle(void*, Gtk::CheckMenuItem*);
145
146         void build_mute_menu(void);
147         void init_mute_menu(ARDOUR::MuteMaster::MutePoint, Gtk::CheckMenuItem*);
148         
149         void set_route_group_solo (boost::shared_ptr<ARDOUR::Route>, bool);
150         void set_route_group_mute (boost::shared_ptr<ARDOUR::Route>, bool);
151         void set_route_group_rec_enable (boost::shared_ptr<ARDOUR::Route>, bool);
152
153         int  set_color_from_route ();
154
155         void remove_this_route ();
156         static gint idle_remove_this_route (RouteUI *);
157
158         void route_rename();
159         
160         virtual void name_changed ();
161         void route_removed ();
162
163         Gtk::CheckMenuItem *route_active_menu_item;
164         void toggle_route_active ();
165         virtual void route_active_changed ();
166
167         Gtk::CheckMenuItem *polarity_menu_item;
168         void toggle_polarity ();
169         virtual void polarity_changed ();
170
171         Gtk::CheckMenuItem *denormal_menu_item;
172         void toggle_denormal_protection();
173         virtual void denormal_protection_changed ();
174
175         void disconnect_input ();
176         void disconnect_output ();
177
178         virtual void update_rec_display ();
179         void update_mute_display ();
180
181         void update_solo_display ();
182
183         virtual void map_frozen ();
184
185         void reversibly_apply_route_boolean (std::string name, void (ARDOUR::Route::*func)(bool, void*), bool, void *);
186         void reversibly_apply_track_boolean (std::string name, void (ARDOUR::Track::*func)(bool, void*), bool, void *);
187
188         void adjust_latency ();
189         void save_as_template ();
190         void open_remote_control_id_dialog ();
191  
192    protected:
193         std::vector<sigc::connection> connections;
194         bool self_destruct;
195
196         void init ();
197         void reset ();
198
199   private:
200         void check_rec_enable_sensitivity ();
201         void parameter_changed (std::string const &);
202         void relabel_solo_button ();
203 };
204
205 #endif /* __ardour_route_ui__ */