1 // SMESH SMESHGUI : GUI for SMESH component
3 // Copyright (C) 2003 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.
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
24 // File : SMESHGUI_RemoveElementsDlg.h
25 // Author : Nicolas REJNERI
29 #ifndef DIALOGBOX_REMOVE_ELEMENTS_H
30 #define DIALOGBOX_REMOVE_ELEMENTS_H
32 #include "SMESH_SMESHGUI.hxx"
34 #include "LightApp_SelectionMgr.h"
53 class SVTK_ViewWindow;
56 #include <SALOMEconfig.h>
57 #include CORBA_SERVER_HEADER(SMESH_Mesh)
59 //=================================================================================
60 // class : SMESHGUI_RemoveElementsDlg
62 //=================================================================================
63 class SMESHGUI_EXPORT SMESHGUI_RemoveElementsDlg : public QDialog
68 SMESHGUI_RemoveElementsDlg(SMESHGUI* theModule,
72 ~SMESHGUI_RemoveElementsDlg();
77 void closeEvent( QCloseEvent* e ) ;
78 void enterEvent ( QEvent * ) ; /* mouse enter the QWidget */
79 void hideEvent ( QHideEvent * ); /* ESC key */
80 void keyPressEvent( QKeyEvent* e );
82 LightApp_SelectionMgr* mySelectionMgr;
83 SVTK_Selector* mySelector;
86 int myNbOkElements; /* to check when arguments is defined */
87 int myConstructorId; /* Current constructor id = radio button id */
88 QLineEdit* myEditCurrentArgument; /* Current LineEdit */
91 SMESH::SMESH_Mesh_var myMesh;
94 QButtonGroup* GroupConstructors;
95 QRadioButton* Constructor1;
96 QGroupBox* GroupButtons;
97 QPushButton* buttonOk;
98 QPushButton* buttonCancel;
99 QPushButton* buttonApply;
100 QPushButton* buttonHelp;
102 QLabel* TextLabelC1A1;
103 QPushButton* SelectButtonC1A1;
104 QLineEdit* LineEditC1A1;
106 QString myHelpFileName;
110 void ConstructorsClicked(int constructorId);
112 void ClickOnCancel();
115 void SetEditCurrentArgument() ;
116 void SelectionIntoArgument() ;
117 void DeactivateActiveDialog() ;
118 void ActivateThisDialog() ;
119 void onTextChange(const QString&);
122 QGridLayout* SMESHGUI_RemoveElementsDlgLayout;
123 QGridLayout* GroupConstructorsLayout;
124 QGridLayout* GroupButtonsLayout;
125 QGridLayout* GroupC1Layout;
128 #endif // DIALOGBOX_REMOVE_ELEMENTS_H