X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FStdMeshersGUI%2FStdMeshersGUI_SubShapeSelectorWdg.h;h=577d310419bb33afd3197f2ae9a0e62dfb47a283;hp=c6b9d95f1ba1d3b3c8301441ed81dfa5d42001fd;hb=ccb5e3c25bf204e839c0094f50f543eacedba5e6;hpb=251f8c052dd12dd29922210dc901b295fe999a0e diff --git a/src/StdMeshersGUI/StdMeshersGUI_SubShapeSelectorWdg.h b/src/StdMeshersGUI/StdMeshersGUI_SubShapeSelectorWdg.h index c6b9d95f1..577d31041 100644 --- a/src/StdMeshersGUI/StdMeshersGUI_SubShapeSelectorWdg.h +++ b/src/StdMeshersGUI/StdMeshersGUI_SubShapeSelectorWdg.h @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -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; @@ -53,36 +50,44 @@ class STDMESHERSGUI_EXPORT StdMeshersGUI_SubShapeSelectorWdg : public QWidget Q_OBJECT public: - StdMeshersGUI_SubShapeSelectorWdg( QWidget* parent = 0, - TopAbs_ShapeEnum aSubShType = TopAbs_EDGE ); + StdMeshersGUI_SubShapeSelectorWdg( QWidget* parent = 0, + TopAbs_ShapeEnum subShType = TopAbs_EDGE, + const bool toShowList = true, + const bool toShowActivateBtn = false); ~StdMeshersGUI_SubShapeSelectorWdg(); SMESH::long_array_var GetListOfIDs(); bool SetListOfIDs( SMESH::long_array_var ); + const QList& GetSelectedIDs() const { return mySelectedIDs; } - void SetGeomShapeEntry( const QString& theEntry ); - const char* GetGeomShapeEntry() { return myEntry.toLatin1().data();} - - void SetMainShapeEntry( const QString& theEntry ); + void SetGeomShapeEntry( const QString& theEntry, + const QString& theMainShapeEntry); const char* GetMainShapeEntry(); TopoDS_Shape GetGeomShape() { return myGeomShape; } TopoDS_Shape GetMainShape() { return myMainShape; } - 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(); + +public slots: + void ActivateSelection( bool ); + +signals: + void selectionChanged(); // in the list + void shapeSelected(); // globally private: void updateState(); @@ -94,7 +99,7 @@ private slots: void onRemove(); void onPrevious(); void onNext(); - void SelectionIntoArgument(); + void selectionIntoArgument(); void onListSelectionChanged(); private: @@ -107,11 +112,12 @@ 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; + QPushButton* myActivateButton; QPushButton* myAddButton; QPushButton* myRemoveButton; QLabel* myInfoLabel; @@ -122,7 +128,6 @@ private: QString myParamValue; bool myIsShown; - bool myIsNotCorrected; // for manage possible size of myListOfIDs int myMaxSize;