]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiApplication.cpp
do what the FIXME suggested
[lyx.git] / src / frontends / qt4 / GuiApplication.cpp
index 160bad6a0cb3f5698cfa4bb0da47fb342ba00288..693a396d5005545c9d2cef0967d218b1d99379be 100644 (file)
@@ -140,8 +140,8 @@ GuiApplication::GuiApplication(int & argc, char ** argv)
        QCoreApplication::setApplicationName(app_name + "-" + lyx_version);
 
        //FIXME: quitOnLastWindowClosed is true by default, at least on Windows and
-       // X11 platform. We should have a setting for this in order to let the
-       // application to stay resident.
+       // X11 platforms. We should have a lyxrc setting for this in order to let the
+       // application stay resident.
        /*
        if (lyxrc.quit_on_last_window_closed)
                setQuitOnLastWindowClosed(false);
@@ -467,13 +467,32 @@ bool GuiApplication::notify(QObject * receiver, QEvent * event)
                return QApplication::notify(receiver, event);
        }
        catch (ExceptionMessage const & e) {
-               if (e.type_ == ErrorException) {
+               switch(e.type_) { 
+               case ErrorException:
+                       LyX::cref().emergencyCleanup();
+                       setQuitOnLastWindowClosed(false);
+                       closeAllViews();
                        Alert::error(e.title_, e.details_);
-                       LyX::cref().exit(1);
-               } else if (e.type_ == WarningException) {
-                       Alert::warning(e.title_, e.details_);
+#ifndef NDEBUG
+                       // Properly crash in debug mode in order to get a useful backtrace.
+                       abort();
+#endif
+                       // In release mode, try to exit gracefully.
+                       this->exit(1);
+
+               case BufferException: {
+                       Buffer * buf = current_view_->buffer();
+                       docstring details = e.details_ + '\n';
+                       details += theBufferList().emergencyWrite(buf);
+                       theBufferList().release(buf);
+                       details += _("\nThe current document was closed.");
+                       Alert::error(e.title_, details);
                        return false;
                }
+               case WarningException:
+                       Alert::warning(e.title_, e.details_);
+                       return false;
+               };
        }
        catch (exception const & e) {
                docstring s = _("LyX has caught an exception, it will now "