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