Salome HOME
Join modifications from branch OCC_debug_for_3_2_0b1
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_SmoothingDlg.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_SmoothingDlg.h
25 //  Author : Michael ZORIN
26 //  Module : SMESH
27 //  $Header: 
28
29 #ifndef DIALOGBOX_SMOOTHING_H
30 #define DIALOGBOX_SMOOTHING_H
31
32 #include "LightApp_SelectionMgr.h"
33
34 #include "SMESH_LogicalFilter.hxx"
35
36 // QT Includes
37 #include <qdialog.h>
38
39 class QGridLayout; 
40 class QButtonGroup;
41 class QGroupBox;
42 class QLabel;
43 class QLineEdit;
44 class QPushButton;
45 class QRadioButton;
46 class QComboBox;
47 class QCheckBox;
48 class QSpinBox;
49 class SMESHGUI_SpinBox;
50 class SMESHGUI;
51 class SMESH_Actor;
52 class SVTK_ViewWindow;
53 class SVTK_Selector;
54
55
56 // IDL Headers
57 #include <SALOMEconfig.h>
58 #include CORBA_SERVER_HEADER(SMESH_Mesh)
59
60
61 //=================================================================================
62 // class    : SMESHGUI_SmoothingDlg
63 // purpose  :
64 //=================================================================================
65 class SMESHGUI_SmoothingDlg : public QDialog
66
67     Q_OBJECT
68
69 public:
70     SMESHGUI_SmoothingDlg( SMESHGUI*,
71                            const char* name = 0,
72                            bool modal = FALSE,
73                            WFlags fl = 0);
74     ~SMESHGUI_SmoothingDlg();
75
76 private:
77
78     void Init();
79     void closeEvent(QCloseEvent*);
80     void enterEvent (QEvent*);                             /* mouse enter the QWidget */
81     void hideEvent (QHideEvent*);                          /* ESC key */
82
83     SMESHGUI*                     mySMESHGUI;              /* Current SMESHGUI object */
84     LightApp_SelectionMgr*        mySelectionMgr;          /* User shape selection */
85     QString                       myElementsId;
86     int                           myNbOkElements;          /* to check when elements are defined */
87     int                           myNbOkNodes;             /* to check when fixed nodes are defined */
88     int                           myConstructorId;         /* Current constructor id = radio button id */
89     QLineEdit*                    myEditCurrentArgument;   /* Current  LineEdit */
90     SVTK_Selector*                mySelector;
91
92     bool                          myBusy;
93     SMESH::SMESH_Mesh_var         myMesh;
94     SMESH_Actor*                  myActor;
95     SMESH_LogicalFilter*          myMeshOrSubMeshOrGroupFilter;
96
97     QButtonGroup* GroupConstructors;
98     QRadioButton* Constructor1;
99     QGroupBox* GroupButtons;
100     QPushButton* buttonOk;
101     QPushButton* buttonCancel;
102     QPushButton* buttonApply;
103     QPushButton* buttonHelp;
104     QGroupBox* GroupArguments;
105     QLabel* TextLabelElements;
106     QPushButton* SelectElementsButton;
107     QLineEdit* LineEditElements;
108     QCheckBox* CheckBoxMesh;
109     QLabel* TextLabelNodes;
110     QPushButton* SelectNodesButton;
111     QLineEdit* LineEditNodes;
112     QLabel* TextLabelMethod;
113     QComboBox* ComboBoxMethod;
114     QLabel* TextLabelLimit;
115     QSpinBox* SpinBox_IterationLimit;
116     QLabel* TextLabelAspectRatio;
117     SMESHGUI_SpinBox* SpinBox_AspectRatio;
118     QCheckBox       * CheckBoxParametric;
119
120     QString myHelpFileName;
121     
122 private slots:
123
124     void ConstructorsClicked(int constructorId);
125     void ClickOnOk();
126     void ClickOnCancel();
127     void ClickOnApply();
128     void ClickOnHelp();
129     void SetEditCurrentArgument() ;
130     void SelectionIntoArgument() ;
131     void DeactivateActiveDialog() ;
132     void ActivateThisDialog() ;
133     void onTextChange(const QString&);
134     void onSelectMesh(bool toSelectMesh);
135
136 protected:
137     QGridLayout* SMESHGUI_SmoothingDlgLayout;
138     QGridLayout* GroupConstructorsLayout;
139     QGridLayout* GroupButtonsLayout;
140     QGridLayout* GroupArgumentsLayout;
141 };
142
143 #endif // DIALOGBOX_SMOOTHING_H