Salome HOME
Fix pb with labels of rotation spin boxes (bad update after switch from IJK pane...
[modules/visu.git] / src / VISUGUI / VisuGUI_Plot3DDlg.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_Plot3DDlg.h
25 //  Author : Laurent CORNABE & Hubert ROLLAND
26 //  Module : VISU
27 //  $Header$
28
29 #ifndef VISUGUI_PLOT3D_H
30 #define VISUGUI_PLOT3D_H
31
32 #include "VisuGUI_ScalarBarDlg.h"
33
34 #include "VISU_Plot3D_i.hh"
35
36 #include <qhbuttongroup.h>
37
38 namespace VISU {
39   class Plot3D_i;
40 };
41
42 class VISU_Plot3DPL;
43 class SVTK_ViewWindow;
44 class SALOME_Actor;
45 class QtxDblSpinBox;
46
47 class VisuGUI_Plot3DPane : public QVBox
48 {
49   Q_OBJECT
50
51  public:
52   VisuGUI_Plot3DPane(QWidget* parent);
53   ~VisuGUI_Plot3DPane();
54
55   void initFromPrsObject (VISU::Plot3D_i* thePrs);
56   int  storeToPrsObject  (VISU::Plot3D_i* thePrs);
57
58   bool check();
59
60   VISU::Plot3D_i* GetPrs() { return myPrs; }
61
62  private:
63   bool                 myInitFromPrs;
64   SALOME_Actor*        myPreviewActor;
65   SVTK_ViewWindow*     myViewWindow;
66   VISU::Plot3D_i*      myPrs;
67   VISU_Plot3DPL*       myPipeCopy;
68
69   void storePrsParams();
70   void restorePrsParams();
71
72   QButtonGroup  * GBOrientation;
73   QLabel        * LabelRot1;
74   QLabel        * LabelRot2;
75   QtxDblSpinBox * Rot1;
76   QtxDblSpinBox * Rot2;
77   QtxDblSpinBox * PositionSpn;
78   QCheckBox     * RelativeChkB;
79   QtxDblSpinBox * ScaleSpn;
80   QHButtonGroup * GBPrsType;
81   QSpinBox      * NbContoursSpn;
82   QCheckBox     * PreviewChkB;
83
84  private slots:
85
86   void orientationChanged( int );
87   void onRelativePos( bool );
88   void onPrsType( int );
89   void onPositionSpn();
90   void updatePreview();
91 };
92
93
94 class VisuGUI_Plot3DDlg : public QDialog
95 {
96   Q_OBJECT
97
98  public:
99   VisuGUI_Plot3DDlg (QWidget* parent);
100   ~VisuGUI_Plot3DDlg() {};
101
102   void initFromPrsObject (VISU::Plot3D_i* thePrs)
103     { myScalarPane->initFromPrsObject(thePrs); myIsoPane->initFromPrsObject(thePrs); }
104
105   int storeToPrsObject (VISU::Plot3D_i* thePrs)
106     { return myScalarPane->storeToPrsObject(thePrs) && myIsoPane->storeToPrsObject(thePrs); }
107
108  protected slots:
109   void accept();
110   void reject();
111
112  private:
113   VisuGUI_Plot3DPane*    myIsoPane;
114   VisuGUI_ScalarBarPane* myScalarPane;
115 };
116
117 #endif // VISUGUI_PLOT3D_H