2 Copyright (C) 2010 Paul Davis
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.
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.
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.
20 #include <gtkmm/box.h>
21 #include <gtkmm/table.h>
23 #include "gtkmm2ext/bindable_button.h"
25 #include "axis_view.h"
26 #include "level_meter.h"
34 class VolumeController
;
36 class MonitorSection
: public RouteUI
39 MonitorSection (ARDOUR::Session
*);
42 void set_session (ARDOUR::Session
*);
43 static void setup_knob_images ();
45 Gtkmm2ext::TearOff
& tearoff() const { return *_tearoff
; }
47 std::string
state_id() const;
52 Gtk::Table main_table
;
53 Gtk::VBox upper_packer
;
54 Gtk::VBox lower_packer
;
55 Gtkmm2ext::TearOff
* _tearoff
;
57 struct ChannelButtonSet
{
58 BindableToggleButton cut
;
59 BindableToggleButton dim
;
60 BindableToggleButton solo
;
61 BindableToggleButton invert
;
66 typedef std::vector
<ChannelButtonSet
*> ChannelButtons
;
67 ChannelButtons _channel_buttons
;
69 VolumeController
* gain_control
;
70 VolumeController
* dim_control
;
71 VolumeController
* solo_boost_control
;
72 VolumeController
* solo_cut_control
;
74 void populate_buttons ();
75 void set_button_names ();
78 boost::shared_ptr
<ARDOUR::MonitorProcessor
> _monitor
;
79 boost::shared_ptr
<ARDOUR::Route
> _route
;
81 static Glib::RefPtr
<Gtk::ActionGroup
> monitor_actions
;
82 void register_actions ();
84 static Glib::RefPtr
<Gdk::Pixbuf
> big_knob_pixbuf
;
85 static Glib::RefPtr
<Gdk::Pixbuf
> little_knob_pixbuf
;
87 void cut_channel (uint32_t);
88 void dim_channel (uint32_t);
89 void solo_channel (uint32_t);
90 void invert_channel (uint32_t);
94 void toggle_exclusive_solo ();
95 void toggle_mute_overrides_solo ();
96 void dim_level_changed ();
97 void solo_boost_changed ();
98 void gain_value_changed ();
100 Gtk::RadioButtonGroup solo_model_group
;
101 Gtk::RadioButton solo_in_place_button
;
102 Gtk::RadioButton afl_button
;
103 Gtk::RadioButton pfl_button
;
104 Gtk::HBox solo_model_box
;
106 void solo_use_in_place ();
107 void solo_use_afl ();
108 void solo_use_pfl ();
110 BindableToggleButton cut_all_button
;
111 BindableToggleButton dim_all_button
;
112 BindableToggleButton mono_button
;
113 BindableToggleButton rude_solo_button
;
114 BindableToggleButton rude_iso_button
;
115 BindableToggleButton rude_audition_button
;
116 BindableToggleButton exclusive_solo_button
;
117 BindableToggleButton solo_mute_override_button
;
119 void do_blink (bool);
120 void solo_blink (bool);
121 void audition_blink (bool);
122 bool cancel_solo (GdkEventButton
*);
123 bool cancel_isolate (GdkEventButton
*);
124 bool cancel_audition (GdkEventButton
*);
125 void update_solo_model ();
126 void parameter_changed (std::string
);
127 void isolated_changed ();
129 PBD::ScopedConnection config_connection
;
130 PBD::ScopedConnectionList control_connections
;
132 void assign_controllables ();