X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxvc.C;h=b4dae54556863c0f6b2f3f09777dbe6c71a4855c;hb=78046794ccfce3a20751e00b35295c290853afd6;hp=ddf087580a90c681921398b4338cb6f5076be719;hpb=53caec8297a521404bfeb96027446e4a2f8499b5;p=lyx.git diff --git a/src/lyxvc.C b/src/lyxvc.C index ddf087580a..b4dae54556 100644 --- a/src/lyxvc.C +++ b/src/lyxvc.C @@ -1,27 +1,40 @@ +/** + * \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 #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 +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() { @@ -79,9 +92,9 @@ void LyXVC::registrer() // there must be a file to save if (!IsFileReadable(filename)) { - Alert::alert(_("File not saved"), - _("You must save the file"), - _("before it can be registered.")); + Alert::error(_("Document not saved"), + _("You must save the document " + "before it can be registered.")); return; } @@ -107,20 +120,6 @@ void LyXVC::registrer() vcs->owner(owner_); } - // If the document is changed, we might want to save it - if (!vcs->owner()->isClean() && - Alert::askQuestion(_("Changes in document:"), - MakeDisplayPath(filename, 50), - _("Save document and proceed?"))) { - 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: registrer" << endl; pair tmp = Alert::askForText(_("LyX VC: Initial description"), @@ -128,8 +127,6 @@ void LyXVC::registrer() if (!tmp.first || tmp.second.empty()) { // should we insist on checking tmp.second.empty()? lyxerr[Debug::LYXVC] << "LyXVC: user cancelled" << endl; - Alert::alert(_("Info"), - _("This document has NOT been registered.")); return; } @@ -139,19 +136,6 @@ void LyXVC::registrer() void LyXVC::checkIn() { - // If the document is changed, we might want to save it - if (!vcs->owner()->isClean() && - Alert::askQuestion(_("Changes in document:"), - MakeDisplayPath(vcs->owner()->fileName(), 50), - _("Save document and proceed?"))) { - 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 tmp = Alert::askForText(_("LyX VC: Log Message")); @@ -169,12 +153,6 @@ void LyXVC::checkIn() void LyXVC::checkOut() { lyxerr[Debug::LYXVC] << "LyXVC: checkOut" << endl; - if (!vcs->owner()->isClean() - && !Alert::askQuestion(_("Changes in document:"), - MakeDisplayPath(vcs->owner()->fileName(), 50), - _("Ignore changes and proceed with check out?"))) { - return; - } vcs->checkOut(); } @@ -183,15 +161,16 @@ void LyXVC::checkOut() void LyXVC::revert() { lyxerr[Debug::LYXVC] << "LyXVC: revert" << endl; - // Here we should check if the buffer is dirty. And if it is - // we should warn the user that reverting will discard all - // changes made since the last check in. - if (Alert::askQuestion(_("When you revert, you will loose all changes made"), - _("to the document since the last check in."), - _("Do you still want to do it?"))) { + string const file = MakeDisplayPath(owner_->fileName(), 20); + string text = bformat(_("Reverting to the stored version of the " + "document %1$s will lose all current changes.\n\n" + "Do you want to revert to the saved version?"), file); + int const ret = Alert::prompt(_("Revert to stored version of document?"), + text, 0, 1, _("&Revert"), _("&Cancel")); + + if (ret == 0) vcs->revert(); - } } @@ -240,12 +219,12 @@ string const & LyXVC::locker() const } -const string LyXVC::getLogFile() const +string const LyXVC::getLogFile() const { if (!vcs) return string(); - string tmpf = lyx::tempName(string(), "lyxvclog"); + string tmpf = tempName(string(), "lyxvclog"); lyxerr[Debug::LYXVC] << "Generating logfile " << tmpf << endl; vcs->getLog(tmpf); return tmpf;