]> git.lyx.org Git - lyx.git/blobdiff - src/VCBackend.h
Whitespace.
[lyx.git] / src / VCBackend.h
index ac22f83ed1e2ef5568f22ce24d478629d3d8ae1b..dbcd84ca8151016dd84db7f979f94a7ca5f8952e 100644 (file)
@@ -43,6 +43,14 @@ public:
        virtual std::string checkOut() = 0;
        // can be this operation processed in the current RCS?
        virtual bool checkOutEnabled() = 0;
+       /// synchronize with repository, returns log
+       virtual std::string repoUpdate() = 0;
+       // can be this operation processed in the current RCS?
+       virtual bool repoUpdateEnabled() = 0;
+       // toggle locking property of the file
+       virtual std::string lockingToggle() = 0;
+       // can be this operation processed in the current RCS?
+       virtual bool lockingToggleEnabled() = 0;
        /// revert current edits
        virtual void revert() = 0;
        /// FIXME
@@ -127,6 +135,14 @@ public:
 
        virtual bool checkOutEnabled();
 
+       virtual std::string repoUpdate();
+
+       virtual bool repoUpdateEnabled();
+
+       virtual std::string lockingToggle();
+
+       virtual bool lockingToggleEnabled();
+
        virtual void revert();
 
        virtual void undoLast();
@@ -166,6 +182,14 @@ public:
 
        virtual bool checkOutEnabled();
 
+       virtual std::string repoUpdate();
+
+       virtual bool repoUpdateEnabled();
+
+       virtual std::string lockingToggle();
+
+       virtual bool lockingToggleEnabled();
+
        virtual void revert();
 
        virtual void undoLast();
@@ -208,6 +232,14 @@ public:
 
        virtual bool checkOutEnabled();
 
+       virtual std::string repoUpdate();
+
+       virtual bool repoUpdateEnabled();
+
+       virtual std::string lockingToggle();
+
+       virtual bool lockingToggleEnabled();
+
        virtual void revert();
 
        virtual void undoLast();
@@ -229,7 +261,7 @@ protected:
        /// checks locking policy and setup locked_mode_
        bool checkLockMode();
        /// is the loaded file locked?
-       bool isLocked();
+       bool isLocked() const;
        /// acquire/release write lock for the current file
        void fileLock(bool lock, support::FileName const & tmpf, std::string & status);