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