Another not-quite-there-but-better commit.
[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 <vector>
24 #include <list>
25 #include <string>
26 #include <utility>
27
28 #include <boost/shared_ptr.hpp>
29
30 #include <ardour/types.h>
31 #include <ardour/automatable.h>
32
33 #include "canvas.h"
34 #include "time_axis_view.h"
35 #include "simplerect.h"
36 #include "automation_controller.h"
37
38 using std::vector;
39 using std::list;
40 using std::string;
41
42 namespace ARDOUR {
43         class Session;
44         class Route;
45 }
46
47 class PublicEditor;
48 class TimeSelection;
49 class RegionSelection;
50 class PointSelection;
51 class AutomationLine;
52 class GhostRegion;
53 class Selection;
54 class Selectable;
55
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                                 PublicEditor&,
64                                 TimeAxisView& parent,
65                                 ArdourCanvas::Canvas& canvas,
66                                 const string & name, /* translatable */
67                                 const string & state_name, /* not translatable */
68                                 const string & plug_name = "");
69
70         ~AutomationTimeAxisView();
71         
72         void set_height (TimeAxisView::TrackHeight);
73         void set_samples_per_unit (double);
74         std::string name() const { return _name; }
75
76         void add_automation_event (ArdourCanvas::Item *item, GdkEvent *event, nframes_t, double);
77
78         void clear_lines ();
79         boost::shared_ptr<AutomationLine> line() { return _line; }
80
81         void set_selected_points (PointSelection&);
82         void get_selectables (nframes_t start, nframes_t end, double top, double bot, list<Selectable *>&);
83         void get_inverted_selectables (Selection&, list<Selectable*>& results);
84
85         void show_timestretch (nframes_t start, nframes_t end) {}
86         void hide_timestretch () {}
87
88         /* editing operations */
89         
90         bool cut_copy_clear (Selection&, Editing::CutCopyOp);
91         bool cut_copy_clear_objects (PointSelection&, Editing::CutCopyOp);
92         bool paste (nframes_t, float times, Selection&, size_t nth);
93         void reset_objects (PointSelection&);
94
95         void add_ghost (GhostRegion*);
96         void remove_ghost (GhostRegion*);
97
98         void show_all_control_points ();
99         void hide_all_but_selected_control_points ();
100         void set_state (const XMLNode&);
101         XMLNode* get_state_node ();
102         
103         guint32 show_at (double y, int& nth, Gtk::VBox *parent);
104         void hide ();
105
106   protected:
107         boost::shared_ptr<ARDOUR::Route> _route; ///< Parent route
108         boost::shared_ptr<ARDOUR::AutomationControl> _control; ///< Control
109         boost::shared_ptr<ARDOUR::Automatable> _automatable; ///< Control owner, maybe = _route
110         
111         boost::shared_ptr<AutomationController> _controller;
112         
113         ArdourCanvas::SimpleRect* _base_rect;
114         boost::shared_ptr<AutomationLine> _line;
115         
116         XMLNode* _xml_node;
117
118         string _name;
119         string _state_name;
120         bool    in_destructor;
121         bool    ignore_toggle;
122
123         bool    first_call_to_set_height;
124
125         Gtk::Button        hide_button;
126         Gtk::Button        height_button;
127         Gtk::Button        clear_button;
128         Gtk::Button        auto_button; 
129         Gtk::Menu*         automation_menu;
130         Gtk::Label*        plugname;
131         bool               plugname_packed;
132
133         Gtk::CheckMenuItem*     auto_off_item;
134         Gtk::CheckMenuItem*     auto_play_item;
135         Gtk::CheckMenuItem*     auto_touch_item;
136         Gtk::CheckMenuItem*     auto_write_item;
137
138         void add_line (boost::shared_ptr<AutomationLine>);
139         
140         void clear_clicked ();
141         void height_clicked ();
142         void hide_clicked ();
143         void auto_clicked ();
144
145         void build_display_menu ();
146
147         list<GhostRegion*> ghosts;
148
149         bool cut_copy_clear_one (AutomationLine&, Selection&, Editing::CutCopyOp);
150         bool cut_copy_clear_objects_one (AutomationLine&, PointSelection&, Editing::CutCopyOp);
151         bool paste_one (AutomationLine&, nframes_t, float times, Selection&, size_t nth);
152         void reset_objects_one (AutomationLine&, PointSelection&);
153
154         void set_automation_state (ARDOUR::AutoState);
155         bool ignore_state_request;
156
157         void automation_state_changed ();
158         sigc::connection automation_connection;
159
160         void ensure_xml_node ();
161         void update_extra_xml_shown (bool editor_shown);
162
163         void entered ();
164         void exited ();
165
166         void set_colors ();
167         void color_handler ();
168
169         static Pango::FontDescription name_font;
170         static bool have_name_font;
171 };
172
173 #endif /* __ardour_gtk_automation_time_axis_h__ */