many changes associated with rationalizing selection flow
[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 "control_slave_ui.h"
30 #include "gain_meter.h"
31
32 namespace ARDOUR {
33         class GainControl;
34         class VCA;
35 }
36
37 class FloatingTextEntry;
38
39 class VCAMasterStrip : public AxisView, public Gtk::EventBox
40 {
41       public:
42         VCAMasterStrip (ARDOUR::Session*, boost::shared_ptr<ARDOUR::VCA>);
43         ~VCAMasterStrip ();
44
45         boost::shared_ptr<ARDOUR::Stripable> stripable() const;
46         ARDOUR::PresentationInfo const & presentation_info () const;
47
48         std::string name() const;
49         Gdk::Color color () const;
50         std::string state_id() const;
51         boost::shared_ptr<ARDOUR::VCA> vca() const { return _vca; }
52
53         static PBD::Signal1<void,VCAMasterStrip*> CatchDeletion;
54
55         bool marked_for_display () const;
56         bool set_marked_for_display (bool);
57
58      private:
59         boost::shared_ptr<ARDOUR::VCA> _vca;
60         GainMeter    gain_meter;
61
62         Gtk::Frame   global_frame;
63         Gtk::VBox    global_vpacker;
64         Gtk::HBox    top_padding;
65         Gtk::HBox    bottom_padding;
66         Gtk::HBox    solo_mute_box;
67         ArdourButton width_button;
68         ArdourButton color_button;
69         ArdourButton hide_button;
70         ArdourButton number_label;
71         ArdourButton solo_button;
72         ArdourButton mute_button;
73         ArdourButton drop_button;
74         Gtk::Menu*   context_menu;
75         Gtk::MessageDialog* delete_dialog;
76         ArdourButton vertical_button;
77         ControlSlaveUI control_slave_ui;
78         PBD::ScopedConnectionList vca_connections;
79
80         void spill ();
81         void spill_change (boost::shared_ptr<ARDOUR::VCA>);
82         void hide_clicked();
83         bool width_button_pressed (GdkEventButton *);
84         void set_selected (bool);
85         bool solo_release (GdkEventButton*);
86         bool mute_release (GdkEventButton*);
87         void set_width (bool wide);
88         void set_solo_text ();
89         void solo_changed ();
90         void mute_changed ();
91         void unassign ();
92         void start_name_edit ();
93         void finish_name_edit (std::string, int);
94         bool vertical_button_press (GdkEventButton*);
95         void vca_property_changed (PBD::PropertyChange const & what_changed);
96         void update_vca_name ();
97         void build_context_menu ();
98         void hide_confirmation (int);
99         void self_delete ();
100         void remove ();
101         void drop_button_press ();
102         void drop_all_slaves ();
103
104         void parameter_changed (std::string const& p);
105         void set_button_names ();
106
107         void start_color_edit ();
108         void finish_color_edit (int, Gtk::ColorSelectionDialog*);
109 };
110
111
112 #endif /* __ardour_vca_master_strip__ */