8a3d2b6e864e0ba59cc062d980074fc105a4f26b
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / trackcanvas.h
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008-2014 Adam Williams <broadcast at earthling dot net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #ifndef TRACKCANVAS_H
23 #define TRACKCANVAS_H
24
25 #include "asset.inc"
26 #include "auto.inc"
27 #include "autos.inc"
28 #include "bctimer.inc"
29 #include "edit.inc"
30 #include "edithandles.inc"
31 #include "edl.inc"
32 #include "floatauto.inc"
33 #include "floatautos.inc"
34 #include "intauto.inc"
35 #include "guicast.h"
36 #include "indexable.h"
37 #include "keyframe.inc"
38 #include "mwindow.inc"
39 #include "mwindowgui.inc"
40 #include "plugin.inc"
41 #include "pluginset.inc"
42 #include "plugintoggles.inc"
43 #include "resourcepixmap.inc"
44 #include "timelinepane.inc"
45 #include "track.inc"
46 #include "trackcanvas.inc"
47 #include "tracks.inc"
48 #include "transitionhandles.inc"
49 #include "keyframe.inc"
50
51 #include <stdarg.h>
52
53 class TrackCanvas : public BC_SubWindow
54 {
55 public:
56         TrackCanvas(MWindow *mwindow, MWindowGUI *gui);
57         TrackCanvas(MWindow *mwindow, TimelinePane *pane, int x, int y, int w, int h);
58         ~TrackCanvas();
59
60         void create_objects();
61         void resize_event();
62         int drag_start_event();
63         int cursor_leave_event();
64         int keypress_event();
65         void draw_resources(int mode = 0,
66                 int indexes_only = 0,     // Redraw only certain audio resources with indexes
67                 Indexable *indexable = 0);
68         void draw_highlight_rectangle(int x, int y, int w, int h);
69         void draw_highlight_insertion(int x, int y, int w, int h);
70         void draw_playback_cursor();
71         void draw_highlighting();
72         void draw_keyframe_reticle();
73         int draw_hairline(Auto *auto_keyframe, int color, int show);
74
75 // User can either call draw or draw_overlays to copy a fresh
76 // canvas and just draw the overlays over it
77         void draw_overlays();
78         void update_handles();
79 // Convert edit coords to transition coords
80         void get_transition_coords(Edit *edit,
81                 int64_t &x, int64_t &y, int64_t &w, int64_t &h);
82         void get_handle_coords(Edit *edit,
83                 int64_t &x,
84                 int64_t &y,
85                 int64_t &w,
86                 int64_t &h,
87                 int side);
88         int get_drag_values(float *percentage,
89                 int64_t *position,
90                 int do_clamp,
91                 int cursor_x,
92                 int cursor_y,
93                 Auto *current);
94         void draw_title(Edit *edit,
95                 int64_t edit_x,
96                 int64_t edit_y,
97                 int64_t edit_w,
98                 int64_t edit_h);
99         void draw_automation();
100         void draw_hard_edges();
101         void draw_inout_points();
102         void draw_auto(Auto *current, int x, int y,
103                 int center_pixel, int data_h);
104         void draw_floatauto(FloatAuto *current,
105                 int x_offset, int center_pixel, int data_h, int color,
106                 double unit_start, double zoom_units, double yscale,
107                 int autogrouptype);
108         int test_auto(Auto *current, int x, int y,
109                 int center_pixel, int data_h,
110                 int cursor_x, int cursor_y, int buttonpress);
111         int test_floatauto(FloatAuto *current, int buttonpress,
112                 int center_pixel, int data_h, int cursor_x, int cursor_y,
113                 double unit_start, double zoom_units, double yscale,
114                 int autogrouptype);
115         void draw_floatline(int center_pixel,
116                 FloatAuto *previous,
117                 FloatAuto *current,
118                 FloatAutos *autos,
119                 double unit_start,
120                 double zoom_units,
121                 double yscale,
122                 int ax,
123                 int ay,
124                 int ax2,
125                 int ay2,
126                 int color,
127                 int autogrouptype);
128         int test_floatline(int center_pixel,
129                 FloatAutos *autos,
130                 double unit_start,
131                 double zoom_units,
132                 double yscale,
133                 int x1,
134                 int x2,
135                 int cursor_x,
136                 int cursor_y,
137                 int buttonpress,
138                 int autogrouptype);
139         void draw_toggleline(int center_pixel,
140                 int ax,
141                 int ay,
142                 int ax2,
143                 int ay2);
144         int test_toggleline(Autos *autos,
145                 int center_pixel,
146                 int x1,
147                 int y1,
148                 int x2,
149                 int y2,
150                 int cursor_x,
151                 int cursor_y,
152                 int buttonpress);
153         int do_keyframes(int cursor_x,
154                 int cursor_y,
155                 int draw,
156                 int buttonpress,
157                 int &new_cursor,
158                 int &update_cursor,
159                 int &rerender);
160
161         int do_float_autos(Track *track,
162                 Autos *autos,
163                 int cursor_x,
164                 int cursor_y,
165                 int draw,
166                 int buttonpress,
167                 int x_offset,
168                 int y_offset,
169                 int color,
170                 Auto* &auto_instance,
171                 int autogrouptype);
172         int do_int_autos(Track *track,
173                 Autos *autos,
174                 int cursor_x,
175                 int cursor_y,
176                 int draw,
177                 int buttonpress,
178                 int x_offset,
179                 int y_offset,
180                 int color,
181                 Auto * &auto_instance);
182         int do_autos(Track *track,
183                 Autos *autos,
184                 int cursor_x,
185                 int cursor_y,
186                 int draw,
187                 int buttonpress,
188                 BC_Pixmap *pixmap,
189                 Auto* &auto_instance,
190                 int &rerender);
191         int do_plugin_autos(Track *track,
192                 int cursor_x,
193                 int cursor_y,
194                 int draw,
195                 int buttonpress,
196                 Plugin* &keyframe_plugin,
197                 KeyFrame* &keyframe_instance);
198
199
200         void calculate_viewport(Track *track,
201                 double &view_start,
202                 double &unit_start,
203                 double &view_end,
204                 double &unit_end,
205                 double &yscale,
206                 int &center_pixel,
207                 double &zoom_sample,
208                 double &zoom_units);
209
210 // Convert percentage position inside track to value.
211 // if is_toggle is 1, the result is either 0 or 1.
212 // if reference is nonzero and a FloatAuto,
213 //     the result is made relative to the value in reference.
214         float percentage_to_value(float percentage,
215                 int is_toggle, Auto *reference, int autogrouptype);
216 // Get x and y of a FloatAuto relative to center_pixel
217         void calculate_auto_position(int edge, double *x, double *y,
218                 double *in_x, double *in_y, double *out_x, double *out_y,
219                 Auto *current, double unit_start, double zoom_units,
220                 double yscale, int autogrouptype);
221         void fill_ganged_autos(int gang, float change, Track *skip, FloatAuto *fauto);
222         void update_ganged_autos(float change, Track *skip, FloatAuto *fauto);
223         void clear_ganged_autos();
224
225         void draw_brender_range();
226         void draw_loop_points();
227         void draw_transitions();
228         void draw_drag_handle();
229         void draw_selected_edits(EDL *edl, int dx, int dy, int color0, int color1);
230         void draw_plugins();
231         void refresh_plugintoggles();
232         void update_edit_handles(Edit *edit, int64_t edit_x, int64_t edit_y, int64_t edit_w, int64_t edit_h);
233         void update_transitions();
234         void update_keyframe_handles(Track *track);
235 // Draw everything to synchronize with the view.
236         void draw(int mode, int hide_cursor);
237 // Draw resources during index building
238         void draw_indexes(Indexable *indexable);
239 // Get location of edit on screen without boundary checking
240         void edit_dimensions(Edit *edit, int64_t &x, int64_t &y, int64_t &w, int64_t &h);
241         void track_dimensions(Track *track, int64_t &x, int64_t &y, int64_t &w, int64_t &h);
242         void plugin_dimensions(Plugin *plugin, int64_t &x, int64_t &y, int64_t &w, int64_t &h);
243         void get_pixmap_size(Edit *edit, int64_t edit_x, int64_t edit_w, int64_t &pixmap_x, int64_t &pixmap_w, int64_t &pixmap_h);
244         ResourcePixmap* create_pixmap(Edit *edit, int64_t edit_x, int64_t pixmap_x, int64_t pixmap_w, int64_t pixmap_h);
245         void update_cursor(int flush);
246         void draw_selected(int x, int y, int w, int h);
247         int arrow_mode();
248         int ibeam_mode();
249
250 // Get edit and handle the cursor is over
251         int do_edit_handles(int cursor_x,
252                 int cursor_y,
253                 int button_press,
254                 int &rerender,
255                 int &update_overlay,
256                 int &new_cursor,
257                 int &update_cursor);
258 // Get plugin and handle the cursor if over
259         int do_plugin_handles(int cursor_x,
260                 int cursor_y,
261                 int button_press,
262                 int &rerender,
263                 int &update_overlay,
264                 int &new_cursor,
265                 int &update_cursor);
266 // Get edit the cursor is over
267         int do_edits(int cursor_x,
268                 int cursor_y,
269                 int button_press,
270                 int drag_start,
271                 int &redraw,
272                 int &rerender,
273                 int &new_cursor,
274                 int &update_cursor);
275         int do_tracks(int cursor_x,
276                 int cursor_y,
277                 int button_press);
278         int test_track_group(EDL *group, Track *first_track, double &pos);
279         int edit_intersects(Track *track, Edit *src_edit, double &pos);
280         int test_resources(int cursor_x, int cursor_y);
281         int do_plugins(int cursor_x,
282                 int cursor_y,
283                 int drag_start,
284                 int button_press,
285                 int &redraw,
286                 int &rerender);
287         int do_transitions(int cursor_x,
288                 int cursor_y,
289                 int button_press,
290                 int &new_cursor,
291                 int &update_cursor);
292         void draw_cropped_line(int x1,
293                 int y1,
294                 int x2,
295                 int y2,
296                 int min_y,
297                 int max_y);
298         int button_press_event();
299         int button_release_event();
300         int cursor_update(int in_motion);
301         int cursor_motion_event();
302         int activate();
303         int deactivate();
304         int repeat_event(int64_t duration);
305         void start_dragscroll();
306         void stop_dragscroll();
307         int start_selection(double position);
308         int drag_motion_event();
309         int drag_stop_event();
310         int drag_motion(Track **over_track, Edit **over_edit,
311                 PluginSet **over_pluginset, Plugin **over_plugin);
312         int drag_cursor_motion(int cursor_x, int cursor_y,
313                 Track **over_track, Edit **over_edit,
314                 PluginSet **over_pluginset, Plugin **over_plugin);
315         int drag_stop(int *redraw);
316         int64_t drop_edit_position (int *is_insertion, Edit *moved_edit, int64_t moved_edit_length);
317         int64_t drop_plugin_position(PluginSet *plugin_set, Plugin *moved_plugin);
318         void end_edithandle_selection();
319         void end_pluginhandle_selection();
320 // Number of seconds spanned by the trackcanvas
321         double time_visible();
322         void update_drag_handle();
323         int update_drag_edit();
324         int render_handle_frame(EDL *edl, int64_t pos, int mode);
325         int update_drag_floatauto(int cursor_x, int cursor_y);
326         int update_drag_toggleauto(int cursor_x, int cursor_y);
327         int update_drag_auto(int cursor_x, int cursor_y);
328         int update_drag_pluginauto(int cursor_x, int cursor_y);
329         void show_message(Auto *current, int box_color, const char *fmt, ...);
330
331 // Update status bar to reflect drag operation
332         void update_drag_caption();
333
334         int get_title_h();
335
336 // Display hourglass if timer expired
337         void test_timer();
338 // get the relevant patchbay by traversing the panes
339 //      Patchbay* get_patchbay();
340
341         MWindow *mwindow;
342         MWindowGUI *gui;
343         TimelinePane *pane;
344 // Allows overlays to get redrawn without redrawing the resources
345         BC_Pixmap *background_pixmap;
346         BC_Pixmap *transition_pixmap;
347         EditHandles *edit_handles;
348 //      TransitionHandles *transition_handles;
349         BC_Pixmap *keyframe_pixmap;
350         BC_Pixmap *camerakeyframe_pixmap;
351         BC_Pixmap *modekeyframe_pixmap;
352         BC_Pixmap *pankeyframe_pixmap;
353         BC_Pixmap *projectorkeyframe_pixmap;
354         BC_Pixmap *maskkeyframe_pixmap;
355
356         int active;
357 // Currently in a drag scroll operation
358         int drag_scroll;
359 // Don't stop hourglass if it was never started before the operation.
360         int hourglass_enabled;
361 // position used by timebar, when the timebar needs to draw a highlight
362         double timebar_position;
363
364 // Temporary for picon drawing
365         VFrame *temp_picon;
366 // Timer for hourglass
367         Timer *resource_timer;
368         Timer *render_timer;
369
370 // Plugin toggle interfaces
371         ArrayList<PluginOn*> plugin_on_toggles;
372         ArrayList<PluginShow*> plugin_show_toggles;
373         ArrayList<PluginPresetEdit*> preset_edit_buttons;
374
375         static int auto_operations[];
376 // event handlers
377         void draw_paste_destination();
378
379         void draw_floatauto_ctrlpoint(int x, int y, int cp_x, int cp_y,
380                 int center_pixel, int zoom_track, int color);
381
382         float value_to_percentage(float auto_value, int autogrouptype);
383         // transforms automation value into current display coords
384         // dependant on current automation display range for given kind of automation
385
386 // ====================================== cursor selection type
387
388         double selection_midpoint;        // division between current ends
389         int snapped;                    // drag handle snapping
390         EDL *speed_edl;                 // drag speed handle start edl
391 };
392
393 #endif