Version: 8.3.0
StdMeshersGUI_DistrPreview.h
Go to the documentation of this file.
1 // Copyright (C) 2007-2016 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, 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_DistrPreview.h
24 // Author : Open CASCADE S.A.S.
25 //
26 #ifndef STDMESHERSGUI_DISTRPREVIEW_H
27 #define STDMESHERSGUI_DISTRPREVIEW_H
28 
29 // SMESH includes
30 #include "SMESH_StdMeshersGUI.hxx"
31 
32 // Qwt includes
33 #include <qwt_plot.h>
34 
35 // IDL includes
36 #include <SALOMEconfig.h>
37 #include CORBA_SERVER_HEADER(SMESH_Mesh)
38 #include CORBA_SERVER_HEADER(SMESH_BasicHypothesis)
39 
40 // OCCT includes
41 #include <ExprIntrp_GenExp.hxx>
42 #include <Expr_Array1OfNamedUnknown.hxx>
43 #include <TColStd_Array1OfReal.hxx>
44 
45 class QwtPlotCurve;
46 class QwtPlotMarker;
47 
49 {
50  Q_OBJECT
51 
52 public:
53  typedef enum { EXPONENT, CUT_NEGATIVE } Conversion;
54 
55  StdMeshersGUI_DistrPreview( QWidget*, StdMeshers::StdMeshers_NumberOfSegments_ptr );
56  virtual ~StdMeshersGUI_DistrPreview();
57 
58  QString function() const;
59  bool isTableFunc() const;
60  void tableFunc( SMESH::double_array& ) const;
61  int pointsCount() const;
62  int nbSeg() const;
63  bool isDone() const;
64 
65  bool setParams( const QString&, const int, const int = 50, const bool = true );
66  bool setParams( const SMESH::double_array&, const int, const bool = true );
67  void setConversion( Conversion, const bool = true );
68 
69 protected:
70  virtual bool init( const QString& );
71  virtual double funcValue( const double, bool& );
72  virtual bool createTable( SMESH::double_array& );
73  virtual bool convert( double& ) const;
74  void update();
75 
76 private:
77  double calc( bool& );
78  void showError();
79 
80 private:
81  QString myFunction;
82  int myPoints, myNbSeg;
83  bool myIsTable;
86  QwtPlotCurve* myDensity;
87  QwtPlotCurve* myDistr;
88  QwtPlotMarker* myMsg;
89  Handle(ExprIntrp_GenExp) myExpr;
90  Expr_Array1OfNamedUnknown myVars;
91  TColStd_Array1OfReal myValues;
92  bool myIsDone;
93  StdMeshers::StdMeshers_NumberOfSegments_var myHypo;
94 };
95 
96 #endif // STDMESHERSGUI_DISTRPREVIEW_H