]> git.lyx.org Git - lyx.git/blobdiff - src/lyxvc.C
Add GTK bibitem dialog
[lyx.git] / src / lyxvc.C
index 9f6ce7e2bb873e999c83059cde3616bd456916e7..039e4554356281cec5228e9dcd7a97f6502f6721 100644 (file)
@@ -1,42 +1,50 @@
+/**
+ * \file lyxvc.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ * \author Jean-Marc Lasgouttes
+ * \author Angus Leeming
+ * \author John Levon
+ * \author André Pönitz
+ * \author Allan Rae
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #include <config.h>
 
 #include "lyxvc.h"
 #include "vc-backend.h"
 #include "debug.h"
 #include "buffer.h"
-#include "BufferView.h"
 #include "gettext.h"
-#include "funcrequest.h"
 
 #include "frontends/Alert.h"
-#include "frontends/LyXView.h"
 
 #include "support/filetools.h"
 #include "support/lyxlib.h"
 
-#include <unistd.h>
-
-using namespace lyx::support;
+using lyx::support::bformat;
+using lyx::support::IsFileReadable;
+using lyx::support::MakeDisplayPath;
+using lyx::support::tempName;
 
 using std::endl;
+using std::string;
 using std::pair;
 
 
-/* WARNING: Several of the vcs-> methods end up
- * deleting this object via BufferView::reload() !
- */
-
 LyXVC::LyXVC()
 {
-       vcs = 0;
        owner_ = 0;
 }
 
 
+// for the sake of boost::scoped_ptr
 LyXVC::~LyXVC()
-{
-       delete vcs;
-}
+{}
 
 
 bool LyXVC::file_found_hook(string const & fn)
@@ -44,13 +52,13 @@ bool LyXVC::file_found_hook(string const & fn)
        string found_file;
        // Check if file is under RCS
        if (!(found_file = RCS::find_file(fn)).empty()) {
-               vcs = new RCS(found_file);
+               vcs.reset(new RCS(found_file));
                vcs->owner(owner_);
                return true;
        }
        // Check if file is under CVS
        if (!(found_file = CVS::find_file(fn)).empty()) {
-               vcs = new CVS(found_file, fn);
+               vcs.reset(new CVS(found_file, fn));
                vcs->owner(owner_);
                return true;
        }
@@ -76,25 +84,6 @@ void LyXVC::buffer(Buffer * buf)
 }
 
 
-bool LyXVC::ensureClean()
-{
-       if (owner_->isClean())
-               return true;
-
-       string const file = MakeDisplayPath(owner_->fileName(), 30);
-       string text = bformat(_("The document %1$s has unsaved changes.\n\n"
-               "Do you want to save the document?"), file);
-       int const ret = Alert::prompt(_("Save changed document?"),
-               text, 0, 1, _("&Save"), _("&Cancel"));
-
-       if (ret == 0) {
-               vcs->owner()->getUser()->owner()->dispatch(FuncRequest(LFUN_MENUWRITE));
-       }
-
-       return owner_->isClean();
-}
-
-
 void LyXVC::registrer()
 {
        string const filename = owner_->fileName();
@@ -102,8 +91,8 @@ void LyXVC::registrer()
        // there must be a file to save
        if (!IsFileReadable(filename)) {
                Alert::error(_("Document not saved"),
-                       _("You must save the document "
-                         "before it can be registered."));
+                            _("You must save the document "
+                              "before it can be registered."));
                return;
        }
 
@@ -116,24 +105,19 @@ void LyXVC::registrer()
                                << "LyXVC: registering "
                                << MakeDisplayPath(filename)
                                << " with CVS" << endl;
-                       vcs = new CVS(cvs_entries, filename);
+                       vcs.reset(new CVS(cvs_entries, filename));
 
                } else {
                        lyxerr[Debug::LYXVC]
                                << "LyXVC: registering "
                                << MakeDisplayPath(filename)
                                << " with RCS" << endl;
-                       vcs = new RCS(filename);
+                       vcs.reset(new RCS(filename));
                }
 
                vcs->owner(owner_);
        }
 
-       // Maybe the save fails, or we answered "no". In both cases,
-       // the document will be dirty, and we abort.
-       if (!ensureClean())
-               return;
-
        lyxerr[Debug::LYXVC] << "LyXVC: registrer" << endl;
        pair<bool, string> tmp =
                Alert::askForText(_("LyX VC: Initial description"),
@@ -150,16 +134,6 @@ void LyXVC::registrer()
 
 void LyXVC::checkIn()
 {
-       // If the document is changed, we might want to save it
-       if (!vcs->owner()->isClean()) {
-               vcs->owner()->getUser()->owner()
-                       ->dispatch(FuncRequest(LFUN_MENUWRITE));
-       }
-
-       // Maybe the save fails, or we answered "no". In both cases,
-       // the document will be dirty, and we abort.
-       if (!vcs->owner()->isClean())
-               return;
 
        lyxerr[Debug::LYXVC] << "LyXVC: checkIn" << endl;
        pair<bool, string> tmp = Alert::askForText(_("LyX VC: Log Message"));
@@ -177,8 +151,6 @@ void LyXVC::checkIn()
 void LyXVC::checkOut()
 {
        lyxerr[Debug::LYXVC] << "LyXVC: checkOut" << endl;
-       if (!ensureClean())
-               return;
 
        vcs->checkOut();
 }
@@ -251,6 +223,11 @@ string const LyXVC::getLogFile() const
                return string();
 
        string tmpf = tempName(string(), "lyxvclog");
+       if (tmpf.empty()) {
+               lyxerr[Debug::LYXVC] << "Could not generate logfile "
+                                    << tmpf << endl;
+               return string();
+       }
        lyxerr[Debug::LYXVC] << "Generating logfile " << tmpf << endl;
        vcs->getLog(tmpf);
        return tmpf;