mask tweaks, focus follows centroid, gradient/colorpicker rework, no hard edges in...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / cwindowgui.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 CWINDOWGUI_H
23 #define CWINDOWGUI_H
24
25 #include "auto.inc"
26 #include "canvas.h"
27 #include "cpanel.inc"
28 #include "ctimebar.inc"
29 #include "cwindow.inc"
30 #include "cwindowtool.inc"
31 #include "editpanel.h"
32 #include "floatauto.inc"
33 #include "floatautos.inc"
34 #include "guicast.h"
35 #include "language.h"
36 #include "mainclock.inc"
37 #include "maskauto.inc"
38 #include "meterpanel.h"
39 #include "mwindow.inc"
40 #include "playtransport.h"
41 #include "thread.h"
42 #include "track.inc"
43 #include "zoompanel.h"
44
45 class CWindowZoom;
46 class CWindowSlider;
47 class CWindowReset;
48 class CWindowDestination;
49 class CWindowMeters;
50 class CWindowTransport;
51 class CWindowCanvas;
52 class CWindowEditing;
53
54
55 #define AUTO_ZOOM N_("Auto")
56
57 class CWindowGUI : public BC_Window
58 {
59 public:
60         CWindowGUI(MWindow *mwindow, CWindow *cwindow);
61         ~CWindowGUI();
62
63         void create_objects();
64         int resize_event(int w, int h);
65         void zoom_canvas(double value, int update_menu);
66         float get_auto_zoom();
67
68 // Events for the fullscreen canvas fall through to here.
69         int button_press_event();
70         int cursor_leave_event();
71         int cursor_enter_event();
72         int button_release_event();
73         int cursor_motion_event();
74
75         int close_event();
76         int keypress_event();
77         int translation_event();
78         void set_operation(int value);
79         void update_tool();
80         void drag_motion();
81         int drag_stop();
82         void draw_status(int flush);
83 // Zero out pointers to affected auto
84         void reset_affected();
85         void keyboard_zoomin();
86         void keyboard_zoomout();
87         void update_meters();
88         void stop_transport(const char *lock_msg);
89         void sync_parameters(int change_type, int redraw=0, int overlay=0);
90
91         MWindow *mwindow;
92         CWindow *cwindow;
93         const char *auto_zoom;
94         CWindowEditing *edit_panel;
95 //      APanel *automation_panel;
96         CPanel *composite_panel;
97         CWindowZoom *zoom_panel;
98         CWindowReset *reset;
99         CWindowTransport *transport;
100         CWindowCanvas *canvas;
101         CTimeBar *timebar;
102         BC_Pixmap *active;
103         BC_Pixmap *inactive;
104         VFrame *focus_frame;
105 //      MainClock *clock;
106
107
108         CWindowMeters *meters;
109
110
111         CWindowTool *tool_panel;
112
113 // Cursor motion modification being done
114         int current_operation;
115 // The pointers are only used for dragging.  Information for tool windows
116 // must be integers and recalculted for every keypress.
117 // Track being modified in canvas
118         Track *affected_track;
119 // Transformation keyframe being modified
120         FloatAuto *affected_x;
121         FloatAuto *affected_y;
122         FloatAuto *affected_z;
123 // Pointer to mask keyframe being modified in the EDL
124         MaskAuto *mask_keyframe;
125 // Copy of original value of mask keyframe for keyframe spanning
126         MaskAuto *orig_mask_keyframe;
127 // Mask point being modified
128         int affected_point;
129 // Scrollbar offsets during last button press relative to output
130         float x_offset, y_offset;
131 // Cursor location during the last button press relative to output
132 // and offset by scroll bars
133         float x_origin, y_origin;
134 // Crop handle being dragged
135         int crop_handle;
136 // If dragging crop translation
137         int crop_translate;
138 // Origin of crop handle during last button press
139         float crop_origin_x, crop_origin_y;
140 // Origin of all 4 crop points during last button press
141         float crop_origin_x1, crop_origin_y1;
142         float crop_origin_x2, crop_origin_y2;
143 // Center of last eyedrop drawing
144         int eyedrop_x, eyedrop_y;
145         int eyedrop_visible;
146
147         float ruler_origin_x, ruler_origin_y;
148         int ruler_handle;
149         int ruler_translate;
150
151 // Origin for camera and projector operations during last button press
152         float center_x, center_y, center_z;
153         float control_in_x, control_in_y, control_out_x, control_out_y;
154 // Must recalculate the origin when pressing shift.
155 // Switch toggle on and off to recalculate origin.
156         int translating_zoom;
157         int highlighted;
158 };
159
160
161 class CWindowEditing : public EditPanel
162 {
163 public:
164         CWindowEditing(MWindow *mwindow, CWindow *cwindow);
165         virtual ~CWindowEditing() {}
166
167         double get_position();
168         void set_position(double position);
169         void set_click_to_play(int v);
170
171         void panel_stop_transport();
172         void panel_toggle_label();
173         void panel_next_label(int cut);
174         void panel_prev_label(int cut);
175         void panel_prev_edit(int cut);
176         void panel_next_edit(int cut);
177         void panel_copy_selection();
178         void panel_overwrite_selection();
179         void panel_splice_selection();
180         void panel_set_inpoint();
181         void panel_set_outpoint();
182         void panel_unset_inoutpoint();
183         void panel_to_clip();
184         void panel_cut();
185         void panel_paste();
186         void panel_fit_selection();
187         void panel_fit_autos(int all);
188         void panel_set_editing_mode(int mode);
189         void panel_set_auto_keyframes(int v);
190         void panel_set_labels_follow_edits(int v);
191
192         MWindow *mwindow;
193         CWindow *cwindow;
194 };
195
196
197 class CWindowMeters : public MeterPanel
198 {
199 public:
200         CWindowMeters(MWindow *mwindow, CWindowGUI *gui, int x, int y, int h);
201         virtual ~CWindowMeters();
202
203         int change_status_event(int new_status);
204
205         MWindow *mwindow;
206         CWindowGUI *gui;
207 };
208
209 class CWindowZoom : public ZoomPanel
210 {
211 public:
212         CWindowZoom(MWindow *mwindow, CWindowGUI *gui, int x, int y, int w);
213         virtual ~CWindowZoom();
214         int handle_event();
215         void update(double value);
216         MWindow *mwindow;
217         CWindowGUI *gui;
218 };
219
220
221 class CWindowSlider : public BC_PercentageSlider
222 {
223 public:
224         CWindowSlider(MWindow *mwindow, CWindow *cwindow, int x, int y, int pixels);
225         ~CWindowSlider();
226
227         int handle_event();
228         void set_position();
229         int increase_value();
230         int decrease_value();
231
232         MWindow *mwindow;
233         CWindow *cwindow;
234 };
235
236 class CWindowReset : public BC_Button
237 {
238 public:
239         CWindowReset(MWindow *mwindow, CWindowGUI *cwindow, int x, int y);
240         ~CWindowReset();
241         int handle_event();
242         CWindowGUI *cwindow;
243         MWindow *mwindow;
244 };
245
246 // class CWindowDestination : public BC_PopupTextBox
247 // {
248 // public:
249 //      CWindowDestination(MWindow *mwindow, CWindowGUI *cwindow, int x, int y);
250 //      ~CWindowDestination();
251 //      int handle_event();
252 //      CWindowGUI *cwindow;
253 //      MWindow *mwindow;
254 // };
255
256 class CWindowTransport : public PlayTransport
257 {
258 public:
259         CWindowTransport(MWindow *mwindow,
260                 CWindowGUI *gui,
261                 int x,
262                 int y);
263         EDL* get_edl();
264         void goto_start();
265         void goto_end();
266
267         CWindowGUI *gui;
268 };
269
270
271 class CWindowCanvas : public Canvas
272 {
273 public:
274         CWindowCanvas(MWindow *mwindow, CWindowGUI *gui);
275
276         void status_event();
277         void zoom_resize_window(float percentage);
278         void update_zoom(int x, int y, float zoom);
279         int get_xscroll();
280         int get_yscroll();
281         float get_zoom();
282         int do_eyedrop(int &rerender, int button_press, int draw);
283         int do_mask(int &redraw,
284                 int &rerender,
285                 int button_press,
286                 int cursor_motion,
287                 int draw);
288         int do_mask_focus();
289         void draw_refresh(int flash = 1);
290         int need_overlays();
291         void draw_overlays();
292         void draw_safe_regions();
293 // Cursor may have to be drawn
294         int cursor_leave_event();
295         int cursor_enter_event();
296         int cursor_motion_event();
297         int button_press_event();
298         int button_release_event();
299         int test_crop(int button_press, int &redraw);
300         int test_bezier(int button_press,
301                 int &redraw,
302                 int &redraw_canvas,
303                 int &rerender,
304                 int do_camera);
305         int do_ruler(int draw, int motion, int button_press, int button_release);
306         int test_zoom(int &redraw);
307         void create_keyframe(int do_camera);
308         void camera_keyframe();
309         void projector_keyframe();
310         void reset_keyframe(int do_camera);
311         void reset_camera();
312         void reset_projector();
313         void draw_crophandle(int x, int y);
314         void zoom_auto();
315
316 // Draw the camera/projector overlay in different colors.
317         void draw_outlines(int do_camera);
318         void draw_crop();
319         void calculate_origin();
320         void toggle_controls();
321         int get_cwindow_controls();
322
323         MWindow *mwindow;
324         CWindowGUI *gui;
325 };
326
327 #endif