Remove erroneous assert which I added earlier.
[ardour2.git] / gtk2_ardour / time_axis_view.h
blob8e7d6f394a5fe8eb883d7fd2747dbee1ea42372d
1 /*
2 Copyright (C) 2003 Paul Davis
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.
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.
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.
20 #ifndef __ardour_gtk_time_axis_h__
21 #define __ardour_gtk_time_axis_h__
23 #include <vector>
24 #include <list>
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>
34 #include <gtkmm2ext/focus_entry.h>
36 #include "pbd/stateful.h"
37 #include "pbd/signals.h"
39 #include "ardour/types.h"
40 #include "ardour/region.h"
41 #include "evoral/Parameter.hpp"
43 #include "prompter.h"
44 #include "axis_view.h"
45 #include "enums.h"
46 #include "editing.h"
47 #include "canvas.h"
49 namespace ARDOUR {
50 class Session;
51 class Region;
52 class Session;
53 class RouteGroup;
54 class Playlist;
57 namespace Gtk {
58 class Menu;
61 class PublicEditor;
62 class RegionSelection;
63 class TimeSelection;
64 class PointSelection;
65 class TimeAxisViewItem;
66 class Selection;
67 class Selectable;
68 class RegionView;
69 class GhostRegion;
70 class StreamView;
72 /** Abstract base class for time-axis views (horizontal editor 'strips')
74 * This class provides the basic LHS controls and display methods. This should be
75 * extended to create functional time-axis based views.
77 class TimeAxisView : public virtual AxisView, public PBD::Stateful
79 private:
80 enum NamePackingBits {
81 NameLabelPacked = 0x1,
82 NameEntryPacked = 0x2
85 public:
87 TimeAxisView(ARDOUR::Session* sess, PublicEditor& ed, TimeAxisView* parent, ArdourCanvas::Canvas& canvas);
88 virtual ~TimeAxisView ();
90 XMLNode& get_state ();
91 int set_state (const XMLNode&, int version);
93 static PBD::Signal1<void,TimeAxisView*> CatchDeletion;
95 /** @return index of this TimeAxisView within its parent */
96 int order () const { return _order; }
98 /** @return maximum allowable value of order */
99 static int max_order () { return _max_order; }
101 virtual void enter_internal_edit_mode () {}
102 virtual void leave_internal_edit_mode () {}
104 ArdourCanvas::Group* canvas_display () { return _canvas_display; }
105 ArdourCanvas::Group* canvas_background () { return _canvas_background; }
106 ArdourCanvas::Group* ghost_group () { return _ghost_group; }
108 /** @return effective height (taking children into account) in canvas units, or
109 0 if this TimeAxisView has not yet been shown */
110 uint32_t effective_height () const { return _effective_height; }
112 /** @return y position, or -1 if hidden */
113 double y_position () const { return _y_position; }
115 /** @return our Editor */
116 PublicEditor& editor () const { return _editor; }
118 uint32_t current_height() const { return height; }
120 bool resizer_button_press (GdkEventButton*);
121 bool resizer_button_release (GdkEventButton*);
122 bool resizer_motion (GdkEventMotion*);
123 bool resizer_expose (GdkEventExpose*);
125 void idle_resize (uint32_t);
127 void hide_name_label ();
128 void hide_name_entry ();
129 void show_name_label ();
130 void show_name_entry ();
132 virtual bool set_visibility (bool);
133 virtual guint32 show_at (double y, int& nth, Gtk::VBox *parent);
135 void clip_to_viewport ();
137 bool touched (double top, double bot);
139 /** @return true if hidden, otherwise false */
140 bool hidden () const { return _hidden; }
142 virtual void set_selected (bool);
145 * potential handler for entered events
148 virtual void entered () {}
149 virtual void exited () {}
151 virtual void set_height (uint32_t h);
152 void set_height_enum (Height, bool apply_to_selection = false);
153 void reset_height();
155 std::pair<TimeAxisView*, ARDOUR::layer_t> covers_y_position (double);
157 virtual void step_height (bool);
159 virtual ARDOUR::RouteGroup* route_group() const { return 0; }
160 virtual boost::shared_ptr<ARDOUR::Playlist> playlist() const { return boost::shared_ptr<ARDOUR::Playlist> (); }
162 virtual void set_samples_per_unit (double);
163 virtual void show_selection (TimeSelection&);
164 virtual void hide_selection ();
165 virtual void reshow_selection (TimeSelection&);
166 virtual void show_timestretch (framepos_t start, framepos_t end);
167 virtual void hide_timestretch ();
169 virtual void hide_dependent_views (TimeAxisViewItem&) {}
170 virtual void reveal_dependent_views (TimeAxisViewItem&) {}
172 /* editing operations */
174 virtual void cut_copy_clear (Selection&, Editing::CutCopyOp) {}
175 virtual bool paste (ARDOUR::framepos_t, float /*times*/, Selection&, size_t /*nth*/) { return false; }
177 virtual void set_selected_regionviews (RegionSelection&) {}
178 virtual void set_selected_points (PointSelection&) {}
180 virtual boost::shared_ptr<ARDOUR::Region> find_next_region (framepos_t /*pos*/, ARDOUR::RegionPoint, int32_t /*dir*/) {
181 return boost::shared_ptr<ARDOUR::Region> ();
184 void order_selection_trims (ArdourCanvas::Item *item, bool put_start_on_top);
186 virtual void get_selectables (ARDOUR::framepos_t, ARDOUR::framepos_t, double, double, std::list<Selectable*>&);
187 virtual void get_inverted_selectables (Selection&, std::list<Selectable *>& results);
189 void add_ghost (RegionView*);
190 void remove_ghost (RegionView*);
191 void erase_ghost (GhostRegion*);
193 /** called at load time when first GUI idle occurs. put
194 expensive data loading/redisplay code in here. */
195 virtual void first_idle () {}
197 TimeAxisView* get_parent () { return parent; }
198 void set_parent (TimeAxisView& p);
199 bool has_state () const;
201 virtual LayerDisplay layer_display () const { return Overlaid; }
202 virtual StreamView* view () const { return 0; }
204 typedef std::vector<boost::shared_ptr<TimeAxisView> > Children;
205 Children get_child_list ();
207 SelectionRect* get_selection_rect(uint32_t id);
209 static uint32_t preset_height (Height);
211 protected:
212 /* The Standard LHS Controls */
213 Gtk::HBox controls_hbox;
214 Gtk::Table controls_table;
215 Gtk::EventBox controls_ebox;
216 Gtk::VBox controls_vbox;
217 Gtk::VBox time_axis_vbox;
218 Gtk::DrawingArea resizer;
219 Gtk::HBox resizer_box;
220 Gtk::HBox name_hbox;
221 Gtk::Frame name_frame;
222 Gtkmm2ext::FocusEntry name_entry;
224 uint32_t height; /* in canvas units */
226 std::string controls_base_unselected_name;
227 std::string controls_base_selected_name;
229 bool name_entry_button_press (GdkEventButton *ev);
230 bool name_entry_button_release (GdkEventButton *ev);
231 bool name_entry_key_release (GdkEventKey *ev);
232 void name_entry_activated ();
233 sigc::connection name_entry_key_timeout;
234 bool name_entry_key_timed_out ();
235 guint32 last_name_entry_key_press_event;
237 /* derived classes can override these */
239 virtual void name_entry_changed ();
240 virtual bool name_entry_focus_in (GdkEventFocus *ev);
241 virtual bool name_entry_focus_out (GdkEventFocus *ev);
243 /** Handle mouse relaese on our LHS control name ebox.
245 *@ param ev the event
247 virtual bool controls_ebox_button_release (GdkEventButton *ev);
248 virtual bool controls_ebox_scroll (GdkEventScroll *ev);
250 /** Display the standard LHS control menu at when.
252 * @param when the popup activation time
254 virtual void popup_display_menu (guint32 when);
256 /** Build the standard LHS control menu.
257 * Subclasses should extend this method to add their own menu options.
259 virtual void build_display_menu ();
261 /** Do whatever needs to be done to dynamically reset the LHS control menu.
263 virtual bool handle_display_menu_map_event (GdkEventAny * /*ev*/) { return false; }
265 /* The standard LHS Track control popup-menus */
267 Gtk::Menu *display_menu;
269 Gtk::Label name_label;
271 TimeAxisView* parent;
273 /** Find the parent with state */
274 TimeAxisView* get_parent_with_state();
276 Children children;
277 bool is_child (TimeAxisView*);
279 void remove_child (boost::shared_ptr<TimeAxisView>);
280 void add_child (boost::shared_ptr<TimeAxisView>);
282 virtual void hide ();
283 virtual void show ();
285 /* selection display */
287 ArdourCanvas::Group *selection_group;
289 std::list<GhostRegion*> ghosts;
291 std::list<SelectionRect*> free_selection_rects;
292 std::list<SelectionRect*> used_selection_rects;
294 virtual void selection_click (GdkEventButton*);
296 bool _hidden;
297 bool _has_state;
298 bool in_destructor;
299 NamePackingBits name_packing;
301 void set_heights (uint32_t h);
302 void color_handler ();
304 void conditionally_add_to_selection ();
306 void build_size_menu ();
307 Gtk::Menu* _size_menu;
309 ArdourCanvas::Group* _canvas_display;
310 double _y_position;
311 PublicEditor& _editor;
313 private:
315 ArdourCanvas::Group* _canvas_background;
316 Gtk::VBox* control_parent;
317 int _order;
318 uint32_t _effective_height;
319 double _resize_drag_start;
320 ArdourCanvas::Group* _ghost_group;
322 void compute_heights ();
323 static uint32_t extra_height;
324 static uint32_t small_height;
326 static int const _max_order;
328 }; /* class TimeAxisView */
330 #endif /* __ardour_gtk_time_axis_h__ */