fix crash when copy'ing latent plugins
[ardour.git] / gtk2_ardour / vca_time_axis.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
20 #ifndef __ardour_vca_time_axis_h__
21 #define __ardour_vca_time_axis_h__
22
23 #include "ardour_button.h"
24 #include "time_axis_view.h"
25 #include "gain_meter.h"
26
27 namespace ArdourCanvas {
28         class Canvas;
29 }
30
31 namespace ARDOUR {
32         class Session;
33         class VCA;
34 }
35
36 class VCATimeAxisView : public TimeAxisView
37 {
38   public:
39         VCATimeAxisView (PublicEditor&, ARDOUR::Session*, ArdourCanvas::Canvas& canvas);
40         virtual ~VCATimeAxisView ();
41
42         boost::shared_ptr<ARDOUR::Stripable> stripable() const;
43         ARDOUR::PresentationInfo const & presentation_info () const;
44
45         void set_vca (boost::shared_ptr<ARDOUR::VCA>);
46         boost::shared_ptr<ARDOUR::VCA> vca() const { return _vca; }
47
48         std::string name() const;
49         Gdk::Color color () const;
50         std::string state_id() const;
51
52         void set_height (uint32_t h, TrackHeightMode m = OnlySelf);
53
54         bool selectable() const { return false; }
55         bool marked_for_display () const;
56         bool set_marked_for_display (bool);
57
58  protected:
59         boost::shared_ptr<ARDOUR::VCA> _vca;
60         ArdourButton  solo_button;
61         ArdourButton  mute_button;
62         ArdourButton  spill_button;
63         ArdourButton  drop_button;
64         ArdourButton  number_label;
65         GainMeterBase gain_meter;
66         PBD::ScopedConnectionList vca_connections;
67
68         void parameter_changed (std::string const& p);
69         void vca_property_changed (PBD::PropertyChange const&);
70         void update_vca_name ();
71         void set_button_names ();
72         void update_solo_display ();
73         void update_mute_display ();
74         void update_track_number_visibility ();
75         bool solo_release (GdkEventButton*);
76         bool mute_release (GdkEventButton*);
77         bool spill_release (GdkEventButton*);
78         bool drop_release (GdkEventButton*);
79         void self_delete ();
80 };
81
82 #endif /* __ardour_route_time_axis_h__ */