X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FStdMeshersGUI%2FStdMeshersGUI_SubShapeSelectorWdg.h;h=7d0a5bd1ddd8c248d0bec24458a73dbea7629a21;hb=df9cc07c95bbe75654ed43634939a133ccebe2f6;hp=c6b9d95f1ba1d3b3c8301441ed81dfa5d42001fd;hpb=251f8c052dd12dd29922210dc901b295fe999a0e;p=modules%2Fsmesh.git diff --git a/src/StdMeshersGUI/StdMeshersGUI_SubShapeSelectorWdg.h b/src/StdMeshersGUI/StdMeshersGUI_SubShapeSelectorWdg.h index c6b9d95f1..7d0a5bd1d 100644 --- a/src/StdMeshersGUI/StdMeshersGUI_SubShapeSelectorWdg.h +++ b/src/StdMeshersGUI/StdMeshersGUI_SubShapeSelectorWdg.h @@ -24,7 +24,7 @@ #define STDMESHERSGUI_SUBSHAPESELECTORWDG_H // SMESH includes -#include +#include "SMESHGUI.h" #include "SMESH_StdMeshersGUI.hxx" #include "SMESH_SMESHGUI.hxx" @@ -33,17 +33,14 @@ #include #include -#include +#include class SMESHGUI; class LightApp_SelectionMgr; class SVTK_Selector; class QPushButton; class QLabel; -class QLineEdit; -class QCheckBox; class QListWidget; -class SMESH_Actor; class SMESH_PreviewActorsCollection; class vtkRenderer; class SUIT_SelectionFilter; @@ -60,29 +57,33 @@ public: SMESH::long_array_var GetListOfIDs(); bool SetListOfIDs( SMESH::long_array_var ); - void SetGeomShapeEntry( const QString& theEntry ); - const char* GetGeomShapeEntry() { return myEntry.toLatin1().data();} + void SetGeomShapeEntry( const QString& theEntry, + const QString& theMainShapeEntry); + //QString GetGeomShapeEntry() { return myEntry; } - void SetMainShapeEntry( const QString& theEntry ); + // void SetMainShapeEntry( const QString& theEntry ); const char* GetMainShapeEntry(); TopoDS_Shape GetGeomShape() { return myGeomShape; } TopoDS_Shape GetMainShape() { return myMainShape; } - QList GetCorrectedListOfIDs( bool fromSubshapeToMainshape, - bool* isOK=0); + // QList GetCorrectedListOfIDs( bool fromSubshapeToMainshape, + // bool* isOK=0); static GEOM::GEOM_Object_var GetGeomObjectByEntry( const QString& ); static TopoDS_Shape GetTopoDSByEntry( const QString& ); QString GetValue() const { return myParamValue; } - void showPreview ( bool ); + void ShowPreview( bool ); int GetListSize() { return myListOfIDs.size(); } - void SetMaxSize(int aMaxSize) { myMaxSize = aMaxSize; } - //void SetSubShType(TopAbs_ShapeEnum aSubShType) { mySubShType = aSubShType; } + void SetMaxSize(int aMaxSize) { myMaxSize = aMaxSize; } + + vtkRenderer* GetRenderer() { return myRenderer; } + SMESH_PreviewActorsCollection* GetActorCollection() { return myPreviewActor; } + void ClearSelected(); private: void updateState(); @@ -94,7 +95,7 @@ private slots: void onRemove(); void onPrevious(); void onNext(); - void SelectionIntoArgument(); + void selectionIntoArgument(); void onListSelectionChanged(); private: @@ -107,8 +108,8 @@ private: SMESH::SMESH_Mesh_var myMesh; TopoDS_Shape myGeomShape; // shape whose sub-shapes are selected TopoDS_Shape myMainShape; // main shape of the mesh - QString myEntry; - QString myMainEntry; + std::string myEntry; + std::string myMainEntry; vtkRenderer* myRenderer; QListWidget* myListWidget;