Salome HOME
0020321: EDF : Some windows do not appear depending on the platform (MinimumSizeHint())
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_SewingDlg.h
1 //  Copyright (C) 2007-2008  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 // SMESH SMESHGUI : GUI for SMESH component
23 // File   : SMESHGUI_SewingDlg.h
24 // Author : Michael ZORIN, Open CASCADE S.A.S.
25 //
26 #ifndef SMESHGUI_SEWINGDLG_H
27 #define SMESHGUI_SEWINGDLG_H
28
29 // SMESH includes
30 #include "SMESH_SMESHGUI.hxx"
31
32 // Qt includes
33 #include <QDialog>
34
35 // IDL includes
36 #include <SALOMEconfig.h>
37 #include CORBA_SERVER_HEADER(SMESH_Mesh)
38
39 class QButtonGroup;
40 class QGroupBox;
41 class QLabel;
42 class QLineEdit;
43 class QPushButton;
44 class QRadioButton;
45 class QCheckBox;
46 class SMESHGUI;
47 class SMESH_Actor;
48 class SVTK_Selector;
49 class LightApp_SelectionMgr;
50
51 //=================================================================================
52 // class    : SMESHGUI_SewingDlg
53 // purpose  :
54 //=================================================================================
55 class SMESHGUI_EXPORT SMESHGUI_SewingDlg : public QDialog
56
57   Q_OBJECT
58
59 public:
60   SMESHGUI_SewingDlg( SMESHGUI* );
61   ~SMESHGUI_SewingDlg();
62
63 private:
64   void                    Init();
65   void                    closeEvent( QCloseEvent* );
66   void                    enterEvent( QEvent* );                /* mouse enter the QWidget */
67   void                    hideEvent( QHideEvent* );             /* ESC key */
68   void                    keyPressEvent( QKeyEvent* );
69   int                     GetConstructorId();
70   bool                    IsValid();
71   
72   SMESHGUI*               mySMESHGUI;              /* Current SMESHGUI object */
73   LightApp_SelectionMgr*  mySelectionMgr;          /* User shape selection */
74   int                     myOk1, myOk2, myOk3, myOk4, myOk5, myOk6;    
75   QLineEdit*              myEditCurrentArgument;   /* Current  LineEdit */
76   SVTK_Selector*          mySelector;
77   
78   bool                    myBusy;
79   SMESH::SMESH_Mesh_var   myMesh;
80   SMESH_Actor*            myActor;
81   
82   QGroupBox*              ConstructorsBox;
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   QPushButton*            buttonHelp;
93   QGroupBox*              GroupArguments;
94   QGroupBox*              SubGroup1;
95   QGroupBox*              SubGroup2;
96   QLabel*                 TextLabel1;
97   QLabel*                 TextLabel2;
98   QLabel*                 TextLabel3;
99   QLabel*                 TextLabel4;
100   QLabel*                 TextLabel5;
101   QLabel*                 TextLabel6;
102   QPushButton*            SelectButton1;
103   QPushButton*            SelectButton2;
104   QPushButton*            SelectButton3;
105   QPushButton*            SelectButton4;
106   QPushButton*            SelectButton5;
107   QPushButton*            SelectButton6;
108   QLineEdit*              LineEdit1;
109   QLineEdit*              LineEdit2;
110   QLineEdit*              LineEdit3;
111   QLineEdit*              LineEdit4;
112   QLineEdit*              LineEdit5;
113   QLineEdit*              LineEdit6;
114   QCheckBox*              CheckBoxMerge;
115   QCheckBox*              CheckBoxPolygons;
116   QCheckBox*              CheckBoxPolyedrs;
117
118   QString                 myHelpFileName;
119
120 private slots:
121   void                    ConstructorsClicked( int );
122   void                    ClickOnOk();
123   void                    ClickOnCancel();
124   bool                    ClickOnApply();
125   void                    ClickOnHelp();
126   void                    SetEditCurrentArgument();
127   void                    SelectionIntoArgument( bool = true );
128   void                    DeactivateActiveDialog();
129   void                    ActivateThisDialog();
130   void                    onTextChange( const QString& );
131 };
132
133 #endif // SMESHGUI_SEWINGDLG_H