many changes related to region zooming; proto-visual state undo/redo stack; fill...
[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/eventbox.h>
29 #include <gtkmm/table.h>
30 #include <gtkmm/entry.h>
31 #include <gtkmm/label.h>
32
33 #include <gtkmm2ext/focus_entry.h>
34
35 #include <pbd/stateful.h>
36
37 #include <ardour/types.h>
38 #include <ardour/region.h>
39
40 #include "prompter.h"
41 #include "axis_view.h"
42 #include "enums.h"
43 #include "editing.h"
44 #include "canvas.h"
45
46 namespace ARDOUR {
47         class Session;
48         class Region;
49         class Session;
50         class RouteGroup;
51         class Playlist;
52 }
53
54 namespace Gtk {
55         class Menu;
56 }
57
58 class PublicEditor;
59 class RegionSelection;
60 class TimeSelection;
61 class PointSelection;
62 class TimeAxisViewItem;
63 class Selection;
64 class Selectable;
65
66 /**
67  * TimeAxisView defines the abstract base class for time-axis views.
68  *
69  * This class provides the basic LHS controls and display methods. This should be
70  * extended to create functional time-axis based views.
71  *
72  */
73 class TimeAxisView : public virtual AxisView, public Stateful
74 {
75   private:
76         enum NamePackingBits {
77                 NameLabelPacked = 0x1,
78                 NameEntryPacked = 0x2
79         };
80
81   public:
82         static uint32_t hLargest;
83         static uint32_t hLarge;
84         static uint32_t hLarger;
85         static uint32_t hNormal;
86         static uint32_t hSmaller;
87         static uint32_t hSmall;
88
89         TimeAxisView(ARDOUR::Session& sess, PublicEditor& ed, TimeAxisView* parent, ArdourCanvas::Canvas& canvas);
90         virtual ~TimeAxisView ();
91
92         XMLNode& get_state (void);
93         int set_state (const XMLNode&);
94
95         /* public data: XXX create accessor/mutators for these ?? */
96
97         PublicEditor& editor;
98         
99         uint32_t effective_height;  /* in canvas units */
100         double   height_scaling_factor; /* used to zoom the track height without changing it */
101         double   y_position;
102         int      order;
103         
104         uint32_t current_height() const { return (uint32_t) floor (height * height_scaling_factor); }
105         void     set_height_scaling_factor (double);
106
107         ArdourCanvas::Group   *canvas_display;
108         Gtk::VBox       *control_parent;
109
110         /* The Standard LHS Controls */
111         Gtk::Frame    controls_frame;
112         Gtk::HBox     controls_hbox;
113         Gtk::EventBox controls_lhs_pad;
114         Gtk::Table    controls_table;
115         Gtk::EventBox controls_ebox;
116         Gtk::VBox     controls_vbox;
117         Gtk::EventBox resizer;
118         Gtk::HBox     resizer_box;
119         Gtk::HBox     name_hbox;
120         Gtk::Frame    name_frame;
121         Gtkmm2ext::FocusEntry name_entry;
122         
123         bool resizer_button_press (GdkEventButton*);
124         bool resizer_button_release (GdkEventButton*);
125         bool resizer_motion (GdkEventMotion*);
126         bool resizer_expose (GdkEventExpose*);
127
128         double resize_drag_start;
129         int32_t resize_idle_target;
130         int32_t resize_idle_id;
131         bool idle_resize();
132
133         void hide_name_label ();
134         void hide_name_entry ();
135         void show_name_label ();
136         void show_name_entry ();
137
138         /**
139          * Display this TrackView as the nth component of the parent box, at y.
140          *
141          * @param y 
142          * @param nth
143          * @param parent the parent component
144          * @return the height of this TrackView
145          */
146         virtual guint32 show_at (double y, int& nth, Gtk::VBox *parent);
147
148         bool touched (double top, double bot);
149
150         /**
151          * Hides this TrackView
152          */
153         virtual void hide ();
154         bool hidden() const { return _hidden; }
155
156         virtual void set_selected (bool);
157
158         /**
159          * potential handler for entered events
160          */
161
162         virtual void entered () {}
163         virtual void exited () {}
164
165         virtual void set_height (uint32_t h);
166         void reset_height();
167
168         /**
169          * Returns a TimeAxisView* if this object covers y, or one of its children does.
170          *  If the covering object is a child axis, then the child is returned.
171          * Returns 0 otherwise.
172          */
173
174         TimeAxisView* covers_y_position (double y);
175
176         /**
177          * Steps through the defined heights for this TrackView.
178          * Sets bigger to true to step up in size, set to fals eot step smaller.
179          *
180          * @param bigger true if stepping should increase in size, false otherwise
181          */
182         virtual void step_height (bool bigger);
183
184         virtual ARDOUR::RouteGroup* edit_group() const { return 0; }
185         virtual boost::shared_ptr<ARDOUR::Playlist> playlist() const { return boost::shared_ptr<ARDOUR::Playlist> (); }
186
187         virtual void show_feature_lines (const ARDOUR::AnalysisFeatureList&);
188         virtual void hide_feature_lines ();
189
190         virtual void set_samples_per_unit (double);
191         virtual void show_selection (TimeSelection&);
192         virtual void hide_selection ();
193         virtual void reshow_selection (TimeSelection&);
194         virtual void show_timestretch (nframes_t start, nframes_t end);
195         virtual void hide_timestretch ();
196
197         virtual void hide_dependent_views (TimeAxisViewItem&) {}
198         virtual void reveal_dependent_views (TimeAxisViewItem&) {}
199
200         /* editing operations */
201         
202         virtual bool cut_copy_clear (Selection&, Editing::CutCopyOp) { return false; }
203         virtual bool paste (nframes_t, float times, Selection&, size_t nth) { return false; }
204         
205         virtual void set_selected_regionviews (RegionSelection&) {}
206         virtual void set_selected_points (PointSelection&) {}
207
208         virtual boost::shared_ptr<ARDOUR::Region> find_next_region (nframes_t pos, ARDOUR::RegionPoint, int32_t dir) {
209                 return boost::shared_ptr<ARDOUR::Region> ();
210         }
211
212         void order_selection_trims (ArdourCanvas::Item *item, bool put_start_on_top);
213
214         virtual void get_selectables (nframes_t start, nframes_t end, double top, double bot, list<Selectable*>& results);
215         virtual void get_inverted_selectables (Selection&, list<Selectable *>& results);
216
217         /* called at load time when first GUI idle occurs. put
218            expensive data loading/redisplay code in here.
219         */
220         
221         virtual void first_idle () {}
222
223         /* state/serialization management */
224
225         void set_parent (TimeAxisView& p);
226         bool has_state () const;
227
228         /* call this on the parent */
229
230         virtual XMLNode* get_child_xml_node (const string & childname) { return 0; }
231
232   protected:
233         uint32_t height;  /* in canvas units */
234
235         string controls_base_unselected_name;
236         string controls_base_selected_name;
237
238         bool name_entry_button_press (GdkEventButton *ev);
239         bool name_entry_button_release (GdkEventButton *ev);
240         bool name_entry_key_release (GdkEventKey *ev);
241         void name_entry_activated ();
242         sigc::connection name_entry_key_timeout;
243         bool name_entry_key_timed_out ();
244         guint32 last_name_entry_key_press_event;
245         
246         /* derived classes can override these */
247
248         virtual void name_entry_changed ();
249         virtual bool name_entry_focus_in (GdkEventFocus *ev);
250         virtual bool name_entry_focus_out (GdkEventFocus *ev);
251
252         /**
253          * Handle mouse relaese on our LHS control name ebox.
254          * 
255          *@ param ev the event
256          */
257         virtual bool controls_ebox_button_release (GdkEventButton *ev);
258         virtual bool controls_ebox_scroll (GdkEventScroll *ev);
259
260         /**
261          * Displays the standard LHS control menu at when.
262          *
263          * @param when the popup activation time
264          */
265         virtual void popup_display_menu (guint32 when);
266
267         /**
268          * Build the standard LHS control menu.
269          * Subclasses should extend this method to add their own menu options.
270          *
271          */
272         virtual void build_display_menu ();
273
274         /**
275          * Do anything that needs to be done to dynamically reset
276          * the LHS control menu.
277          */
278         virtual bool handle_display_menu_map_event (GdkEventAny *ev) { return false; }
279
280         /**
281          * Build the standard LHS control size menu for the default heights options.
282          *
283          */
284         virtual void build_size_menu();
285
286         /**
287          * Displays the standard LHS controls size menu for the track heights
288          *
289          * @parem when the popup activation time
290          */
291         void popup_size_menu(guint32 when);
292
293         /**
294          * Handle the size option of out main menu.
295          * 
296          * @param ev the event
297          */
298         gint size_click(GdkEventButton *ev);
299
300         /* The standard LHS Track control popup-menus */
301
302         Gtk::Menu *display_menu;
303         Gtk::Menu *size_menu;
304
305         Gtk::Label    name_label;
306
307         TimeAxisView* parent;
308
309         /* find the parent with state */
310
311         TimeAxisView* get_parent_with_state();
312
313         std::vector<TimeAxisView*> children;
314         bool is_child (TimeAxisView*);
315
316         void remove_child (TimeAxisView*);
317         void add_child (TimeAxisView*);
318
319         /* selection display */
320
321         ArdourCanvas::Group      *selection_group;
322
323         list<SelectionRect*> free_selection_rects;
324         list<SelectionRect*> used_selection_rects;
325
326         SelectionRect* get_selection_rect(uint32_t id);
327
328         virtual void selection_click (GdkEventButton*);
329
330         bool _hidden;
331         bool _has_state;
332         NamePackingBits name_packing;
333
334         static void compute_controls_size_info ();
335         static bool need_size_info;
336
337         void set_heights (uint32_t h);
338         void color_handler ();
339
340         list<ArdourCanvas::SimpleLine*> feature_lines;
341         ARDOUR::AnalysisFeatureList analysis_features;
342         void reshow_feature_lines ();
343
344         void conditionally_add_to_selection ();
345
346 }; /* class TimeAxisView */
347
348 #endif /* __ardour_gtk_time_axis_h__ */
349