processor naming tweaks, processor visibility tweaks and more, trying to finish this...
[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* remote_control_menu;
101         Gtk::Menu* sends_menu;
102
103         XMLNode *xml_node;
104         void ensure_xml_node ();
105
106         virtual XMLNode* get_automation_child_xml_node (Evoral::Parameter param);
107         
108         bool mute_press(GdkEventButton*);
109         bool mute_release(GdkEventButton*);
110         bool solo_press(GdkEventButton*);
111         bool solo_release(GdkEventButton*);
112         bool rec_enable_press(GdkEventButton*);
113         bool rec_enable_release(GdkEventButton*);
114         bool show_sends_press(GdkEventButton*);
115         bool show_sends_release(GdkEventButton*);
116
117         void step_gain_up ();
118         void step_gain_down ();
119         void page_gain_up ();
120         void page_gain_down ();
121
122         void build_sends_menu ();
123         void set_sends_gain_from_track ();
124         void set_sends_gain_to_zero ();
125         void set_sends_gain_to_unity ();
126         void create_sends (ARDOUR::Placement);
127
128         void solo_changed(void*);
129         void solo_changed_so_update_mute ();
130         void mute_changed(void*);
131         void listen_changed(void*);
132         virtual void processors_changed () {}
133         void route_rec_enable_changed();
134         void session_rec_enable_changed();
135
136         void build_solo_menu (void);
137         void build_remote_control_menu (void);
138         void refresh_remote_control_menu ();
139
140         void solo_isolated_toggle (void*, Gtk::CheckMenuItem*);
141         void toggle_solo_isolated (Gtk::CheckMenuItem*);
142
143         void toggle_mute_menu(ARDOUR::MuteMaster::MutePoint, Gtk::CheckMenuItem*);
144         void pre_fader_toggle(void*, Gtk::CheckMenuItem*);
145         void post_fader_toggle(void*, Gtk::CheckMenuItem*);
146         void control_outs_toggle(void*, Gtk::CheckMenuItem*);
147         void main_outs_toggle(void*, Gtk::CheckMenuItem*);
148
149         void build_mute_menu(void);
150         void init_mute_menu(ARDOUR::MuteMaster::MutePoint, Gtk::CheckMenuItem*);
151         
152         void set_route_group_solo (boost::shared_ptr<ARDOUR::Route>, bool);
153         void set_route_group_mute (boost::shared_ptr<ARDOUR::Route>, bool);
154         void set_route_group_rec_enable (boost::shared_ptr<ARDOUR::Route>, bool);
155
156         int  set_color_from_route ();
157
158         void remove_this_route ();
159         static gint idle_remove_this_route (RouteUI *);
160
161         void route_rename();
162         
163         virtual void name_changed ();
164         void route_removed ();
165
166         Gtk::CheckMenuItem *route_active_menu_item;
167         void toggle_route_active ();
168         virtual void route_active_changed ();
169
170         Gtk::CheckMenuItem *polarity_menu_item;
171         void toggle_polarity ();
172         virtual void polarity_changed ();
173
174         Gtk::CheckMenuItem *denormal_menu_item;
175         void toggle_denormal_protection();
176         virtual void denormal_protection_changed ();
177
178         void disconnect_input ();
179         void disconnect_output ();
180
181         virtual void update_rec_display ();
182         void update_mute_display ();
183
184         void update_solo_display ();
185
186         virtual void map_frozen ();
187
188         void set_remote_control_id (uint32_t id, Gtk::CheckMenuItem* item);
189
190         void reversibly_apply_route_boolean (std::string name, void (ARDOUR::Route::*func)(bool, void*), bool, void *);
191         void reversibly_apply_track_boolean (std::string name, void (ARDOUR::Track::*func)(bool, void*), bool, void *);
192
193         void adjust_latency ();
194         void save_as_template ();
195  
196    protected:
197         std::vector<sigc::connection> connections;
198         bool self_destruct;
199
200         void init ();
201         void reset ();
202
203   private:
204         void check_rec_enable_sensitivity ();
205         void parameter_changed (std::string const &);
206         void relabel_solo_button ();
207 };
208
209 #endif /* __ardour_route_ui__ */