X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESHGUI%2FSMESHGUI_RemoveElementsDlg.h;h=e18ad584b69f0b8de2543a34fe99708e7a0f6bfd;hp=9930235c9c958d16c572d0742ba0a0bd5fe0fe0f;hb=e4737e85f0da6d3f90fd08f6be1c2825195fe16f;hpb=51569f091c2d18be76ea9bd3e68ca0247cc731c3 diff --git a/src/SMESHGUI/SMESHGUI_RemoveElementsDlg.h b/src/SMESHGUI/SMESHGUI_RemoveElementsDlg.h index 9930235c9..e18ad584b 100644 --- a/src/SMESHGUI/SMESHGUI_RemoveElementsDlg.h +++ b/src/SMESHGUI/SMESHGUI_RemoveElementsDlg.h @@ -35,9 +35,6 @@ #include #include -// Open CASCADE Includes -#include - class QVBoxLayout; class QHBoxLayout; class QGridLayout; @@ -48,6 +45,7 @@ class QLineEdit; class QPushButton; class QRadioButton; class SMESHGUI; +class SMESH_Actor; // IDL Headers #include @@ -70,15 +68,17 @@ private: void Init( SALOME_Selection* Sel ) ; void closeEvent( QCloseEvent* e ) ; void enterEvent ( QEvent * ) ; /* mouse enter the QWidget */ + void hideEvent ( QHideEvent * ); /* ESC key */ SMESHGUI* mySMESHGUI ; /* Current SMESHGUI object */ SALOME_Selection* mySelection ; /* User shape selection */ - bool myOkElements ; /* to check when arguments is defined */ + int myNbOkElements ; /* to check when arguments is defined */ int myConstructorId ; /* Current constructor id = radio button id */ QLineEdit* myEditCurrentArgument; /* Current LineEdit */ + bool myBusy; SMESH::SMESH_Mesh_var myMesh; - TColStd_MapOfInteger myMapIndex; + SMESH_Actor* myActor; QButtonGroup* GroupConstructors; QRadioButton* Constructor1; @@ -101,6 +101,7 @@ private slots: void SelectionIntoArgument() ; void DeactivateActiveDialog() ; void ActivateThisDialog() ; + void onTextChange(const QString&); protected: QGridLayout* SMESHGUI_RemoveElementsDlgLayout;