Salome HOME
Update copyright information
[modules/visu.git] / src / VISUGUI / VisuGUI_DeformedShapeDlg.h
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  VISU VISUGUI : GUI of VISU component
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_Prs3dDlg.h"
33
34 #include <SalomeApp_DoubleSpinBox.h>
35
36 #include <QCheckBox>
37
38
39 class QTabWidget;
40
41 class SalomeApp_Module;
42 class VisuGUI_InputPane;
43 class VisuGUI;
44
45 namespace VISU
46 {
47   class DeformedShape_i;
48 }
49
50 class VisuGUI_DeformedShapeDlg : public VisuGUI_ScalarBarBaseDlg
51 {
52     Q_OBJECT
53
54 public:
55     VisuGUI_DeformedShapeDlg (SalomeApp_Module* theModule);
56     ~VisuGUI_DeformedShapeDlg();
57
58     double getFactor()
59       { return ScalFact->value(); }
60     void setFactor(double theFactor);
61
62     bool isColored()
63       { return UseMagn->isChecked(); }
64
65     virtual void initFromPrsObject( VISU::ColoredPrs3d_i* thePrs,
66                                   bool theInit );
67
68     virtual int  storeToPrsObject(VISU::ColoredPrs3d_i* thePrs);
69
70     static VISU::Prs3d_i* CreatePrs3d(VisuGUI*  theModule);
71     static void EditPrs3d(VisuGUI* theModule, VISU::Prs3d_i* thePrs3d, Handle(SALOME_InteractiveObject)& theIO);
72
73     void updatePrsCopy( VISU::Prs3d_i* thePrs );
74
75 protected:
76     virtual QString        GetContextHelpFilePath();
77     int                    isValid();
78 protected slots:
79   void accept();
80   bool onApply();
81   void reject();
82
83 private:
84     SalomeApp_DoubleSpinBox* ScalFact;
85     QCheckBox*             UseMagn;
86     QTabWidget*            myTabBox;
87     VisuGUI_InputPane*     myInputPane;
88     SalomeApp_Module*      myModule;
89     SALOME::GenericObjPtr<VISU::DeformedShape_i> myPrsCopy;
90     bool                   isApplyed;
91 };
92
93 #endif // VISUGUI_DEFORMEDSHAPEDLS_H