]> SALOME platform Git repositories - modules/visu.git/blob - src/VISUGUI/VisuGUI_Plot3DDlg.h
Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[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.salome-platform.org/ or email : webmaster.salome@opencascade.com
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   void setPlane(int theOrientation, double theXRotation, double theYRotation, double thePlanePos);
65
66  private:
67   bool                 myInitFromPrs;
68   SALOME_Actor*        myPreviewActor;
69   SVTK_ViewWindow*     myViewWindow;
70   VISU::Plot3D_i*      myPrs;
71   VISU_Plot3DPL*       myPipeCopy;
72
73   void storePrsParams();
74   void restorePrsParams();
75
76   QButtonGroup  * GBOrientation;
77   QLabel        * LabelRot1;
78   QLabel        * LabelRot2;
79   QtxDblSpinBox * Rot1;
80   QtxDblSpinBox * Rot2;
81   QtxDblSpinBox * PositionSpn;
82   QCheckBox     * RelativeChkB;
83   QtxDblSpinBox * ScaleSpn;
84   QHButtonGroup * GBPrsType;
85   QSpinBox      * NbContoursSpn;
86   QCheckBox     * PreviewChkB;
87
88  private slots:
89
90   void orientationChanged( int );
91   void onRelativePos( bool );
92   void onPrsType( int );
93   void onPositionSpn();
94   void updatePreview();
95 };
96
97
98 class VisuGUI_Plot3DDlg : public QDialog
99 {
100   Q_OBJECT
101
102  public:
103   VisuGUI_Plot3DDlg (SalomeApp_Module* theModule);
104   ~VisuGUI_Plot3DDlg() {};
105
106   void initFromPrsObject (VISU::Plot3D_i* thePrs)
107     { myScalarPane->initFromPrsObject(thePrs); myIsoPane->initFromPrsObject(thePrs); }
108
109   int storeToPrsObject (VISU::Plot3D_i* thePrs)
110     { return myScalarPane->storeToPrsObject(thePrs) && myIsoPane->storeToPrsObject(thePrs); }
111
112   void setPlane(int theOrientation, double theXRotation, double theYRotation, double thePlanePos);
113
114  protected slots:
115   void accept();
116   void reject();
117   void onHelp();
118
119  private:
120   VisuGUI_Plot3DPane*    myIsoPane;
121   VisuGUI_ScalarBarPane* myScalarPane;
122 };
123
124 #endif // VISUGUI_PLOT3D_H