Salome HOME
Merge from V5_1_4_BR 07/05/2010
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_SewingDlg.h
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
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.
10 //
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.
15 //
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
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File   : SMESHGUI_SewingDlg.h
25 // Author : Michael ZORIN, Open CASCADE S.A.S.
26 //
27 #ifndef SMESHGUI_SEWINGDLG_H
28 #define SMESHGUI_SEWINGDLG_H
29
30 // SMESH includes
31 #include "SMESH_SMESHGUI.hxx"
32
33 // Qt includes
34 #include <QDialog>
35
36 // IDL includes
37 #include <SALOMEconfig.h>
38 #include CORBA_SERVER_HEADER(SMESH_Mesh)
39
40 class QButtonGroup;
41 class QGroupBox;
42 class QLabel;
43 class QLineEdit;
44 class QPushButton;
45 class QRadioButton;
46 class QCheckBox;
47 class SMESHGUI;
48 class SMESH_Actor;
49 class SVTK_Selector;
50 class LightApp_SelectionMgr;
51
52 //=================================================================================
53 // class    : SMESHGUI_SewingDlg
54 // purpose  :
55 //=================================================================================
56 class SMESHGUI_EXPORT SMESHGUI_SewingDlg : public QDialog
57
58   Q_OBJECT
59
60 public:
61   SMESHGUI_SewingDlg( SMESHGUI* );
62   ~SMESHGUI_SewingDlg();
63
64 private:
65   void                    Init();
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();
71   bool                    IsValid();
72   
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;
78   
79   bool                    myBusy;
80   SMESH::SMESH_Mesh_var   myMesh;
81   SMESH_Actor*            myActor;
82   
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;
95   QGroupBox*              SubGroup1;
96   QGroupBox*              SubGroup2;
97   QLabel*                 TextLabel1;
98   QLabel*                 TextLabel2;
99   QLabel*                 TextLabel3;
100   QLabel*                 TextLabel4;
101   QLabel*                 TextLabel5;
102   QLabel*                 TextLabel6;
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;
118
119   QString                 myHelpFileName;
120
121 private slots:
122   void                    ConstructorsClicked( int );
123   void                    ClickOnOk();
124   void                    ClickOnCancel();
125   bool                    ClickOnApply();
126   void                    ClickOnHelp();
127   void                    SetEditCurrentArgument();
128   void                    SelectionIntoArgument( bool = true );
129   void                    DeactivateActiveDialog();
130   void                    ActivateThisDialog();
131   void                    onTextChange( const QString& );
132 };
133
134 #endif // SMESHGUI_SEWINGDLG_H