X-Git-Url: https://git.cinelerra-gg.org/git/?p=goodguy%2Fcinelerra.git;a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Floadfile.C;h=c65a9a28531df854f1a08c2025fe91e696b4ce54;hp=345456d976c996747b79c2852786a5186f816450;hb=5ec378f09aeeb646705fdb8035b39a186374fba0;hpb=2a56d102d9db53017b306f2a61a2382f29a75783 diff --git a/cinelerra-5.1/cinelerra/loadfile.C b/cinelerra-5.1/cinelerra/loadfile.C index 345456d9..c65a9a28 100644 --- a/cinelerra-5.1/cinelerra/loadfile.C +++ b/cinelerra-5.1/cinelerra/loadfile.C @@ -183,11 +183,9 @@ void LoadFileWindow::create_objects() lock_window("LoadFileWindow::create_objects"); BC_FileBox::create_objects(); - int x = get_w() / 2 - - LoadMode::calculate_w(this, mwindow->theme) / 2; - int y = get_cancel_button()->get_y() - - LoadMode::calculate_h(this, mwindow->theme); - loadmode = new LoadMode(mwindow, this, x, y, &thread->load_mode, 0); + int x = get_w() / 2 - LoadMode::calculate_w(this, mwindow->theme) / 2; + int y = get_y_margin(); + loadmode = new LoadMode(mwindow, this, x, y, &thread->load_mode, 0, 1); loadmode->create_objects(); add_subwindow(load_file_apply = new LoadFileApply(this)); @@ -199,16 +197,15 @@ void LoadFileWindow::create_objects() int LoadFileWindow::resize_event(int w, int h) { draw_background(0, 0, w, h); - int x = w / 2 - 200; - int y = get_cancel_button()->get_y() - - LoadMode::calculate_h(this, mwindow->theme); + BC_FileBox::resize_event(w, h); + int x = w / 2 - LoadMode::calculate_w(this, mwindow->theme) / 2; + int y = get_y_margin(); loadmode->reposition_window(x, y); - x = (w - BC_GenericButton::calculate_w(this, _("Apply")))/2; y = h - BC_GenericButton::calculate_h() - 15; load_file_apply->reposition_window(x, y); - - return BC_FileBox::resize_event(w, h); + flush(); + return 1; } @@ -251,7 +248,7 @@ LocateFileWindow::~LocateFileWindow() LoadPrevious::LoadPrevious(MWindow *mwindow, Load *loadfile) - : BC_MenuItem(""), Thread() + : BC_MenuItem("") { this->mwindow = mwindow; this->loadfile = loadfile; @@ -259,6 +256,7 @@ LoadPrevious::LoadPrevious(MWindow *mwindow, Load *loadfile) int LoadPrevious::handle_event() { + if( !path[0] ) return 1; ArrayList path_list; path_list.set_array_delete(); char *out_path; @@ -277,14 +275,7 @@ int LoadPrevious::handle_event() return 1; } - - -void LoadPrevious::run() -{ -// loadfile->mwindow->load(path, loadfile->append); -} - -int LoadPrevious::set_path(char *path) +int LoadPrevious::set_path(const char *path) { strcpy(this->path, path); return 0;