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