Salome HOME
ba7c7bff85d840f0b10d33e1d9586a6251d5b530
[modules/smesh.git] / src / StdMeshersGUI / StdMeshersGUI_NbSegmentsCreator.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 // File   : StdMeshersGUI_NbSegmentsCreator.h
23 // Author : Open CASCADE S.A.S.
24 //
25 #ifndef STDMESHERSGUI_NBSEGMENTSCREATOR_H
26 #define STDMESHERSGUI_NBSEGMENTSCREATOR_H
27
28 // SMESH includes
29 #include "SMESH_StdMeshersGUI.hxx"
30
31 #include "StdMeshersGUI_StdHypothesisCreator.h"
32
33 // IDL includes
34 #include <SALOMEconfig.h>
35 #include CORBA_SERVER_HEADER(SMESH_Mesh)
36
37 class SalomeApp_IntSpinBox;
38 class QtxComboBox;
39 class SMESHGUI_SpinBox;
40 class StdMeshersGUI_DistrTableFrame;
41 class StdMeshersGUI_DistrPreview;
42 class QLineEdit;
43 class QButtonGroup;
44 class QGroupBox;
45 class QGridLayout;
46 class QRadioButton;
47
48 typedef struct
49 {
50   int                 myNbSeg, myDistrType, myConv;
51   double              myScale;
52   SMESH::double_array myTable;
53   QString             myName, myExpr;
54   QString             myNbSegVarName, myScaleVarName;
55
56 } NbSegmentsHypothesisData;
57
58 class STDMESHERSGUI_EXPORT StdMeshersGUI_NbSegmentsCreator : public StdMeshersGUI_StdHypothesisCreator
59 {
60   Q_OBJECT
61
62 public:
63   StdMeshersGUI_NbSegmentsCreator();
64   virtual ~StdMeshersGUI_NbSegmentsCreator();
65
66   virtual bool checkParams( QString& ) const;
67
68 protected:
69   virtual QFrame*  buildFrame();
70   virtual void     retrieveParams() const;
71   virtual QString  storeParams() const;
72
73 protected slots:
74   virtual void     onValueChanged();
75
76 private:
77   bool readParamsFromHypo( NbSegmentsHypothesisData& ) const;
78   bool readParamsFromWidgets( NbSegmentsHypothesisData& ) const;
79   bool storeParamsToHypo( const NbSegmentsHypothesisData& ) const;
80
81 private:
82   SalomeApp_IntSpinBox*   myNbSeg;
83   QtxComboBox*     myDistr;
84   SMESHGUI_SpinBox*   myScale;
85   StdMeshersGUI_DistrTableFrame*  myTable;
86   StdMeshersGUI_DistrPreview* myPreview;
87   QLineEdit       *myName, *myExpr;
88   QGroupBox*       myConvBox;
89   QButtonGroup*    myConv;
90   QLabel          *myLScale, *myLTable, *myLExpr, *myInfo;
91   QGridLayout*     myGroupLayout;
92   int              myTableRow, myPreviewRow;
93   QRadioButton*    myCutNeg;
94 };
95
96 #endif // STDMESHERSGUI_NBSEGMENTSCREATOR_H