X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_Displayer.h;h=45ea2eecbc7ba1f6dcafc3a6055b9537f84bca61;hb=f421ab3932a5e09ae8082215c3eaaa8cc4944e02;hp=5da345d703014df4c315506532308ff7bcf6ebe8;hpb=1e2eaa713f139d2617c80eba9ede62d4e9976bb7;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_Displayer.h b/src/XGUI/XGUI_Displayer.h index 5da345d70..45ea2eecb 100644 --- a/src/XGUI/XGUI_Displayer.h +++ b/src/XGUI/XGUI_Displayer.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// Copyright (C) 2014-2019 CEA/DEN, EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -12,10 +12,9 @@ // // 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 +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ or -// email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // #ifndef XGUI_Displayer_H @@ -48,11 +47,14 @@ class ModelAPI_Feature; class XGUI_SelectionActivate; class XGUI_Workshop; +#define OPTIMIZE_PRS + #ifdef TINSPECTOR class VInspectorAPI_CallBack; #endif +#ifdef OPTIMIZE_PRS class XGUI_TwoSidePresentationMap { public: @@ -160,22 +162,23 @@ private: QMap myResultToAISMap; QMap myAIStoResultMap; }; +#endif /**\class XGUI_Displayer * \ingroup GUI * \brief Displayer. Provides mechanizm of display/erase of objects in the viewer */ -class XGUI_EXPORT XGUI_Displayer: public QObject +class XGUI_EXPORT XGUI_Displayer : public QObject { Q_OBJECT - public: - /// \enum DisplayMode display mode - enum DisplayMode { - NoMode = -1, ///< Mode is not defined - Wireframe, ///< Wireframe display mode - Shading ///< Shading display mode - }; +public: + /// \enum DisplayMode display mode + enum DisplayMode { + NoMode = -1, ///< Mode is not defined + Wireframe, ///< Wireframe display mode + Shading ///< Shading display mode + }; /// Constructor /// \param theWorkshop a workshop instance @@ -205,7 +208,7 @@ class XGUI_EXPORT XGUI_Displayer: public QObject /// \param theUpdateViewer the parameter whether the viewer should be update immediatelly /// \return true if the object visibility state is changed bool displayAIS(AISObjectPtr theAIS, const bool toActivateInSelectionModes, - const Standard_Integer theDisplayMode = 0, bool theUpdateViewer = true); + const Standard_Integer theDisplayMode = 0, bool theUpdateViewer = true); /// Redisplay the shape if it was displayed /// \param theObject an object instance @@ -222,7 +225,7 @@ class XGUI_EXPORT XGUI_Displayer: public QObject /// \param theValues a list of presentation to be selected /// \param theUpdateViewer the parameter whether the viewer should be update immediatelly void setSelected(const QList>& theValues, - bool theUpdateViewer = true); + bool theUpdateViewer = true); /// Unselect all objects /// \param theUpdateViewer the parameter whether the viewer should be update immediatelly @@ -274,7 +277,10 @@ class XGUI_EXPORT XGUI_Displayer: public QObject bool enableUpdateViewer(const bool isEnabled); /// Returns true if the viewer update is not blocked - bool isUpdateEnabled() const; + bool isUpdateEnabled() const + { + return myViewerBlockedRecursiveCount == 0; + } /// Updates the viewer void updateViewer() const; @@ -298,7 +304,7 @@ class XGUI_EXPORT XGUI_Displayer: public QObject /// \param theObjList - list of objects which has to be deactivated. /// \param theUpdateViewer update viewer flag void deactivateObjects(const QObjectPtrList& theObjList, - const bool theUpdateViewer = true); + const bool theUpdateViewer = true); /// Sets display mode for the given object if this object is displayed void setDisplayMode(ObjectPtr theObject, DisplayMode theMode, bool theUpdateViewer = true); @@ -316,13 +322,26 @@ class XGUI_EXPORT XGUI_Displayer: public QObject int objectsCount() const { return myResult2AISObjectMap.size(); } /// Returns list of displayed objects - QObjectPtrList displayedObjects() const { return myResult2AISObjectMap.objects(); } + QObjectPtrList displayedObjects() const { +#ifdef OPTIMIZE_PRS + return myResult2AISObjectMap.objects(); +#else + return myResult2AISObjectMap.keys(); +#endif + } /// Returns list of displayed objects +#ifdef OPTIMIZE_PRS QList displayedPresentations() const { return myResult2AISObjectMap.presentations(); } +#else + QList displayedPresentations() const + { + return myResult2AISObjectMap.values(); + } +#endif /// Returns true if the given object can be shown in shaded mode /// \param theObject object to check @@ -424,10 +443,10 @@ private: const NCollection_DataMap>& theShapesToBeSelected); -protected: +private: XGUI_SelectionActivate* selectionActivate() const; -protected: +private: XGUI_Workshop* myWorkshop; ///< Reference to workshop #ifdef TINSPECTOR Handle(VInspectorAPI_CallBack) myVCallBack; @@ -439,7 +458,12 @@ protected: GeomCustomPrsPtr myCustomPrs; /// Definition of a type of map which defines correspondance between objects and presentations +#ifdef OPTIMIZE_PRS XGUI_TwoSidePresentationMap myResult2AISObjectMap; ///< A map of displayed objects +#else + typedef QMap ResultToAISMap; + ResultToAISMap myResult2AISObjectMap; ///< A map of displayed objects +#endif /// Number of blocking of the viewer update. The viewer is updated only if it is zero int myViewerBlockedRecursiveCount;