Salome HOME
fix PAL8469. Updating the global mesh icon when local hypotheses are edited
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_SewingDlg.h
1 //  SMESH SMESHGUI : GUI for SMESH component
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SMESHGUI_SewingDlg.h
25 //  Author : Michael ZORIN
26 //  Module : SMESH
27 //  $Header: 
28
29 #ifndef DIALOGBOX_SEWING_H
30 #define DIALOGBOX_SEWING_H
31
32 #include "SALOME_Selection.h"
33
34 // QT Includes
35 #include <qdialog.h>
36
37 class QGridLayout; 
38 class QButtonGroup;
39 class QGroupBox;
40 class QLabel;
41 class QLineEdit;
42 class QPushButton;
43 class QRadioButton;
44 class QCheckBox;
45 class SMESHGUI;
46 class SMESH_Actor;
47
48 // IDL Headers
49 #include <SALOMEconfig.h>
50 #include CORBA_SERVER_HEADER(SMESH_Mesh)
51
52
53 //=================================================================================
54 // class    : SMESHGUI_SewingDlg
55 // purpose  :
56 //=================================================================================
57 class SMESHGUI_SewingDlg : public QDialog
58
59     Q_OBJECT
60
61 public:
62     SMESHGUI_SewingDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
63     ~SMESHGUI_SewingDlg();
64
65 private:
66
67     void Init() ;
68     void closeEvent( QCloseEvent* e ) ;
69     void enterEvent ( QEvent * ) ;                          /* mouse enter the QWidget */
70     void hideEvent ( QHideEvent * );                        /* ESC key */
71     int  GetConstructorId();
72     bool IsValid();
73     
74     SMESHGUI*                     mySMESHGUI ;              /* Current SMESHGUI object */
75     SALOME_Selection*             mySelection ;             /* User shape selection */
76     int                           myOk1, myOk2, myOk3, myOk4, myOk5, myOk6;    
77     QLineEdit*                    myEditCurrentArgument;    /* Current  LineEdit */
78     
79     bool                          myBusy;
80     SMESH::SMESH_Mesh_var         myMesh;
81     SMESH_Actor*                  myActor;
82         
83     QButtonGroup* GroupConstructors;
84     QRadioButton* RadioButton1;
85     QRadioButton* RadioButton2;
86     QRadioButton* RadioButton3;
87     QRadioButton* RadioButton4;
88     QGroupBox* GroupButtons;
89     QPushButton* buttonOk;
90     QPushButton* buttonCancel;
91     QPushButton* buttonApply;
92     QGroupBox* GroupArguments;
93     QGroupBox* SubGroup1;
94     QGroupBox* SubGroup2;
95     QLabel* TextLabel1;
96     QLabel* TextLabel2;
97     QLabel* TextLabel3;
98     QLabel* TextLabel4;
99     QLabel* TextLabel5;
100     QLabel* TextLabel6;
101     QPushButton* SelectButton1;
102     QPushButton* SelectButton2;
103     QPushButton* SelectButton3;
104     QPushButton* SelectButton4;
105     QPushButton* SelectButton5;
106     QPushButton* SelectButton6;
107     QLineEdit* LineEdit1;
108     QLineEdit* LineEdit2;
109     QLineEdit* LineEdit3;
110     QLineEdit* LineEdit4;
111     QLineEdit* LineEdit5;
112     QLineEdit* LineEdit6;
113     QCheckBox* CheckBoxMerge;
114    
115 private slots:
116
117     void ConstructorsClicked(int constructorId);
118     void ClickOnOk();
119     void ClickOnCancel();
120     bool ClickOnApply();
121     void SetEditCurrentArgument() ;
122     void SelectionIntoArgument(bool isSelectionChanged = true) ;
123     void DeactivateActiveDialog() ;
124     void ActivateThisDialog() ;
125     void onTextChange(const QString&);
126     
127 protected:
128     QGridLayout* SMESHGUI_SewingDlgLayout;
129     QGridLayout* GroupConstructorsLayout;
130     QGridLayout* GroupButtonsLayout;
131     QGridLayout* GroupArgumentsLayout;
132 };
133
134 #endif // DIALOGBOX_SEWING_H