4 * Copyright (C) 2011 Adam Williams <broadcast at earthling dot net>
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.
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.
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
22 #include "aboutprefs.h"
23 #include "appearanceprefs.h"
25 #include "audiodevice.inc"
26 #include "bcsignals.h"
29 #include "cplayback.h"
31 #include "cwindowgui.h"
34 #include "edlsession.h"
36 #include "filesystem.h"
38 #include "interfaceprefs.h"
41 #include "levelwindow.h"
42 #include "levelwindowgui.h"
43 #include "mainclock.h"
44 #include "mainerror.h"
46 #include "meterpanel.h"
49 #include "mwindowgui.h"
51 #include "performanceprefs.h"
52 #include "playbackengine.h"
53 #include "playbackprefs.h"
54 #include "preferences.h"
55 #include "recordprefs.h"
56 #include "shbtnprefs.h"
58 #include "trackcanvas.h"
59 #include "transportque.h"
61 #include "vwindowgui.h"
71 PreferencesMenuitem::PreferencesMenuitem(MWindow *mwindow)
72 : BC_MenuItem(_("Preferences..."), _("Shift-P"), 'P')
74 this->mwindow = mwindow;
77 thread = new PreferencesThread(mwindow);
80 PreferencesMenuitem::~PreferencesMenuitem()
86 int PreferencesMenuitem::handle_event()
88 mwindow->gui->unlock_window();
90 mwindow->gui->lock_window("PreferencesMenuitem::handle_event");
97 PreferencesThread::PreferencesThread(MWindow *mwindow)
100 this->mwindow = mwindow;
105 PreferencesThread::~PreferencesThread()
110 BC_Window* PreferencesThread::new_gui()
113 preferences = new Preferences;
115 edl->create_objects();
116 current_dialog = mwindow->defaults->get("DEFAULTPREF", 0);
117 preferences->copy_from(mwindow->preferences);
118 edl->copy_session(mwindow->edl);
125 //int need_new_indexes = 0;
128 mwindow->gui->lock_window("NewThread::new_gui");
129 int scr_x = mwindow->gui->get_screen_x(0, -1);
130 int scr_w = mwindow->gui->get_screen_w(0, -1);
131 int scr_h = mwindow->gui->get_screen_h(0, -1);
133 int w = WIDTH, h = HEIGHT;
134 int min_w = mwindow->theme->preferencescategory_x;
135 for(int i = 0; i < CATEGORIES; i++) {
136 min_w += PreferencesButton::calculate_w(mwindow->gui, category_to_text(i)) -
137 mwindow->theme->preferences_category_overlap;
139 if( w < min_w ) w = min_w;
140 int x = scr_x + scr_w / 2 - w / 2;
141 int y = scr_h / 2 - h / 2;
143 window = new PreferencesWindow(mwindow, this, x, y, w, h);
144 window->create_objects();
145 mwindow->gui->unlock_window();
151 void PreferencesThread::handle_close_event(int result)
157 mwindow->save_defaults();
162 edl->Garbage::remove_user();
166 mwindow->defaults->update("DEFAULTPREF", current_dialog);
167 if( mwindow->restart() )
168 mwindow->gui->set_done(0);
173 int PreferencesThread::update_framerate()
177 lock_gui("PreferencesThread::update_framerate");
178 PreferencesWindow *window = (PreferencesWindow*)get_gui();
179 if(window) window->update_framerate();
186 void PreferencesThread::update_rates()
190 lock_gui("PreferencesThread::update_framerate");
191 PreferencesWindow *window = (PreferencesWindow*)get_gui();
192 if(window) window->update_rates();
197 int PreferencesThread::apply_settings()
201 PlaybackConfig *this_playback_config = edl->session->playback_config;
202 AudioOutConfig *this_aconfig = this_playback_config->aconfig;
203 VideoOutConfig *this_vconfig = this_playback_config->vconfig;
204 PlaybackConfig *playback_config = mwindow->edl->session->playback_config;
205 AudioOutConfig *aconfig = playback_config->aconfig;
206 VideoOutConfig *vconfig = playback_config->vconfig;
209 edl->session->need_rerender(mwindow->edl->session) ||
210 (preferences->force_uniprocessor != mwindow->preferences->force_uniprocessor) ||
211 this_playback_config->active_config != playback_config->active_config ||
212 (*this_aconfig != *aconfig) || (*this_vconfig != *vconfig) ||
213 !preferences->brender_asset->equivalent(*mwindow->preferences->brender_asset, 0, 1, edl);
215 if( preferences->yuv_color_space != mwindow->preferences->yuv_color_space ||
216 preferences->yuv_color_range != mwindow->preferences->yuv_color_range ) {
217 YUV::yuv.yuv_set_colors(
218 preferences->yuv_color_space,
219 preferences->yuv_color_range);
223 if( preferences->highlight_inverse != mwindow->preferences->highlight_inverse ) {
224 mwindow->gui->lock_window("PreferencesThread::apply_settings 0");
225 mwindow->gui->hide_cursor(0);
226 mwindow->gui->unlock_window();
229 PreferencesWindow *window = (PreferencesWindow*)get_gui();
230 if( window ) window->unlock_window();
231 mwindow->init_brender();
232 if( window ) window->lock_window("PreferencesThread::apply_settings 5");
234 if( strcmp(preferences->theme, mwindow->preferences->theme) != 0 )
235 mwindow->restart_status = -1; // reload, need new bcresources
236 if( strcmp(preferences->plugin_icons, mwindow->preferences->plugin_icons) != 0 )
237 mwindow->restart_status = -1;
238 if( strcmp(preferences->lv2_path, mwindow->preferences->lv2_path) != 0 ) {
239 MWindow::remove_plugin_index();
240 File::setenv_path("LV2_PATH", preferences->lv2_path, 1);
241 mwindow->restart_status = -1;
244 mwindow->edl->copy_session(edl, 1);
245 mwindow->preferences->copy_from(preferences);
247 BC_Signals::set_catch_segv(mwindow->preferences->trap_sigsegv);
248 BC_Signals::set_catch_intr(mwindow->preferences->trap_sigintr);
249 BC_WindowBase::get_resources()->popupmenu_btnup = mwindow->preferences->popupmenu_btnup;
250 BC_WindowBase::get_resources()->grab_input_focus = mwindow->preferences->grab_input_focus;
251 BC_WindowBase::get_resources()->textbox_focus_policy = mwindow->preferences->textbox_focus_policy;
252 if( mwindow->preferences->trap_sigsegv || mwindow->preferences->trap_sigintr ) {
253 BC_Trace::enable_locks();
256 BC_Trace::disable_locks();
259 mwindow->reset_android_remote();
260 int ffmpeg_early_probe = mwindow->preferences->get_file_probe_armed("FFMPEG_Early");
261 mwindow->gui->ffmpeg_toggle->update(ffmpeg_early_probe);
262 mwindow->gui->ffmpeg_toggle->set_tooltip(ffmpeg_early_probe ?
263 FFMPEG_EARLY_TIP : FFMPEG_LATE_TIP);
264 mwindow->gui->mainshbtns->load(mwindow->preferences);
266 //edl->session->recording_format->dump();
267 //mwindow->edl->session->recording_format->dump();
269 if(((mwindow->edl->session->output_w % 4) ||
270 (mwindow->edl->session->output_h % 4)) &&
271 mwindow->edl->session->playback_config->vconfig->driver == PLAYBACK_X11_GL)
273 MainError::show_error(
274 _("This project's dimensions are not multiples of 4 so\n"
275 "it can't be rendered by OpenGL."));
281 mwindow->cwindow->gui->lock_window("PreferencesThread::apply_settings");
282 mwindow->cwindow->gui->meters->change_format(edl->session->meter_format,
283 edl->session->min_meter_db,
284 edl->session->max_meter_db);
285 mwindow->cwindow->gui->unlock_window();
289 for(int i = 0; i < mwindow->vwindows.size(); i++) {
290 VWindow *vwindow = mwindow->vwindows.get(i);
291 if( !vwindow->is_running() ) continue;
292 vwindow->gui->lock_window("PreferencesThread::apply_settings");
293 vwindow->gui->meters->change_format(edl->session->meter_format,
294 edl->session->min_meter_db,
295 edl->session->max_meter_db);
296 vwindow->gui->unlock_window();
301 mwindow->gui->lock_window("PreferencesThread::apply_settings 1");
302 mwindow->gui->set_meter_format(edl->session->meter_format,
303 edl->session->min_meter_db,
304 edl->session->max_meter_db);
305 mwindow->gui->unlock_window();
309 mwindow->lwindow->gui->lock_window("PreferencesThread::apply_settings");
310 mwindow->lwindow->gui->panel->change_format(edl->session->meter_format,
311 edl->session->min_meter_db,
312 edl->session->max_meter_db);
313 mwindow->lwindow->gui->unlock_window();
318 mwindow->gui->lock_window("PreferencesThread::apply_settings 2");
319 mwindow->gui->show_cursor(0);
320 mwindow->gui->draw_overlays(1);
321 mwindow->gui->unlock_window();
326 mwindow->gui->lock_window("PreferencesThread::apply_settings 3");
327 mwindow->gui->update(0, 0, 1, 0, 0, 1, 0);
328 mwindow->gui->redraw_time_dependancies();
329 mwindow->gui->unlock_window();
334 //printf("PreferencesThread::apply_settings 1\n");
335 // This doesn't stop and restart, only reloads the assets before
336 // the next play command.
337 mwindow->cwindow->refresh_frame(CHANGE_ALL, mwindow->edl);
338 //printf("PreferencesThread::apply_settings 10\n");
341 if(redraw_times || redraw_overlays)
343 mwindow->gui->lock_window("PreferencesThread::apply_settings 4");
344 mwindow->gui->flush();
345 mwindow->gui->unlock_window();
351 const char* PreferencesThread::category_to_text(int category)
353 PlaybackConfig *playback_config = edl->session->playback_config;
357 return playback_config->active_config==0 ?
358 _("*Playback A") : _("Playback A");
360 return playback_config->active_config==1 ?
361 _("*Playback B") : _("Playback B");
363 return _("Recording");
365 return _("Performance");
367 return _("Interface");
369 return _("Appearance");
376 int PreferencesThread::text_to_category(const char *category)
379 int min_result = -1, result, result_num = 0;
380 for(int i = 0; i < CATEGORIES; i++)
382 result = labs(strcmp(category_to_text(i), category));
383 if(result < min_result || min_result < 0)
400 PreferencesWindow::PreferencesWindow(MWindow *mwindow,
401 PreferencesThread *thread, int x, int y, int w, int h)
402 : BC_Window(_(PROGRAM_NAME ": Preferences"), x,y, w,h,w,h, 1)
404 this->mwindow = mwindow;
405 this->thread = thread;
410 PreferencesWindow::~PreferencesWindow()
412 lock_window("PreferencesWindow::~PreferencesWindow");
416 if(dialog) delete dialog;
419 for(int i = 0; i < categories.total; i++)
420 delete categories.values[i];
424 void PreferencesWindow::create_objects()
428 lock_window("PreferencesWindow::create_objects");
429 set_icon(mwindow->theme->get_image("mwindow_icon"));
430 mwindow->theme->draw_preferences_bg(this);
433 int x = mwindow->theme->preferencescategory_x;
434 int y = mwindow->theme->preferencescategory_y;
435 for(int i = 0; i < CATEGORIES; i++)
437 add_subwindow(category_button[i] = new PreferencesButton(mwindow,
438 thread, x, y, i, thread->category_to_text(i),
439 (i == thread->current_dialog) ?
440 mwindow->theme->get_image_set("category_button_checked") :
441 mwindow->theme->get_image_set("category_button")));
442 x += category_button[i]->get_w() -
443 mwindow->theme->preferences_category_overlap;
447 // for(int i = 0; i < CATEGORIES; i++)
448 // categories.append(new BC_ListBoxItem(thread->category_to_text(i)));
449 // category = new PreferencesCategory(mwindow,
451 // mwindow->theme->preferencescategory_x,
452 // mwindow->theme->preferencescategory_y);
453 // category->create_objects();
456 add_subwindow(button = new PreferencesOK(mwindow, thread));
457 add_subwindow(new PreferencesApply(mwindow, thread));
458 add_subwindow(new PreferencesCancel(mwindow, thread));
460 set_current_dialog(thread->current_dialog);
466 int PreferencesWindow::update_framerate()
468 lock_window("PreferencesWindow::update_framerate");
469 if(thread->current_dialog < PreferencesThread::RECORD)
471 dialog->draw_framerate(1);
479 void PreferencesWindow::update_rates()
481 lock_window("PreferencesWindow::update_rates");
482 if(thread->current_dialog == PreferencesThread::PERFORMANCE)
484 dialog->update_rates();
490 int PreferencesWindow::set_current_dialog(int number)
492 if(dialog) delete dialog;
494 thread->current_dialog = number;
497 PreferencesDialog *dialog2 = dialog;
501 // Redraw category buttons
502 for(int i = 0; i < CATEGORIES; i++)
506 category_button[i]->set_images(
507 mwindow->theme->get_image_set("category_button_checked"));
511 category_button[i]->set_images(
512 mwindow->theme->get_image_set("category_button"));
514 category_button[i]->draw_face(0);
516 // Copy face to background for next button's overlap.
517 // Still can't do state changes right.
522 PlaybackConfig *playback_config = thread->edl->session->playback_config;
525 case PreferencesThread::PLAYBACK_A:
526 case PreferencesThread::PLAYBACK_B:
527 playback_config->load_defaults(mwindow->defaults,
528 number == PreferencesThread::PLAYBACK_A ? 0 : 1);
529 add_subwindow(dialog = new PlaybackPrefs(mwindow, this, number));
532 case PreferencesThread::RECORD:
533 add_subwindow(dialog = new RecordPrefs(mwindow, this));
536 case PreferencesThread::PERFORMANCE:
537 add_subwindow(dialog = new PerformancePrefs(mwindow, this));
540 case PreferencesThread::INTERFACE:
541 add_subwindow(dialog = new InterfacePrefs(mwindow, this));
544 case PreferencesThread::APPEARANCE:
545 add_subwindow(dialog = new AppearancePrefs(mwindow, this));
548 case PreferencesThread::ABOUT:
549 add_subwindow(dialog = new AboutPrefs(mwindow, this));
556 dialog->draw_top_background(this, 0, 0, dialog->get_w(), dialog->get_h());
557 //printf("PreferencesWindow::set_current_dialog %d\n", __LINE__);
558 dialog->create_objects();
559 //printf("PreferencesWindow::set_current_dialog %d\n", __LINE__);
560 dialog->lower_window();
561 dialog->show_window(0);
566 dialog2->hide_window(0);
583 PreferencesButton::PreferencesButton(MWindow *mwindow,
584 PreferencesThread *thread,
590 : BC_GenericButton(x, y, text, images)
592 this->mwindow = mwindow;
593 this->thread = thread;
594 this->category = category;
597 int PreferencesButton::handle_event()
599 thread->window->set_current_dialog(category);
611 PreferencesDialog::PreferencesDialog(MWindow *mwindow,
612 PreferencesWindow *pwindow)
615 pwindow->get_w() - 20,
616 pwindow->get_h() - BC_GenericButton::calculate_h() - 10 - 40)
618 this->pwindow = pwindow;
619 this->mwindow = mwindow;
620 preferences = pwindow->thread->preferences;
623 PreferencesDialog::~PreferencesDialog()
627 // ============================== category window
632 PreferencesApply::PreferencesApply(MWindow *mwindow, PreferencesThread *thread)
633 : BC_GenericButton(thread->window->get_w() / 2 - BC_GenericButton::calculate_w(thread->window, _("Apply")) / 2,
634 thread->window->get_h() - BC_GenericButton::calculate_h() - 10,
637 this->mwindow = mwindow;
638 this->thread = thread;
640 int PreferencesApply::handle_event()
642 thread->apply_settings();
643 mwindow->save_defaults();
646 int PreferencesApply::resize_event(int w, int h)
648 reposition_window(w/2 - get_w()/2, h-get_h()-10);
655 PreferencesOK::PreferencesOK(MWindow *mwindow, PreferencesThread *thread)
656 : BC_GenericButton(10,
657 thread->window->get_h() - BC_GenericButton::calculate_h() - 10,
660 this->mwindow = mwindow;
661 this->thread = thread;
663 int PreferencesOK::keypress_event()
665 if(get_keypress() == RETURN)
667 thread->window->set_done(0);
672 int PreferencesOK::handle_event()
674 thread->window->set_done(0);
677 int PreferencesOK::resize_event(int w, int h)
679 reposition_window(10, h-get_h()-10);
685 PreferencesCancel::PreferencesCancel(MWindow *mwindow, PreferencesThread *thread)
686 : BC_GenericButton(thread->window->get_w() - BC_GenericButton::calculate_w(thread->window, _("Cancel")) - 10,
687 thread->window->get_h() - BC_GenericButton::calculate_h() - 10,
690 this->mwindow = mwindow;
691 this->thread = thread;
693 int PreferencesCancel::keypress_event()
695 if(get_keypress() == ESC)
697 thread->window->set_done(1);
702 int PreferencesCancel::handle_event()
704 thread->window->set_done(1);
707 int PreferencesCancel::resize_event(int w, int h)
709 reposition_window(w-get_w()-10, h-get_h()-10);
722 PreferencesCategory::PreferencesCategory(MWindow *mwindow, PreferencesThread *thread, int x, int y)
723 : BC_PopupTextBox(thread->window,
724 &thread->window->categories,
725 thread->category_to_text(thread->current_dialog),
731 this->mwindow = mwindow;
732 this->thread = thread;
735 PreferencesCategory::~PreferencesCategory()
739 int PreferencesCategory::handle_event()
742 thread->window->set_current_dialog(thread->text_to_category(get_text()));