X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Events.h;h=4cee00901daffca65c39b09b1a3866f9973b2429;hb=bc04ba224088190f5a8bf066f31f81b0578934c6;hp=c9c60b65ffd77a2be6b9fb3a2e4dc1c5a832da55;hpb=cd942c062815dd044cf0625fc987d3244d7954c7;p=modules%2Fshaper.git diff --git a/src/Model/Model_Events.h b/src/Model/Model_Events.h index c9c60b65f..4cee00901 100644 --- a/src/Model/Model_Events.h +++ b/src/Model/Model_Events.h @@ -1,77 +1,122 @@ -// File: Model_Events.h -// Created: 10 Apr 2014 -// Author: Mikhail PONIKAROV +// Copyright (C) 2014-2023 CEA, EDF +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// -#ifndef Model_Events_HeaderFile -#define Model_Events_HeaderFile +#ifndef Model_Events_H_ +#define Model_Events_H_ #include -#include -#include -#include -#include -#include - -class ModelAPI_Feature; -class ModelAPI_Document; - -/// Event ID that feature is created (comes with Model_FeatureUpdatedMessage) -static const char * EVENT_FEATURE_CREATED = "FeatureCreated"; -/// Event ID that data of feature is updated (comes with Model_FeatureUpdatedMessage) -static const char * EVENT_FEATURE_UPDATED = "FeatureUpdated"; -/// Event ID that data of feature is deleted (comes with Model_FeatureDeletedMessage) -static const char * EVENT_FEATURE_DELETED = "FeatureDeleted"; -/// Event ID that data of feature is updated (comes with Model_FeaturesMovedMessage) -static const char * EVENT_FEATURES_MOVED = "FeaturesMoved"; - -/// Message that feature was changed (used for Object Browser update) -class Model_FeatureUpdatedMessage : public Events_Message { - boost::shared_ptr myFeature; ///< which feature is changed -public: - /// sender is not important, all information is located in the feature - Model_FeatureUpdatedMessage( - const boost::shared_ptr& theFeature, - const Events_ID& theEvent) : Events_Message(theEvent, 0), myFeature(theFeature) - {} +#include + +#include + +/// Allows to create ModelAPI messages +class Model_EventCreator : public ModelAPI_EventCreator +{ + public: + /// creates created, updated or moved messages and sends to the loop + virtual void sendUpdated(const ObjectPtr& theObject, const Events_ID& theEvent, + const bool isGroupped = true) const; + + /// creates created, updated or moved messages with the objects collection and sends to the loop + virtual void sendUpdated(const std::list& theObjects, const Events_ID& theEvent, + const bool isGroupped = true) const; + /// creates deleted message and sends to the loop + virtual void sendDeleted(const std::shared_ptr& theDoc, + const std::string& theGroup) const; + + /// creates reordered message and sends to the loop + virtual void sendReordered(const std::shared_ptr& theReordered) const; + + /// must be one per application, the constructor for internal usage only + Model_EventCreator(); +}; + +/// Message that feature was changed (used for Object Browser update): moved, updated and deleted +class Model_ObjectUpdatedMessage : public ModelAPI_ObjectUpdatedMessage +{ + std::set myObjects; ///< which feature is changed + + /// Sender is not important, all information is located in the feature. + /// Use ModelAPI for creation of this event. Used for creation, movement and edition events. + Model_ObjectUpdatedMessage(const ObjectPtr& theObject, const Events_ID& theEvent); + + friend class Model_EventCreator; + public: /// Returns the feature that has been updated - boost::shared_ptr feature() const {return myFeature;} + virtual const std::set& objects() const; + + //! Creates a new empty group (to store it in the loop before flush) + virtual std::shared_ptr newEmpty(); + + //! Allows to join the given message with the current one + virtual void Join(const std::shared_ptr& theJoined); }; /// Message that feature was deleted (used for Object Browser update) -class Model_FeatureDeletedMessage : public Events_Message { - boost::shared_ptr myDoc; ///< document owner of the feature - std::string myGroup; ///< group identifier that contained the deleted feature -public: - /// creates a message by initialization of fields - Model_FeatureDeletedMessage(const boost::shared_ptr& theDoc, - const std::string& theGroup); +class Model_ObjectDeletedMessage : public ModelAPI_ObjectDeletedMessage +{ + ///< group identifiers that contained the deleted feature and document where they are deleted + std::list, std::string> > myGroups; - /// Returns the ID of this message (EVENT_FEATURE_DELETED) - static const Events_ID messageId(); + /// Use ModelAPI for creation of this event. + Model_ObjectDeletedMessage(const std::shared_ptr& theDoc, + const std::string& theGroup); - /// Returns the feature that has been updated - boost::shared_ptr document() const {return myDoc;} + friend class Model_EventCreator; + public: + /// Returns the group where the objects were deleted + virtual const std::list, std::string> >& + groups() const + { + return myGroups; + } - /// Returns the group where the feature was deleted - const std::string& group() const {return myGroup;} + /// Returns the new empty message of this type + virtual std::shared_ptr newEmpty(); + + /// Returns the identifier of this message + virtual const Events_ID messageId(); + + /// Appends to this message the given one + virtual void Join(const std::shared_ptr& theJoined); }; -/// Message that features were moved (used for the feature preview update) -class Model_FeaturesMovedMessage : public Events_Message { - std::list > myFeatures; ///< which features are moved -public: - /// creates a message by initialization of fields - MODEL_EXPORT Model_FeaturesMovedMessage(); +/// Message that feature was deleted (used for Object Browser update) +class Model_OrderUpdatedMessage : public ModelAPI_OrderUpdatedMessage +{ + std::shared_ptr myReordered; ///< the feature that was moved - /// Returns the ID of this message (EVENT_FEATURES_MOVED) - static const Events_ID messageId(); + /// Use ModelAPI for creation of this event. + Model_OrderUpdatedMessage(FeaturePtr theReordered, + const void* theSender = 0); - /// Sets a list of features - MODEL_EXPORT void setFeatures(const std::list >& theFeatures); + friend class Model_EventCreator; + public: + /// Returns the document that has been updated + virtual std::shared_ptr reordered() + { + return myReordered; + } - /// Returns a list of features - MODEL_EXPORT const std::list >& features() const; + /// Returns the identifier of this message + virtual const Events_ID messageId(); }; #endif