Salome HOME
Merge from V5_1_main 14/05/2010
[modules/visu.git] / src / VISUGUI / VisuGUI_OffsetDlg.h
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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 #ifndef DIALOGBOX_OFFSET_H
24 #define DIALOGBOX_OFFSET_H
25
26 #include "VTKViewer.h"
27 #include "VISU_Prs3d_i.hh"
28 #include "VISU_PointMap3d_i.hh"
29
30 // QT Includes
31 #include <QDialog>
32 #include <QList>
33
34 class QCheckBox;
35 class SalomeApp_DoubleSpinBox;
36 class VisuGUI;
37 class LightApp_SelectionMgr;
38
39 struct OffsetStruct
40 {
41   vtkFloatingPointType myOffset[3];
42
43   OffsetStruct()
44   {
45     myOffset[0] = myOffset[1] = myOffset[2] = 0;
46   }
47
48   OffsetStruct(vtkFloatingPointType theX,
49                vtkFloatingPointType theY,
50                vtkFloatingPointType theZ)
51   {
52     myOffset[0] = theX;
53     myOffset[1] = theY;
54     myOffset[2] = theZ;
55   }
56 };
57
58 class VisuGUI_OffsetDlg: public QDialog
59 {
60   Q_OBJECT
61  public:
62   VisuGUI_OffsetDlg (VisuGUI* theModule);
63   ~VisuGUI_OffsetDlg() {};
64
65   virtual void setVisible(bool);
66
67   void addPresentation (VISU::Prs3d_i* thePrs);
68   void addPointMapPresentation (VISU::PointMap3d_i* thePrs);
69   int  getPrsCount() const { return myPrsList.count() + myPointMapList.count(); }
70   void clearPresentations();
71
72   void setOffset (const vtkFloatingPointType* theOffset);
73   void getOffset (vtkFloatingPointType* theOffset) const;
74   bool isToSave() const;
75
76  private:
77   void keyPressEvent( QKeyEvent* e );
78
79  public slots:
80   void onReset();
81
82  protected slots:
83   virtual void accept();
84   virtual void reject();
85   void onApply();
86   void onHelp();
87   void onSelectionChanged();
88
89  private:
90   void updateOffset (VISU::Prs3d_i* thePrs, vtkFloatingPointType* theOffset);
91   void updatePointMapOffset (VISU::PointMap3d_i* thePrs, vtkFloatingPointType* theOffset);
92
93   VisuGUI * myModule;
94   LightApp_SelectionMgr*  mySelectionMgr;
95
96   SalomeApp_DoubleSpinBox * myDxEdt;
97   SalomeApp_DoubleSpinBox * myDyEdt;
98   SalomeApp_DoubleSpinBox * myDzEdt;
99   QCheckBox     * mySaveChk;
100
101   QList<VISU::Prs3d_i*>  myPrsList;
102   QList<OffsetStruct> myOldOffsets;
103
104   QList<VISU::PointMap3d_i*> myPointMapList;
105   QList<OffsetStruct>        myOldPointMapOffsets;
106 };
107
108 #endif // DIALOGBOX_OFFSET_H