]> SALOME platform Git repositories - modules/visu.git/blob - src/VISUGUI/VisuGUI_CutPlanesDlg.h
Salome HOME
sources v1.2
[modules/visu.git] / src / VISUGUI / VisuGUI_CutPlanesDlg.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_CutPlanesDlg.h
25 //  Author : Laurent CORNABE & Hubert ROLLAND 
26 //  Module : VISU
27 //  $Header$
28
29 #ifndef VISUGUI_CUTPLANESDLG_H
30 #define VISUGUI_CUTPLANESDLG_H
31
32 #include <qdialog.h>
33 #include <qbuttongroup.h>
34 #include <qgroupbox.h>
35 #include <qlabel.h>
36 #include <qpushbutton.h>
37 #include <qradiobutton.h>
38 #include <qspinbox.h>
39 #include "QAD_SpinBoxDbl.h"
40 #include "VISU_PrsObject_i.hh"
41 #include "VisuGUI_ScalarBarDlg.h"
42
43
44 class VisuGUI_CutPlanesDlg : public QDialog
45
46     Q_OBJECT
47
48 public:
49     VisuGUI_CutPlanesDlg();
50     ~VisuGUI_CutPlanesDlg();
51
52     void setBounds( const double x1, const double x2, 
53                     const double y1, const double y2, 
54                     const double z1, const double z2 );
55     void   setNbPlanes( const int nbp );
56     int    getNbPlanes();
57     void   setPlanePos( const VISU::CutPlanes::Orientation orient/*, const double pos1, const double pos2 */);
58     VISU::CutPlanes::Orientation  getOrientaion();
59     void   setRotation( const double r1, const double r2 );
60     double getRotation1();
61     double getRotation2();
62
63     void initFromPrsObject(VISU::CutPlanes_i* thePrs);
64     void storeToPrsObject(VISU::CutPlanes_i* thePrs);
65
66
67 private:
68     QLabel* LabelRot1;
69     QLabel* LabelRot2;
70     QSpinBox* nbPlan;
71     QAD_SpinBoxDbl* Rot1;
72     QAD_SpinBoxDbl* Rot2;
73     QRadioButton* RBzx;
74     QRadioButton* RByz;
75     QRadioButton* RBxy;
76     QAD_SpinBoxDbl* myPosSpn;
77
78     double          X1, X2;
79     double          Y1, Y2;
80     double          Z1, Z2;
81     
82
83 private slots:
84     void editScalarBar();
85     void orientationChanged( int );
86 };
87
88 #endif // VISUGUI_CUTPLANESDLG_H
89
90
91
92
93
94
95