start adding a context menu for VCA strips
[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
43         std::string name() const;
44         std::string state_id() const { return "VCAMasterStrip"; }
45         boost::shared_ptr<ARDOUR::VCA> vca() const { return _vca; }
46
47       private:
48         boost::shared_ptr<ARDOUR::VCA> _vca;
49         Gtk::HBox    vertical_padding;
50         ArdourButton name_button;
51         GainMeter    gain_meter;
52
53         Gtk::Frame   global_frame;
54         Gtk::VBox    global_vpacker;
55         Gtk::HBox    top_padding;
56         Gtk::HBox    bottom_padding;
57         Gtk::HBox    width_hide_box;
58         Gtk::HBox    solo_mute_box;
59         ArdourButton width_button;
60         ArdourButton color_button;
61         ArdourButton hide_button;
62         ArdourButton number_label;
63         ArdourButton solo_button;
64         ArdourButton mute_button;
65         ArdourButton assign_button;
66         Gtk::Menu*   context_menu;
67         PBD::ScopedConnectionList vca_connections;
68
69         void hide_clicked();
70         bool width_button_pressed (GdkEventButton *);
71         void set_selected (bool);
72         bool solo_release (GdkEventButton*);
73         bool mute_release (GdkEventButton*);
74         void set_width (bool wide);
75         void set_solo_text ();
76         void solo_changed ();
77         void mute_changed ();
78         void vca_menu_toggle (Gtk::CheckMenuItem* menuitem, uint32_t n);
79         void vca_unassign ();
80         bool vca_button_release (GdkEventButton*);
81         void update_vca_display ();
82         void finish_name_edit (std::string);
83         bool name_button_press (GdkEventButton*);
84         void vca_property_changed (PBD::PropertyChange const & what_changed);
85         void update_vca_name ();
86         void build_context_menu ();
87 };
88
89
90 #endif /* __ardour_vca_master_strip__ */