fix user color file 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/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/presentation_info.h"
43 #include "ardour/region.h"
44
45 #include "evoral/Parameter.hpp"
46
47 #include "canvas/line.h"
48
49 #include "prompter.h"
50 #include "axis_view.h"
51 #include "enums.h"
52 #include "editing.h"
53
54 namespace ARDOUR {
55         class Session;
56         class Region;
57         class Session;
58         class RouteGroup;
59         class Playlist;
60         class Stripable;
61 }
62
63 namespace Gtk {
64         class Menu;
65 }
66
67 namespace ArdourCanvas {
68         class Canvas;
69         class Container;
70         class Item;
71 }
72
73 class PublicEditor;
74 class RegionSelection;
75 class TimeSelection;
76 class PointSelection;
77 class TimeAxisViewItem;
78 class Selection;
79 class Selectable;
80 class RegionView;
81 class GhostRegion;
82 class StreamView;
83 class ArdourDialog;
84 class ItemCounts;
85 class PasteContext;
86
87 /** Abstract base class for time-axis views (horizontal editor 'strips')
88  *
89  * This class provides the basic LHS controls and display methods. This should be
90  * extended to create functional time-axis based views.
91  */
92 class TimeAxisView : public virtual AxisView
93 {
94         private:
95         enum NamePackingBits {
96                 NameLabelPacked = 0x1,
97                 NameEntryPacked = 0x2
98         };
99
100         public:
101         TimeAxisView(ARDOUR::Session* sess, PublicEditor& ed, TimeAxisView* parent, ArdourCanvas::Canvas& canvas);
102         virtual ~TimeAxisView ();
103
104         static PBD::Signal1<void,TimeAxisView*> CatchDeletion;
105
106         static void setup_sizes ();
107
108         virtual boost::shared_ptr<ARDOUR::Stripable> stripable() const = 0;
109         virtual ARDOUR::PresentationInfo const & presentation_info () const = 0;
110
111         /** @return index of this TimeAxisView within its parent */
112         int order () const { return _order; }
113
114         /** @return maximum allowable value of order */
115         static int max_order () { return _max_order; }
116
117         ArdourCanvas::Container* canvas_display () { return _canvas_display; }
118         ArdourCanvas::Container* ghost_group () { return _ghost_group; }
119
120         /** @return effective height (taking children into account) in canvas units, or
121                 0 if this TimeAxisView has not yet been shown */
122         uint32_t effective_height () const { return _effective_height; }
123
124         /** @return y position, or -1 if hidden */
125         double y_position () const { return _y_position; }
126
127         /** @return our Editor */
128         PublicEditor& editor () const { return _editor; }
129
130         uint32_t current_height() const { return height; }
131
132         void idle_resize (int32_t);
133
134         virtual guint32 show_at (double y, int& nth, Gtk::VBox *parent);
135         virtual void hide ();
136
137         bool touched (double top, double bot);
138
139         /** @return true if hidden, otherwise false */
140         bool hidden () const { return _hidden; }
141
142         virtual bool selectable() const { return true; }
143
144         /**
145          * potential handler for entered events
146          */
147
148         virtual void entered () {}
149         virtual void exited () {}
150
151         enum TrackHeightMode {
152                 OnlySelf,
153                 TotalHeight,
154                 HeightPerLane
155         };
156
157         virtual void set_height (uint32_t h, TrackHeightMode m = OnlySelf);
158         void set_height_enum (Height, bool apply_to_selection = false);
159         void reset_height();
160
161         virtual void reset_visual_state ();
162
163         std::pair<TimeAxisView*, double> covers_y_position (double) const;
164         bool covered_by_y_range (double y0, double y1) const;
165
166         virtual void step_height (bool);
167
168         virtual ARDOUR::RouteGroup* route_group() const { return 0; }
169         virtual boost::shared_ptr<ARDOUR::Playlist> playlist() const { return boost::shared_ptr<ARDOUR::Playlist> (); }
170
171         virtual void set_samples_per_pixel (double);
172         virtual void show_selection (TimeSelection&);
173         virtual void hide_selection ();
174         virtual void reshow_selection (TimeSelection&);
175         virtual void show_timestretch (framepos_t start, framepos_t end, int layers, int layer);
176         virtual void hide_timestretch ();
177
178         /* editing operations */
179
180         virtual void cut_copy_clear (Selection&, Editing::CutCopyOp) {}
181
182         /** Paste a selection.
183          *  @param pos Position to paste to (session frames).
184          *  @param selection Selection to paste.
185          *  @param ctx Paste context.
186          */
187         virtual bool paste (ARDOUR::framepos_t pos,
188                             const Selection&   selection,
189                             PasteContext&      ctx) { return false; }
190
191         virtual void set_selected_regionviews (RegionSelection&) {}
192         virtual void set_selected_points (PointSelection&) {}
193
194         virtual void fade_range (TimeSelection&) {}
195
196         virtual boost::shared_ptr<ARDOUR::Region> find_next_region (framepos_t /*pos*/, ARDOUR::RegionPoint, int32_t /*dir*/) {
197                 return boost::shared_ptr<ARDOUR::Region> ();
198         }
199
200         void order_selection_trims (ArdourCanvas::Item *item, bool put_start_on_top);
201
202         virtual void get_selectables (ARDOUR::framepos_t, ARDOUR::framepos_t, double, double, std::list<Selectable*>&, bool within = false);
203         virtual void get_inverted_selectables (Selection&, std::list<Selectable *>& results);
204
205         void add_ghost (RegionView*);
206         void remove_ghost (RegionView*);
207         void erase_ghost (GhostRegion*);
208
209         /** called at load time when first GUI idle occurs. put
210             expensive data loading/redisplay code in here. */
211         virtual void first_idle () {}
212
213         TimeAxisView* get_parent () { return parent; }
214         void set_parent (TimeAxisView& p);
215
216         virtual LayerDisplay layer_display () const { return Overlaid; }
217         virtual StreamView* view () const { return 0; }
218
219         typedef std::vector<boost::shared_ptr<TimeAxisView> > Children;
220         Children get_child_list ();
221
222         SelectionRect* get_selection_rect(uint32_t id);
223
224         static uint32_t preset_height (Height);
225
226         protected:
227         static Glib::RefPtr<Gtk::SizeGroup> controls_meters_size_group;
228         static Glib::RefPtr<Gtk::SizeGroup> midi_scroomer_size_group;
229         static unsigned int name_width_px;
230         /* The Standard LHS Controls */
231         Gtk::Table             controls_table;
232         Glib::RefPtr<Gtk::SizeGroup> controls_button_size_group;
233         Gtk::EventBox          controls_ebox;
234         Gtk::VBox              controls_vbox;
235         Gtk::VBox              time_axis_vbox;
236         Gtk::HBox              time_axis_hbox;
237         Gtk::Frame             time_axis_frame;
238         Gtk::HBox              top_hbox;
239         Gtk::Fixed             scroomer_placeholder;
240         bool                  _name_editing;
241         uint32_t               height;  /* in canvas units */
242         std::string            controls_base_unselected_name;
243         std::string            controls_base_selected_name;
244         Gtk::Menu*             display_menu; /* The standard LHS Track control popup-menus */
245         TimeAxisView*          parent;
246         ArdourCanvas::Container*   selection_group;
247         ArdourCanvas::Container*  _ghost_group;
248         std::list<GhostRegion*> ghosts;
249         std::list<SelectionRect*> free_selection_rects;
250         std::list<SelectionRect*> used_selection_rects;
251         bool                  _hidden;
252         bool                   in_destructor;
253         Gtk::Menu*            _size_menu;
254         ArdourCanvas::Line*       _canvas_separator;
255         ArdourCanvas::Container*  _canvas_display;
256         double                _y_position;
257         PublicEditor&         _editor;
258
259         virtual bool can_edit_name() const;
260
261         void begin_name_edit ();
262         void end_name_edit (std::string, int);
263
264         /* derived classes can override these */
265
266         virtual bool name_entry_changed (std::string const&);
267
268         /** Handle mouse relaese on our LHS control name ebox.
269          *
270          *@ param ev the event
271          */
272         virtual bool controls_ebox_button_release (GdkEventButton*);
273         virtual bool controls_ebox_scroll (GdkEventScroll*);
274         virtual bool controls_ebox_button_press (GdkEventButton*);
275         virtual bool controls_ebox_motion (GdkEventMotion*);
276         virtual bool controls_ebox_leave (GdkEventCrossing*);
277
278         /** Display the standard LHS control menu at when.
279          *
280          * @param when the popup activation time
281          */
282         virtual void popup_display_menu (guint32 when);
283
284         /** Build the standard LHS control menu.
285          * Subclasses should extend this method to add their own menu options.
286          */
287         virtual void build_display_menu ();
288
289         /** Do whatever needs to be done to dynamically reset the LHS control menu.
290          */
291         virtual bool handle_display_menu_map_event (GdkEventAny * /*ev*/) { return false; }
292
293         Children children;
294         bool is_child (TimeAxisView*);
295
296         virtual void remove_child (boost::shared_ptr<TimeAxisView>);
297         void add_child (boost::shared_ptr<TimeAxisView>);
298
299         /* selection display */
300
301         virtual void selection_click (GdkEventButton*);
302
303         void color_handler ();
304
305         void conditionally_add_to_selection ();
306
307         void build_size_menu ();
308
309   protected:
310         void show_selected ();
311
312   private:
313         Gtk::VBox*            control_parent;
314         int                  _order;
315         uint32_t             _effective_height;
316         double               _resize_drag_start;
317         bool                 _did_resize;
318         GdkCursor*           _preresize_cursor;
319         bool                 _have_preresize_cursor;
320         bool                 _ebox_release_can_act;
321
322         static uint32_t button_height;
323         static uint32_t extra_height;
324         static int const _max_order;
325
326         void compute_heights ();
327         bool maybe_set_cursor (int y);
328
329 }; /* class TimeAxisView */
330
331 #endif /* __ardour_gtk_time_axis_h__ */