Salome HOME
IPAL9283,9286,9295,9296,9297; some icons restored
[modules/visu.git] / src / VISUGUI / VisuGUI_DeformedShapeDlg.h
1 //  VISU VISUGUI : GUI of VISU component
2 //
3 //  Copyright (C) 2003  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. 
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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : VisuGUI_MagnitudeDlg.h
25 //  Author : Laurent CORNABE & Hubert ROLLAND 
26 //  Module : VISU
27 //  $Header$
28
29 #ifndef VISUGUI_DEFORMEDSHAPEDLS_H
30 #define VISUGUI_DEFORMEDSHAPEDLS_H
31
32 #include "VisuGUI_ScalarBarDlg.h"
33
34 #include <qdialog.h>
35 #include <qgroupbox.h>
36 #include <qcheckbox.h>
37 #include <qlabel.h>
38 #include <qpushbutton.h>
39
40 #include "QtxDblSpinBox.h"
41
42 namespace VISU{
43   class DeformedShape_i;
44 }
45
46 class VisuGUI_DeformedShapeDlg : public QDialog
47
48     Q_OBJECT
49
50 public:
51     VisuGUI_DeformedShapeDlg(QWidget* parent);
52     ~VisuGUI_DeformedShapeDlg() {};
53     
54     double getFactor() 
55       { return ScalFact->value(); }
56     void setFactor(double theFactor) 
57       { ScalFact->setValue(theFactor); }
58
59     bool isColored()
60       { return UseMagn->isChecked(); }
61
62     void initFromPrsObject(VISU::DeformedShape_i* thePrs);
63     int storeToPrsObject(VISU::DeformedShape_i* thePrs);
64
65 protected slots:
66   void accept();
67    
68  private:
69     QtxDblSpinBox* ScalFact;
70     QCheckBox* UseMagn;
71     VisuGUI_ScalarBarPane* myScalarPane;
72 };
73
74 #endif // VISUGUI_DEFORMEDSHAPEDLS_H