Salome HOME
0020321: EDF : Some windows do not appear depending on the platform (MinimumSizeHint())
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_SmoothingDlg.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_SmoothingDlg.h
24 // Author : Michael ZORIN, Open CASCADE S.A.S.
25 //
26 #ifndef SMESHGUI_SMOOTHINGDLG_H
27 #define SMESHGUI_SMOOTHINGDLG_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 QGroupBox;
40 class QLabel;
41 class QLineEdit;
42 class QPushButton;
43 class QRadioButton;
44 class QComboBox;
45 class QCheckBox;
46 class SMESHGUI;
47 class SalomeApp_IntSpinBox;
48 class SMESHGUI_IdValidator;
49 class SMESHGUI_SpinBox;
50 class SMESHGUI_FilterDlg;
51 class SMESH_Actor;
52 class SVTK_Selector;
53 class LightApp_SelectionMgr;
54 class SMESH_LogicalFilter;
55
56 //=================================================================================
57 // class    : SMESHGUI_SmoothingDlg
58 // purpose  :
59 //=================================================================================
60 class SMESHGUI_EXPORT SMESHGUI_SmoothingDlg : public QDialog
61
62   Q_OBJECT
63
64 public:
65   SMESHGUI_SmoothingDlg( SMESHGUI* );
66   ~SMESHGUI_SmoothingDlg();
67
68 private:
69   void                   Init();
70   void                   closeEvent( QCloseEvent* );
71   void                   enterEvent( QEvent* );        /* mouse enter the QWidget */
72   void                   hideEvent( QHideEvent* );     /* ESC key */
73   void                   keyPressEvent( QKeyEvent* );
74   void                   setFilters( const bool theIsElem );
75
76   bool                   isValid();
77   
78   SMESHGUI*              mySMESHGUI;              /* Current SMESHGUI object */
79   SMESHGUI_IdValidator*  myIdValidator;
80   LightApp_SelectionMgr* mySelectionMgr;          /* User shape selection */
81   QString                myElementsId;
82   int                    myNbOkElements;          /* to check when elements are defined */
83   int                    myNbOkNodes;             /* to check when fixed nodes are defined */
84   int                    myConstructorId;         /* Current constructor id = radio button id */
85   QLineEdit*             myEditCurrentArgument;   /* Current  LineEdit */
86   SVTK_Selector*         mySelector;
87
88   SMESH::SMESH_IDSource_var mySelectedObject;
89
90   bool                   myBusy;
91   SMESH::SMESH_Mesh_var  myMesh;
92   SMESH_Actor*           myActor;
93   SMESH_LogicalFilter*   myMeshOrSubMeshOrGroupFilter;
94
95   QGroupBox*             GroupConstructors;
96   QRadioButton*          Constructor1;
97   QGroupBox*             GroupButtons;
98   QPushButton*           buttonOk;
99   QPushButton*           buttonCancel;
100   QPushButton*           buttonApply;
101   QPushButton*           buttonHelp;
102   QGroupBox*             GroupArguments;
103   QLabel*                TextLabelElements;
104   QPushButton*           SelectElementsButton;
105   QLineEdit*             LineEditElements;
106   QCheckBox*             CheckBoxMesh;
107   QLabel*                TextLabelNodes;
108   QPushButton*           SelectNodesButton;
109   QLineEdit*             LineEditNodes;
110   QLabel*                TextLabelMethod;
111   QComboBox*             ComboBoxMethod;
112   QLabel*                TextLabelLimit;
113   SalomeApp_IntSpinBox*  SpinBox_IterationLimit;
114   QLabel*                TextLabelAspectRatio;
115   SMESHGUI_SpinBox*      SpinBox_AspectRatio;
116   QCheckBox*             CheckBoxParametric;
117
118   QString                myHelpFileName;
119
120   QPushButton*           myElemFilterBtn;
121   SMESHGUI_FilterDlg*    myFilterDlg;
122    
123 private slots:
124   void                   ClickOnOk();
125   void                   ClickOnCancel();
126   bool                   ClickOnApply();
127   void                   ClickOnHelp();
128   void                   SetEditCurrentArgument();
129   void                   SelectionIntoArgument();
130   void                   DeactivateActiveDialog();
131   void                   ActivateThisDialog();
132   void                   onTextChange( const QString& );
133   void                   onSelectMesh( bool );
134   void                   setElemFilters();
135   void                   setNodeFilters();
136 };
137
138 #endif // SMESHGUI_SMOOTHINGDLG_H