merge monitor_section branch
[ardour.git] / gtk2_ardour / monitor_section.h
1 /*
2     Copyright (C) 2010 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 #include <gtkmm/box.h>
21 #include <gtkmm/table.h>
22
23 #include "gtkmm2ext/bindable_button.h"
24
25 #include "ardour_button.h"
26 #include "ardour_knob.h"
27 #include "ardour_display.h"
28 #include "axis_view.h"
29 #include "level_meter.h"
30 #include "route_ui.h"
31 #include "monitor_selector.h"
32
33 namespace Gtkmm2ext {
34         class TearOff;
35         class MotionFeedback;
36 }
37
38 class VolumeController;
39
40 class MonitorSection : public RouteUI
41 {
42         public:
43         MonitorSection (ARDOUR::Session*);
44         ~MonitorSection ();
45
46         void set_session (ARDOUR::Session*);
47
48         Gtkmm2ext::TearOff& tearoff() const { return *_tearoff; }
49
50         std::string state_id() const;
51
52         private:
53         Gtk::VBox vpacker;
54         Gtk::HBox hpacker;
55         Gtk::VBox upper_packer;
56         Gtk::VBox lower_packer;
57         Gtkmm2ext::TearOff* _tearoff;
58
59         Gtk::HBox  channel_table_packer;
60         Gtk::HBox  table_hpacker;
61         Gtk::Table channel_table;
62         Gtk::Table channel_table_header;
63         Gtk::ScrolledWindow channel_table_scroller;
64         Gtk::Viewport channel_table_viewport;
65         Glib::RefPtr<Gtk::SizeGroup> channel_size_group;
66
67         struct ChannelButtonSet {
68                 ArdourButton cut;
69                 ArdourButton dim;
70                 ArdourButton solo;
71                 ArdourButton invert;
72
73                 ChannelButtonSet ();
74         };
75
76         typedef std::vector<ChannelButtonSet*> ChannelButtons;
77         ChannelButtons _channel_buttons;
78
79         ArdourKnob* gain_control;
80         ArdourKnob* dim_control;
81         ArdourKnob* solo_boost_control;
82         ArdourKnob* solo_cut_control;
83
84         ArdourDisplay*  gain_display;
85         ArdourDisplay*  dim_display;
86         ArdourDisplay*  solo_boost_display;
87         ArdourDisplay*  solo_cut_display;
88
89         std::list<boost::shared_ptr<ARDOUR::Bundle> > output_menu_bundles;
90         Gtk::Menu output_menu;
91         MonitorSelectorWindow *_output_selector;
92         ArdourButton* output_button;
93
94         void maybe_add_bundle_to_output_menu (boost::shared_ptr<ARDOUR::Bundle>, ARDOUR::BundleList const &);
95         void bundle_output_chosen (boost::shared_ptr<ARDOUR::Bundle>);
96         void output_button_resized (Gtk::Allocation&);
97         void update_output_display ();
98         void disconnect_output ();
99         void edit_output_configuration ();
100
101         void populate_buttons ();
102         void map_state ();
103
104         boost::shared_ptr<ARDOUR::MonitorProcessor> _monitor;
105         boost::shared_ptr<ARDOUR::Route> _route;
106
107         static Glib::RefPtr<Gtk::ActionGroup> monitor_actions;
108         void register_actions ();
109
110         void cut_channel (uint32_t);
111         void dim_channel (uint32_t);
112         void solo_channel (uint32_t);
113         void invert_channel (uint32_t);
114         void dim_all ();
115         void cut_all ();
116         void mono ();
117         void toggle_exclusive_solo ();
118         void set_button_names () {}
119         void toggle_mute_overrides_solo ();
120         void dim_level_changed ();
121         void solo_boost_changed ();
122         void gain_value_changed ();
123         gint output_press (GdkEventButton *);
124         gint output_release (GdkEventButton *);
125
126         ArdourButton solo_in_place_button;
127         ArdourButton afl_button;
128         ArdourButton pfl_button;
129         Gtk::HBox        solo_model_box;
130
131         void solo_use_in_place ();
132         void solo_use_afl ();
133         void solo_use_pfl ();
134
135         ArdourButton cut_all_button;
136         ArdourButton dim_all_button;
137         ArdourButton mono_button;
138         ArdourButton rude_solo_button;
139         ArdourButton rude_iso_button;
140         ArdourButton rude_audition_button;
141         ArdourButton exclusive_solo_button;
142         ArdourButton solo_mute_override_button;
143
144         void do_blink (bool);
145         void solo_blink (bool);
146         void audition_blink (bool);
147         bool cancel_solo (GdkEventButton*);
148         bool cancel_isolate (GdkEventButton*);
149         bool cancel_audition (GdkEventButton*);
150         void update_solo_model ();
151         void parameter_changed (std::string);
152         void isolated_changed ();
153
154         PBD::ScopedConnection config_connection;
155         PBD::ScopedConnectionList control_connections;
156         PBD::ScopedConnection _output_changed_connection;
157
158         bool _inhibit_solo_model_update;
159
160         void assign_controllables ();
161         void port_connected_or_disconnected (boost::weak_ptr<ARDOUR::Port>, boost::weak_ptr<ARDOUR::Port>);
162 };