4 * Copyright (C) 2008 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 "condition.h"
24 #include "edlsession.h"
26 #include "localsession.h"
27 #include "mainsession.h"
30 #include "mwindowgui.h"
34 #include "plugindialog.h"
35 #include "pluginserver.h"
39 #include "transition.h"
42 PluginDialogThread::PluginDialogThread(MWindow *mwindow)
45 this->mwindow = mwindow;
49 PluginDialogThread::~PluginDialogThread()
54 void PluginDialogThread::start_window(Track *track,
60 if(!BC_DialogThread::is_running())
62 // At this point, the caller should hold the main window mutex.
63 // mwindow->gui->lock_window("PluginDialogThread::start_window");
65 this->data_type = data_type;
66 this->plugin = plugin;
67 this->is_mainmenu = is_mainmenu;
68 single_standalone = mwindow->edl->session->single_standalone;
72 plugin->calculate_title(plugin_title, 0);
73 this->shared_location = plugin->shared_location;
74 this->plugin_type = plugin->plugin_type;
78 this->plugin_title[0] = 0;
79 this->shared_location.plugin = -1;
80 this->shared_location.module = -1;
81 this->plugin_type = PLUGIN_NONE;
84 strcpy(this->window_title, title);
85 mwindow->gui->unlock_window();
87 BC_DialogThread::start();
88 mwindow->gui->lock_window("PluginDialogThread::start_window");
92 BC_Window* PluginDialogThread::new_gui()
94 mwindow->gui->lock_window("PluginDialogThread::new_gui");
95 int x = mwindow->gui->get_abs_cursor_x(0) -
96 mwindow->session->plugindialog_w / 2;
97 int y = mwindow->gui->get_abs_cursor_y(0) -
98 mwindow->session->plugindialog_h / 2;
100 PluginDialog *window = new PluginDialog(mwindow,
105 window->create_objects();
106 mwindow->gui->unlock_window();
110 void PluginDialogThread::handle_done_event(int result)
112 PluginDialog *window = (PluginDialog*)BC_DialogThread::get_gui();
113 if(window->selected_available >= 0)
115 window->attach_new(window->selected_available);
118 if(window->selected_shared >= 0)
120 window->attach_shared(window->selected_shared);
123 if(window->selected_modules >= 0)
125 window->attach_module(window->selected_modules);
128 mwindow->edl->session->single_standalone = single_standalone;
131 void PluginDialogThread::handle_close_event(int result)
137 mwindow->gui->lock_window("PluginDialogThread::run 3");
140 mwindow->undo->update_undo_before();
143 mwindow->insert_effect(plugin_title,
153 if(mwindow->edl->tracks->plugin_exists(plugin))
155 plugin->change_plugin(plugin_title,
162 if(mwindow->edl->tracks->track_exists(track))
164 mwindow->insert_effect(plugin_title,
175 mwindow->save_backup();
176 mwindow->undo->update_undo_after(_("attach effect"), LOAD_EDITS | LOAD_PATCHES);
177 mwindow->restart_brender();
178 mwindow->update_plugin_states();
179 mwindow->sync_parameters(CHANGE_EDL);
180 mwindow->gui->update(1,
188 mwindow->gui->unlock_window();
202 PluginDialog::PluginDialog(MWindow *mwindow,
203 PluginDialogThread *thread,
204 const char *window_title,
207 : BC_Window(window_title,
210 mwindow->session->plugindialog_w,
211 mwindow->session->plugindialog_h,
218 this->mwindow = mwindow;
219 this->thread = thread;
220 single_standalone = 0;
223 PluginDialog::~PluginDialog()
225 lock_window("PluginDialog::~PluginDialog");
226 standalone_data.remove_all_objects();
228 shared_data.remove_all_objects();
230 module_data.remove_all_objects();
232 plugin_locations.remove_all_objects();
234 module_locations.remove_all_objects();
236 delete standalone_list;
242 void PluginDialog::create_objects()
244 // int use_default = 1;
245 char string[BCTEXTLEN];
246 mwindow->theme->get_plugindialog_sizes();
248 lock_window("PluginDialog::create_objects");
251 strcpy(string, thread->plugin->title);
257 sprintf(string, _("None"));
265 // GET A LIST OF ALL THE PLUGINS AVAILABLE
266 mwindow->search_plugindb(thread->data_type == TRACK_AUDIO,
267 thread->data_type == TRACK_VIDEO,
270 mwindow->edl->get_shared_plugins(thread->track,
274 mwindow->edl->get_shared_tracks(thread->track,
279 // Construct listbox items
280 for(int i = 0; i < plugindb.total; i++)
281 standalone_data.append(new BC_ListBoxItem(_(plugindb.values[i]->title)));
282 for(int i = 0; i < plugin_locations.total; i++)
284 Track *track = mwindow->edl->tracks->number(plugin_locations.values[i]->module);
285 char *track_title = track->title;
286 int number = plugin_locations.values[i]->plugin;
287 Plugin *plugin = track->get_current_plugin(mwindow->edl->local_session->get_selectionstart(1),
292 char *plugin_title = plugin->title;
293 char string[BCTEXTLEN];
295 sprintf(string, "%s: %s", track_title, _(plugin_title));
296 shared_data.append(new BC_ListBoxItem(string));
298 for(int i = 0; i < module_locations.total; i++)
300 Track *track = mwindow->edl->tracks->number(module_locations.values[i]->module);
301 module_data.append(new BC_ListBoxItem(track->title));
309 add_subwindow(standalone_title = new BC_Title(mwindow->theme->plugindialog_new_x,
310 mwindow->theme->plugindialog_new_y - 20,
312 add_subwindow(standalone_list = new PluginDialogNew(this,
314 mwindow->theme->plugindialog_new_x,
315 mwindow->theme->plugindialog_new_y,
316 mwindow->theme->plugindialog_new_w,
317 mwindow->theme->plugindialog_new_h));
319 // if(thread->plugin)
320 // add_subwindow(standalone_change = new PluginDialogChangeNew(mwindow,
322 // mwindow->theme->plugindialog_newattach_x,
323 // mwindow->theme->plugindialog_newattach_y));
325 // add_subwindow(standalone_attach = new PluginDialogAttachNew(mwindow,
327 // mwindow->theme->plugindialog_newattach_x,
328 // mwindow->theme->plugindialog_newattach_y));
337 add_subwindow(shared_title = new BC_Title(mwindow->theme->plugindialog_shared_x,
338 mwindow->theme->plugindialog_shared_y - 20,
339 _("Shared effects:")));
340 add_subwindow(shared_list = new PluginDialogShared(this,
342 mwindow->theme->plugindialog_shared_x,
343 mwindow->theme->plugindialog_shared_y,
344 mwindow->theme->plugindialog_shared_w,
345 mwindow->theme->plugindialog_shared_h));
346 // if(thread->plugin)
347 // add_subwindow(shared_change = new PluginDialogChangeShared(mwindow,
349 // mwindow->theme->plugindialog_sharedattach_x,
350 // mwindow->theme->plugindialog_sharedattach_y));
352 // add_subwindow(shared_attach = new PluginDialogAttachShared(mwindow,
354 // mwindow->theme->plugindialog_sharedattach_x,
355 // mwindow->theme->plugindialog_sharedattach_y));
365 add_subwindow(module_title = new BC_Title(mwindow->theme->plugindialog_module_x,
366 mwindow->theme->plugindialog_module_y - 20,
367 _("Shared tracks:")));
368 add_subwindow(module_list = new PluginDialogModules(this,
370 mwindow->theme->plugindialog_module_x,
371 mwindow->theme->plugindialog_module_y,
372 mwindow->theme->plugindialog_module_w,
373 mwindow->theme->plugindialog_module_h));
374 // if(thread->plugin)
375 // add_subwindow(module_change = new PluginDialogChangeModule(mwindow,
377 // mwindow->theme->plugindialog_moduleattach_x,
378 // mwindow->theme->plugindialog_moduleattach_y));
380 // add_subwindow(module_attach = new PluginDialogAttachModule(mwindow,
382 // mwindow->theme->plugindialog_moduleattach_x,
383 // mwindow->theme->plugindialog_moduleattach_y));
387 // Add option for the menu invocation
388 // add_subwindow(file_title = new BC_Title(
389 // mwindow->theme->menueffect_file_x,
390 // mwindow->theme->menueffect_file_y,
391 // _("One standalone effect is attached to the first track.\n"
392 // "Shared effects are attached to the remaining tracks.")));
394 if(thread->is_mainmenu)
395 add_subwindow(single_standalone = new PluginDialogSingle(this,
396 mwindow->theme->plugindialog_new_x + BC_OKButton::calculate_w() + 10,
397 mwindow->theme->plugindialog_new_y +
398 mwindow->theme->plugindialog_new_h +
399 get_text_height(MEDIUMFONT)));
403 add_subwindow(new BC_OKButton(this));
404 add_subwindow(new BC_CancelButton(this));
406 selected_available = -1;
407 selected_shared = -1;
408 selected_modules = -1;
415 int PluginDialog::resize_event(int w, int h)
417 mwindow->session->plugindialog_w = w;
418 mwindow->session->plugindialog_h = h;
419 mwindow->theme->get_plugindialog_sizes();
422 standalone_title->reposition_window(mwindow->theme->plugindialog_new_x,
423 mwindow->theme->plugindialog_new_y - 20);
424 standalone_list->reposition_window(mwindow->theme->plugindialog_new_x,
425 mwindow->theme->plugindialog_new_y,
426 mwindow->theme->plugindialog_new_w,
427 mwindow->theme->plugindialog_new_h);
428 // if(standalone_attach)
429 // standalone_attach->reposition_window(mwindow->theme->plugindialog_newattach_x,
430 // mwindow->theme->plugindialog_newattach_y);
432 // standalone_change->reposition_window(mwindow->theme->plugindialog_newattach_x,
433 // mwindow->theme->plugindialog_newattach_y);
439 shared_title->reposition_window(mwindow->theme->plugindialog_shared_x,
440 mwindow->theme->plugindialog_shared_y - 20);
441 shared_list->reposition_window(mwindow->theme->plugindialog_shared_x,
442 mwindow->theme->plugindialog_shared_y,
443 mwindow->theme->plugindialog_shared_w,
444 mwindow->theme->plugindialog_shared_h);
446 // shared_attach->reposition_window(mwindow->theme->plugindialog_sharedattach_x,
447 // mwindow->theme->plugindialog_sharedattach_y);
449 // shared_change->reposition_window(mwindow->theme->plugindialog_sharedattach_x,
450 // mwindow->theme->plugindialog_sharedattach_y);
456 module_title->reposition_window(mwindow->theme->plugindialog_module_x,
457 mwindow->theme->plugindialog_module_y - 20);
458 module_list->reposition_window(mwindow->theme->plugindialog_module_x,
459 mwindow->theme->plugindialog_module_y,
460 mwindow->theme->plugindialog_module_w,
461 mwindow->theme->plugindialog_module_h);
463 // module_attach->reposition_window(mwindow->theme->plugindialog_moduleattach_x,
464 // mwindow->theme->plugindialog_moduleattach_y);
466 // module_change->reposition_window(mwindow->theme->plugindialog_moduleattach_x,
467 // mwindow->theme->plugindialog_moduleattach_y);
470 if(single_standalone)
471 single_standalone->reposition_window(mwindow->theme->plugindialog_new_x,
472 mwindow->theme->plugindialog_new_y +
473 mwindow->theme->plugindialog_new_h +
474 get_text_height(MEDIUMFONT));
480 int PluginDialog::attach_new(int number)
482 if(number > -1 && number < standalone_data.total)
484 strcpy(thread->plugin_title, plugindb.values[number]->title);
485 thread->plugin_type = PLUGIN_STANDALONE; // type is plugin
490 int PluginDialog::attach_shared(int number)
492 if(number > -1 && number < shared_data.total)
494 thread->plugin_type = PLUGIN_SHAREDPLUGIN; // type is shared plugin
495 thread->shared_location = *(plugin_locations.values[number]); // copy location
500 int PluginDialog::attach_module(int number)
502 if(number > -1 && number < module_data.total)
504 // title->update(module_data.values[number]->get_text());
505 thread->plugin_type = PLUGIN_SHAREDMODULE; // type is module
506 thread->shared_location = *(module_locations.values[number]); // copy location
511 void PluginDialog::save_settings()
522 // PluginDialogTextBox::PluginDialogTextBox(PluginDialog *dialog, char *text, int x, int y)
523 // : BC_TextBox(x, y, 200, 1, text)
525 // this->dialog = dialog;
527 // PluginDialogTextBox::~PluginDialogTextBox()
529 // int PluginDialogTextBox::handle_event()
532 // PluginDialogDetach::PluginDialogDetach(MWindow *mwindow, PluginDialog *dialog, int x, int y)
533 // : BC_GenericButton(x, y, _("Detach"))
535 // this->dialog = dialog;
537 // PluginDialogDetach::~PluginDialogDetach()
539 // int PluginDialogDetach::handle_event()
541 // // dialog->title->update(_("None"));
542 // dialog->thread->plugin_type = 0; // type is none
543 // dialog->thread->plugin_title[0] = 0;
560 PluginDialogNew::PluginDialogNew(PluginDialog *dialog,
561 ArrayList<BC_ListBoxItem*> *standalone_data,
573 this->dialog = dialog;
575 PluginDialogNew::~PluginDialogNew() { }
576 int PluginDialogNew::handle_event()
578 // dialog->attach_new(get_selection_number(0, 0));
584 int PluginDialogNew::selection_changed()
586 dialog->selected_available = get_selection_number(0, 0);
589 dialog->shared_list->set_all_selected(&dialog->shared_data, 0);
590 dialog->shared_list->draw_items(1);
591 dialog->module_list->set_all_selected(&dialog->module_data, 0);
592 dialog->module_list->draw_items(1);
593 dialog->selected_shared = -1;
594 dialog->selected_modules = -1;
598 // PluginDialogAttachNew::PluginDialogAttachNew(MWindow *mwindow, PluginDialog *dialog, int x, int y)
599 // : BC_GenericButton(x, y, _("Attach"))
601 // this->dialog = dialog;
603 // PluginDialogAttachNew::~PluginDialogAttachNew()
606 // int PluginDialogAttachNew::handle_event()
608 // dialog->attach_new(dialog->selected_available);
613 // PluginDialogChangeNew::PluginDialogChangeNew(MWindow *mwindow, PluginDialog *dialog, int x, int y)
614 // : BC_GenericButton(x, y, _("Change"))
616 // this->dialog = dialog;
618 // PluginDialogChangeNew::~PluginDialogChangeNew()
621 // int PluginDialogChangeNew::handle_event()
623 // dialog->attach_new(dialog->selected_available);
637 PluginDialogShared::PluginDialogShared(PluginDialog *dialog,
638 ArrayList<BC_ListBoxItem*> *shared_data,
650 this->dialog = dialog;
652 PluginDialogShared::~PluginDialogShared() { }
653 int PluginDialogShared::handle_event()
655 // dialog->attach_shared(get_selection_number(0, 0));
660 int PluginDialogShared::selection_changed()
662 dialog->selected_shared = get_selection_number(0, 0);
665 dialog->standalone_list->set_all_selected(&dialog->standalone_data, 0);
666 dialog->standalone_list->draw_items(1);
667 dialog->module_list->set_all_selected(&dialog->module_data, 0);
668 dialog->module_list->draw_items(1);
669 dialog->selected_available = -1;
670 dialog->selected_modules = -1;
674 // PluginDialogAttachShared::PluginDialogAttachShared(MWindow *mwindow,
675 // PluginDialog *dialog,
678 // : BC_GenericButton(x, y, _("Attach"))
680 // this->dialog = dialog;
682 // PluginDialogAttachShared::~PluginDialogAttachShared() { }
683 // int PluginDialogAttachShared::handle_event()
685 // dialog->attach_shared(dialog->selected_shared);
690 // PluginDialogChangeShared::PluginDialogChangeShared(MWindow *mwindow,
691 // PluginDialog *dialog,
694 // : BC_GenericButton(x, y, _("Change"))
696 // this->dialog = dialog;
698 // PluginDialogChangeShared::~PluginDialogChangeShared() { }
699 // int PluginDialogChangeShared::handle_event()
701 // dialog->attach_shared(dialog->selected_shared);
718 PluginDialogModules::PluginDialogModules(PluginDialog *dialog,
719 ArrayList<BC_ListBoxItem*> *module_data,
731 this->dialog = dialog;
733 PluginDialogModules::~PluginDialogModules() { }
734 int PluginDialogModules::handle_event()
736 // dialog->attach_module(get_selection_number(0, 0));
742 int PluginDialogModules::selection_changed()
744 dialog->selected_modules = get_selection_number(0, 0);
747 dialog->standalone_list->set_all_selected(&dialog->standalone_data, 0);
748 dialog->standalone_list->draw_items(1);
749 dialog->shared_list->set_all_selected(&dialog->shared_data, 0);
750 dialog->shared_list->draw_items(1);
751 dialog->selected_available = -1;
752 dialog->selected_shared = -1;
757 PluginDialogSingle::PluginDialogSingle(PluginDialog *dialog, int x, int y)
760 dialog->thread->single_standalone,
761 _("Attach single standlone and share others"))
763 this->dialog = dialog;
766 int PluginDialogSingle::handle_event()
768 dialog->thread->single_standalone = get_value();
773 // PluginDialogAttachModule::PluginDialogAttachModule(MWindow *mwindow,
774 // PluginDialog *dialog,
777 // : BC_GenericButton(x, y, _("Attach"))
779 // this->dialog = dialog;
781 // PluginDialogAttachModule::~PluginDialogAttachModule() { }
782 // int PluginDialogAttachModule::handle_event()
784 // dialog->attach_module(dialog->selected_modules);
789 // PluginDialogChangeModule::PluginDialogChangeModule(MWindow *mwindow,
790 // PluginDialog *dialog,
793 // : BC_GenericButton(x, y, _("Change"))
795 // this->dialog = dialog;
797 // PluginDialogChangeModule::~PluginDialogChangeModule() { }
798 // int PluginDialogChangeModule::handle_event()
800 // dialog->attach_module(dialog->selected_modules);