change format of state_id() return value for VCAMasteStrip to follow other objects...
[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         Gdk::Color color () const;
46         std::string state_id() const;
47         boost::shared_ptr<ARDOUR::VCA> vca() const { return _vca; }
48
49         static PBD::Signal1<void,VCAMasterStrip*> CatchDeletion;
50
51
52      private:
53         boost::shared_ptr<ARDOUR::VCA> _vca;
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    solo_mute_box;
61         ArdourButton width_button;
62         ArdourButton color_button;
63         ArdourButton hide_button;
64         ArdourButton number_label;
65         ArdourButton solo_button;
66         ArdourButton mute_button;
67         ArdourButton assign_button;
68         ArdourButton drop_button;
69         Gtk::Menu*   context_menu;
70         PBD::ScopedConnectionList vca_connections;
71         Gtk::MessageDialog* delete_dialog;
72         ArdourButton vertical_button;
73
74         void spill ();
75         void spill_change (boost::shared_ptr<ARDOUR::VCA>);
76         void hide_clicked();
77         bool width_button_pressed (GdkEventButton *);
78         void set_selected (bool);
79         bool solo_release (GdkEventButton*);
80         bool mute_release (GdkEventButton*);
81         void set_width (bool wide);
82         void set_solo_text ();
83         void solo_changed ();
84         void mute_changed ();
85         void vca_menu_toggle (Gtk::CheckMenuItem* menuitem, uint32_t n);
86         void unassign ();
87         bool vca_button_release (GdkEventButton*);
88         void update_vca_display ();
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
105
106 #endif /* __ardour_vca_master_strip__ */