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