f90a387815add0beaf2a066a44ae59f8059f5d78
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / gwindowgui.C
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 #include "autoconf.h"
23 #include "bchash.h"
24 #include "bcsignals.h"
25 #include "clip.h"
26 #include "condition.h"
27 #include "edl.h"
28 #include "edlsession.h"
29 #include "gwindowgui.h"
30 #include "keys.h"
31 #include "language.h"
32 #include "localsession.h"
33 #include "mainmenu.h"
34 #include "mainsession.h"
35 #include "mwindow.h"
36 #include "mwindowgui.h"
37 #include "theme.h"
38 #include "tracks.h"
39 #include "trackcanvas.h"
40 #include "zoombar.h"
41
42 #include <math.h>
43
44
45
46 GWindowGUI::GWindowGUI(MWindow *mwindow, int w, int h)
47  : BC_Window(_(PROGRAM_NAME ": Overlays"),
48         mwindow->session->gwindow_x, mwindow->session->gwindow_y,
49         w, h, w, h, 0, 0, 1)
50 {
51         this->mwindow = mwindow;
52         camera_xyz = 0;
53         projector_xyz = 0;
54 }
55
56 GWindowGUI::~GWindowGUI()
57 {
58 }
59
60 const char *GWindowGUI::non_auto_text[NON_AUTOMATION_TOTAL] =
61 {
62         N_("Assets"),
63         N_("Titles"),
64         N_("Transitions"),
65         N_("Plugin Keyframes"),
66         N_("Hard Edges"),
67 };
68
69 const char *GWindowGUI::auto_text[AUTOMATION_TOTAL] =
70 {
71         N_("Mute"),
72         N_("Camera X"),
73         N_("Camera Y"),
74         N_("Camera Z"),
75         N_("Projector X"),
76         N_("Projector Y"),
77         N_("Projector Z"),
78         N_("Fade"),
79         N_("Pan"),
80         N_("Mode"),
81         N_("Mask"),
82         N_("Speed")
83 };
84
85 int GWindowGUI::auto_colors[AUTOMATION_TOTAL] =
86 {
87         PINK,
88         RED,
89         GREEN,
90         BLUE,
91         LTPINK,
92         LTGREEN,
93         LTBLUE,
94         LTPURPLE,
95         0,
96         0,
97         0,
98         ORANGE,
99 };
100
101 void GWindowGUI::load_defaults()
102 {
103         BC_Hash *defaults = mwindow->defaults;
104         auto_colors[AUTOMATION_MUTE] = defaults->get("AUTO_COLOR_MUTE", auto_colors[AUTOMATION_MUTE]);
105         auto_colors[AUTOMATION_CAMERA_X] = defaults->get("AUTO_COLOR_CAMERA_X", auto_colors[AUTOMATION_CAMERA_X]);
106         auto_colors[AUTOMATION_CAMERA_Y] = defaults->get("AUTO_COLOR_CAMERA_Y", auto_colors[AUTOMATION_CAMERA_Y]);
107         auto_colors[AUTOMATION_CAMERA_Z] = defaults->get("AUTO_COLOR_CAMERA_Z", auto_colors[AUTOMATION_CAMERA_Z]);
108         auto_colors[AUTOMATION_PROJECTOR_X] = defaults->get("AUTO_COLOR_PROJECTOR_X", auto_colors[AUTOMATION_PROJECTOR_X]);
109         auto_colors[AUTOMATION_PROJECTOR_Y] = defaults->get("AUTO_COLOR_PROJECTOR_Y", auto_colors[AUTOMATION_PROJECTOR_Y]);
110         auto_colors[AUTOMATION_PROJECTOR_Z] = defaults->get("AUTO_COLOR_PROJECTOR_Z", auto_colors[AUTOMATION_PROJECTOR_Z]);
111         auto_colors[AUTOMATION_FADE] = defaults->get("AUTO_COLOR_FADE", auto_colors[AUTOMATION_FADE]);
112         auto_colors[AUTOMATION_SPEED] = defaults->get("AUTO_COLOR_SPEED", auto_colors[AUTOMATION_SPEED]);
113 }
114
115 void GWindowGUI::save_defaults()
116 {
117         BC_Hash *defaults = mwindow->defaults;
118         defaults->update("AUTO_COLOR_MUTE", auto_colors[AUTOMATION_MUTE]);
119         defaults->update("AUTO_COLOR_CAMERA_X", auto_colors[AUTOMATION_CAMERA_X]);
120         defaults->update("AUTO_COLOR_CAMERA_Y", auto_colors[AUTOMATION_CAMERA_Y]);
121         defaults->update("AUTO_COLOR_CAMERA_Z", auto_colors[AUTOMATION_CAMERA_Z]);
122         defaults->update("AUTO_COLOR_PROJECTOR_X", auto_colors[AUTOMATION_PROJECTOR_X]);
123         defaults->update("AUTO_COLOR_PROJECTOR_Y", auto_colors[AUTOMATION_PROJECTOR_Y]);
124         defaults->update("AUTO_COLOR_PROJECTOR_Z", auto_colors[AUTOMATION_PROJECTOR_Z]);
125         defaults->update("AUTO_COLOR_FADE", auto_colors[AUTOMATION_FADE]);
126         defaults->update("AUTO_COLOR_SPEED", auto_colors[AUTOMATION_SPEED]);
127 }
128
129 static toggleinfo toggle_order[] =
130 {
131         {0, NON_AUTOMATION_ASSETS},
132         {0, NON_AUTOMATION_TITLES},
133         {0, NON_AUTOMATION_TRANSITIONS},
134         {0, NON_AUTOMATION_PLUGIN_AUTOS},
135         {0, -1}, // bar
136         {1, AUTOMATION_FADE},
137         {1, AUTOMATION_MUTE},
138         {1, AUTOMATION_SPEED},
139         {1, AUTOMATION_MODE},
140         {1, AUTOMATION_PAN},
141         {1, AUTOMATION_MASK},
142         {-1, NON_AUTOMATION_HARD_EDGES},
143         {0, -1}, // bar
144         {1, AUTOMATION_CAMERA_X},
145         {1, AUTOMATION_CAMERA_Y},
146         {1, AUTOMATION_CAMERA_Z},
147         {-1, NONAUTOTOGGLES_CAMERA_XYZ},
148         {0, -1}, // bar
149         {1, AUTOMATION_PROJECTOR_X},
150         {1, AUTOMATION_PROJECTOR_Y},
151         {1, AUTOMATION_PROJECTOR_Z},
152         {-1, NONAUTOTOGGLES_PROJECTOR_XYZ},
153 };
154
155 const char *GWindowGUI::toggle_text(toggleinfo *tp)
156 {
157         if( tp->isauto > 0 ) return _(auto_text[tp->ref]);
158         if( !tp->isauto ) return _(non_auto_text[tp->ref]);
159         switch( tp->ref ) {
160         case NONAUTOTOGGLES_CAMERA_XYZ:
161         case NONAUTOTOGGLES_PROJECTOR_XYZ:
162                 return _("XYZ");
163         case NON_AUTOMATION_HARD_EDGES:
164                 return _("Hard Edges");
165         }
166         return "()";
167 }
168
169 void GWindowGUI::calculate_extents(BC_WindowBase *gui, int *w, int *h)
170 {
171         int temp1, temp2, temp3, temp4, temp5, temp6, temp7;
172         int current_w, current_h;
173         *w = 10;
174         *h = 10;
175
176         for( int i=0; i<(int)(sizeof(toggle_order)/sizeof(toggle_order[0])); ++i ) {
177                 toggleinfo *tp = &toggle_order[i];
178                 int ref = tp->ref;
179                 if( ref < 0 ) {
180                         *h += get_resources()->bar_data->get_h() + 5;
181                         continue;
182                 }
183                 BC_Toggle::calculate_extents(gui,
184                         BC_WindowBase::get_resources()->checkbox_images,
185                         0, &temp1, &current_w, &current_h,
186                         &temp2, &temp3, &temp4, &temp5, &temp6, &temp7,
187                         toggle_text(tp), MEDIUMFONT);
188                 current_w += current_h;
189                 *w = MAX(current_w, *w);
190                 *h += current_h + 5;
191         }
192
193         *h += 10;
194         *w += 20;
195 }
196
197 GWindowColorButton::GWindowColorButton(GWindowToggle *auto_toggle,
198                 int x, int y, int w, int color)
199  : ColorCircleButton(auto_toggle->caption, x, y, w, w, color, -1, 1)
200 {
201         this->auto_toggle = auto_toggle;
202         this->color = color;
203 }
204
205 GWindowColorButton::~GWindowColorButton()
206 {
207 }
208
209 int GWindowColorButton::handle_new_color(int color, int alpha)
210 {
211         this->color = color;
212         color_thread->update_lock->unlock();
213         return 1;
214 }
215
216 void GWindowColorButton::handle_done_event(int result)
217 {
218         ColorCircleButton::handle_done_event(result);
219         int ref = auto_toggle->info->ref;
220         GWindowGUI *gui = auto_toggle->gui;
221         gui->lock_window("GWindowColorThread::handle_done_event");
222         if( !result ) {
223                 GWindowGUI::auto_colors[ref] = color;
224                 auto_toggle->update_gui(color);
225                 gui->save_defaults();
226         }
227         else {
228                 color = GWindowGUI::auto_colors[ref];
229                 update_gui(color);
230         }
231         gui->unlock_window();
232         MWindowGUI *mwindow_gui = gui->mwindow->gui;
233         mwindow_gui->lock_window("GWindowColorUpdate::run");
234         mwindow_gui->draw_overlays(1);
235         mwindow_gui->unlock_window();
236 }
237
238
239 void GWindowGUI::create_objects()
240 {
241         int x = 10, y = 10;
242         lock_window("GWindowGUI::create_objects");
243
244         for( int i=0; i<(int)(sizeof(toggle_order)/sizeof(toggle_order[0])); ++i ) {
245                 toggleinfo *tp = &toggle_order[i];
246                 int ref = tp->ref;
247                 if( ref < 0 ) {
248                         BC_Bar *bar = new BC_Bar(x,y,get_w()-x-10);
249                         add_tool(bar);
250                         toggles[i] = 0;
251                         y += bar->get_h() + 5;
252                         continue;
253                 }
254                 const char *label = toggle_text(tp);
255                 int color = tp->isauto > 0 ? auto_colors[tp->ref] : WHITE;
256                 GWindowToggle *toggle = new GWindowToggle(this, x, y, label, color, tp);
257                 add_tool(toggles[i] = toggle);
258                 if( tp->isauto > 0 ) {
259                         VFrame *vframe = 0;
260                         switch( ref ) {
261                         case AUTOMATION_MODE: vframe = mwindow->theme->modekeyframe_data;  break;
262                         case AUTOMATION_PAN:  vframe = mwindow->theme->pankeyframe_data;   break;
263                         case AUTOMATION_MASK: vframe = mwindow->theme->maskkeyframe_data;  break;
264                         }
265                         if( !vframe ) {
266                                 int wh = toggle->get_h() - 4;
267                                 GWindowColorButton *color_button =
268                                         new GWindowColorButton(toggle, get_w()-wh-10, y+2, wh, color);
269                                 add_tool(color_button);
270                                 color_button->create_objects();
271                         }
272                         else
273                                 draw_vframe(vframe, get_w()-vframe->get_w()-10, y);
274                 }
275                 else {
276                         const char *accel = 0;
277                         switch( ref ) {
278                         case NONAUTOTOGGLES_CAMERA_XYZ:
279                                 camera_xyz = toggle;
280                                 accel = _("Shift-F1");
281                                 break;
282                         case NONAUTOTOGGLES_PROJECTOR_XYZ:
283                                 projector_xyz = toggle;
284                                 accel = _("Shift-F2");
285                                 break;
286                         case NON_AUTOMATION_HARD_EDGES:
287                                 VFrame *vframe = mwindow->theme->hardedge_data;
288                                 draw_vframe(vframe, get_w()-vframe->get_w()-10, y);
289                                 hard_edges = toggle;
290                                 break;
291                         }
292                          if( accel ) {
293                                 int x1 = get_w() - BC_Title::calculate_w(this, accel) - 10;
294                                 add_subwindow(new BC_Title(x1, y, accel));
295                         }
296                 }
297                 y += toggles[i]->get_h() + 5;
298         }
299         update_toggles(0);
300         unlock_window();
301 }
302
303 void GWindowGUI::update_mwindow(int toggles, int overlays)
304 {
305         unlock_window();
306         mwindow->gui->lock_window("GWindowGUI::update_mwindow");
307         if( toggles )
308                 mwindow->gui->mainmenu->update_toggles(0);
309         if( overlays )
310                 mwindow->gui->draw_overlays(1);
311         mwindow->gui->unlock_window();
312         lock_window("GWindowGUI::update_mwindow");
313 }
314
315 void GWindowGUI::update_toggles(int use_lock)
316 {
317         if(use_lock) {
318                 lock_window("GWindowGUI::update_toggles");
319                 set_cool(0);
320         }
321
322         for( int i=0; i<(int)(sizeof(toggle_order)/sizeof(toggle_order[0])); ++i ) {
323                 if( toggles[i] ) toggles[i]->update();
324         }
325
326         camera_xyz->set_value(check_xyz(AUTOMATION_CAMERA_X) > 0 ? 1 : 0);
327         projector_xyz->set_value(check_xyz(AUTOMATION_PROJECTOR_X) > 0 ? 1 : 0);
328
329         if(use_lock) unlock_window();
330 }
331
332 void GWindowGUI::toggle_camera_xyz()
333 {
334         int v = camera_xyz->get_value() ? 0 : 1;
335         camera_xyz->set_value(v);
336         xyz_check(AUTOMATION_CAMERA_X, v);
337         update_toggles(0);
338         update_mwindow(1, 1);
339 }
340
341 void GWindowGUI::toggle_projector_xyz()
342 {
343         int v = projector_xyz->get_value() ? 0 : 1;
344         projector_xyz->set_value(v);
345         xyz_check(AUTOMATION_PROJECTOR_X, v);
346         update_toggles(0);
347         update_mwindow(1, 1);
348 }
349
350 int GWindowGUI::translation_event()
351 {
352         mwindow->session->gwindow_x = get_x();
353         mwindow->session->gwindow_y = get_y();
354         return 0;
355 }
356
357 int GWindowGUI::close_event()
358 {
359         hide_window();
360         mwindow->session->show_gwindow = 0;
361         unlock_window();
362
363         mwindow->gui->lock_window("GWindowGUI::close_event");
364         mwindow->gui->mainmenu->show_gwindow->set_checked(0);
365         mwindow->gui->unlock_window();
366
367         lock_window("GWindowGUI::close_event");
368         mwindow->save_defaults();
369         return 1;
370 }
371
372 int GWindowGUI::keypress_event()
373 {
374         if( ctrl_down() && shift_down() ) {
375                 switch(get_keypress()) {
376                 case KEY_F1:
377                 case KEY_F2:
378                 case KEY_F3:
379                 case KEY_F4:
380                         if( ctrl_down() && shift_down() ) {
381                                 resend_event(mwindow->gui);
382                                 return 1;
383                         }
384                 }
385         }
386         else if( !ctrl_down() && shift_down() ) {
387                 switch(get_keypress()) {
388                 case KEY_F1:
389                         toggle_camera_xyz();
390                         return 1;
391                 case KEY_F2:
392                         toggle_projector_xyz();
393                         return 1;
394                 }
395         }
396         switch(get_keypress()) {
397         case 'w':
398         case 'W':
399         case '0':
400                 if( ctrl_down() ) {
401                         close_event();
402                         return 1;
403                 }
404                 break;
405         }
406         return 0;
407 }
408
409 int GWindowGUI::check_xyz(int group)
410 {
411 // returns 1=all set, -1=all clear, 0=mixed
412         int *autos = mwindow->edl->session->auto_conf->autos;
413         int v = autos[group], ret = v ? 1 : -1;
414         if( autos[group+1] != v || autos[group+2] != v ) ret = 0;
415         return ret;
416 }
417 void GWindowGUI::xyz_check(int group, int v)
418 {
419         int *autos = mwindow->edl->session->auto_conf->autos;
420         autos[group+0] = v;
421         autos[group+1] = v;
422         autos[group+2] = v;
423 }
424
425 int* GWindowGUI::get_main_value(toggleinfo *info)
426 {
427         if( info->isauto > 0 )
428                 return &mwindow->edl->session->auto_conf->autos[info->ref];
429         switch( info->ref ) {
430         case NON_AUTOMATION_ASSETS: return &mwindow->edl->session->show_assets;
431         case NON_AUTOMATION_TITLES: return &mwindow->edl->session->show_titles;
432         case NON_AUTOMATION_TRANSITIONS: return &mwindow->edl->session->auto_conf->transitions;
433         case NON_AUTOMATION_PLUGIN_AUTOS: return &mwindow->edl->session->auto_conf->plugins;
434         case NON_AUTOMATION_HARD_EDGES: return &mwindow->edl->session->auto_conf->hard_edges;
435         }
436         return 0;
437 }
438
439
440 GWindowToggle::GWindowToggle(GWindowGUI *gui, int x, int y,
441         const char *text, int color, toggleinfo *info)
442  : BC_CheckBox(x, y, 0, text, MEDIUMFONT, color)
443 {
444         this->gui = gui;
445         this->info = info;
446         this->color = color;
447         this->color_button = 0;
448         hot = hot_value = 0;
449 }
450
451 GWindowToggle::~GWindowToggle()
452 {
453         delete color_button;
454 }
455
456 int GWindowToggle::handle_event()
457 {
458         int value = get_value();
459         if( shift_down() ) {
460                 if( !hot ) {
461                         gui->set_hot(this);
462                         value = 1;
463                 }
464                 else {
465                         gui->set_cool(1);
466                         value = hot_value;
467                 }
468         }
469         else
470                 gui->set_cool(0);
471         if( info->isauto >= 0 ) {
472                 *gui->get_main_value(info) = value;
473                 switch( info->ref ) {
474                 case AUTOMATION_CAMERA_X:
475                 case AUTOMATION_CAMERA_Y:
476                 case AUTOMATION_CAMERA_Z: {
477                         int v = gui->check_xyz(AUTOMATION_CAMERA_X);
478                         gui->camera_xyz->set_value(v > 0 ? 1 : 0);
479                         break; }
480                 case AUTOMATION_PROJECTOR_X:
481                 case AUTOMATION_PROJECTOR_Y:
482                 case AUTOMATION_PROJECTOR_Z: {
483                         int v = gui->check_xyz(AUTOMATION_PROJECTOR_X);
484                         gui->projector_xyz->set_value(v > 0 ? 1 : 0);
485                         break; }
486                 }
487         }
488         else {
489                 int group = -1;
490                 switch( info->ref ) {
491                 case NONAUTOTOGGLES_CAMERA_XYZ:     group = AUTOMATION_CAMERA_X;     break;
492                 case NONAUTOTOGGLES_PROJECTOR_XYZ:  group = AUTOMATION_PROJECTOR_X;  break;
493                 case NON_AUTOMATION_HARD_EDGES: *gui->get_main_value(info) = value;  break;
494                 }
495                 if( group >= 0 ) {
496                         gui->xyz_check(group, value);
497                         gui->update_toggles(0);
498                 }
499         }
500         gui->update_mwindow(1, 0);
501
502 // Update stuff in MWindow
503         unlock_window();
504         MWindow *mwindow = gui->mwindow;
505         mwindow->gui->lock_window("GWindowToggle::handle_event");
506
507         mwindow->gui->update(1, NORMAL_DRAW, 0, 0, 1, 0, 0);
508         mwindow->gui->draw_overlays(1);
509
510         if( value && info->isauto > 0 ) {
511                 int autogroup_type = -1;
512                 switch( info->ref ) {
513                 case AUTOMATION_FADE:
514                         autogroup_type = mwindow->edl->tracks->recordable_video_tracks() ?
515                                 AUTOGROUPTYPE_VIDEO_FADE : AUTOGROUPTYPE_AUDIO_FADE ;
516                         break;
517                 case AUTOMATION_SPEED:
518                         autogroup_type = AUTOGROUPTYPE_SPEED;
519                         break;
520                 case AUTOMATION_CAMERA_X:
521                 case AUTOMATION_PROJECTOR_X:
522                         autogroup_type = AUTOGROUPTYPE_X;
523                         break;
524                 case AUTOMATION_CAMERA_Y:
525                 case AUTOMATION_PROJECTOR_Y:
526                         autogroup_type = AUTOGROUPTYPE_Y;
527                         break;
528                 case AUTOMATION_CAMERA_Z:
529                 case AUTOMATION_PROJECTOR_Z:
530                         autogroup_type = AUTOGROUPTYPE_ZOOM;
531                         break;
532                 }
533                 if( autogroup_type >= 0 ) {
534                         mwindow->edl->local_session->zoombar_showautotype = autogroup_type;
535                         mwindow->gui->zoombar->update_autozoom();
536                 }
537         }
538
539         mwindow->gui->unlock_window();
540         lock_window("GWindowToggle::handle_event");
541
542         return 1;
543 }
544
545 void GWindowToggle::update()
546 {
547         int *vp = gui->get_main_value(info);
548         if( vp ) set_value(*vp);
549 }
550
551 void GWindowToggle::update_gui(int color)
552 {
553         BC_Toggle::color = color;
554         draw_face(1,0);
555 }
556
557 int GWindowToggle::draw_face(int flash, int flush)
558 {
559         int ret = BC_Toggle::draw_face(flash, flush);
560         if( hot ) {
561                 set_color(color);
562                 set_opaque();
563                 draw_rectangle(text_x-1, text_y-1, text_w+1, text_h+1);
564                 if( flash ) this->flash(0);
565                 if( flush ) this->flush();
566         }
567         return ret;
568 }
569
570 void GWindowGUI::set_cool(int reset, int all)
571 {
572         for( int i=0; i<(int)(sizeof(toggles)/sizeof(toggles[0])); ++i ) {
573                 GWindowToggle* toggle = toggles[i];
574                 if( !toggle ) continue;
575                 int *vp = get_main_value(toggle->info);
576                 if( !vp ) continue;
577                 if( toggle->hot ) {
578                         toggle->hot = 0;
579                         toggle->draw_face(1, 0);
580                 }
581                 if( reset > 0 )
582                         *vp = toggle->hot_value;
583                 else {
584                         toggle->hot_value = *vp;
585                         if( reset < 0 ) {
586                                 if ( all || toggle->info->isauto > 0 )
587                                         *vp = 0;
588                         }
589                 }
590         }
591         if( reset )
592                 update_toggles(0);
593 }
594
595 void GWindowGUI::set_hot(GWindowToggle *toggle)
596 {
597         int *vp = get_main_value(toggle->info);
598         if( !vp ) return;
599         set_cool(-1, !toggle->info->isauto ? 1 : 0);
600         toggle->hot = 1;
601         toggle->set_value(*vp = 1);
602 }
603