bca74fded078c4a2f3794aa2cf0e0584fd16305b
[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         std::string name() const;
46         Gdk::Color color () const;
47         std::string state_id() const;
48         boost::shared_ptr<ARDOUR::VCA> vca() const { return _vca; }
49
50         static PBD::Signal1<void,VCAMasterStrip*> CatchDeletion;
51
52         bool marked_for_display () const;
53         bool set_marked_for_display (bool);
54
55      private:
56         boost::shared_ptr<ARDOUR::VCA> _vca;
57         GainMeter    gain_meter;
58
59         Gtk::Frame   global_frame;
60         Gtk::VBox    global_vpacker;
61         Gtk::HBox    top_padding;
62         Gtk::HBox    bottom_padding;
63         Gtk::HBox    solo_mute_box;
64         ArdourButton width_button;
65         ArdourButton color_button;
66         ArdourButton hide_button;
67         ArdourButton number_label;
68         ArdourButton solo_button;
69         ArdourButton mute_button;
70         ArdourButton drop_button;
71         Gtk::Menu*   context_menu;
72         Gtk::MessageDialog* delete_dialog;
73         ArdourButton vertical_button;
74         ControlSlaveUI control_slave_ui;
75         PBD::ScopedConnectionList vca_connections;
76
77         void spill ();
78         void spill_change (boost::shared_ptr<ARDOUR::VCA>);
79         void hide_clicked();
80         bool width_button_pressed (GdkEventButton *);
81         void set_selected (bool);
82         bool solo_release (GdkEventButton*);
83         bool mute_release (GdkEventButton*);
84         void set_width (bool wide);
85         void set_solo_text ();
86         void solo_changed ();
87         void mute_changed ();
88         void unassign ();
89         void start_name_edit ();
90         void finish_name_edit (std::string, int);
91         bool vertical_button_press (GdkEventButton*);
92         void vca_property_changed (PBD::PropertyChange const & what_changed);
93         void update_vca_name ();
94         void build_context_menu ();
95         void hide_confirmation (int);
96         void self_delete ();
97         void remove ();
98         void drop_button_press ();
99         void drop_all_slaves ();
100
101         void parameter_changed (std::string const& p);
102         void set_button_names ();
103
104         void start_color_edit ();
105         void finish_color_edit (int, Gtk::ColorSelectionDialog*);
106 };
107
108
109 #endif /* __ardour_vca_master_strip__ */