1 // Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File : SMESHGUI_RemoveNodesDlg.h
25 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
27 #ifndef SMESHGUI_REMOVENODESDLG_H
28 #define SMESHGUI_REMOVENODESDLG_H
31 #include "SMESH_SMESHGUI.hxx"
37 #include <SALOMEconfig.h>
38 #include CORBA_SERVER_HEADER(SMESH_Mesh)
47 class SMESHGUI_FilterDlg;
50 class LightApp_SelectionMgr;
52 //=================================================================================
53 // class : SMESHGUI_RemoveNodesDlg
55 //=================================================================================
56 class SMESHGUI_EXPORT SMESHGUI_RemoveNodesDlg : public QDialog
61 SMESHGUI_RemoveNodesDlg( SMESHGUI* );
62 ~SMESHGUI_RemoveNodesDlg();
66 void enterEvent( QEvent* ); /* mouse enter the QWidget */
67 void keyPressEvent( QKeyEvent* );
69 LightApp_SelectionMgr* mySelectionMgr;
70 SVTK_Selector* mySelector;
73 int myNbOkNodes; /* to check when arguments is defined */
74 int myConstructorId; /* Current constructor id = radio button id */
75 QLineEdit* myEditCurrentArgument; /* Current LineEdit */
78 SMESH::SMESH_Mesh_var myMesh;
81 QGroupBox* GroupConstructors;
82 QRadioButton* Constructor1;
83 QGroupBox* GroupButtons;
84 QPushButton* buttonOk;
85 QPushButton* buttonCancel;
86 QPushButton* buttonApply;
87 QPushButton* buttonHelp;
89 QLabel* TextLabelC1A1;
90 QPushButton* SelectButtonC1A1;
91 QLineEdit* LineEditC1A1;
93 QString myHelpFileName;
95 SMESHGUI_FilterDlg* myFilterDlg;
98 virtual void reject();
104 void SetEditCurrentArgument();
105 void SelectionIntoArgument();
106 void DeactivateActiveDialog();
107 void ActivateThisDialog();
108 void onTextChange( const QString& );
112 void updateButtons();
115 #endif // SMESHGUI_REMOVENODESDLG_H