fix math bug with numthreads computation
[ardour2.git] / gtk2_ardour / time_axis_view.h
blob4e91b15336a590b55bdff477598623207b657092
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 ArdourCanvas::Group* canvas_display () { return _canvas_display; }
102 ArdourCanvas::Group* canvas_background () { return _canvas_background; }
103 ArdourCanvas::Group* ghost_group () { return _ghost_group; }
105 /** @return effective height (taking children into account) in canvas units, or
106 0 if this TimeAxisView has not yet been shown */
107 uint32_t effective_height () const { return _effective_height; }
109 /** @return y position, or -1 if hidden */
110 double y_position () const { return _y_position; }
112 /** @return our Editor */
113 PublicEditor& editor () const { return _editor; }
115 uint32_t current_height() const { return height; }
117 bool resizer_button_press (GdkEventButton*);
118 bool resizer_button_release (GdkEventButton*);
119 bool resizer_motion (GdkEventMotion*);
120 bool resizer_expose (GdkEventExpose*);
122 void idle_resize (uint32_t);
124 void hide_name_label ();
125 void hide_name_entry ();
126 void show_name_label ();
127 void show_name_entry ();
129 virtual bool set_visibility (bool);
130 virtual guint32 show_at (double y, int& nth, Gtk::VBox *parent);
132 void clip_to_viewport ();
134 bool touched (double top, double bot);
136 /** Hide this TrackView */
137 virtual void hide ();
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 (Height);
153 void reset_height();
155 std::pair<TimeAxisView*, ARDOUR::layer_t> covers_y_position (double);
158 * Steps through the defined heights for this TrackView.
159 * Sets bigger to true to step up in size, set to fals eot step smaller.
161 * @param bigger true if stepping should increase in size, false otherwise
163 virtual void step_height (bool bigger);
165 virtual ARDOUR::RouteGroup* route_group() const { return 0; }
166 virtual boost::shared_ptr<ARDOUR::Playlist> playlist() const { return boost::shared_ptr<ARDOUR::Playlist> (); }
168 virtual void show_feature_lines (const ARDOUR::AnalysisFeatureList&);
169 virtual void hide_feature_lines ();
171 virtual void set_samples_per_unit (double);
172 virtual void show_selection (TimeSelection&);
173 virtual void hide_selection ();
174 virtual void reshow_selection (TimeSelection&);
175 virtual void show_timestretch (nframes_t start, nframes_t end);
176 virtual void hide_timestretch ();
178 virtual void hide_dependent_views (TimeAxisViewItem&) {}
179 virtual void reveal_dependent_views (TimeAxisViewItem&) {}
181 /* editing operations */
183 virtual bool cut_copy_clear (Selection&, Editing::CutCopyOp) { return false; }
184 virtual bool paste (nframes_t, float /*times*/, Selection&, size_t /*nth*/) { return false; }
186 virtual void set_selected_regionviews (RegionSelection&) {}
187 virtual void set_selected_points (PointSelection&) {}
189 virtual boost::shared_ptr<ARDOUR::Region> find_next_region (nframes_t /*pos*/, ARDOUR::RegionPoint, int32_t /*dir*/) {
190 return boost::shared_ptr<ARDOUR::Region> ();
193 void order_selection_trims (ArdourCanvas::Item *item, bool put_start_on_top);
195 virtual void get_selectables (nframes_t start, nframes_t end, double top, double bot, std::list<Selectable*>& results);
196 virtual void get_inverted_selectables (Selection&, std::list<Selectable *>& results);
198 void add_ghost (RegionView*);
199 void remove_ghost (RegionView*);
200 void erase_ghost (GhostRegion*);
202 /** called at load time when first GUI idle occurs. put
203 expensive data loading/redisplay code in here. */
204 virtual void first_idle () {}
206 TimeAxisView* get_parent () { return parent; }
207 void set_parent (TimeAxisView& p);
208 bool has_state () const;
210 /* call this on the parent */
212 virtual XMLNode* get_automation_child_xml_node (Evoral::Parameter /*param*/) { return 0; }
214 virtual LayerDisplay layer_display () const { return Overlaid; }
215 virtual StreamView* view () const { return 0; }
217 typedef std::vector<boost::shared_ptr<TimeAxisView> > Children;
219 SelectionRect* get_selection_rect(uint32_t id);
221 static uint32_t preset_height (Height);
223 protected:
224 /* The Standard LHS Controls */
225 Gtk::HBox controls_hbox;
226 Gtk::Table controls_table;
227 Gtk::EventBox controls_ebox;
228 Gtk::VBox controls_vbox;
229 Gtk::VBox time_axis_vbox;
230 Gtk::DrawingArea resizer;
231 Gtk::HBox resizer_box;
232 Gtk::HBox name_hbox;
233 Gtk::Frame name_frame;
234 Gtkmm2ext::FocusEntry name_entry;
236 uint32_t height; /* in canvas units */
238 std::string controls_base_unselected_name;
239 std::string controls_base_selected_name;
241 bool name_entry_button_press (GdkEventButton *ev);
242 bool name_entry_button_release (GdkEventButton *ev);
243 bool name_entry_key_release (GdkEventKey *ev);
244 void name_entry_activated ();
245 sigc::connection name_entry_key_timeout;
246 bool name_entry_key_timed_out ();
247 guint32 last_name_entry_key_press_event;
249 /* derived classes can override these */
251 virtual void name_entry_changed ();
252 virtual bool name_entry_focus_in (GdkEventFocus *ev);
253 virtual bool name_entry_focus_out (GdkEventFocus *ev);
255 /** Handle mouse relaese on our LHS control name ebox.
257 *@ param ev the event
259 virtual bool controls_ebox_button_release (GdkEventButton *ev);
260 virtual bool controls_ebox_scroll (GdkEventScroll *ev);
262 /** Display the standard LHS control menu at when.
264 * @param when the popup activation time
266 virtual void popup_display_menu (guint32 when);
268 /** Build the standard LHS control menu.
269 * Subclasses should extend this method to add their own menu options.
271 virtual void build_display_menu ();
273 /** Do whatever needs to be done to dynamically reset the LHS control menu.
275 virtual bool handle_display_menu_map_event (GdkEventAny * /*ev*/) { return false; }
277 /* The standard LHS Track control popup-menus */
279 Gtk::Menu *display_menu;
281 Gtk::Label name_label;
283 TimeAxisView* parent;
285 /** Find the parent with state */
286 TimeAxisView* get_parent_with_state();
288 Children children;
289 bool is_child (TimeAxisView*);
291 void remove_child (boost::shared_ptr<TimeAxisView>);
292 void add_child (boost::shared_ptr<TimeAxisView>);
294 /* selection display */
296 ArdourCanvas::Group *selection_group;
298 std::list<GhostRegion*> ghosts;
300 std::list<SelectionRect*> free_selection_rects;
301 std::list<SelectionRect*> used_selection_rects;
303 virtual void selection_click (GdkEventButton*);
305 bool _hidden;
306 bool _has_state;
307 bool in_destructor;
308 NamePackingBits name_packing;
310 void set_heights (uint32_t h);
311 void color_handler ();
313 std::list<ArdourCanvas::SimpleLine*> feature_lines;
314 ARDOUR::AnalysisFeatureList analysis_features;
315 void reshow_feature_lines ();
317 void conditionally_add_to_selection ();
319 ArdourCanvas::Group* _canvas_display;
320 double _y_position;
321 PublicEditor& _editor;
323 private:
325 ArdourCanvas::Group* _canvas_background;
326 Gtk::VBox* control_parent;
327 int _order;
328 uint32_t _effective_height;
329 double _resize_drag_start;
330 ArdourCanvas::Group* _ghost_group;
332 void compute_heights ();
333 static uint32_t extra_height;
334 static uint32_t smaller_height;
336 static int const _max_order;
338 }; /* class TimeAxisView */
340 #endif /* __ardour_gtk_time_axis_h__ */