make VCA strips sensitive to solo model
[ardour.git] / gtk2_ardour / vca_master_strip.h
1 /*
2     Copyright (C) 2016 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 #ifndef __ardour_vca_master_strip__
20 #define __ardour_vca_master_strip__
21
22 #include <boost/shared_ptr.hpp>
23
24 #include <gtkmm/box.h>
25 #include <gtkmm/menuitem.h>
26
27 #include "ardour_button.h"
28 #include "axis_view.h"
29 #include "gain_meter.h"
30
31 namespace ARDOUR {
32         class GainControl;
33         class VCA;
34 }
35
36 class FloatingTextEntry;
37
38 class VCAMasterStrip : public AxisView, public Gtk::EventBox
39 {
40       public:
41         VCAMasterStrip (ARDOUR::Session*, boost::shared_ptr<ARDOUR::VCA>);
42         ~VCAMasterStrip ();
43
44         std::string name() const;
45         std::string state_id() const { return "VCAMasterStrip"; }
46         boost::shared_ptr<ARDOUR::VCA> vca() const { return _vca; }
47
48         static PBD::Signal1<void,VCAMasterStrip*> CatchDeletion;
49
50      private:
51         boost::shared_ptr<ARDOUR::VCA> _vca;
52         GainMeter    gain_meter;
53
54         Gtk::Frame   global_frame;
55         Gtk::VBox    global_vpacker;
56         Gtk::HBox    top_padding;
57         Gtk::HBox    bottom_padding;
58         Gtk::HBox    width_hide_box;
59         Gtk::HBox    solo_mute_box;
60         ArdourButton width_button;
61         ArdourButton color_button;
62         ArdourButton hide_button;
63         ArdourButton number_label;
64         ArdourButton solo_button;
65         ArdourButton mute_button;
66         ArdourButton assign_button;
67         ArdourButton drop_button;
68         Gtk::Menu*   context_menu;
69         PBD::ScopedConnectionList vca_connections;
70         Gtk::MessageDialog* delete_dialog;
71         ArdourButton vertical_button;
72
73         void spill ();
74         void spill_change (boost::shared_ptr<ARDOUR::VCA>);
75         void hide_clicked();
76         bool width_button_pressed (GdkEventButton *);
77         void set_selected (bool);
78         bool solo_release (GdkEventButton*);
79         bool mute_release (GdkEventButton*);
80         void set_width (bool wide);
81         void set_solo_text ();
82         void solo_changed ();
83         void mute_changed ();
84         void vca_menu_toggle (Gtk::CheckMenuItem* menuitem, uint32_t n);
85         void unassign ();
86         bool vca_button_release (GdkEventButton*);
87         void update_vca_display ();
88         void start_name_edit ();
89         void finish_name_edit (std::string);
90         bool vertical_button_press (GdkEventButton*);
91         void vca_property_changed (PBD::PropertyChange const & what_changed);
92         void update_vca_name ();
93         void build_context_menu ();
94         void hide_confirmation (int);
95         void self_delete ();
96         void remove ();
97         void drop_button_press ();
98         void drop_all_slaves ();
99
100         void parameter_changed (std::string const& p);
101         void set_button_names ();
102 };
103
104
105 #endif /* __ardour_vca_master_strip__ */