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
24 #include "edlsession.h"
26 #include "mainsession.h"
27 #include "menuattachtransition.h"
29 #include "mwindowgui.h"
30 #include "plugindialog.h"
31 #include "pluginserver.h"
39 MenuAttachTransition::MenuAttachTransition(MWindow *mwindow, int data_type)
40 : BC_MenuItem(_("Attach Transition..."))
42 this->mwindow = mwindow;
43 this->data_type = data_type;
44 thread = new TransitionDialogThread(mwindow, data_type);
47 MenuAttachTransition::~MenuAttachTransition()
52 int MenuAttachTransition::handle_event()
59 TransitionDialogThread::TransitionDialogThread(MWindow *mwindow, int data_type)
62 this->mwindow = mwindow;
63 this->data_type = data_type;
67 TransitionDialogThread::~TransitionDialogThread()
72 void TransitionDialogThread::start()
74 if(!transition_names.total)
76 strcpy(transition_title, data_type == TRACK_AUDIO ?
77 mwindow->edl->session->default_atransition :
78 mwindow->edl->session->default_vtransition);
80 // Construct listbox names
81 ArrayList<PluginServer*> plugindb;
82 mwindow->search_plugindb(data_type == TRACK_AUDIO,
83 data_type == TRACK_VIDEO, 0, 1, 0, plugindb);
84 for(int i = 0; i < plugindb.total; i++) {
85 const char *title = plugindb.values[i]->title;
86 if( !strcmp(transition_title, title) ) number = i;
87 transition_names.append(new BC_ListBoxItem(_(title)));
91 mwindow->gui->unlock_window();
92 BC_DialogThread::start();
93 mwindow->gui->lock_window("TransitionDialogThread::start");
98 BC_Window* TransitionDialogThread::new_gui()
100 mwindow->gui->lock_window("TransitionDialogThread::new_gui");
101 int x = mwindow->gui->get_abs_cursor_x(0) -
102 mwindow->session->transitiondialog_w / 2;
103 int y = mwindow->gui->get_abs_cursor_y(0) -
104 mwindow->session->transitiondialog_h / 2;
105 TransitionDialog *window = new TransitionDialog(mwindow, this, x, y);
106 window->create_objects();
107 mwindow->gui->unlock_window();
111 void TransitionDialogThread::handle_close_event(int result)
115 mwindow->paste_transitions(data_type, transition_title);
121 TransitionDialog::TransitionDialog(MWindow *mwindow,
122 TransitionDialogThread *thread, int x, int y)
123 : BC_Window(_("Attach Transition"), x, y,
124 mwindow->session->transitiondialog_w,
125 mwindow->session->transitiondialog_h,
128 this->mwindow = mwindow;
129 this->thread = thread;
132 TransitionSetDefault::TransitionSetDefault(TransitionDialog *window, int x, int y)
133 : BC_GenericButton(x, y, _("Set Default Transition"))
135 this->window = window;
138 TransitionSetDefault::~TransitionSetDefault()
142 int TransitionSetDefault::handle_event()
144 TransitionDialogThread *thread = (TransitionDialogThread *)window->thread;
145 const char *transition_title = thread->transition_title;
146 EDL *edl = window->mwindow->edl;
147 switch( thread->data_type ) {
149 strcpy(edl->session->default_atransition, transition_title);
152 strcpy(edl->session->default_vtransition, transition_title);
155 window->set_default_text->update(transition_title);
159 TransitionDefaultText::TransitionDefaultText(TransitionDialog *window,
160 int x, int y, int w, const char * text)
161 : BC_TextBox(x, y, w, 1, text)
163 this->window = window;
166 TransitionDefaultText::~TransitionDefaultText()
171 void TransitionDialog::create_objects()
176 lock_window("TransitionDialog::create_objects");
177 add_subwindow(name_title = new BC_Title(x, y, _("Select transition from list")));
178 y += name_title->get_h() + 5;
179 add_subwindow(name_list = new TransitionDialogName(thread,
180 &thread->transition_names,
184 get_h() - y - BC_OKButton::calculate_h() - 100));
185 y += name_list->get_h() + 20;
186 add_subwindow(set_default = new TransitionSetDefault(this, x, y));
187 y += set_default->get_h() + 10;
188 const char *default_transition = "";
189 EDL *edl = mwindow->edl;
190 switch( thread->data_type ) {
192 default_transition = edl->session->default_atransition;
195 default_transition = edl->session->default_vtransition;
198 add_subwindow(set_default_text = new TransitionDefaultText(this, x, y,
199 get_w()-x-20, default_transition));
200 if( thread->number >= 0 ) {
201 name_list->update_selection(&thread->transition_names, thread->number, 0);
202 name_list->draw_items(0);
204 add_subwindow(new BC_OKButton(this));
205 add_subwindow(new BC_CancelButton(this));
211 int TransitionDialog::resize_event(int w, int h)
216 name_title->reposition_window(x, y);
217 y += name_title->get_h() + 5;
218 name_list->reposition_window(x, y,
219 w - x - x, h - y - BC_OKButton::calculate_h() - 100);
220 y += name_list->get_h() + 20;
221 set_default->reposition_window(x, y);
222 y += set_default->get_h() + 10;
223 set_default_text->reposition_window(x, y, get_w()-x-20);
229 TransitionDialogName::TransitionDialogName(TransitionDialogThread *thread,
230 ArrayList<BC_ListBoxItem*> *standalone_data, int x, int y, int w, int h)
238 this->thread = thread;
241 int TransitionDialogName::handle_event()
247 int TransitionDialogName::selection_changed()
249 thread->number = get_selection_number(0, 0);
250 strcpy(thread->transition_title,
251 thread->transition_names.values[thread->number]->get_text());