fix segv for plugin render_gui when plugin moved up/dn, opencv build fixes, opts...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / canvas.h
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 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 CANVAS_H
23 #define CANVAS_H
24
25 #include "canvas.inc"
26 #include "edl.inc"
27 #include "guicast.h"
28 #include "mwindow.inc"
29 #include "videodevice.inc"
30 // Output for all X11 video
31
32 // The EDL arguments can be set to 0 if the canvas_w and canvas_h are used
33 class Canvas
34 {
35 public:
36         Canvas(MWindow *mwindow, BC_WindowBase *subwindow,
37                 int x, int y, int w, int h,
38                 int output_w, int output_h,
39                 int use_scrollbars);
40         virtual ~Canvas();
41
42         void reset();
43 // Get dimensions given a zoom
44         void calculate_sizes(float aspect_ratio,
45                 int output_w, int output_h, float zoom,
46                 int &w, int &h);
47 // Lock canvas pointer and window
48         BC_WindowBase *lock_canvas(const char *loc);
49         void unlock_canvas();
50
51         void create_objects(EDL *edl);
52         void set_cursor(int cursor);
53 // Start video playback
54         void start_video();
55         void stop_video();
56
57 // Start single frame processing.  Causes the status indicator to update
58         void start_single();
59         void stop_single();
60
61         void start_fullscreen();
62         void stop_fullscreen();
63
64 // Don't call from inside the canvas
65         void create_canvas();
66
67
68
69 // Processing or video playback changed.
70         virtual void status_event() {};
71
72
73         virtual void reset_camera() {}
74         virtual void reset_projector() {}
75         virtual void camera_keyframe() {}
76         virtual void projector_keyframe() {}
77         virtual void zoom_resize_window(float percentage) {}
78         virtual void zoom_auto() {}
79         virtual int cursor_leave_event() { return 0; }
80         virtual int cursor_enter_event() { return 0; }
81         virtual int button_release_event() { return 0; }
82         virtual int button_press_event();
83         virtual int cursor_motion_event() { return 0; }
84         virtual int need_overlays() { return 1; }
85         virtual void draw_overlays() {}
86         virtual void toggle_controls() {}
87         virtual int get_cwindow_controls() { return 0; }
88         virtual int get_fullscreen();
89         virtual int get_clear_color() { return 0; }
90         virtual void set_fullscreen(int value);
91
92         int cursor_leave_event_base(BC_WindowBase *caller);
93         int cursor_enter_event_base(BC_WindowBase *caller);
94         int button_press_event_base(BC_WindowBase *caller);
95         int keypress_event(BC_WindowBase *caller);
96 // Use menu different options for different windows
97         void use_cwindow();
98         void use_rwindow();
99         void use_vwindow();
100         void use_auxwindow(BC_WindowBase *aux);
101
102 // Provide canvas dimensions since a BC_Bitmap containing obsolete dimensions
103 // is often the output being transferred to.
104 // This gets the input coordinates on the device output_frame
105 // and the corresponding output coordinates on the canvas.
106 // Must be floating point to support OpenGL.
107         void get_transfers(EDL *edl,
108                 float &output_x1,
109                 float &output_y1,
110                 float &output_x2,
111                 float &output_y2,
112                 float &canvas_x1,
113                 float &canvas_y1,
114                 float &canvas_x2,
115                 float &canvas_y2,
116 // passing -1 causes automatic size detection
117                 int canvas_w = -1,
118                 int canvas_h = -1);
119         void update_geometry(EDL *edl, int x, int y, int w, int h);
120         void reposition_window(EDL *edl, int x, int y, int w, int h);
121         virtual void reset_translation() {};
122         virtual void close_source() {};
123 // Updates the stores
124         virtual void update_zoom(int x, int y, float zoom) {};
125         void check_boundaries(EDL *edl, int &x, int &y, float &zoom);
126         void update_scrollbars(int flush);
127 // Get scrollbar positions relative to output.
128 // No correction is done if output is smaller than canvas
129         virtual int get_xscroll() { return 0; };
130         virtual int get_yscroll() { return 0; };
131         virtual float get_zoom() { return 0; };
132 // Updates the refresh_frame
133         void update_refresh(VideoDevice *device, VFrame *output_frame);
134 // Redraws the refresh_frame
135         virtual void draw_refresh(int flush = 1) {};
136         virtual void clear(int flash=1);
137
138 // Get top left offset of canvas relative to output.
139 // Normally negative.  Can be positive if output is smaller than canvas.
140         float get_x_offset(EDL *edl,
141                 int single_channel,
142                 float zoom_x,
143                 float conformed_w,
144                 float conformed_h);
145         float get_y_offset(EDL *edl,
146                 int single_channel,
147                 float zoom_y,
148                 float conformed_w,
149                 float conformed_h);
150         void get_zooms(EDL *edl,
151                 int single_channel,
152                 float &zoom_x,
153                 float &zoom_y,
154                 float &conformed_w,
155                 float &conformed_h);
156
157
158 // Convert coord from output to canvas position, including
159 // x and y scroll offsets
160         void output_to_canvas(EDL *edl, int single_channel, float &x, float &y);
161 // Convert coord from canvas to output position
162         void canvas_to_output(EDL *edl, int single_channel, float &x, float &y);
163
164 // Get dimensions of frame being sent to canvas
165         virtual int get_output_w(EDL *edl);
166         virtual int get_output_h(EDL *edl);
167 // Get if scrollbars exist
168         int scrollbars_exist();
169 // Get cursor locations relative to canvas and not offset by scrollbars
170         int get_cursor_x();
171         int get_cursor_y();
172         int get_buttonpress();
173 // Gets whatever video surface is enabled
174         BC_WindowBase* get_canvas();
175 // draw_refresh, with/without locks
176         int refresh(int flush);
177         int redraw(int flush);
178
179 // The owner of the canvas
180         BC_WindowBase *subwindow;
181 // Video surface if a subwindow
182         CanvasOutput *canvas_subwindow;
183 // Video surface if fullscreen
184         CanvasFullScreen *canvas_fullscreen;
185         CanvasXScroll *xscroll;
186         CanvasYScroll *yscroll;
187         CanvasPopup *canvas_menu;
188         CanvasFullScreenPopup *fullscreen_menu;
189         int x, y, w, h;
190         int use_scrollbars;
191         BC_WindowBase *canvas_auxwindow;
192 // Used in record monitor
193         int output_w, output_h;
194 // Last frame played is stored here in driver format for
195 // refreshes.
196         VFrame *refresh_frame;
197 // Results from last get_scrollbars
198         int w_needed;
199         int h_needed;
200         int w_visible;
201         int h_visible;
202 // For cases where video is not enabled on the canvas but processing is
203 // occurring for a single frame, this causes the status to update.
204         int is_processing;
205         int is_fullscreen;
206 // Cursor is inside video surface
207         int cursor_inside;
208         int view_x;
209         int view_y;
210         int view_w;
211         int view_h;
212         int scr_w0;
213         int root_w, root_h;
214
215         MWindow *mwindow;
216
217 private:
218         void get_scrollbars(EDL *edl,
219                 int &canvas_x, int &canvas_y, int &canvas_w, int &canvas_h);
220 // Lock access to the canvas pointer.
221         Condition *canvas_lock;
222 };
223
224
225 class CanvasOutput : public BC_SubWindow
226 {
227 public:
228         CanvasOutput(Canvas *canvas,
229                 int x, int y, int w, int h);
230         ~CanvasOutput();
231
232         int cursor_leave_event();
233         int cursor_enter_event();
234         int button_press_event();
235         int button_release_event();
236         int cursor_motion_event();
237         int keypress_event();
238
239         Canvas *canvas;
240 };
241
242
243
244
245 class CanvasFullScreen : public BC_FullScreen
246 {
247 public:
248         CanvasFullScreen(Canvas *canvas, int w, int h);
249         ~CanvasFullScreen();
250
251         Canvas *canvas;
252 };
253
254
255
256
257 class CanvasXScroll : public BC_ScrollBar
258 {
259 public:
260         CanvasXScroll(EDL *edl,
261                 Canvas *canvas,
262                 int x,
263                 int y,
264                 int length,
265                 int position,
266                 int handle_length,
267                 int pixels);
268         ~CanvasXScroll();
269
270         int handle_event();
271         Canvas *canvas;
272         EDL *edl;
273 };
274
275 class CanvasYScroll : public BC_ScrollBar
276 {
277 public:
278         CanvasYScroll(EDL *edl,
279                 Canvas *canvas,
280                 int x,
281                 int y,
282                 int length,
283                 int position,
284                 int handle_length,
285                 int pixels);
286         ~CanvasYScroll();
287
288         int handle_event();
289
290         Canvas *canvas;
291         EDL *edl;
292 };
293
294 class CanvasFullScreenPopup : public BC_PopupMenu
295 {
296 public:
297         CanvasFullScreenPopup(Canvas *canvas);
298
299         void create_objects();
300         void use_cwindow();
301
302         Canvas *canvas;
303 };
304
305 class CanvasSubWindowItem : public BC_MenuItem
306 {
307 public:
308         CanvasSubWindowItem(Canvas *canvas);
309         int handle_event();
310         Canvas *canvas;
311 };
312
313 class CanvasPopup : public BC_PopupMenu
314 {
315 public:
316         CanvasPopup(Canvas *canvas);
317         ~CanvasPopup();
318
319         void create_objects();
320         void use_cwindow();
321         void use_rwindow();
322         void use_vwindow();
323
324         Canvas *canvas;
325         CanvasToggleControls *toggle_controls;
326 };
327
328 class CanvasZoomSize : public BC_MenuItem
329 {
330 public:
331         CanvasZoomSize(Canvas *canvas);
332
333         Canvas *canvas;
334 };
335
336 class CanvasSizeSubMenu : public BC_SubMenu
337 {
338 public:
339         CanvasSizeSubMenu(CanvasZoomSize *zoom_size);
340
341         CanvasZoomSize *zoom_size;
342 };
343
344 class CanvasPopupSize : public BC_MenuItem
345 {
346 public:
347         CanvasPopupSize(Canvas *canvas, char *text, float percentage);
348         ~CanvasPopupSize();
349         int handle_event();
350         Canvas *canvas;
351         float percentage;
352 };
353
354 class CanvasPopupAuto : public BC_MenuItem
355 {
356 public:
357         CanvasPopupAuto(Canvas *canvas);
358         int handle_event();
359         Canvas *canvas;
360 };
361
362 class CanvasPopupResetCamera : public BC_MenuItem
363 {
364 public:
365         CanvasPopupResetCamera(Canvas *canvas);
366         int handle_event();
367         Canvas *canvas;
368 };
369
370 class CanvasPopupResetProjector : public BC_MenuItem
371 {
372 public:
373         CanvasPopupResetProjector(Canvas *canvas);
374         int handle_event();
375         Canvas *canvas;
376 };
377
378 class CanvasPopupCameraKeyframe : public BC_MenuItem
379 {
380 public:
381         CanvasPopupCameraKeyframe(Canvas *canvas);
382         int handle_event();
383         Canvas *canvas;
384 };
385
386 class CanvasPopupProjectorKeyframe : public BC_MenuItem
387 {
388 public:
389         CanvasPopupProjectorKeyframe(Canvas *canvas);
390         int handle_event();
391         Canvas *canvas;
392 };
393
394 class CanvasToggleControls : public BC_MenuItem
395 {
396 public:
397         CanvasToggleControls(Canvas *canvas);
398         int handle_event();
399         static char* calculate_text(int cwindow_controls);
400         Canvas *canvas;
401 };
402
403 class CanvasFullScreenItem : public BC_MenuItem
404 {
405 public:
406         CanvasFullScreenItem(Canvas *canvas);
407         int handle_event();
408         Canvas *canvas;
409 };
410
411 class CanvasPopupResetTranslation : public BC_MenuItem
412 {
413 public:
414         CanvasPopupResetTranslation(Canvas *canvas);
415         int handle_event();
416         Canvas *canvas;
417 };
418
419
420 class CanvasPopupRemoveSource : public BC_MenuItem
421 {
422 public:
423         CanvasPopupRemoveSource(Canvas *canvas);
424         int handle_event();
425         Canvas *canvas;
426 };
427
428
429
430
431
432 #endif