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