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