Salome HOME
[bos #40653][CEA] New mesh import export formats with meshio.
[modules/smesh.git] / src / StdMeshersGUI / StdMeshersGUI_NbSegmentsCreator.h
1 // Copyright (C) 2007-2024  CEA, EDF, 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, or (at your option) any later version.
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 // File   : StdMeshersGUI_NbSegmentsCreator.h
24 // Author : Open CASCADE S.A.S.
25 //
26 #ifndef STDMESHERSGUI_NBSEGMENTSCREATOR_H
27 #define STDMESHERSGUI_NBSEGMENTSCREATOR_H
28
29 // SMESH includes
30 #include "SMESH_StdMeshersGUI.hxx"
31
32 #include "StdMeshersGUI_StdHypothesisCreator.h"
33
34 // IDL includes
35 #include <SALOMEconfig.h>
36 #include CORBA_SERVER_HEADER(SMESH_Mesh)
37
38 class SalomeApp_IntSpinBox;
39 class QtxComboBox;
40 class SMESHGUI_SpinBox;
41 class StdMeshersGUI_DistrTableFrame;
42 #ifndef DISABLE_PLOT2DVIEWER
43   class StdMeshersGUI_DistrPreview;
44 #endif
45 class QLineEdit;
46 class QButtonGroup;
47 class QGroupBox;
48 class QGridLayout;
49 class QRadioButton;
50 class StdMeshersGUI_SubShapeSelectorWdg;
51 class StdMeshersGUI_PropagationHelperWdg;
52 class SMESHGUI_SpinBoxForbiddendRange;
53
54 typedef struct
55 {
56   int                 myNbSeg, myDistrType, myConv;
57   double              myScale;
58   double              myBeta;
59   SMESH::double_array myTable;
60   QString             myName, myExpr;
61   QString             myNbSegVarName, myScaleVarName;
62 } NbSegmentsHypothesisData;
63
64 class STDMESHERSGUI_EXPORT StdMeshersGUI_NbSegmentsCreator : public StdMeshersGUI_StdHypothesisCreator
65 {
66   Q_OBJECT
67
68 public:
69   StdMeshersGUI_NbSegmentsCreator();
70   virtual ~StdMeshersGUI_NbSegmentsCreator();
71
72   virtual bool checkParams( QString& ) const;
73
74 protected:
75   virtual QFrame*  buildFrame();
76   virtual void     retrieveParams() const;
77   virtual QString  storeParams() const;
78
79 protected slots:
80   virtual void     onValueChanged();
81
82 private:
83   bool readParamsFromHypo( NbSegmentsHypothesisData& ) const;
84   bool readParamsFromWidgets( NbSegmentsHypothesisData& ) const;
85   bool storeParamsToHypo( const NbSegmentsHypothesisData& ) const;
86
87 private:
88   SalomeApp_IntSpinBox*   myNbSeg;
89   QtxComboBox*     myDistr;
90   SMESHGUI_SpinBox*   myScale;
91   SMESHGUI_SpinBoxForbiddendRange*   myBeta;
92   StdMeshersGUI_DistrTableFrame*  myTable;
93 #ifndef DISABLE_PLOT2DVIEWER
94   StdMeshersGUI_DistrPreview* myPreview;
95 #endif
96   QLineEdit       *myName, *myExpr;
97   QGroupBox*       myConvBox;
98   QButtonGroup*    myConv;
99   QLabel          *myLScale, *myLTable, *myLExpr, *myInfo, *myLBeta;
100   QGridLayout*     myGroupLayout;
101   int              myTableRow, myPreviewRow;
102   //QRadioButton*    myCutNeg;
103   QGroupBox*       myReversedEdgesBox;
104
105   StdMeshersGUI_SubShapeSelectorWdg*    myDirectionWidget;
106   StdMeshersGUI_PropagationHelperWdg*   myReversedEdgesHelper;
107 };
108
109 #endif // STDMESHERSGUI_NBSEGMENTSCREATOR_H