b3fdc5d31003e955d41e503bdb408af4d7ba8329
[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         Gtk::HBox    vertical_padding;
53         ArdourButton name_button;
54         GainMeter    gain_meter;
55
56         Gtk::Frame   global_frame;
57         Gtk::VBox    global_vpacker;
58         Gtk::HBox    top_padding;
59         Gtk::HBox    bottom_padding;
60         Gtk::HBox    width_hide_box;
61         Gtk::HBox    solo_mute_box;
62         ArdourButton width_button;
63         ArdourButton color_button;
64         ArdourButton hide_button;
65         ArdourButton number_label;
66         ArdourButton solo_button;
67         ArdourButton mute_button;
68         ArdourButton assign_button;
69         Gtk::Menu*   context_menu;
70         PBD::ScopedConnectionList vca_connections;
71
72         void hide_clicked();
73         bool width_button_pressed (GdkEventButton *);
74         void set_selected (bool);
75         bool solo_release (GdkEventButton*);
76         bool mute_release (GdkEventButton*);
77         void set_width (bool wide);
78         void set_solo_text ();
79         void solo_changed ();
80         void mute_changed ();
81         void vca_menu_toggle (Gtk::CheckMenuItem* menuitem, uint32_t n);
82         void unassign ();
83         bool vca_button_release (GdkEventButton*);
84         void update_vca_display ();
85         void finish_name_edit (std::string);
86         bool name_button_press (GdkEventButton*);
87         void vca_property_changed (PBD::PropertyChange const & what_changed);
88         void update_vca_name ();
89         void build_context_menu ();
90         void self_delete ();
91 };
92
93
94 #endif /* __ardour_vca_master_strip__ */