4 * Copyright (C) 2009 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
23 #include "bcsignals.h"
28 #include "filesystem.h"
29 #include "indexfile.h"
33 #include "localsession.h"
36 #include "mainsession.h"
38 #include "mwindowgui.h"
39 #include "preferences.h"
46 Load::Load(MWindow *mwindow, MainMenu *mainmenu)
47 : BC_MenuItem(_("Load files..."), "o", 'o')
49 this->mwindow = mwindow;
50 this->mainmenu = mainmenu;
59 void Load::create_objects()
61 thread = new LoadFileThread(mwindow, this);
64 int Load::handle_event()
66 mwindow->gui->unlock_window();
68 mwindow->gui->lock_window("Load::handle_event");
77 LoadFileThread::LoadFileThread(MWindow *mwindow, Load *load)
80 this->mwindow = mwindow;
83 load_mode = LOADMODE_RESOURCESONLY;
84 edl_mode = LOADMODE_EDL_CLIP;
87 LoadFileThread::~LoadFileThread()
92 BC_Window* LoadFileThread::new_gui()
94 char default_path[BCTEXTLEN];
96 sprintf(default_path, "~");
97 mwindow->defaults->get("DEFAULT_LOADPATH", default_path);
98 load_mode = mwindow->defaults->get("LOAD_MODE", load_mode);
100 mwindow->gui->lock_window("LoadFileThread::new_gui");
101 window = new LoadFileWindow(mwindow, this, default_path);
102 mwindow->gui->unlock_window();
104 window->create_objects();
108 void LoadFileThread::handle_done_event(int result)
110 window->lock_window("LoadFileThread::handle_done_event");
111 window->hide_window();
112 window->unlock_window();
114 if( !result ) load_apply();
117 void LoadFileThread::load_apply()
119 mwindow->defaults->update("DEFAULT_LOADPATH", window->get_submitted_path());
120 mwindow->defaults->update("LOAD_MODE", load_mode);
121 if( edl_mode == LOADMODE_EDL_FILEREF )
122 mwindow->show_warning(
123 &mwindow->preferences->warn_fileref,
124 _("Other projects can change this project\n"
125 "and this can become a broken link"));
126 ArrayList<char*> path_list;
127 path_list.set_array_delete();
129 // Collect all selected files
131 for( int i=0; (in_path = window->get_path(i))!=0; ++i ) {
132 int k = path_list.size();
133 while( --k >= 0 && strcmp(in_path, path_list.values[k]) );
134 if( k < 0 ) path_list.append(cstrdup(in_path));
138 if( !path_list.size() ) return;
139 int replaced = load_mode == LOADMODE_REPLACE ||
140 load_mode == LOADMODE_REPLACE_CONCATENATE ? 1 : 0;
142 mwindow->interrupt_indexes();
143 mwindow->gui->lock_window("LoadFileThread::run");
144 mwindow->load_filenames(&path_list, load_mode, edl_mode, replaced);
145 mwindow->gui->mainmenu->add_load(path_list.values[0]);
146 mwindow->gui->unlock_window();
147 path_list.remove_all_objects();
149 mwindow->save_backup();
150 mwindow->restart_brender();
151 mwindow->session->changes_made = !replaced ? 1 : 0;
155 LoadFileWindow::LoadFileWindow(MWindow *mwindow,
156 LoadFileThread *thread,
157 char *init_directory)
158 : BC_FileBox(mwindow->gui->get_abs_cursor_x(1),
159 mwindow->gui->get_abs_cursor_y(1) -
160 BC_WindowBase::get_resources()->filebox_h / 2,
162 _(PROGRAM_NAME ": Load"),
163 _("Select files to load:"),
167 mwindow->theme->loadfile_pad)
169 this->thread = thread;
170 this->mwindow = mwindow;
171 // *** CONTEXT_HELP ***
172 context_help_set_keyword("Loading Files");
175 LoadFileWindow::~LoadFileWindow()
177 lock_window("LoadFileWindow::~LoadFileWindow");
182 void LoadFileWindow::create_objects()
184 lock_window("LoadFileWindow::create_objects");
185 BC_FileBox::create_objects();
187 int x = get_w() / 2 - LoadMode::calculate_w(this, mwindow->theme) / 2;
188 int y = get_y_margin();
189 // always start as clip to match historical behavior
190 thread->edl_mode = LOADMODE_EDL_CLIP;
191 loadmode = new LoadMode(mwindow, this, x, y,
192 &thread->load_mode, &thread->edl_mode, 0, 1);
193 loadmode->create_objects();
194 const char *apply = _("Apply");
195 x = 3*get_w()/4 - BC_GenericButton::calculate_w(this, apply)/2;
196 y = get_h() - BC_CancelButton::calculate_h() - yS(16);
197 add_subwindow(load_file_apply = new LoadFileApply(this, x, y, apply));
204 int LoadFileWindow::resize_event(int w, int h)
206 draw_background(0, 0, w, h);
207 BC_FileBox::resize_event(w, h);
208 int x = w / 2 - LoadMode::calculate_w(this, mwindow->theme) / 2;
209 int y = get_y_margin();
210 loadmode->reposition_window(x, y);
211 const char *apply = load_file_apply->get_text();
212 x = 3*get_w()/4 - BC_GenericButton::calculate_w(this, apply)/2;
213 y = get_h() - BC_CancelButton::calculate_h() - yS(16);
214 load_file_apply->reposition_window(x, y);
220 LoadFileApply::LoadFileApply(LoadFileWindow *load_file_window,
221 int x, int y, const char *text)
222 : BC_GenericButton(x, y, text)
224 this->load_file_window = load_file_window;
227 int LoadFileApply::handle_event()
229 load_file_window->thread->load_apply();
234 LocateFileWindow::LocateFileWindow(MWindow *mwindow,
235 char *init_directory,
237 : BC_FileBox(mwindow->gui->get_abs_cursor_x(1),
238 mwindow->gui->get_abs_cursor_y(1),
240 _(PROGRAM_NAME ": Locate file"),
243 this->mwindow = mwindow;
246 LocateFileWindow::~LocateFileWindow()
256 LoadPrevious::LoadPrevious(MWindow *mwindow, Load *loadfile)
259 this->mwindow = mwindow;
260 this->loadfile = loadfile;
263 int LoadPrevious::handle_event()
265 if( !path[0] ) return 1;
266 ArrayList<char*> path_list;
267 path_list.set_array_delete();
269 int load_mode = mwindow->defaults->get("LOAD_MODE", LOADMODE_REPLACE);
271 path_list.append(out_path = new char[strlen(path) + 1]);
272 strcpy(out_path, path);
274 mwindow->load_filenames(&path_list, LOADMODE_REPLACE);
275 mwindow->gui->mainmenu->add_load(path_list.values[0]);
276 path_list.remove_all_objects();
278 mwindow->defaults->update("LOAD_MODE", load_mode);
279 mwindow->save_backup();
280 mwindow->session->changes_made = 0;
284 int LoadPrevious::set_path(const char *path)
286 strcpy(this->path, path);
292 LoadBackup::LoadBackup(MWindow *mwindow)
293 : BC_MenuItem(_("Load backup"))
295 this->mwindow = mwindow;
298 int LoadBackup::handle_event()
300 mwindow->load_backup();
301 mwindow->session->changes_made = 1;