Salome HOME
Fix for Bug IPAL8945
[modules/visu.git] / src / VISUGUI / VisuGUI_DeformedShapeDlg.h
index f8677b62ba3c90c1728e73a45780484b62d20efd..573c439a9fa76f36a41872d4e135913f78256a0d 100644 (file)
@@ -1,28 +1,28 @@
 //  VISU VISUGUI : GUI of VISU component
 //
 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
+//  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
 //
 //
 //
 //  File   : VisuGUI_MagnitudeDlg.h
-//  Author : Laurent CORNABE & Hubert ROLLAND 
+//  Author : Laurent CORNABE & Hubert ROLLAND
 //  Module : VISU
 //  $Header$
 
 
 #include "VisuGUI_ScalarBarDlg.h"
 
+#include "QtxDblSpinBox.h"
+
 #include <qdialog.h>
 #include <qgroupbox.h>
 #include <qcheckbox.h>
 #include <qlabel.h>
 #include <qpushbutton.h>
 
-#include "QtxDblSpinBox.h"
+class SalomeApp_Module;
 
 namespace VISU{
   class DeformedShape_i;
 }
 
 class VisuGUI_DeformedShapeDlg : public QDialog
-{ 
+{
     Q_OBJECT
 
 public:
-    VisuGUI_DeformedShapeDlg(QWidget* parent);
+    VisuGUI_DeformedShapeDlg (SalomeApp_Module* theModule);
     ~VisuGUI_DeformedShapeDlg() {};
-    
-    double getFactor() 
+
+    double getFactor()
       { return ScalFact->value(); }
-    void setFactor(double theFactor) 
+    void setFactor(double theFactor)
       { ScalFact->setValue(theFactor); }
 
     bool isColored()
@@ -64,7 +66,8 @@ public:
 
 protected slots:
   void accept();
-   
+  void reject();
+
  private:
     QtxDblSpinBox* ScalFact;
     QCheckBox* UseMagn;