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"
24 #include "audiodevice.inc"
25 #include "bcsignals.h"
27 #include "cplayback.h"
29 #include "cwindowgui.h"
32 #include "edlsession.h"
33 #include "filesystem.h"
35 #include "interfaceprefs.h"
38 #include "levelwindow.h"
39 #include "levelwindowgui.h"
40 #include "mainclock.h"
41 #include "mainerror.h"
43 #include "meterpanel.h"
46 #include "mwindowgui.h"
48 #include "performanceprefs.h"
49 #include "playbackengine.h"
50 #include "playbackprefs.h"
51 #include "preferences.h"
52 #include "recordprefs.h"
53 #include "shbtnprefs.h"
55 #include "trackcanvas.h"
56 #include "transportque.h"
58 #include "vwindowgui.h"
68 PreferencesMenuitem::PreferencesMenuitem(MWindow *mwindow)
69 : BC_MenuItem(_("Preferences..."), _("Shift-P"), 'P')
71 this->mwindow = mwindow;
74 thread = new PreferencesThread(mwindow);
77 PreferencesMenuitem::~PreferencesMenuitem()
83 int PreferencesMenuitem::handle_event()
85 mwindow->gui->unlock_window();
87 mwindow->gui->lock_window("PreferencesMenuitem::handle_event");
94 PreferencesThread::PreferencesThread(MWindow *mwindow)
97 this->mwindow = mwindow;
102 PreferencesThread::~PreferencesThread()
107 BC_Window* PreferencesThread::new_gui()
110 preferences = new Preferences;
112 edl->create_objects();
113 current_dialog = mwindow->defaults->get("DEFAULTPREF", 0);
114 preferences->copy_from(mwindow->preferences);
115 edl->copy_session(mwindow->edl);
122 //int need_new_indexes = 0;
125 mwindow->gui->lock_window("NewThread::new_gui");
126 int scr_x = mwindow->gui->get_screen_x(0, -1);
127 int scr_w = mwindow->gui->get_screen_w(0, -1);
128 int scr_h = mwindow->gui->get_screen_h(0, -1);
130 int x = scr_x + scr_w / 2 - WIDTH / 2;
131 int y = scr_h / 2 - HEIGHT / 2;
133 window = new PreferencesWindow(mwindow, this, x, y);
134 window->create_objects();
135 mwindow->gui->unlock_window();
141 void PreferencesThread::handle_close_event(int result)
147 mwindow->save_defaults();
152 edl->Garbage::remove_user();
156 mwindow->defaults->update("DEFAULTPREF", current_dialog);
157 if( mwindow->restart() )
158 mwindow->gui->set_done(0);
163 int PreferencesThread::update_framerate()
167 lock_gui("PreferencesThread::update_framerate");
168 PreferencesWindow *window = (PreferencesWindow*)get_gui();
169 if(window) window->update_framerate();
176 void PreferencesThread::update_rates()
180 lock_gui("PreferencesThread::update_framerate");
181 PreferencesWindow *window = (PreferencesWindow*)get_gui();
182 if(window) window->update_rates();
187 int PreferencesThread::apply_settings()
191 PlaybackConfig *this_playback_config = edl->session->playback_config;
192 AudioOutConfig *this_aconfig = this_playback_config->aconfig;
193 VideoOutConfig *this_vconfig = this_playback_config->vconfig;
194 PlaybackConfig *playback_config = mwindow->edl->session->playback_config;
195 AudioOutConfig *aconfig = playback_config->aconfig;
196 VideoOutConfig *vconfig = playback_config->vconfig;
199 edl->session->need_rerender(mwindow->edl->session) ||
200 (preferences->force_uniprocessor != mwindow->preferences->force_uniprocessor) ||
201 this_playback_config->active_config != playback_config->active_config ||
202 (*this_aconfig != *aconfig) || (*this_vconfig != *vconfig) ||
203 !preferences->brender_asset->equivalent(*mwindow->preferences->brender_asset, 0, 1);
205 if( strcmp(preferences->theme, mwindow->preferences->theme) != 0 )
206 mwindow->restart_status = -1; // reload, need new bcresources
208 mwindow->edl->copy_session(edl, 1);
209 mwindow->preferences->copy_from(preferences);
210 mwindow->init_brender();
212 BC_Signals::set_catch_segv(mwindow->preferences->trap_sigsegv);
213 BC_Signals::set_catch_intr(mwindow->preferences->trap_sigintr);
215 mwindow->reset_android_remote();
216 mwindow->gui->ffmpeg_toggle->update(mwindow->preferences->ffmpeg_early_probe);
217 mwindow->gui->ffmpeg_toggle->set_tooltip( mwindow->preferences->ffmpeg_early_probe ?
218 _("Try FFMpeg first") : _("Try FFMpeg last") );
219 mwindow->gui->mainshbtns->load(mwindow->preferences);
221 mwindow->edl->session->get_frame_offset() / mwindow->edl->session->frame_rate;
222 mwindow->gui->mainclock->set_position_offset(tc_position);
224 //edl->session->recording_format->dump();
225 //mwindow->edl->session->recording_format->dump();
227 if(((mwindow->edl->session->output_w % 4) ||
228 (mwindow->edl->session->output_h % 4)) &&
229 mwindow->edl->session->playback_config->vconfig->driver == PLAYBACK_X11_GL)
231 MainError::show_error(
232 _("This project's dimensions are not multiples of 4 so\n"
233 "it can't be rendered by OpenGL."));
239 mwindow->cwindow->gui->lock_window("PreferencesThread::apply_settings");
240 mwindow->cwindow->gui->meters->change_format(edl->session->meter_format,
241 edl->session->min_meter_db,
242 edl->session->max_meter_db);
243 mwindow->cwindow->gui->unlock_window();
247 for(int i = 0; i < mwindow->vwindows.size(); i++) {
248 VWindow *vwindow = mwindow->vwindows.get(i);
249 if( !vwindow->is_running() ) continue;
250 vwindow->gui->lock_window("PreferencesThread::apply_settings");
251 vwindow->gui->meters->change_format(edl->session->meter_format,
252 edl->session->min_meter_db,
253 edl->session->max_meter_db);
254 vwindow->gui->unlock_window();
259 mwindow->gui->lock_window("PreferencesThread::apply_settings 1");
260 mwindow->gui->set_meter_format(edl->session->meter_format,
261 edl->session->min_meter_db,
262 edl->session->max_meter_db);
263 mwindow->gui->unlock_window();
267 mwindow->lwindow->gui->lock_window("PreferencesThread::apply_settings");
268 mwindow->lwindow->gui->panel->change_format(edl->session->meter_format,
269 edl->session->min_meter_db,
270 edl->session->max_meter_db);
271 mwindow->lwindow->gui->unlock_window();
276 mwindow->gui->lock_window("PreferencesThread::apply_settings 2");
277 mwindow->gui->draw_overlays(1);
278 mwindow->gui->unlock_window();
283 mwindow->gui->lock_window("PreferencesThread::apply_settings 3");
284 mwindow->gui->update(0, 0, 1, 0, 0, 1, 0);
285 mwindow->gui->redraw_time_dependancies();
286 mwindow->gui->unlock_window();
291 //printf("PreferencesThread::apply_settings 1\n");
292 // This doesn't stop and restart, only reloads the assets before
293 // the next play command.
294 mwindow->cwindow->playback_engine->que->send_command(CURRENT_FRAME,
298 //printf("PreferencesThread::apply_settings 10\n");
301 if(redraw_times || redraw_overlays)
303 mwindow->gui->lock_window("PreferencesThread::apply_settings 4");
304 mwindow->gui->flush();
305 mwindow->gui->unlock_window();
311 const char* PreferencesThread::category_to_text(int category)
313 PlaybackConfig *playback_config = edl->session->playback_config;
317 return playback_config->active_config==0 ?
318 _("*Playback A") : _("Playback A");
320 return playback_config->active_config==1 ?
321 _("*Playback B") : _("Playback B");
323 return _("Recording");
325 return _("Performance");
327 return _("Interface");
334 int PreferencesThread::text_to_category(const char *category)
337 int min_result = -1, result, result_num = 0;
338 for(int i = 0; i < CATEGORIES; i++)
340 result = labs(strcmp(category_to_text(i), category));
341 if(result < min_result || min_result < 0)
358 PreferencesWindow::PreferencesWindow(MWindow *mwindow,
359 PreferencesThread *thread,
362 : BC_Window(_(PROGRAM_NAME ": Preferences"),
363 x,y, WIDTH,HEIGHT, WIDTH,HEIGHT, 1,0,1)
365 this->mwindow = mwindow;
366 this->thread = thread;
371 PreferencesWindow::~PreferencesWindow()
373 lock_window("PreferencesWindow::~PreferencesWindow");
377 if(dialog) delete dialog;
380 for(int i = 0; i < categories.total; i++)
381 delete categories.values[i];
385 void PreferencesWindow::create_objects()
389 lock_window("PreferencesWindow::create_objects");
390 set_icon(mwindow->theme->get_image("mwindow_icon"));
391 mwindow->theme->draw_preferences_bg(this);
394 int x = mwindow->theme->preferencescategory_x;
395 int y = mwindow->theme->preferencescategory_y;
396 for(int i = 0; i < CATEGORIES; i++)
398 add_subwindow(category_button[i] = new PreferencesButton(mwindow,
403 thread->category_to_text(i),
404 (i == thread->current_dialog) ?
405 mwindow->theme->get_image_set("category_button_checked") :
406 mwindow->theme->get_image_set("category_button")));
407 x += category_button[i]->get_w() -
408 mwindow->theme->preferences_category_overlap;
412 // for(int i = 0; i < CATEGORIES; i++)
413 // categories.append(new BC_ListBoxItem(thread->category_to_text(i)));
414 // category = new PreferencesCategory(mwindow,
416 // mwindow->theme->preferencescategory_x,
417 // mwindow->theme->preferencescategory_y);
418 // category->create_objects();
421 add_subwindow(button = new PreferencesOK(mwindow, thread));
422 add_subwindow(new PreferencesApply(mwindow, thread));
423 add_subwindow(new PreferencesCancel(mwindow, thread));
425 set_current_dialog(thread->current_dialog);
431 int PreferencesWindow::update_framerate()
433 lock_window("PreferencesWindow::update_framerate");
434 if(thread->current_dialog < PreferencesThread::RECORD)
436 dialog->draw_framerate(1);
444 void PreferencesWindow::update_rates()
446 lock_window("PreferencesWindow::update_rates");
447 if(thread->current_dialog == PreferencesThread::PERFORMANCE)
449 dialog->update_rates();
455 int PreferencesWindow::set_current_dialog(int number)
457 if(dialog) delete dialog;
459 thread->current_dialog = number;
462 PreferencesDialog *dialog2 = dialog;
466 // Redraw category buttons
467 for(int i = 0; i < CATEGORIES; i++)
471 category_button[i]->set_images(
472 mwindow->theme->get_image_set("category_button_checked"));
476 category_button[i]->set_images(
477 mwindow->theme->get_image_set("category_button"));
479 category_button[i]->draw_face(0);
481 // Copy face to background for next button's overlap.
482 // Still can't do state changes right.
487 PlaybackConfig *playback_config = thread->edl->session->playback_config;
490 case PreferencesThread::PLAYBACK_A:
491 case PreferencesThread::PLAYBACK_B:
492 playback_config->load_defaults(mwindow->defaults,
493 number == PreferencesThread::PLAYBACK_A ? 0 : 1);
494 add_subwindow(dialog = new PlaybackPrefs(mwindow, this, number));
497 case PreferencesThread::RECORD:
498 add_subwindow(dialog = new RecordPrefs(mwindow, this));
501 case PreferencesThread::PERFORMANCE:
502 add_subwindow(dialog = new PerformancePrefs(mwindow, this));
505 case PreferencesThread::INTERFACE:
506 add_subwindow(dialog = new InterfacePrefs(mwindow, this));
509 case PreferencesThread::ABOUT:
510 add_subwindow(dialog = new AboutPrefs(mwindow, this));
517 dialog->draw_top_background(this, 0, 0, dialog->get_w(), dialog->get_h());
518 //printf("PreferencesWindow::set_current_dialog %d\n", __LINE__);
519 dialog->create_objects();
520 //printf("PreferencesWindow::set_current_dialog %d\n", __LINE__);
521 dialog->show_window(0);
526 dialog2->hide_window(0);
543 PreferencesButton::PreferencesButton(MWindow *mwindow,
544 PreferencesThread *thread,
550 : BC_GenericButton(x, y, text, images)
552 this->mwindow = mwindow;
553 this->thread = thread;
554 this->category = category;
557 int PreferencesButton::handle_event()
559 thread->window->set_current_dialog(category);
571 PreferencesDialog::PreferencesDialog(MWindow *mwindow,
572 PreferencesWindow *pwindow)
575 pwindow->get_w() - 20,
576 pwindow->get_h() - BC_GenericButton::calculate_h() - 10 - 40)
578 this->pwindow = pwindow;
579 this->mwindow = mwindow;
580 preferences = pwindow->thread->preferences;
583 PreferencesDialog::~PreferencesDialog()
587 // ============================== category window
592 PreferencesApply::PreferencesApply(MWindow *mwindow, PreferencesThread *thread)
593 : BC_GenericButton(thread->window->get_w() / 2 - BC_GenericButton::calculate_w(thread->window, _("Apply")) / 2,
594 thread->window->get_h() - BC_GenericButton::calculate_h() - 10,
597 this->mwindow = mwindow;
598 this->thread = thread;
601 int PreferencesApply::handle_event()
603 thread->apply_settings();
610 PreferencesOK::PreferencesOK(MWindow *mwindow, PreferencesThread *thread)
611 : BC_GenericButton(10,
612 thread->window->get_h() - BC_GenericButton::calculate_h() - 10,
615 this->mwindow = mwindow;
616 this->thread = thread;
619 int PreferencesOK::keypress_event()
621 if(get_keypress() == RETURN)
623 thread->window->set_done(0);
628 int PreferencesOK::handle_event()
630 thread->window->set_done(0);
636 PreferencesCancel::PreferencesCancel(MWindow *mwindow, PreferencesThread *thread)
637 : BC_GenericButton(thread->window->get_w() - BC_GenericButton::calculate_w(thread->window, _("Cancel")) - 10,
638 thread->window->get_h() - BC_GenericButton::calculate_h() - 10,
641 this->mwindow = mwindow;
642 this->thread = thread;
644 int PreferencesCancel::keypress_event()
646 if(get_keypress() == ESC)
648 thread->window->set_done(1);
654 int PreferencesCancel::handle_event()
656 thread->window->set_done(1);
669 PreferencesCategory::PreferencesCategory(MWindow *mwindow, PreferencesThread *thread, int x, int y)
670 : BC_PopupTextBox(thread->window,
671 &thread->window->categories,
672 thread->category_to_text(thread->current_dialog),
678 this->mwindow = mwindow;
679 this->thread = thread;
682 PreferencesCategory::~PreferencesCategory()
686 int PreferencesCategory::handle_event()
689 thread->window->set_current_dialog(thread->text_to_category(get_text()));