Salome HOME
IPAL9285,9292,9314
[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 class SalomeApp_Module;
39
40 namespace VISU {
41   class Plot3D_i;
42 };
43
44 class VISU_Plot3DPL;
45 class SVTK_ViewWindow;
46 class SALOME_Actor;
47 class QtxDblSpinBox;
48
49 class VisuGUI_Plot3DPane : public QVBox
50 {
51   Q_OBJECT
52
53  public:
54   VisuGUI_Plot3DPane(QWidget* parent);
55   ~VisuGUI_Plot3DPane();
56
57   void initFromPrsObject (VISU::Plot3D_i* thePrs);
58   int  storeToPrsObject  (VISU::Plot3D_i* thePrs);
59
60   bool check();
61
62   VISU::Plot3D_i* GetPrs() { return myPrs; }
63
64  private:
65   bool                 myInitFromPrs;
66   SALOME_Actor*        myPreviewActor;
67   SVTK_ViewWindow*     myViewWindow;
68   VISU::Plot3D_i*      myPrs;
69   VISU_Plot3DPL*       myPipeCopy;
70
71   void storePrsParams();
72   void restorePrsParams();
73
74   QButtonGroup  * GBOrientation;
75   QLabel        * LabelRot1;
76   QLabel        * LabelRot2;
77   QtxDblSpinBox * Rot1;
78   QtxDblSpinBox * Rot2;
79   QtxDblSpinBox * PositionSpn;
80   QCheckBox     * RelativeChkB;
81   QtxDblSpinBox * ScaleSpn;
82   QHButtonGroup * GBPrsType;
83   QSpinBox      * NbContoursSpn;
84   QCheckBox     * PreviewChkB;
85
86  private slots:
87
88   void orientationChanged( int );
89   void onRelativePos( bool );
90   void onPrsType( int );
91   void onPositionSpn();
92   void updatePreview();
93 };
94
95
96 class VisuGUI_Plot3DDlg : public QDialog
97 {
98   Q_OBJECT
99
100  public:
101   VisuGUI_Plot3DDlg (SalomeApp_Module* theModule);
102   ~VisuGUI_Plot3DDlg() {};
103
104   void initFromPrsObject (VISU::Plot3D_i* thePrs)
105     { myScalarPane->initFromPrsObject(thePrs); myIsoPane->initFromPrsObject(thePrs); }
106
107   int storeToPrsObject (VISU::Plot3D_i* thePrs)
108     { return myScalarPane->storeToPrsObject(thePrs) && myIsoPane->storeToPrsObject(thePrs); }
109
110  protected slots:
111   void accept();
112   void reject();
113
114  private:
115   VisuGUI_Plot3DPane*    myIsoPane;
116   VisuGUI_ScalarBarPane* myScalarPane;
117 };
118
119 #endif // VISUGUI_PLOT3D_H