X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FLyXVC.h;h=27d935ed737177959daf66755679ad779fdf780b;hb=8e1a869c45b0c1cb1ee1f3e85d51325224ec3eb4;hp=860a880051a56c707f556c6def7242d4983e42fe;hpb=e82cc5d498244b0d0f0571249f12480e1f514355;p=lyx.git diff --git a/src/LyXVC.h b/src/LyXVC.h index 860a880051..27d935ed73 100644 --- a/src/LyXVC.h +++ b/src/LyXVC.h @@ -12,7 +12,7 @@ #ifndef LYX_VC_H #define LYX_VC_H -#include +#include "support/unique_ptr.h" #include @@ -39,10 +39,15 @@ class Buffer; */ class LyXVC { public: + /// Return status of a command + enum CommandResult { + Cancelled, ///< command was cancelled + ErrorBefore, ///< error before executing command + ErrorCommand, ///< error while executing command + VCSuccess ///< command was executed successfully + }; /// LyXVC(); - /// - ~LyXVC(); /// Is \p fn under version control? static bool fileInVC(support::FileName const & fn); /** Not a good name perhaps. This function should be called whenever @@ -77,10 +82,22 @@ public: // by the next multiple messages on the top of the processed dispatch // machinery. - /// Unlock and commit changes. Returns log. - std::string checkIn(); + /// + std::string rename(support::FileName const &); + /// Does the current VC support this operation? + bool renameEnabled() const; + /// + std::string copy(support::FileName const &); + /// Does the current VC support this operation? + bool copyEnabled() const; + + /// Unlock and commit changes. + /// \p log is non-empty on success and may be empty on failure. + CommandResult checkIn(std::string & log); /// Does the current VC support this operation? bool checkInEnabled() const; + /// Should a log message be provided for next checkin? + bool isCheckInWithConfirmation() const; /// Lock/update and prepare to edit document. Returns log. std::string checkOut(); @@ -135,9 +152,10 @@ public: * keep things in synchro once we would allow user to toggle * read-only flags. */ - void toggleReadOnly(); + std::string toggleReadOnly(); /// Is the document under administration by VCS? + /// returns false for unregistered documents in a path managed by VCS bool inUse() const; /// Returns the RCS + version number for messages @@ -170,7 +188,7 @@ private: Buffer * owner_; /// - boost::scoped_ptr vcs; + unique_ptr vcs; };