1 // Copyright (C) 2007-2011 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.
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_SewingDlg.h
25 // Author : Michael ZORIN, Open CASCADE S.A.S.
27 #ifndef SMESHGUI_SEWINGDLG_H
28 #define SMESHGUI_SEWINGDLG_H
31 #include "SMESH_SMESHGUI.hxx"
37 #include <SALOMEconfig.h>
38 #include CORBA_SERVER_HEADER(SMESH_Mesh)
50 class LightApp_SelectionMgr;
52 //=================================================================================
53 // class : SMESHGUI_SewingDlg
55 //=================================================================================
56 class SMESHGUI_EXPORT SMESHGUI_SewingDlg : public QDialog
61 SMESHGUI_SewingDlg( SMESHGUI* );
62 ~SMESHGUI_SewingDlg();
66 void closeEvent( QCloseEvent* );
67 void enterEvent( QEvent* ); /* mouse enter the QWidget */
68 void hideEvent( QHideEvent* ); /* ESC key */
69 void keyPressEvent( QKeyEvent* );
70 int GetConstructorId();
73 SMESHGUI* mySMESHGUI; /* Current SMESHGUI object */
74 LightApp_SelectionMgr* mySelectionMgr; /* User shape selection */
75 int myOk1, myOk2, myOk3, myOk4, myOk5, myOk6;
76 QLineEdit* myEditCurrentArgument; /* Current LineEdit */
77 SVTK_Selector* mySelector;
80 SMESH::SMESH_Mesh_var myMesh;
83 QGroupBox* ConstructorsBox;
84 QButtonGroup* GroupConstructors;
85 QRadioButton* RadioButton1;
86 QRadioButton* RadioButton2;
87 QRadioButton* RadioButton3;
88 QRadioButton* RadioButton4;
89 QGroupBox* GroupButtons;
90 QPushButton* buttonOk;
91 QPushButton* buttonCancel;
92 QPushButton* buttonApply;
93 QPushButton* buttonHelp;
94 QGroupBox* GroupArguments;
103 QPushButton* SelectButton1;
104 QPushButton* SelectButton2;
105 QPushButton* SelectButton3;
106 QPushButton* SelectButton4;
107 QPushButton* SelectButton5;
108 QPushButton* SelectButton6;
109 QLineEdit* LineEdit1;
110 QLineEdit* LineEdit2;
111 QLineEdit* LineEdit3;
112 QLineEdit* LineEdit4;
113 QLineEdit* LineEdit5;
114 QLineEdit* LineEdit6;
115 QCheckBox* CheckBoxMerge;
116 QCheckBox* CheckBoxPolygons;
117 QCheckBox* CheckBoxPolyedrs;
119 QString myHelpFileName;
122 void ConstructorsClicked( int );
124 void ClickOnCancel();
127 void SetEditCurrentArgument();
128 void SelectionIntoArgument( bool = true );
129 void DeactivateActiveDialog();
130 void ActivateThisDialog();
131 void onTextChange( const QString& );
134 #endif // SMESHGUI_SEWINGDLG_H