Salome HOME
Fix bug 12796: Warning missed for the bad file 'test18.med'
[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 "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     void keyPressEvent(QKeyEvent*);
83
84     SMESHGUI*                     mySMESHGUI;              /* Current SMESHGUI object */
85     LightApp_SelectionMgr*        mySelectionMgr;          /* User shape selection */
86     QString                       myElementsId;
87     int                           myNbOkElements;          /* to check when elements are defined */
88     int                           myNbOkNodes;             /* to check when fixed nodes are defined */
89     int                           myConstructorId;         /* Current constructor id = radio button id */
90     QLineEdit*                    myEditCurrentArgument;   /* Current  LineEdit */
91     SVTK_Selector*                mySelector;
92
93     bool                          myBusy;
94     SMESH::SMESH_Mesh_var         myMesh;
95     SMESH_Actor*                  myActor;
96     SMESH_LogicalFilter*          myMeshOrSubMeshOrGroupFilter;
97
98     QButtonGroup* GroupConstructors;
99     QRadioButton* Constructor1;
100     QGroupBox* GroupButtons;
101     QPushButton* buttonOk;
102     QPushButton* buttonCancel;
103     QPushButton* buttonApply;
104     QPushButton* buttonHelp;
105     QGroupBox* GroupArguments;
106     QLabel* TextLabelElements;
107     QPushButton* SelectElementsButton;
108     QLineEdit* LineEditElements;
109     QCheckBox* CheckBoxMesh;
110     QLabel* TextLabelNodes;
111     QPushButton* SelectNodesButton;
112     QLineEdit* LineEditNodes;
113     QLabel* TextLabelMethod;
114     QComboBox* ComboBoxMethod;
115     QLabel* TextLabelLimit;
116     QSpinBox* SpinBox_IterationLimit;
117     QLabel* TextLabelAspectRatio;
118     SMESHGUI_SpinBox* SpinBox_AspectRatio;
119     QCheckBox       * CheckBoxParametric;
120
121     QString myHelpFileName;
122     
123 private slots:
124
125     void ConstructorsClicked(int constructorId);
126     void ClickOnOk();
127     void ClickOnCancel();
128     void ClickOnApply();
129     void ClickOnHelp();
130     void SetEditCurrentArgument() ;
131     void SelectionIntoArgument() ;
132     void DeactivateActiveDialog() ;
133     void ActivateThisDialog() ;
134     void onTextChange(const QString&);
135     void onSelectMesh(bool toSelectMesh);
136
137 protected:
138     QGridLayout* SMESHGUI_SmoothingDlgLayout;
139     QGridLayout* GroupConstructorsLayout;
140     QGridLayout* GroupButtonsLayout;
141     QGridLayout* GroupArgumentsLayout;
142 };
143
144 #endif // DIALOGBOX_SMOOTHING_H