]> SALOME platform Git repositories - modules/visu.git/blob - src/VISUGUI/VisuGUI_Plot3DDlg.h
Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[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_Prs3dDlg.h"
33
34 #include <qhbuttongroup.h>
35 #include <qtabwidget.h>
36
37 class SalomeApp_Module;
38 class VisuGUI_InputPane;
39
40 namespace VISU 
41 {
42   class Plot3D_i;
43 };
44
45 class VISU_Plot3DPL;
46 class SVTK_ViewWindow;
47 class SALOME_Actor;
48 class QtxDblSpinBox;
49
50 class VisuGUI_Plot3DPane : public QVBox
51 {
52   Q_OBJECT
53
54  public:
55   VisuGUI_Plot3DPane(QWidget* parent);
56   ~VisuGUI_Plot3DPane();
57
58   void initFromPrsObject (VISU::Plot3D_i* thePrs);
59   int  storeToPrsObject  (VISU::Plot3D_i* thePrs);
60
61   bool check();
62
63   VISU::Plot3D_i* GetPrs() { return myPrs; }
64
65   void setPlane(int theOrientation, double theXRotation, double theYRotation, double thePlanePos);
66
67  private:
68   bool                 myInitFromPrs;
69   SALOME_Actor*        myPreviewActor;
70   SVTK_ViewWindow*     myViewWindow;
71   VISU::Plot3D_i*      myPrs;
72   VISU_Plot3DPL*       myPipeCopy;
73
74   void storePrsParams();
75   void restorePrsParams();
76
77   QButtonGroup  * GBOrientation;
78   QLabel        * LabelRot1;
79   QLabel        * LabelRot2;
80   QtxDblSpinBox * Rot1;
81   QtxDblSpinBox * Rot2;
82   QtxDblSpinBox * PositionSpn;
83   QCheckBox     * RelativeChkB;
84   QtxDblSpinBox * ScaleSpn;
85   QHButtonGroup * GBPrsType;
86   QSpinBox      * NbContoursSpn;
87   QCheckBox     * PreviewChkB;
88
89  private slots:
90
91   void orientationChanged( int );
92   void onRelativePos( bool );
93   void onPrsType( int );
94   void onPositionSpn();
95   void updatePreview();
96 };
97
98
99 class VisuGUI_Plot3DDlg : public VisuGUI_ScalarBarBaseDlg
100 {
101   Q_OBJECT
102
103  public:
104   VisuGUI_Plot3DDlg (SalomeApp_Module* theModule);
105   ~VisuGUI_Plot3DDlg();
106
107   virtual void initFromPrsObject( VISU::ColoredPrs3d_i* thePrs,
108                                   bool theInit );
109
110   virtual int  storeToPrsObject(VISU::ColoredPrs3d_i* thePrs);
111
112   void setPlane(int theOrientation, double theXRotation, double theYRotation, double thePlanePos);
113
114  protected:
115   virtual QString GetContextHelpFilePath();
116  
117  protected slots:
118   void accept();
119   void reject();
120
121  private:
122   QTabWidget*            myTabBox;
123   VisuGUI_Plot3DPane*    myIsoPane;
124   VisuGUI_InputPane*     myInputPane;
125
126   SALOME::GenericObjPtr<VISU::Plot3D_i> myPrsCopy;
127 };
128
129 #endif // VISUGUI_PLOT3D_H