X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_WorkshopListener.h;h=70cca034379a2ef28740cd54f94515edd200e436;hb=4de8d53fef7532b6843d79c970f55ad46f98da62;hp=9813b6c3d39e164c275ae87d4a8534753999ce07;hpb=423c10234142d14d0d5de89383f2f96a4ec5930f;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_WorkshopListener.h b/src/XGUI/XGUI_WorkshopListener.h old mode 100755 new mode 100644 index 9813b6c3d..70cca0343 --- a/src/XGUI/XGUI_WorkshopListener.h +++ b/src/XGUI/XGUI_WorkshopListener.h @@ -1,4 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> +// Copyright (C) 2014-2024 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 XGUI_WORKSHOP_LISTENER_H #define XGUI_WORKSHOP_LISTENER_H @@ -32,7 +49,7 @@ class XGUI_EXPORT XGUI_WorkshopListener : public QObject, public Events_Listener public: /// Constructor. Used only if the workshop is launched in Salome environment /// \param theWorkshop a reference to workshop. - XGUI_WorkshopListener(ModuleBase_IWorkshop* theWorkshop); + XGUI_WorkshopListener(XGUI_Workshop* theWorkshop); virtual ~XGUI_WorkshopListener(); /// Register this class in the events loop for several types of events @@ -73,13 +90,6 @@ protected: /// \return true if the object is displayed bool displayObject(ObjectPtr theObj); - /// Answer if the viewer needed to be fit all after the object visualization - /// The condition is there is not shown objects and the object is a group or body result - /// \param theObject a shown object - /// \param theNbOfShownObjects a count of already shown objects in the viewer - /// \return true if fit all should be done - bool neededFitAll(ObjectPtr theObject, const int theNbOfShownObjects); - /// Calls the module method of cusomize object for the feature of the current operation /// Perform cusomize if the force redisplay flag is true or the list of objects contains the /// current operation feature @@ -87,13 +97,16 @@ protected: /// if forced redisplay is false /// \param theForceRedisplay a flag to customize object even always /// \return true if the object is modified - bool customizeCurrentObject(const std::set& theObjects, bool theForceRedisplay); + bool customizeFeature(const std::set& theObjects, bool theForceRedisplay); /// Returns the workshop XGUI_Workshop* workshop() const; private: - ModuleBase_IWorkshop* myWorkshop; // the current workshop + + void setDisplayed(ObjectPtr theObject, const bool theIsLoadedScript, bool& theDisplayed); + + XGUI_Workshop* myWorkshop; // the current workshop bool myUpdatePrefs; };