Salome HOME
improvement to call destructor of SelectFiled and SelectParams classes
[modules/filter.git] / src / FILTERGUI / SelectParams.h
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 //
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License.
8 //
9 // This library is distributed in the hope that it will be useful
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20
21 #ifndef SELECTPARAMS_HEADER
22 #define SELECTPARAMS_HEADER
23
24 #include "utilities.h"
25 #include "MEDMEM_Med.hxx"
26
27 #include "SelectField.h"
28 #include <qwt_plot.h>
29 #include <vector>
30 #include <SalomeApp_Module.h>
31 #include <SUIT_Desktop.h>
32 #include <qdialog.h>
33
34 #include <SALOMEconfig.h>
35 /* #include CORBA_CLIENT_HEADER(MED_Gen) */
36
37 class QLineEdit;
38 class QLabel;
39 class QButtonGroup;
40 class QGridLayout;
41 class QRadioButton;
42 class QPushButton;
43 class QGroupBox;
44 class QFrame;
45
46 class SelectParams: public QDialog
47 {
48   Q_OBJECT
49
50 public:
51   SelectParams(FilterGUI*,SelectField *sel,
52                const char* name = 0,
53                bool modal = FALSE,
54                WFlags fl = 0);
55   virtual ~SelectParams();
56
57 protected:
58   virtual void     buildFrame();
59   virtual void     calcHisto();
60   virtual void     displayHisto();
61   virtual void     calcRateRed();
62   virtual void     clearSThresh();
63   virtual void     displayFThresh();
64   virtual void     displaySThresh();
65   virtual void     enableWidgets();
66
67 protected slots:
68   virtual void     updateHisto();
69   virtual void     scaleSelected();
70   virtual void     nbThreshSelected();
71   virtual void     areaSelected();
72   virtual void     enterFThresh();
73   virtual void     enterSThresh();
74   virtual void     moveThresh(const QMouseEvent &e);
75   virtual void     getOutFileName();
76   virtual void     process();
77
78 private:
79
80 private:
81   int _size;
82   long _myHistoCurve, _myHistoFThresh, _myHistoSThresh;
83   double _xmin, _xmax, _ymin, _ymax;
84   double _fthresh, _sthresh;
85   double *_x, *_y;
86   double _xft[100], _yft[100], _xst[100], _yst[100];
87
88   QLineEdit *_myFThresh, *_myExpr, *_myLEST, *_myLEFT, *_myOFN;
89   QButtonGroup *_myFunc, *_myFScale, *_myNbThresh, *_myArea, *_myVThresh, *_myOutFile;
90   QGridLayout *_myGroupLayout, *_myGroupLayout2, *_lay;
91   QRadioButton *_myCutNeg, *_myInt, *_myExt, *_myOneThresh, *_myTwoThresh, *_myFieldB, *_myLinear, *_myLog;
92   QPushButton *_myHisto, *_myOFB, *_myProc;
93   QGroupBox* _GroupC1, *_GroupC2;
94   QwtPlot *_myPlot;
95   QLabel *_myLFT, *_myLST, *_myLRR;
96   QwtDiMap _qmap;
97   QFrame *_fr;
98   QString _inputFile, _inputMesh, _inputField;
99   FIELD<double> * _myDField;
100   FIELD<int> * _myIField;
101   int _inputTS;
102
103 };
104
105 #endif