Use a real dropdown for AutoState in automation lanes
[ardour.git] / gtk2_ardour / automation_time_axis.h
1 /*
2     Copyright (C) 2000-2007 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_gtk_automation_time_axis_h__
21 #define __ardour_gtk_automation_time_axis_h__
22
23 #include <list>
24 #include <string>
25 #include <utility>
26
27 #include <boost/shared_ptr.hpp>
28
29 #include "ardour/types.h"
30 #include "ardour/automatable.h"
31 #include "ardour/automation_list.h"
32
33 #include "canvas/rectangle.h"
34
35 #include "time_axis_view.h"
36 #include "automation_controller.h"
37 #include "ardour_button.h"
38 #include "ardour_dropdown.h"
39
40 namespace ARDOUR {
41         class Session;
42         class Route;
43         class AutomationControl;
44 }
45
46 class PublicEditor;
47 class TimeSelection;
48 class RegionSelection;
49 class PointSelection;
50 class AutomationLine;
51 class Selection;
52 class Selectable;
53 class AutomationStreamView;
54 class AutomationController;
55 class ItemCounts;
56
57 class AutomationTimeAxisView : public TimeAxisView {
58   public:
59         AutomationTimeAxisView (ARDOUR::Session*,
60                                 boost::shared_ptr<ARDOUR::Route>,
61                                 boost::shared_ptr<ARDOUR::Automatable>,
62                                 boost::shared_ptr<ARDOUR::AutomationControl>,
63                                 Evoral::Parameter,
64                                 PublicEditor&,
65                                 TimeAxisView& parent,
66                                 bool show_regions,
67                                 ArdourCanvas::Canvas& canvas,
68                                 const std::string & name, /* translatable */
69                                 const std::string & plug_name = "");
70
71         ~AutomationTimeAxisView();
72
73         virtual void set_height (uint32_t, TrackHeightMode m = OnlySelf);
74         void set_samples_per_pixel (double);
75         std::string name() const { return _name; }
76         Gdk::Color color () const;
77
78         boost::shared_ptr<ARDOUR::Stripable> stripable() const;
79         ARDOUR::PresentationInfo const & presentation_info () const;
80
81         void add_automation_event (GdkEvent *, framepos_t, double, bool with_guard_points);
82
83         void clear_lines ();
84
85         /** @return Our AutomationLine, if this view has one, or 0 if it uses AutomationRegionViews */
86         boost::shared_ptr<AutomationLine> line() { return _line; }
87
88         /** @return All AutomationLines associated with this view */
89         std::list<boost::shared_ptr<AutomationLine> > lines () const;
90
91         void set_selected_points (PointSelection&);
92         void get_selectables (ARDOUR::framepos_t start, ARDOUR::framepos_t end, double top, double bot, std::list<Selectable *>&, bool within = false);
93         void get_inverted_selectables (Selection&, std::list<Selectable*>& results);
94
95         void show_timestretch (framepos_t /*start*/, framepos_t /*end*/, int /*layers*/, int /*layer*/) {}
96         void hide_timestretch () {}
97
98         /* editing operations */
99
100         void cut_copy_clear (Selection&, Editing::CutCopyOp);
101         bool paste (ARDOUR::framepos_t, const Selection&, PasteContext&, const int32_t sub_num);
102
103         int  set_state (const XMLNode&, int version);
104
105         std::string state_id() const;
106         static bool parse_state_id (std::string const &, PBD::ID &, bool &, Evoral::Parameter &);
107
108         boost::shared_ptr<ARDOUR::AutomationControl> control()    { return _control; }
109         boost::shared_ptr<AutomationController>      controller() { return _controller; }
110         Evoral::Parameter parameter () const {
111                 return _parameter;
112         }
113
114         ArdourCanvas::Item* base_item () const {
115                 return _base_rect;
116         }
117
118         bool has_automation () const;
119
120         boost::shared_ptr<ARDOUR::Route> parent_route () {
121                 return _route;
122         }
123
124         bool show_regions () const {
125                 return _show_regions;
126         }
127
128         static void what_has_visible_automation (const boost::shared_ptr<ARDOUR::Automatable>& automatable, std::set<Evoral::Parameter>& visible);
129
130   protected:
131         /* Note that for MIDI controller "automation" (in regions), all of these
132            may be set.  In this case, _automatable is likely _route so the
133            controller will send immediate events out the route's MIDI port. */
134
135         /** parent route */
136         boost::shared_ptr<ARDOUR::Route> _route;
137         /** control */
138         boost::shared_ptr<ARDOUR::AutomationControl> _control;
139         /** control owner; may be _route, something else (e.g. a pan control), or NULL */
140         boost::shared_ptr<ARDOUR::Automatable> _automatable;
141         /** controller owner */
142         boost::shared_ptr<AutomationController> _controller;
143         Evoral::Parameter _parameter;
144
145         ArdourCanvas::Rectangle* _base_rect;
146         boost::shared_ptr<AutomationLine> _line;
147
148         std::string _name;
149
150         /** AutomationStreamView if we are editing region-based automation (for MIDI), otherwise 0 */
151         AutomationStreamView* _view;
152
153         bool    ignore_toggle;
154         bool    first_call_to_set_height;
155
156         ArdourButton       hide_button;
157         ArdourDropdown     auto_dropdown;
158         Gtk::Label*        plugname;
159         bool               plugname_packed;
160
161         Gtk::CheckMenuItem*     auto_off_item;
162         Gtk::CheckMenuItem*     auto_play_item;
163         Gtk::CheckMenuItem*     auto_touch_item;
164         Gtk::CheckMenuItem*     auto_write_item;
165
166         Gtk::CheckMenuItem* mode_discrete_item;
167         Gtk::CheckMenuItem* mode_line_item;
168
169         bool _show_regions;
170
171         void add_line (boost::shared_ptr<AutomationLine>);
172
173         void clear_clicked ();
174         void hide_clicked ();
175
176         virtual bool can_edit_name() const {return false;}
177
178         void build_display_menu ();
179
180         void cut_copy_clear_one (AutomationLine&, Selection&, Editing::CutCopyOp);
181         bool paste_one (ARDOUR::framepos_t, unsigned, float times, const Selection&, ItemCounts& counts, bool greedy=false);
182         void route_going_away ();
183
184         void set_automation_state (ARDOUR::AutoState);
185         bool ignore_state_request;
186
187         void automation_state_changed ();
188
189         void set_interpolation (ARDOUR::AutomationList::InterpolationStyle);
190         void interpolation_changed (ARDOUR::AutomationList::InterpolationStyle);
191
192         PBD::ScopedConnectionList _list_connections;
193         PBD::ScopedConnectionList _route_connections;
194
195         void entered ();
196         void exited ();
197
198         //void set_colors ();
199         void color_handler ();
200
201         static Pango::FontDescription name_font;
202         static bool have_name_font;
203
204 private:
205         int set_state_2X (const XMLNode &, int);
206 };
207
208 #endif /* __ardour_gtk_automation_time_axis_h__ */