Merge CV, ver=5.1; ops/methods from HV, and interface from CV where possible
[goodguy/history.git] / cinelerra-5.1 / cinelerra / awindow.C
diff --git a/cinelerra-5.1/cinelerra/awindow.C b/cinelerra-5.1/cinelerra/awindow.C
new file mode 100644 (file)
index 0000000..be3cf27
--- /dev/null
@@ -0,0 +1,81 @@
+
+/*
+ * CINELERRA
+ * Copyright (C) 1997-2012 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 "assetedit.h"
+#include "assetremove.h"
+#include "awindow.h"
+#include "awindowgui.h"
+#include "bcsignals.h"
+#include "clipedit.h"
+#include "labeledit.h"
+
+AWindow::AWindow(MWindow *mwindow)
+ : Thread(1, 0, 0)
+{
+       this->mwindow = mwindow;
+       current_folder[0] = 0;
+       asset_remove = 0;
+       asset_edit = 0;
+       clip_edit = 0;
+       label_edit = 0;
+}
+
+
+AWindow::~AWindow()
+{
+       if(gui) {
+               gui->lock_window("AWindow::~AWindow");
+               gui->set_done(0);
+               gui->unlock_window();
+               Thread::join();
+       }
+       delete asset_remove;
+       delete asset_edit;
+       delete label_edit;
+       delete clip_edit;
+}
+
+void AWindow::create_objects()
+{
+       gui = new AWindowGUI(mwindow, this);
+       gui->create_objects();
+       gui->async_update_assets();
+       asset_remove = new AssetRemoveThread(mwindow);
+       asset_edit = new AssetEdit(mwindow);
+       clip_edit = new ClipEdit(mwindow, this, 0);
+       label_edit = new LabelEdit(mwindow, this, 0);
+}
+
+int AWindow::save_defaults(BC_Hash *defaults)
+{
+       return gui->save_defaults(defaults);
+}
+int AWindow::load_defaults(BC_Hash *defaults)
+{
+       return gui->load_defaults(defaults);
+}
+
+
+void AWindow::run()
+{
+       gui->run_window();
+       delete gui;  gui = 0;
+}