X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FLyXVC.h;h=fd223570172ee0338967ab3e88d7cb9e2f2e1e01;hb=a900667ea1bb516ac562a6c45e4f3a1e4071b01b;hp=64ad303fab2e6aae19d4bb1fce41b56b7a960991;hpb=d33450a5921084677ad50055ad960e199e3a6b3e;p=lyx.git diff --git a/src/LyXVC.h b/src/LyXVC.h index 64ad303fab..fd22357017 100644 --- a/src/LyXVC.h +++ b/src/LyXVC.h @@ -12,7 +12,8 @@ #ifndef LYX_VC_H #define LYX_VC_H -#include +#include "support/docstring.h" +#include "support/unique_ptr.h" #include @@ -44,12 +45,12 @@ public: Cancelled, ///< command was cancelled ErrorBefore, ///< error before executing command ErrorCommand, ///< error while executing command - Success ///< command was executed successfully + VCSuccess ///< command was executed successfully }; /// LyXVC(); - /// - ~LyXVC(); + /// Status of the underlying VCS + docstring vcstatus() const; /// Is \p fn under version control? static bool fileInVC(support::FileName const & fn); /** Not a good name perhaps. This function should be called whenever @@ -84,11 +85,22 @@ public: // by the next multiple messages on the top of the processed dispatch // machinery. + /// + 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(); @@ -146,6 +158,7 @@ public: 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 @@ -163,7 +176,8 @@ public: Tree = 2, Author = 3, Date = 4, - Time = 5 + Time = 5, + FileAbbrev = 6 }; /** @@ -178,7 +192,7 @@ private: Buffer * owner_; /// - boost::scoped_ptr vcs; + unique_ptr vcs_; };