Salome HOME
5589baf4c3ddf79a12343ca8aa87459818ef50ab
[modules/visu.git] / src / VISUGUI / VisuGUI_DeformedShapeDlg.h
1 //  Copyright (C) 2007-2008  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 //  VISU VISUGUI : GUI of VISU component
23 //  File   : VisuGUI_MagnitudeDlg.h
24 //  Author : Laurent CORNABE & Hubert ROLLAND
25 //  Module : VISU
26 //  $Header$
27 //
28 #ifndef VISUGUI_DEFORMEDSHAPEDLS_H
29 #define VISUGUI_DEFORMEDSHAPEDLS_H
30
31 #include "VisuGUI_Prs3dDlg.h"
32
33 #include "QtxDoubleSpinBox.h"
34
35 #include <QCheckBox>
36
37
38 class QTabWidget;
39
40
41
42 class QtxDoubleSpinBox;
43 class SalomeApp_Module;
44 class VisuGUI_InputPane;
45 class VisuGUI;
46
47 namespace VISU
48 {
49   class DeformedShape_i;
50 }
51
52 class VisuGUI_DeformedShapeDlg : public VisuGUI_ScalarBarBaseDlg
53 {
54     Q_OBJECT
55
56 public:
57     VisuGUI_DeformedShapeDlg (SalomeApp_Module* theModule);
58     ~VisuGUI_DeformedShapeDlg();
59
60     double getFactor()
61       { return ScalFact->value(); }
62     void setFactor(double theFactor);
63
64     bool isColored()
65       { return UseMagn->isChecked(); }
66
67     virtual void initFromPrsObject( VISU::ColoredPrs3d_i* thePrs,
68                                   bool theInit );
69
70     virtual int  storeToPrsObject(VISU::ColoredPrs3d_i* thePrs);
71
72     static VISU::Prs3d_i* CreatePrs3d(VisuGUI*  theModule);
73     static void EditPrs3d(VisuGUI* theModule, VISU::Prs3d_i* thePrs3d, Handle(SALOME_InteractiveObject)& theIO);
74
75     void updatePrsCopy();
76
77 protected:
78     virtual QString        GetContextHelpFilePath();
79     int                   isValid();
80 protected slots:
81   void accept();
82   bool onApply();
83   void reject();
84
85 private:
86     QtxDoubleSpinBox*      ScalFact;
87     QCheckBox*             UseMagn;
88     QTabWidget*            myTabBox;
89     VisuGUI_InputPane*     myInputPane;
90     SalomeApp_Module*      myModule;
91     SALOME::GenericObjPtr<VISU::DeformedShape_i> myPrsCopy;
92     bool                   isApplyed;
93 };
94
95 #endif // VISUGUI_DEFORMEDSHAPEDLS_H