]> git.lyx.org Git - lyx.git/blobdiff - src/bufferlist.C
Alfredo's second patch
[lyx.git] / src / bufferlist.C
index ea7fd734912f551b9064b2319797d7edfc462184..31f59ba57279c2346df8fb81c5afea631ba99f1b 100644 (file)
@@ -34,7 +34,7 @@
 #include "support/LAssert.h"
 
 #include <boost/bind.hpp>
-#include "BoostFormat.h"
+#include "support/BoostFormat.h"
 
 #include <cassert>
 #include <algorithm>
@@ -78,7 +78,7 @@ bool BufferList::quitWriteBuffer(Buffer * buf)
        text += file + _(" has unsaved changes.\n\nWhat do you want to do with it?");
 #endif
        int const ret = Alert::prompt(_("Save changed document?"),
-               text, 0, _("&Save"), _("&Discard"), _("&Cancel"));
+               text, 0, 2, _("&Save Changes"), _("&Discard Changes"), _("&Cancel"));
 
        if (ret == 0) {
                // FIXME: WriteAs can be asynch !
@@ -87,9 +87,9 @@ bool BufferList::quitWriteBuffer(Buffer * buf)
                bool succeeded;
 
                if (buf->isUnnamed())
-                       succeeded = !WriteAs(current_view, buf);
+                       succeeded = WriteAs(current_view, buf);
                else
-                       succeeded = !MenuWrite(current_view, buf);
+                       succeeded = MenuWrite(current_view, buf);
 
                if (!succeeded)
                        return false;
@@ -158,7 +158,7 @@ void BufferList::closeAll()
        textcache.clear();
 
        while (!bstore.empty()) {
-               close(bstore.front(), true);
+               close(bstore.front(), false);
        }
 }
 
@@ -167,6 +167,7 @@ bool BufferList::close(Buffer * buf, bool ask)
 {
        lyx::Assert(buf);
 
+       // FIXME: is the quitting check still necessary ?
        if (!ask || buf->isClean() || quitting || buf->paragraphs.empty()) {
                release(buf);
                return true;
@@ -186,7 +187,7 @@ bool BufferList::close(Buffer * buf, bool ask)
        text += fname + _(" has unsaved changes.\n\nWhat do you want to do with it?");
 #endif
        int const ret = Alert::prompt(_("Save changed document?"),
-               text, 0, _("&Save"), _("&Discard"));
+               text, 0, 2, _("&Save Changes"), _("&Discard Changes"), _("&Cancel"));
 
        if (ret == 0) {
                if (buf->isUnnamed()) {
@@ -197,8 +198,10 @@ bool BufferList::close(Buffer * buf, bool ask)
                } else {
                        return false;
                }
+       } else if (ret == 2) {
+               return false;
        }
-       
+
        if (buf->isUnnamed()) {
                removeAutosaveFile(buf->fileName());
        }
@@ -365,7 +368,7 @@ Buffer * BufferList::readFile(string const & s, bool ronly)
                        text += file + _(" exists.\n\nRecover emergency save?");
 #endif
                        int const ret = Alert::prompt(_("Load emergency save?"),
-                               text, 0, _("&Recover"), _("&Load original"));
+                               text, 0, 1, _("&Recover"), _("&Load Original"));
 
                        if (ret == 0) {
                                ts = e;
@@ -399,7 +402,7 @@ Buffer * BufferList::readFile(string const & s, bool ronly)
                                text += file + _(" is newer.\n\nLoad the backup instead?");
 #endif
                                int const ret = Alert::prompt(_("Load backup?"),
-                                       text, 0, _("&Load backup"), _("Load &original"));
+                                       text, 0, 1, _("&Load backup"), _("Load &original"));
 
                                if (ret == 0) {
                                        ts = a;
@@ -496,7 +499,8 @@ Buffer * BufferList::newFile(string const & name, string tname, bool isNamed)
        }
 
        b->setReadonly(false);
-
+       b->updateDocLang(b->params.language);
+       
        return b;
 }
 
@@ -522,7 +526,7 @@ Buffer * BufferList::loadLyXFile(string const & filename, bool tolastfiles)
                text += file + _(" is already loaded.\n\nDo you want to revert to the saved version?");
 #endif
                int const ret = Alert::prompt(_("Revert to saved document?"),
-                       text, 1, _("&Revert"), _("&Switch to document"));
+                       text, 0, 1,  _("&Revert"), _("&Switch to document"));
 
                if (ret == 0) {
                        // FIXME: should be LFUN_REVERT
@@ -562,7 +566,7 @@ Buffer * BufferList::loadLyXFile(string const & filename, bool tolastfiles)
                        text += file + _(" from version control?");
 #endif
                        int const ret = Alert::prompt(_("Retrieve from version control?"),
-                               text, 0, _("&Retrieve"), _("&Cancel"));
+                               text, 0, 1, _("&Retrieve"), _("&Cancel"));
 
                        if (ret == 0) {
                                // How can we know _how_ to do the checkout?
@@ -582,7 +586,7 @@ Buffer * BufferList::loadLyXFile(string const & filename, bool tolastfiles)
                text += file + _(" does not yet exist.\n\nDo you want to create a new document?");
 #endif
                int const ret = Alert::prompt(_("Create new document?"),
-                       text, 0, _("&Create"), _("Cancel"));
+                       text, 0, 1, _("&Create"), _("Cancel"));
 
                if (ret == 0)
                        b = newFile(s, string(), true);