ardour
time_axis_view.h
Go to the documentation of this file.
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/fixed.h>
28 #include <gtkmm/frame.h>
29 #include <gtkmm/drawingarea.h>
30 #include <gtkmm/eventbox.h>
31 #include <gtkmm/table.h>
32 #include <gtkmm/entry.h>
33 #include <gtkmm/label.h>
34 #include <gtkmm/sizegroup.h>
35 
36 #include <gtkmm2ext/focus_entry.h>
37 
38 #include "pbd/stateful.h"
39 #include "pbd/signals.h"
40 
41 #include "ardour/types.h"
42 #include "ardour/region.h"
43 #include "evoral/Parameter.hpp"
44 
45 #include "canvas/line.h"
46 
47 #include "prompter.h"
48 #include "axis_view.h"
49 #include "enums.h"
50 #include "editing.h"
51 
52 namespace ARDOUR {
53  class Session;
54  class Region;
55  class Session;
56  class RouteGroup;
57  class Playlist;
58 }
59 
60 namespace Gtk {
61  class Menu;
62 }
63 
64 namespace ArdourCanvas {
65  class Canvas;
66  class Container;
67  class Item;
68 }
69 
70 class PublicEditor;
71 class RegionSelection;
72 class TimeSelection;
73 class PointSelection;
74 class TimeAxisViewItem;
75 class Selection;
76 class Selectable;
77 class RegionView;
78 class GhostRegion;
79 class StreamView;
80 class ArdourDialog;
81 class ItemCounts;
82 class PasteContext;
83 
89 class TimeAxisView : public virtual AxisView
90 {
91  private:
95  };
96 
97  public:
98  TimeAxisView(ARDOUR::Session* sess, PublicEditor& ed, TimeAxisView* parent, ArdourCanvas::Canvas& canvas);
99  virtual ~TimeAxisView ();
100 
101  static PBD::Signal1<void,TimeAxisView*> CatchDeletion;
102 
103  static void setup_sizes ();
104 
106  int order () const { return _order; }
107 
109  static int max_order () { return _max_order; }
110 
111  ArdourCanvas::Container* canvas_display () { return _canvas_display; }
112  ArdourCanvas::Container* ghost_group () { return _ghost_group; }
113 
116  uint32_t effective_height () const { return _effective_height; }
117 
119  double y_position () const { return _y_position; }
120 
122  PublicEditor& editor () const { return _editor; }
123 
124  uint32_t current_height() const { return height; }
125 
126  void idle_resize (int32_t);
127 
128  virtual guint32 show_at (double y, int& nth, Gtk::VBox *parent);
129  virtual void hide ();
130 
131  bool touched (double top, double bot);
132 
134  bool hidden () const { return _hidden; }
135 
136  void set_selected (bool);
137 
142  virtual void entered () {}
143  virtual void exited () {}
144 
149  };
150 
151  virtual void set_height (uint32_t h, TrackHeightMode m = OnlySelf);
152  void set_height_enum (Height, bool apply_to_selection = false);
153  void reset_height();
154 
155  virtual void reset_visual_state ();
156 
157  std::pair<TimeAxisView*, double> covers_y_position (double) const;
158  bool covered_by_y_range (double y0, double y1) const;
159 
160  virtual void step_height (bool);
161 
162  virtual ARDOUR::RouteGroup* route_group() const { return 0; }
164 
165  virtual void set_samples_per_pixel (double);
166  virtual void show_selection (TimeSelection&);
167  virtual void hide_selection ();
168  virtual void reshow_selection (TimeSelection&);
169  virtual void show_timestretch (framepos_t start, framepos_t end, int layers, int layer);
170  virtual void hide_timestretch ();
171 
172  /* editing operations */
173 
175 
181  virtual bool paste (ARDOUR::framepos_t pos,
182  const Selection& selection,
183  PasteContext& ctx) { return false; }
184 
187 
188  virtual void fade_range (TimeSelection&) {}
189 
192  }
193 
194  void order_selection_trims (ArdourCanvas::Item *item, bool put_start_on_top);
195 
196  virtual void get_selectables (ARDOUR::framepos_t, ARDOUR::framepos_t, double, double, std::list<Selectable*>&, bool within = false);
197  virtual void get_inverted_selectables (Selection&, std::list<Selectable *>& results);
198 
199  void add_ghost (RegionView*);
200  void remove_ghost (RegionView*);
201  void erase_ghost (GhostRegion*);
202 
205  virtual void first_idle () {}
206 
208  void set_parent (TimeAxisView& p);
209 
210  virtual LayerDisplay layer_display () const { return Overlaid; }
211  virtual StreamView* view () const { return 0; }
212 
213  typedef std::vector<boost::shared_ptr<TimeAxisView> > Children;
214  Children get_child_list ();
215 
216  SelectionRect* get_selection_rect(uint32_t id);
217 
218  static uint32_t preset_height (Height);
219 
220  protected:
221  static Glib::RefPtr<Gtk::SizeGroup> controls_meters_size_group;
222  static Glib::RefPtr<Gtk::SizeGroup> midi_scroomer_size_group;
223  static unsigned int name_width_px;
224  /* The Standard LHS Controls */
225  Gtk::Table controls_table;
226  Glib::RefPtr<Gtk::SizeGroup> controls_button_size_group;
227  Gtk::EventBox controls_ebox;
228  Gtk::VBox controls_vbox;
229  Gtk::VBox time_axis_vbox;
230  Gtk::HBox time_axis_hbox;
231  Gtk::Frame time_axis_frame;
232  Gtk::HBox name_hbox;
233  Gtk::HBox top_hbox;
234  Gtk::Label name_label;
237  uint32_t height; /* in canvas units */
240  Gtk::Menu* display_menu; /* The standard LHS Track control popup-menus */
242  ArdourCanvas::Container* selection_group;
243  ArdourCanvas::Container* _ghost_group;
244  std::list<GhostRegion*> ghosts;
245  std::list<SelectionRect*> free_selection_rects;
246  std::list<SelectionRect*> used_selection_rects;
247  bool _hidden;
249  Gtk::Menu* _size_menu;
250  ArdourCanvas::Line* _canvas_separator;
251  ArdourCanvas::Container* _canvas_display;
252  double _y_position;
254 
255  virtual bool can_edit_name() const;
256 
257  bool name_entry_key_release (GdkEventKey *ev);
258  bool name_entry_key_press (GdkEventKey *ev);
259  bool name_entry_focus_out (GdkEventFocus *ev);
260 
261  Gtk::Entry* name_entry;
262  void begin_name_edit ();
263  void end_name_edit (int);
264 
265  /* derived classes can override these */
266 
267  virtual void name_entry_changed ();
268 
273  virtual bool controls_ebox_button_release (GdkEventButton*);
274  virtual bool controls_ebox_scroll (GdkEventScroll*);
275  virtual bool controls_ebox_button_press (GdkEventButton*);
276  virtual bool controls_ebox_motion (GdkEventMotion*);
277  virtual bool controls_ebox_leave (GdkEventCrossing*);
278 
283  virtual void popup_display_menu (guint32 when);
284 
288  virtual void build_display_menu ();
289 
292  virtual bool handle_display_menu_map_event (GdkEventAny * /*ev*/) { return false; }
293 
294  Children children;
295  bool is_child (TimeAxisView*);
296 
299 
300  /* selection display */
301 
302  virtual void selection_click (GdkEventButton*);
303 
304  void color_handler ();
305 
307 
308  void build_size_menu ();
309 
310 private:
311  Gtk::VBox* control_parent;
312  int _order;
316  GdkCursor* _preresize_cursor;
319 
320  static uint32_t button_height;
321  static uint32_t extra_height;
322  static int const _max_order;
323 
324  void compute_heights ();
325  bool maybe_set_cursor (int y);
326 
327 }; /* class TimeAxisView */
328 
329 #endif /* __ardour_gtk_time_axis_h__ */
Gtk::Menu * display_menu
static PBD::Signal1< void, TimeAxisView * > CatchDeletion
double _resize_drag_start
bool _have_preresize_cursor
virtual bool can_edit_name() const
virtual bool paste(ARDOUR::framepos_t pos, const Selection &selection, PasteContext &ctx)
virtual void set_selected_points(PointSelection &)
virtual void selection_click(GdkEventButton *)
virtual bool controls_ebox_button_press(GdkEventButton *)
virtual guint32 show_at(double y, int &nth, Gtk::VBox *parent)
void begin_name_edit()
virtual bool handle_display_menu_map_event(GdkEventAny *)
void remove_ghost(RegionView *)
void conditionally_add_to_selection()
PublicEditor & editor() const
std::pair< TimeAxisView *, double > covers_y_position(double) const
uint32_t effective_height() const
SelectionRect * get_selection_rect(uint32_t id)
TimeAxisView * get_parent()
static void setup_sizes()
LIBARDOUR_API PBD::PropertyDescriptor< layer_t > layer
Definition: region.cc:67
static unsigned int name_width_px
void order_selection_trims(ArdourCanvas::Item *item, bool put_start_on_top)
bool touched(double top, double bot)
virtual void set_height(uint32_t h, TrackHeightMode m=OnlySelf)
Definition: ardour_ui.h:130
virtual void hide_timestretch()
virtual bool controls_ebox_button_release(GdkEventButton *)
bool _ebox_release_can_act
virtual bool controls_ebox_scroll(GdkEventScroll *)
bool name_entry_key_press(GdkEventKey *ev)
Lists of selected things.
Definition: selection.h:66
std::vector< boost::shared_ptr< TimeAxisView > > Children
bool name_entry_focus_out(GdkEventFocus *ev)
Children children
virtual StreamView * view() const
Representation of the interface of the Editor class.
virtual bool controls_ebox_leave(GdkEventCrossing *)
Gtk::Table controls_table
virtual boost::shared_ptr< ARDOUR::Region > find_next_region(framepos_t, ARDOUR::RegionPoint, int32_t)
virtual void step_height(bool)
virtual void exited()
uint32_t _effective_height
LIBARDOUR_API PBD::PropertyDescriptor< framepos_t > start
Definition: region.cc:63
uint32_t current_height() const
virtual void fade_range(TimeSelection &)
Gtk::Frame time_axis_frame
void compute_heights()
bool name_entry_key_release(GdkEventKey *ev)
double y_position() const
Gtk::HBox name_hbox
virtual void name_entry_changed()
virtual void reshow_selection(TimeSelection &)
virtual void popup_display_menu(guint32 when)
virtual void build_display_menu()
virtual void set_selected_regionviews(RegionSelection &)
std::string controls_base_selected_name
ArdourCanvas::Container * _canvas_display
virtual void show_timestretch(framepos_t start, framepos_t end, int layers, int layer)
static int max_order()
static Glib::RefPtr< Gtk::SizeGroup > controls_meters_size_group
void idle_resize(int32_t)
std::list< SelectionRect * > free_selection_rects
ArdourCanvas::Container * _ghost_group
void add_ghost(RegionView *)
Definition: enums.h:35
Gtk::Fixed scroomer_placeholder
virtual void first_idle()
virtual void get_selectables(ARDOUR::framepos_t, ARDOUR::framepos_t, double, double, std::list< Selectable * > &, bool within=false)
ArdourCanvas::Container * canvas_display()
virtual void show_selection(TimeSelection &)
Definition: amp.h:29
bool is_child(TimeAxisView *)
Height
Definition: enums.h:47
Gtk::Menu * _size_menu
void build_size_menu()
virtual ~TimeAxisView()
void set_height_enum(Height, bool apply_to_selection=false)
ArdourCanvas::Container * ghost_group()
bool covered_by_y_range(double y0, double y1) const
int64_t framepos_t
Definition: types.h:66
bool hidden() const
void end_name_edit(int)
static int const _max_order
virtual void get_inverted_selectables(Selection &, std::list< Selectable * > &results)
virtual void cut_copy_clear(Selection &, Editing::CutCopyOp)
CutCopyOp
Definition: editing.h:198
std::list< GhostRegion * > ghosts
TimeAxisView * parent
virtual void reset_visual_state()
void set_parent(TimeAxisView &p)
std::list< SelectionRect * > used_selection_rects
Glib::RefPtr< Gtk::SizeGroup > controls_button_size_group
Gtk::HBox top_hbox
virtual void hide()
ArdourCanvas::Container * selection_group
virtual void set_samples_per_pixel(double)
GdkCursor * _preresize_cursor
void add_child(boost::shared_ptr< TimeAxisView >)
virtual void entered()
Gtk::Entry * name_entry
ArdourCanvas::Line * _canvas_separator
virtual bool controls_ebox_motion(GdkEventMotion *)
Gtk::HBox time_axis_hbox
virtual void hide_selection()
static uint32_t extra_height
virtual LayerDisplay layer_display() const
LayerDisplay
Definition: enums.h:34
void set_selected(bool)
std::string controls_base_unselected_name
TimeAxisView(ARDOUR::Session *sess, PublicEditor &ed, TimeAxisView *parent, ArdourCanvas::Canvas &canvas)
static uint32_t preset_height(Height)
uint32_t height
Gtk::VBox time_axis_vbox
Gtk::VBox * control_parent
PublicEditor & _editor
virtual boost::shared_ptr< ARDOUR::Playlist > playlist() const
virtual ARDOUR::RouteGroup * route_group() const
bool maybe_set_cursor(int y)
Gtk::Label name_label
RegionPoint
Definition: types.h:369
virtual void remove_child(boost::shared_ptr< TimeAxisView >)
int64_t framepos_t
static uint32_t button_height
Gtk::EventBox controls_ebox
double _y_position
static Glib::RefPtr< Gtk::SizeGroup > midi_scroomer_size_group
Gtk::VBox controls_vbox
void erase_ghost(GhostRegion *)
int order() const
Children get_child_list()