Salome HOME
Update copyright information
[modules/filter.git] / src / FILTERGUI / SelectParams.h
index d43aa03f41de373127cbad02bb5c5c270b88245c..e23ace2715d6ca42a92635087a1db5b74ef69489 100644 (file)
@@ -1,29 +1,25 @@
-// Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//  Copyright (C) 2007-2008  CEA/DEN, EDF R&D
 //
-// This library is free software; you can redistribute it and/or
-// modify it under the terms of the GNU Lesser General Public
-// License as published by the Free Software Foundation; either
-// version 2.1 of the License.
+//  This library is free software; you can redistribute it and/or
+//  modify it under the terms of the GNU Lesser General Public
+//  License as published by the Free Software Foundation; either
+//  version 2.1 of the License.
 //
-// This library is distributed in the hope that it will be useful
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-// Lesser General Public License for more details.
+//  This library is distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+//  Lesser General Public License for more details.
 //
-// You should have received a copy of the GNU Lesser General Public
-// License along with this library; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//  You should have received a copy of the GNU Lesser General Public
+//  License along with this library; if not, write to the Free Software
+//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
-
 #ifndef SELECTPARAMS_HEADER
 #define SELECTPARAMS_HEADER
 
 #include "utilities.h"
-#include "MEDMEM_Med.hxx"
-#include "MEDMEM_Meshing.hxx"
 
 #include "SelectField.h"
 #include <qwt_plot.h>
@@ -33,7 +29,6 @@
 #include <qdialog.h>
 
 #include <SALOMEconfig.h>
-/* #include CORBA_CLIENT_HEADER(MED_Gen) */
 
 class QLineEdit;
 class QLabel;
@@ -52,7 +47,7 @@ public:
   SelectParams(FilterGUI*,SelectField *sel,
               const char* name = 0,
               bool modal = FALSE,
-              WFlags fl = 0);
+              WFlags fl = 0) throw(SALOME_Exception);
   virtual ~SelectParams();
 
 protected:
@@ -64,10 +59,9 @@ protected:
   virtual void     displayFThresh();
   virtual void     displaySThresh();
   virtual void     enableWidgets();
-  virtual void     generateCriteria();
-  virtual void     generateBoundary();
 
 protected slots:
+  virtual void     gradSelected();
   virtual void     enterSHisto();
   virtual void     updateHisto();
   virtual void     scaleSelected();
@@ -77,12 +71,10 @@ protected slots:
   virtual void     enterSThresh();
   virtual void     moveThresh(const QMouseEvent &e);
   virtual void     getOutFileName();
-  virtual void     process();
+  virtual void     process() throw(SALOME_Exception);
   virtual void     ClickOnCancel();
   virtual void     ClickOnHelp();
 
-private:
-
 private:
   int _size;
   long _myHistoCurve, _myHistoFThresh, _myHistoSThresh;
@@ -94,7 +86,7 @@ private:
   QLineEdit *_myLESH, *_myFThresh, *_myExpr, *_myLEST, *_myLEFT, *_myOFN;
   QButtonGroup *_myHSize, *_myFunc, *_myFScale, *_myNbThresh, *_myArea, *_myVThresh, *_myOutFile;
   QGridLayout *_myGroupLayout, *_myGroupLayout2, *_lay, *_GroupButtonsLayout;
-  QRadioButton *_myCutNeg, *_myInt, *_myExt, *_myOneThresh, *_myTwoThresh, *_myFieldB, *_myLinear, *_myLog;
+  QRadioButton *_myFieldB, *_myGradB, *_myInt, *_myExt, *_myOneThresh, *_myTwoThresh, *_myLinear, *_myLog;
   QPushButton *_myHisto, *_myOFB, *_myProc, * _buttonCancel, * _buttonHelp;
   QGroupBox* _GroupC1, *_GroupC2, *_GroupButtons;
   QwtPlot *_myPlot;
@@ -104,12 +96,7 @@ private:
   QString _inputFile, _inputMesh, _inputField;
   int _inputTS;
   SelectField *_sel;
-  ::MEDMEM::MED *_med;
-  MEDMEM::MESH* _mesh;
-  FIELD<double> * _myDField;
-  FIELD<int> * _myIField;
-  FIELD<int> *_criteria;
-  MESHING* _boundary;
+  SALOME_FILTER::FILTER_Gen_ptr _filter;
 };
 
 #endif