Salome HOME
e4fb03ddb8d2f0acd1e9be1c96dfe2569ad53ad3
[modules/gui.git] / src / SVTK / SVTK_SetRotationPointDlg.h
1 // Copyright (C) 2007-2022  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, or (at your option) any later version.
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 //  SALOME VTKViewer : build VTK viewer into Salome desktop
24 //  File   : 
25 //  Author : 
26
27 #ifndef SVTK_SETROTATIONPOINTDLG_H
28 #define SVTK_SETROTATIONPOINTDLG_H
29
30 #include "SVTK.h"
31 #include "SVTK_Selection.h"
32
33 #include <ViewerTools_DialogBase.h>
34
35 #include <vtkSmartPointer.h>
36
37 #include <QMap>
38 #include <QList>
39
40 class SVTK_ViewWindow;
41 class SVTK_RenderWindowInteractor;
42
43 class QtxAction;
44
45 class QLineEdit;
46 class QPushButton;
47 class QGroupBox;
48 class QCheckBox;
49 class QAction;
50
51 class vtkCallbackCommand;
52 class vtkInteractorStyle;
53 class vtkObject;
54
55 class SVTK_EXPORT SVTK_SetRotationPointDlg : public ViewerTools_DialogBase
56 {
57   Q_OBJECT
58
59 public:
60   SVTK_SetRotationPointDlg(QtxAction* theAction,
61                            SVTK_ViewWindow* theParent,
62                            const char* theName);
63
64   ~SVTK_SetRotationPointDlg();
65   
66   void addObserver();
67   bool IsFirstShown();
68   
69 protected:
70   SVTK_ViewWindow *myMainWindow;
71   SVTK_RenderWindowInteractor* myRWInteractor;
72   QList<vtkInteractorStyle*> myInteractorStyleList;
73   
74   QMap<QAction*, Selection_Mode> mySelectActions;
75
76   QCheckBox*    myIsBBCenter;
77
78   QGroupBox   * myGroupBoxSel;
79   QPushButton*  myToOrigin;
80   QPushButton*  mySelectPoint;
81
82   QGroupBox* myGroupBoxCoord;
83   QLineEdit* myX;
84   QLineEdit* myY;
85   QLineEdit* myZ;
86
87   void setEnabled(QGroupBox* theGrp, const bool theState);
88   bool IsObserverAdded( vtkInteractorStyle* );
89
90   //----------------------------------------------------------------------------
91   // Priority at which events are processed
92   double myPriority;
93
94   // Used to process events
95   vtkSmartPointer<vtkCallbackCommand> myEventCallbackCommand;
96
97   // Description:
98   // Main process event method
99   static void ProcessEvents(vtkObject* object, 
100                             unsigned long event,
101                             void* clientdata, 
102                             void* calldata);
103
104 protected slots:
105   void onBBCenterChecked();
106   
107   void onToOrigin();
108   void onSelectMenu( QAction* );
109
110   void onCoordChanged();
111
112   void onClickClose();
113
114 };
115
116 #endif // SVTK_SETROTATIONPOINTDLG_H