quick mockup of indented automation-track headers
[ardour.git] / gtk2_ardour / time_axis_view.h
1 /*
2     Copyright (C) 2003 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_time_axis_h__
21 #define __ardour_gtk_time_axis_h__
22
23 #include <vector>
24 #include <list>
25
26 #include <gtkmm/box.h>
27 #include <gtkmm/frame.h>
28 #include <gtkmm/drawingarea.h>
29 #include <gtkmm/eventbox.h>
30 #include <gtkmm/table.h>
31 #include <gtkmm/entry.h>
32 #include <gtkmm/label.h>
33 #include <gtkmm/sizegroup.h>
34
35 #include <gtkmm2ext/focus_entry.h>
36
37 #include "pbd/stateful.h"
38 #include "pbd/signals.h"
39
40 #include "ardour/types.h"
41 #include "ardour/region.h"
42 #include "evoral/Parameter.hpp"
43
44 #include "prompter.h"
45 #include "axis_view.h"
46 #include "enums.h"
47 #include "editing.h"
48
49 namespace ARDOUR {
50         class Session;
51         class Region;
52         class Session;
53         class RouteGroup;
54         class Playlist;
55 }
56
57 namespace Gtk {
58         class Menu;
59 }
60
61 namespace ArdourCanvas {
62         class Canvas;
63         class Container;
64         class Item;
65 }
66
67 class PublicEditor;
68 class RegionSelection;
69 class TimeSelection;
70 class PointSelection;
71 class TimeAxisViewItem;
72 class Selection;
73 class Selectable;
74 class RegionView;
75 class GhostRegion;
76 class StreamView;
77 class ArdourDialog;
78
79 /** Abstract base class for time-axis views (horizontal editor 'strips')
80  *
81  * This class provides the basic LHS controls and display methods. This should be
82  * extended to create functional time-axis based views.
83  */
84 class TimeAxisView : public virtual AxisView
85 {
86         private:
87         enum NamePackingBits {
88                 NameLabelPacked = 0x1,
89                 NameEntryPacked = 0x2
90         };
91
92         public:
93         TimeAxisView(ARDOUR::Session* sess, PublicEditor& ed, TimeAxisView* parent, ArdourCanvas::Canvas& canvas);
94         virtual ~TimeAxisView ();
95
96         static PBD::Signal1<void,TimeAxisView*> CatchDeletion;
97
98         /** @return index of this TimeAxisView within its parent */
99         int order () const { return _order; }
100
101         /** @return maximum allowable value of order */
102         static int max_order () { return _max_order; }
103
104         virtual void enter_internal_edit_mode () {}
105         virtual void leave_internal_edit_mode () {}
106
107         ArdourCanvas::Container* canvas_display () { return _canvas_display; }
108         ArdourCanvas::Container* ghost_group () { return _ghost_group; }
109
110         /** @return effective height (taking children into account) in canvas units, or
111                 0 if this TimeAxisView has not yet been shown */
112         uint32_t effective_height () const { return _effective_height; }
113
114         /** @return y position, or -1 if hidden */
115         double y_position () const { return _y_position; }
116
117         /** @return our Editor */
118         PublicEditor& editor () const { return _editor; }
119
120         uint32_t current_height() const { return height; }
121
122         void idle_resize (uint32_t);
123
124         virtual guint32 show_at (double y, int& nth, Gtk::VBox *parent);
125         virtual void hide ();
126
127         bool touched (double top, double bot);
128
129         /** @return true if hidden, otherwise false */
130         bool hidden () const { return _hidden; }
131
132         void set_selected (bool);
133
134         /**
135          * potential handler for entered events
136          */
137
138         virtual void entered () {}
139         virtual void exited () {}
140
141         virtual void set_height (uint32_t h);
142         void set_height_enum (Height, bool apply_to_selection = false);
143         void reset_height();
144
145         virtual void reset_visual_state ();
146
147         std::pair<TimeAxisView*, double> covers_y_position (double) const;
148         bool covered_by_y_range (double y0, double y1) const;
149
150         virtual void step_height (bool);
151
152         virtual ARDOUR::RouteGroup* route_group() const { return 0; }
153         virtual boost::shared_ptr<ARDOUR::Playlist> playlist() const { return boost::shared_ptr<ARDOUR::Playlist> (); }
154
155         virtual void set_samples_per_pixel (double);
156         virtual void show_selection (TimeSelection&);
157         virtual void hide_selection ();
158         virtual void reshow_selection (TimeSelection&);
159         virtual void show_timestretch (framepos_t start, framepos_t end, int layers, int layer);
160         virtual void hide_timestretch ();
161
162         /* editing operations */
163
164         virtual void cut_copy_clear (Selection&, Editing::CutCopyOp) {}
165         virtual bool paste (ARDOUR::framepos_t, float /*times*/, Selection&, size_t /*nth*/) { return false; }
166
167         virtual void set_selected_regionviews (RegionSelection&) {}
168         virtual void set_selected_points (PointSelection&) {}
169
170         virtual void fade_range (TimeSelection&) {}
171
172         virtual boost::shared_ptr<ARDOUR::Region> find_next_region (framepos_t /*pos*/, ARDOUR::RegionPoint, int32_t /*dir*/) {
173                 return boost::shared_ptr<ARDOUR::Region> ();
174         }
175
176         void order_selection_trims (ArdourCanvas::Item *item, bool put_start_on_top);
177
178         virtual void get_selectables (ARDOUR::framepos_t, ARDOUR::framepos_t, double, double, std::list<Selectable*>&);
179         virtual void get_inverted_selectables (Selection&, std::list<Selectable *>& results);
180
181         void add_ghost (RegionView*);
182         void remove_ghost (RegionView*);
183         void erase_ghost (GhostRegion*);
184
185         /** called at load time when first GUI idle occurs. put
186             expensive data loading/redisplay code in here. */
187         virtual void first_idle () {}
188
189         TimeAxisView* get_parent () { return parent; }
190         void set_parent (TimeAxisView& p);
191
192         virtual LayerDisplay layer_display () const { return Overlaid; }
193         virtual StreamView* view () const { return 0; }
194
195         typedef std::vector<boost::shared_ptr<TimeAxisView> > Children;
196         Children get_child_list ();
197
198         SelectionRect* get_selection_rect(uint32_t id);
199
200         static uint32_t preset_height (Height);
201
202         protected:
203         static Glib::RefPtr<Gtk::SizeGroup> controls_meters_size_group;
204         static unsigned int name_width_px;
205         /* The Standard LHS Controls */
206         Gtk::Table             controls_table;
207         Glib::RefPtr<Gtk::SizeGroup> controls_button_size_group;
208         Gtk::EventBox          controls_ebox;
209         Gtk::VBox              controls_vbox;
210         Gtk::VBox              time_axis_vbox;
211         Gtk::HBox              time_axis_hbox;
212         Gtk::Frame             time_axis_frame;
213         Gtk::HBox              name_hbox;
214         Gtk::HBox              top_hbox;
215         Gtk::Label             name_label;
216         bool                  _name_editing;
217         uint32_t               height;  /* in canvas units */
218         std::string            controls_base_unselected_name;
219         std::string            controls_base_selected_name;
220         Gtk::Menu*             display_menu; /* The standard LHS Track control popup-menus */
221         TimeAxisView*          parent;
222         ArdourCanvas::Container*   selection_group;
223         ArdourCanvas::Container*  _ghost_group;
224         std::list<GhostRegion*> ghosts;
225         std::list<SelectionRect*> free_selection_rects;
226         std::list<SelectionRect*> used_selection_rects;
227         bool                  _hidden;
228         bool                   in_destructor;
229         Gtk::Menu*            _size_menu;
230         ArdourCanvas::Container*  _canvas_display;
231         double                _y_position;
232         PublicEditor&         _editor;
233
234         virtual bool can_edit_name() const;
235
236         bool name_entry_key_release (GdkEventKey *ev);
237         bool name_entry_key_press (GdkEventKey *ev);
238         bool name_entry_focus_out (GdkEventFocus *ev);
239
240         Gtk::Entry* name_entry;
241         void begin_name_edit ();
242         void end_name_edit (int);
243
244         /* derived classes can override these */
245
246         virtual void name_entry_changed ();
247
248         /** Handle mouse relaese on our LHS control name ebox.
249          *
250          *@ param ev the event
251          */
252         virtual bool controls_ebox_button_release (GdkEventButton*);
253         virtual bool controls_ebox_scroll (GdkEventScroll*);
254         virtual bool controls_ebox_button_press (GdkEventButton*);
255         virtual bool controls_ebox_motion (GdkEventMotion*);
256         virtual bool controls_ebox_leave (GdkEventCrossing*);
257
258         /** Display the standard LHS control menu at when.
259          *
260          * @param when the popup activation time
261          */
262         virtual void popup_display_menu (guint32 when);
263
264         /** Build the standard LHS control menu.
265          * Subclasses should extend this method to add their own menu options.
266          */
267         virtual void build_display_menu ();
268
269         /** Do whatever needs to be done to dynamically reset the LHS control menu.
270          */
271         virtual bool handle_display_menu_map_event (GdkEventAny * /*ev*/) { return false; }
272
273         Children children;
274         bool is_child (TimeAxisView*);
275
276         virtual void remove_child (boost::shared_ptr<TimeAxisView>);
277         void add_child (boost::shared_ptr<TimeAxisView>);
278
279         /* selection display */
280
281         virtual void selection_click (GdkEventButton*);
282
283         void color_handler ();
284
285         void conditionally_add_to_selection ();
286
287         void build_size_menu ();
288
289 private:
290         Gtk::VBox*            control_parent;
291         int                  _order;
292         uint32_t             _effective_height;
293         double               _resize_drag_start;
294         GdkCursor*           _preresize_cursor;
295         bool                 _have_preresize_cursor;
296         bool                  _ebox_release_can_act;
297
298         static uint32_t button_height;
299         static uint32_t extra_height;
300         static int const _max_order;
301
302         void compute_heights ();
303         bool maybe_set_cursor (int y);
304
305 }; /* class TimeAxisView */
306
307 #endif /* __ardour_gtk_time_axis_h__ */