1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/src/TDocStd/TDocStd_MultiTransactionManager.hxx
abv 92efcf78a6 0026936: Drawbacks of inlining in new type system in OCCT 7.0 -- automatic
Automatic restore of IMPLEMENT_STANDARD_RTTIEXT macro (upgrade -rtti)
2015-12-04 14:15:06 +03:00

177 lines
6.5 KiB
C++

// Created on: 2002-11-18
// Created by: Vladimir ANIKIN
// Copyright (c) 2002-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#ifndef _TDocStd_MultiTransactionManager_HeaderFile
#define _TDocStd_MultiTransactionManager_HeaderFile
#include <Standard.hxx>
#include <Standard_Type.hxx>
#include <TDocStd_SequenceOfDocument.hxx>
#include <TDocStd_SequenceOfApplicationDelta.hxx>
#include <Standard_Integer.hxx>
#include <Standard_Boolean.hxx>
#include <MMgt_TShared.hxx>
#include <Standard_OStream.hxx>
class TCollection_ExtendedString;
class TDocStd_Document;
class TDocStd_MultiTransactionManager;
DEFINE_STANDARD_HANDLE(TDocStd_MultiTransactionManager, MMgt_TShared)
//! Class for synchronization of transactions within multiple documents.
//! Each transaction of this class involvess one transaction in each modified document.
//!
//! The documents to be synchronized should be added explicitly to
//! the manager; then its interface is uesd to ensure that all transactions
//! (Open/Commit, Undo/Redo) are performed synchronously in all managed documents.
//!
//! The current implementation does not support nested transactions
//! on multitransaction manager level. It only sets the flag enabling
//! or disabling nested transactions in all its documents, so that
//! a nested transaction can be opened for each particular document
//! with TDocStd_Document class interface.
//!
//! NOTE: When you invoke CommitTransaction of multi transaction
//! manager, all nested transaction of its documents will be closed (commited).
class TDocStd_MultiTransactionManager : public MMgt_TShared
{
public:
//! Constructor
Standard_EXPORT TDocStd_MultiTransactionManager();
//! Sets undo limit for the manager and all documents.
Standard_EXPORT void SetUndoLimit (const Standard_Integer theLimit);
//! Returns undo limit for the manager.
Standard_Integer GetUndoLimit() const;
//! Undoes the current transaction of the manager.
//! It calls the Undo () method of the document being
//! on top of the manager list of undos (list.First())
//! and moves the list item to the top of the list of manager
//! redos (list.Prepend(item)).
Standard_EXPORT void Undo();
//! Redoes the current transaction of the application. It calls
//! the Redo () method of the document being on top of the
//! manager list of redos (list.First()) and moves the list
//! item to the top of the list of manager undos (list.Prepend(item)).
Standard_EXPORT void Redo();
//! Returns available manager undos.
const TDocStd_SequenceOfApplicationDelta& GetAvailableUndos() const;
//! Returns available manager redos.
const TDocStd_SequenceOfApplicationDelta& GetAvailableRedos() const;
//! Opens transaction in each document and sets the flag that
//! transaction is opened. If there are already opened transactions in the documents,
//! these transactions will be aborted before openning new ones.
Standard_EXPORT void OpenCommand();
//! Unsets the flag of started manager transaction and aborts
//! transaction in each document.
Standard_EXPORT void AbortCommand();
//! Commits transaction in all documents and fills the transaction manager
//! with the documents that have been changed during the transaction.
//! Returns True if new data has been added to myUndos.
//! NOTE: All nested transactions in the documents will be commited.
Standard_EXPORT Standard_Boolean CommitCommand();
//! Makes the same steps as the previous function but defines the name for transaction.
//! Returns True if new data has been added to myUndos.
Standard_EXPORT Standard_Boolean CommitCommand (const TCollection_ExtendedString& theName);
//! Returns true if a transaction is opened.
Standard_Boolean HasOpenCommand() const;
//! Removes undo information from the list of undos of the manager and
//! all documents which have been modified during the transaction.
Standard_EXPORT void RemoveLastUndo();
//! Dumps transactions in undos and redos
Standard_EXPORT void DumpTransaction (Standard_OStream& theOS) const;
//! Adds the document to the transaction manager and
//! checks if it has been already added
Standard_EXPORT void AddDocument (const Handle(TDocStd_Document)& theDoc);
//! Removes the document from the transaction manager.
Standard_EXPORT void RemoveDocument (const Handle(TDocStd_Document)& theDoc);
//! Returns the added documents to the transaction manager.
const TDocStd_SequenceOfDocument& Documents() const;
//! Sets nested transaction mode if isAllowed == Standard_True
//! NOTE: field myIsNestedTransactionMode exists only for synchronization
//! between several documents and has no effect on transactions
//! of multitransaction manager.
Standard_EXPORT void SetNestedTransactionMode (const Standard_Boolean isAllowed = Standard_True);
//! Returns Standard_True if NestedTransaction mode is set.
//! Methods for protection of changes outside transactions
Standard_Boolean IsNestedTransactionMode() const;
//! If theTransactionOnly is True, denies all changes outside transactions.
Standard_EXPORT void SetModificationMode (const Standard_Boolean theTransactionOnly);
//! Returns True if changes are allowed only inside transactions.
Standard_Boolean ModificationMode() const;
//! Clears undos in the manager and in documents.
Standard_EXPORT void ClearUndos();
//! Clears redos in the manager and in documents.
Standard_EXPORT void ClearRedos();
DEFINE_STANDARD_RTTIEXT(TDocStd_MultiTransactionManager,MMgt_TShared)
protected:
private:
TDocStd_SequenceOfDocument myDocuments;
TDocStd_SequenceOfApplicationDelta myUndos;
TDocStd_SequenceOfApplicationDelta myRedos;
Standard_Integer myUndoLimit;
Standard_Boolean myOpenTransaction;
Standard_Boolean myIsNestedTransactionMode;
Standard_Boolean myOnlyTransactionModification;
};
#include <TDocStd_MultiTransactionManager.lxx>
#endif // _TDocStd_MultiTransactionManager_HeaderFile