1 // Copyright (C) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // File : StdMeshersGUI_NbSegmentsCreator.h
24 // Author : Open CASCADE S.A.S.
26 #ifndef STDMESHERSGUI_NBSEGMENTSCREATOR_H
27 #define STDMESHERSGUI_NBSEGMENTSCREATOR_H
30 #include "SMESH_StdMeshersGUI.hxx"
32 #include "StdMeshersGUI_StdHypothesisCreator.h"
35 #include <SALOMEconfig.h>
36 #include CORBA_SERVER_HEADER(SMESH_Mesh)
38 class SalomeApp_IntSpinBox;
40 class SMESHGUI_SpinBox;
41 class StdMeshersGUI_DistrTableFrame;
42 class StdMeshersGUI_DistrPreview;
48 class StdMeshersGUI_SubShapeSelectorWdg;
52 int myNbSeg, myDistrType, myConv;
54 SMESH::double_array myTable;
55 QString myName, myExpr;
56 QString myNbSegVarName, myScaleVarName;
58 } NbSegmentsHypothesisData;
60 class STDMESHERSGUI_EXPORT StdMeshersGUI_NbSegmentsCreator : public StdMeshersGUI_StdHypothesisCreator
65 StdMeshersGUI_NbSegmentsCreator();
66 virtual ~StdMeshersGUI_NbSegmentsCreator();
68 virtual bool checkParams( QString& ) const;
71 virtual QFrame* buildFrame();
72 virtual void retrieveParams() const;
73 virtual QString storeParams() const;
76 virtual void onValueChanged();
79 bool readParamsFromHypo( NbSegmentsHypothesisData& ) const;
80 bool readParamsFromWidgets( NbSegmentsHypothesisData& ) const;
81 bool storeParamsToHypo( const NbSegmentsHypothesisData& ) const;
84 SalomeApp_IntSpinBox* myNbSeg;
86 SMESHGUI_SpinBox* myScale;
87 StdMeshersGUI_DistrTableFrame* myTable;
88 StdMeshersGUI_DistrPreview* myPreview;
89 QLineEdit *myName, *myExpr;
92 QLabel *myLScale, *myLTable, *myLExpr, *myInfo;
93 QGridLayout* myGroupLayout;
94 int myTableRow, myPreviewRow;
95 //QRadioButton* myCutNeg;
96 QGroupBox* myReversedEdgesBox;
98 StdMeshersGUI_SubShapeSelectorWdg* myDirectionWidget;
101 #endif // STDMESHERSGUI_NBSEGMENTSCREATOR_H