Salome HOME
Bug IPAL21228 SIGSEGV on exit from Salome with active GaussPointsDlg
[modules/visu.git] / src / VISUGUI / VisuGUI_IsoSurfacesDlg.h
index 68ca04cdfcd30c5f8a491fbdf5e19d5f69b499eb..fd7b234b90d5c2532d5c993b39dc1aa84058cd1f 100644 (file)
-//  File      : VisuGUI_IsoSurfacesDlg.h
-//  Created   : Wed Aug 01 10:23:06 2001
-//  Author    : Laurent CORNABE & Hubert ROLLAND 
-//  Project   : SALOME
-//  Module    : VISUGUI
-//  Copyright : PRINCIPIA
+//  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
+//
+//  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//
+//  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.
+//
+//  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
+//
+//  VISU VISUGUI : GUI of VISU component
+//  File   : VisuGUI_IsoSurfacesDlg.h
+//  Author : Laurent CORNABE & Hubert ROLLAND
+//  Module : VISU
 //  $Header$
 
 #ifndef VISUGUI_ISOSURFACESDLG_H
 #define VISUGUI_ISOSURFACESDLG_H
 
-#include <qdialog.h>
-#include <qlabel.h>
-#include <qgroupbox.h>
-#include <qspinbox.h>
-#include <qpushbutton.h>
-#include "QAD_SpinBoxDbl.h"
-#include "VISU_PrsObject_i.hh"
+#include "VisuGUI_Prs3dDlg.h"
 
+class QTabWidget;
+class QLineEdit;
+class QSpinBox;
+class QtxColorButton;
 
-class VisuGUI_IsoSurfacesDlg : public QDialog
-{ 
-    Q_OBJECT
+namespace VISU 
+{
+  class IsoSurfaces_i;
+};
+
+class SalomeApp_Module;
+class VisuGUI_InputPane;
+
+class VisuGUI_IsoSurfPane : public QWidget
+{
+  Q_OBJECT;
 
 public:
-    VisuGUI_IsoSurfacesDlg();
-    ~VisuGUI_IsoSurfacesDlg();
+  VisuGUI_IsoSurfPane (QWidget* parent,
+                      VisuGUI_ScalarBarPane* theScalarPane);
+  ~VisuGUI_IsoSurfPane() {};
+
+  void initFromPrsObject(VISU::IsoSurfaces_i* thePrs);
+  int storeToPrsObject(VISU::IsoSurfaces_i* thePrs);
+
+  bool check();
+
+  void setColor(const QColor& theColor);
+  QColor color() const;
+
+protected slots:
+  void onCBUpdate();
+  void setColor();
+
+private:
+  QLineEdit*      MinIso;
+  QLineEdit*      MaxIso;
+  QSpinBox*       NbrIso;
+  QCheckBox*      myUseMagnitude;
+  QtxColorButton* mySelColor;
+  QCheckBox*      myUseLabels;
+  QSpinBox*       myNbLabels;
+  VisuGUI_ScalarBarPane* myScalarPane;
+};
+
+
+class VisuGUI_IsoSurfacesDlg : public VisuGUI_ScalarBarBaseDlg
+{
+  Q_OBJECT;
+
+public:
+  VisuGUI_IsoSurfacesDlg (SalomeApp_Module* theModule);
+  ~VisuGUI_IsoSurfacesDlg();
+
+  virtual void initFromPrsObject( VISU::ColoredPrs3d_i* thePrs,
+                                 bool theInit );
+
+  virtual int storeToPrsObject(VISU::ColoredPrs3d_i* thePrs);
+
+protected:
+  virtual QString  GetContextHelpFilePath();
+
+ protected slots:
+  void accept();
 
-    void initFromPrsObject(VISU::IsoSurfaces_i* thePrs);
-    void storeToPrsObject(VISU::IsoSurfaces_i* thePrs);
+private:
+  QTabWidget*            myTabBox;
+  VisuGUI_IsoSurfPane*   myIsoPane;
+  VisuGUI_InputPane*     myInputPane;
 
- private:
-    QAD_SpinBoxDbl* MinIso;
-    QAD_SpinBoxDbl* MaxIso;
-    QSpinBox*       NbrIso;
+  SALOME::GenericObjPtr<VISU::IsoSurfaces_i> myPrsCopy;
 };
 
 #endif // VISUGUI_ISOSURFACESDLG_H