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