bsd lang segv fix, enable bsd lv2, lv2 gui enable fix, proxy/ffmpeg toggle resize...
[goodguy/history.git] / cinelerra-5.1 / cinelerra / quit.C
index 2b31b28f67af24efc40eefb75c682a70321da449..35be0f44ca0a22c171834b2baf4f8313a4defebe 100644 (file)
@@ -2,21 +2,21 @@
 /*
  * 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 "assets.h"
@@ -30,6 +30,7 @@
 #include "mwindow.h"
 #include "mwindowgui.h"
 #include "playback3d.h"
+#include "preferences.h"
 #include "quit.h"
 #include "record.h"
 #include "render.h"
 
 
 Quit::Quit(MWindow *mwindow)
- : BC_MenuItem(_("Quit"), "q", 'q'), Thread() 
-{ 
-       this->mwindow = mwindow; 
+ : BC_MenuItem(_("Quit"), "q", 'q'), Thread()
+{
+       this->mwindow = mwindow;
 }
 
 void Quit::create_objects(Save *save)
-{ 
-       this->save = save; 
+{
+       this->save = save;
 }
 
-int Quit::handle_event() 
+int Quit::handle_event()
 {
 
 //printf("Quit::handle_event 1 %d\n", mwindow->session->changes_made);
        Record *record = mwindow->gui->record;
-       if( mwindow->session->changes_made || mwindow->render->in_progress ||
-               record->capturing || record->recording || record->writing_file ) {
+       if( !mwindow->preferences->perpetual_session &&
+           ( mwindow->session->changes_made || mwindow->render->in_progress ||
+             record->capturing || record->recording || record->writing_file ) ) {
                start();
        }
-       else 
+       else
        {        // quit
                mwindow->quit();
        }
@@ -73,8 +75,8 @@ void Quit::run()
 // Test execution conditions
        Record *record = mwindow->gui->record;
        if( record->capturing || record->recording || record->writing_file ) {
-               ErrorBox error(_(PROGRAM_NAME ": Error"), 
-                       mwindow->gui->get_abs_cursor_x(1), 
+               ErrorBox error(_(PROGRAM_NAME ": Error"),
+                       mwindow->gui->get_abs_cursor_x(1),
                        mwindow->gui->get_abs_cursor_y(1));
                error.create_objects(_("Can't quit while a recording is in progress."));
                error.run_window();
@@ -83,8 +85,8 @@ void Quit::run()
        else
        if(mwindow->render->thread->running())
        {
-               ErrorBox error(_(PROGRAM_NAME ": Error"), 
-                       mwindow->gui->get_abs_cursor_x(1), 
+               ErrorBox error(_(PROGRAM_NAME ": Error"),
+                       mwindow->gui->get_abs_cursor_x(1),
                        mwindow->gui->get_abs_cursor_y(1));
                error.create_objects(_("Can't quit while a render is in progress."));
                error.run_window();
@@ -105,7 +107,7 @@ void Quit::run()
                break;
 
        case 2:         // save
-               save->save_before_quit(); 
+               save->save_before_quit();
                break;
        }
 }