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