Merge CV, ver=5.1; ops/methods from HV, and interface from CV where possible
[goodguy/history.git] / cinelerra-5.1 / cinelerra / reindex.C
diff --git a/cinelerra-5.1/cinelerra/reindex.C b/cinelerra-5.1/cinelerra/reindex.C
new file mode 100644 (file)
index 0000000..2bf60d0
--- /dev/null
@@ -0,0 +1,124 @@
+
+/*
+ * 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 "reindex.h"
+
+
+#include <libintl.h>
+#define _(String) gettext(String)
+#define gettext_noop(String) String
+#define N_(String) gettext_noop (String)
+
+
+ReIndex::ReIndex(MWindow *mwindow)
+ : BC_MenuItem(_("Redraw Indexes"), "", 0), Thread()
+{
+       this->mwindow = mwindow;
+}
+
+ReIndex::~ReIndex()
+{
+}
+
+ReIndex::handle_event() { start(); }
+
+void ReIndex::run()
+{
+       int result;
+       
+       if(mwindow->gui) mwindow->gui->disable_window();
+       if(mwindow->gui) mwindow->lock_resize();
+
+       {
+               ReIndexWindow window;
+               window.create_objects();
+               result = window.run_window();
+       }
+       
+       if(!result)       // user didn't cancel
+       {
+// ========== need pointers since mainmenu is created after tracks
+// ==================================== delete old index files
+               mwindow->tracks->delete_index_files();
+// ==================================== create new index files
+               mwindow->tracks->create_index_files(1);
+// ==================================== draw
+               mwindow->draw();
+       }
+       if(mwindow->gui) mwindow->unlock_resize();
+       if(mwindow->gui) mwindow->gui->enable_window();
+}
+
+ReIndexWindow::ReIndexWindow(char *display = "")
+ : BC_Window(display, MEGREY, _(PROGRAM_NAME ": Redraw Indexes"), 340, 140, 340, 140)
+{
+}
+
+ReIndexWindow::~ReIndexWindow()
+{
+       delete ok;
+       delete cancel;
+}
+
+ReIndexWindow::create_objects()
+{
+       BC_SubWindow *subwindow;
+       
+       add_subwindow(subwindow = new BC_SubWindow(0, 0, w, h, MEGREY));
+       subwindow->add_subwindow(new BC_Title(5, 5, _("Redraw all indexes for the current project?")));
+       subwindow->add_subwindow(ok = new ReIndexOkButton(this));
+       subwindow->add_subwindow(cancel = new ReIndexCancelButton(this));
+}
+
+ReIndexOkButton::ReIndexOkButton(ReIndexWindow *window)
+ : BC_Button(5, 80, _("Yes"))
+{
+       this->window = window;
+}
+
+ReIndexOkButton::handle_event()
+{
+       window->set_done(0);
+}
+
+ReIndexOkButton::keypress_event()
+{
+       if(window->get_keypress() == 13) { handle_event(); return 1; }
+       return 0;
+}
+
+ReIndexCancelButton::ReIndexCancelButton(ReIndexWindow *window)
+ : BC_Button(140, 80, _("No"))
+{
+       this->window = window;
+}
+
+ReIndexCancelButton::handle_event()
+{
+       window->set_done(1);
+}
+
+ReIndexCancelButton::keypress_event()
+{
+       if(window->get_keypress() == ESC) { handle_event(); return 1; }
+       return 0;
+}
+