Merge CV, ver=5.1; ops/methods from HV, and interface from CV where possible
[goodguy/history.git] / cinelerra-5.0 / guicast / bcnewfolder.C
diff --git a/cinelerra-5.0/guicast/bcnewfolder.C b/cinelerra-5.0/guicast/bcnewfolder.C
deleted file mode 100644 (file)
index 850a020..0000000
+++ /dev/null
@@ -1,164 +0,0 @@
-
-/*
- * CINELERRA
- * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- *
- */
-
-#include "condition.h"
-#include "bcfilebox.h"
-#include "bcnewfolder.h"
-#include "bctitle.h"
-#include "filesystem.h"
-#include "language.h"
-#include "mutex.h"
-
-#include <sys/stat.h>
-
-
-
-
-
-
-
-BC_NewFolder::BC_NewFolder(int x, int y, BC_FileBox *filebox)
- : BC_Window(filebox->get_newfolder_title(),
-       x,
-       y,
-       320,
-       120,
-       0,
-       0,
-       0,
-       0,
-       1)
-{
-}
-
-BC_NewFolder::~BC_NewFolder()
-{
-}
-
-
-void BC_NewFolder::create_objects()
-{
-       int x = 10, y = 10;
-       add_tool(new BC_Title(x, y, _("Enter the name of the folder:")));
-       y += 20;
-       add_subwindow(textbox = new BC_TextBox(x, y, 300, 1, _("Untitled")));
-       y += 30;
-       add_subwindow(new BC_OKButton(this));
-       x = get_w() - 100;
-       add_subwindow(new BC_CancelButton(this));
-       show_window();
-}
-
-const char* BC_NewFolder::get_text()
-{
-       return textbox->get_text();
-}
-
-
-BC_NewFolderThread::BC_NewFolderThread(BC_FileBox *filebox)
- : Thread(0, 0, 0)
-{
-       this->filebox = filebox;
-       window = 0;
-       change_lock = new Mutex("BC_NewFolderThread::change_lock");
-       completion_lock = new Condition(1, "BC_NewFolderThread::completion_lock");
-}
-
-BC_NewFolderThread::~BC_NewFolderThread()
-{
-       interrupt();
-       delete change_lock;
-       delete completion_lock;
-}
-
-void BC_NewFolderThread::run()
-{
-       int x = filebox->get_abs_cursor_x(1);
-       int y = filebox->get_abs_cursor_y(1);
-       change_lock->lock("BC_NewFolderThread::run 1");
-       window = new BC_NewFolder(x,
-               y,
-               filebox);
-       window->create_objects();
-       change_lock->unlock();
-
-
-       int result = window->run_window();
-
-       if(!result)
-       {
-               char new_folder[BCTEXTLEN];
-               filebox->fs->join_names(new_folder, filebox->fs->get_current_dir(), window->get_text());
-               mkdir(new_folder, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
-               filebox->lock_window("BC_NewFolderThread::run");
-               filebox->refresh();
-               filebox->unlock_window();
-       }
-
-       change_lock->lock("BC_NewFolderThread::run 2");
-       delete window;
-       window = 0;
-       change_lock->unlock();
-
-       completion_lock->unlock();
-}
-
-int BC_NewFolderThread::interrupt()
-{
-       change_lock->lock("BC_NewFolderThread::interrupt");
-       if(window)
-       {
-               window->lock_window("BC_NewFolderThread::interrupt");
-               window->set_done(1);
-               window->unlock_window();
-       }
-
-       change_lock->unlock();
-
-       completion_lock->lock("BC_NewFolderThread::interrupt");
-       completion_lock->unlock();
-       return 0;
-}
-
-int BC_NewFolderThread::start_new_folder()
-{
-       change_lock->lock();
-
-       if(window)
-       {
-               window->lock_window("BC_NewFolderThread::start_new_folder");
-               window->raise_window();
-               window->unlock_window();
-               change_lock->unlock();
-       }
-       else
-       {
-               change_lock->unlock();
-               completion_lock->lock("BC_NewFolderThread::start_new_folder");
-
-               Thread::start();
-       }
-
-
-       return 0;
-}
-
-