X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSMESHGUI%2FSMESHGUI_Selection.h;h=440c8d4bd81a8bfd76209935c9a3d4fbb9038b45;hb=92c5811d43dbb5ba22d15fef38225104732c9b60;hp=524aa26a253fcbcaa2ffe0c7e53b9d5351e0b9b2;hpb=1f1c0e4dcbab7d45bfb55661736fbcfab125772c;p=modules%2Fsmesh.git diff --git a/src/SMESHGUI/SMESHGUI_Selection.h b/src/SMESHGUI/SMESHGUI_Selection.h index 524aa26a2..440c8d4bd 100644 --- a/src/SMESHGUI/SMESHGUI_Selection.h +++ b/src/SMESHGUI/SMESHGUI_Selection.h @@ -17,7 +17,7 @@ // 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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // // // @@ -29,25 +29,28 @@ #ifndef SMESHGUI_SELECTION_HeaderFile #define SMESHGUI_SELECTION_HeaderFile -#include "SalomeApp_Selection.h" +#include "SMESH_SMESHGUI.hxx" + +#include "LightApp_Selection.h" #include "SALOMEDSClient_definitions.hxx" -#include "SUIT_DataOwner.h" -class SalomeApp_SelectionMgr; +class LightApp_SelectionMgr; class SALOMEDSClient_Study; -class SalomeApp_DataOwner; +class LightApp_DataOwner; class SMESH_Actor; -class SMESHGUI_Selection : public SalomeApp_Selection +class SMESHGUI_EXPORT SMESHGUI_Selection : public LightApp_Selection { public: SMESHGUI_Selection(); virtual ~SMESHGUI_Selection(); - virtual void init( const QString&, SalomeApp_SelectionMgr* ); + virtual void init( const QString&, LightApp_SelectionMgr* ); virtual QtxValue param( const int , const QString& paramName ) const; + virtual void processOwner( const LightApp_DataOwner* ); // got from object, not from actor + virtual bool isAutoColor( int ind ) const; virtual int numberOfNodes( int ind ) const; virtual QVariant isComputable( int ind ) const; virtual QVariant hasReference( int ind ) const; @@ -64,12 +67,11 @@ public: SMESH_Actor* getActor( int ind ) const; static int type( const QString&, _PTR(Study) ); - static int type( SalomeApp_DataOwner* owner, _PTR(Study) study); static QString typeName( const int type); private: - QStringList myTypes; - SUIT_DataOwnerPtrList myDataOwners; + QStringList myTypes; + QPtrList myActors; }; #endif