Stop transport rec button going red immediately on being clicked. Fixes #3340.
[ArdourMidi.git] / gtk2_ardour / monitor_section.h
blobb3edb624b9862101cd24ff6f288ffe8fdc148a00
1 /*
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"
27 #include "route_ui.h"
29 namespace Gtkmm2ext {
30 class TearOff;
33 class VolumeController;
35 class MonitorSection : public RouteUI
37 public:
38 MonitorSection (ARDOUR::Session*);
39 ~MonitorSection ();
41 void set_session (ARDOUR::Session*);
42 static void setup_knob_images ();
44 Gtkmm2ext::TearOff& tearoff() const { return *_tearoff; }
46 private:
47 Gtk::VBox vpacker;
48 Gtk::HBox hpacker;
49 Gtk::Table main_table;
50 Gtk::VBox upper_packer;
51 Gtk::VBox lower_packer;
52 Gtkmm2ext::TearOff* _tearoff;
54 struct ChannelButtonSet {
55 BindableToggleButton cut;
56 BindableToggleButton dim;
57 BindableToggleButton solo;
58 BindableToggleButton invert;
60 ChannelButtonSet ();
63 typedef std::vector<ChannelButtonSet*> ChannelButtons;
64 ChannelButtons _channel_buttons;
66 Gtk::Adjustment gain_adjustment;
67 VolumeController* gain_control;
68 Gtk::Adjustment dim_adjustment;
69 VolumeController* dim_control;
70 Gtk::Adjustment solo_boost_adjustment;
71 VolumeController* solo_boost_control;
72 Gtk::Adjustment solo_cut_adjustment;
73 VolumeController* solo_cut_control;
75 void populate_buttons ();
76 void set_button_names ();
77 void map_state ();
79 boost::shared_ptr<ARDOUR::MonitorProcessor> _monitor;
80 boost::shared_ptr<ARDOUR::Route> _route;
82 static Glib::RefPtr<Gtk::ActionGroup> monitor_actions;
83 void register_actions ();
85 static Glib::RefPtr<Gdk::Pixbuf> big_knob_pixbuf;
86 static Glib::RefPtr<Gdk::Pixbuf> little_knob_pixbuf;
88 void cut_channel (uint32_t);
89 void dim_channel (uint32_t);
90 void solo_channel (uint32_t);
91 void invert_channel (uint32_t);
92 void dim_all ();
93 void cut_all ();
94 void mono ();
95 void toggle_exclusive_solo ();
96 void toggle_mute_overrides_solo ();
97 void dim_level_changed ();
98 void solo_boost_changed ();
99 void gain_value_changed ();
101 bool nonlinear_gain_printer (Gtk::SpinButton*);
102 bool linear_gain_printer (Gtk::SpinButton*);
104 Gtk::RadioButtonGroup solo_model_group;
105 Gtk::RadioButton solo_in_place_button;
106 Gtk::RadioButton afl_button;
107 Gtk::RadioButton pfl_button;
108 Gtk::HBox solo_model_box;
110 void solo_use_in_place ();
111 void solo_use_afl ();
112 void solo_use_pfl ();
114 BindableToggleButton cut_all_button;
115 BindableToggleButton dim_all_button;
116 BindableToggleButton mono_button;
117 BindableToggleButton rude_solo_button;
118 BindableToggleButton rude_iso_button;
119 BindableToggleButton rude_audition_button;
120 BindableToggleButton exclusive_solo_button;
121 BindableToggleButton solo_mute_override_button;
123 void do_blink (bool);
124 void solo_blink (bool);
125 void audition_blink (bool);
126 bool cancel_solo (GdkEventButton*);
127 bool cancel_isolate (GdkEventButton*);
128 bool cancel_audition (GdkEventButton*);
129 void solo_cut_changed ();
130 void update_solo_model ();
131 void parameter_changed (std::string);
132 void isolated_changed ();
134 PBD::ScopedConnection config_connection;
135 PBD::ScopedConnectionList control_connections;
137 void assign_controllables ();