Salome HOME
Porting camera state synchronization code to OCCT6.7.1
[modules/gui.git] / src / OCCViewer / OCCViewer_SetRotationPointDlg.h
1 // Copyright (C) 2007-2014  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 #ifndef OCCVIEWER_SETROTATIONPOINTDLG_H
24 #define OCCVIEWER_SETROTATIONPOINTDLG_H
25
26 #include "OCCViewer.h"
27
28 #include <QDialog>
29
30 class QtxAction;
31
32 class QLineEdit;
33 class QPushButton;
34 class QGroupBox;
35 class QCheckBox;
36
37 class OCCViewer_ViewWindow;
38
39 class OCCVIEWER_EXPORT OCCViewer_SetRotationPointDlg : public QDialog
40 {
41   Q_OBJECT
42
43 public:
44   OCCViewer_SetRotationPointDlg(OCCViewer_ViewWindow* , 
45                                 const char* name = 0, bool modal = FALSE, Qt::WindowFlags fl = 0);
46   ~OCCViewer_SetRotationPointDlg();
47
48   void SetAction( QtxAction* theAction ) { myAction = theAction; }
49   bool IsFirstShown();
50
51   void setCoords(double theX=0., double theY=0., double theZ=0.);
52   void toggleChange();
53
54 protected:
55   OCCViewer_ViewWindow* myView;
56   QtxAction* myAction;
57
58   QCheckBox*    myIsBBCenter;
59
60   QGroupBox   * myGroupBoxSel;
61   QPushButton*  myToOrigin;
62   QPushButton*  mySelectPoint;
63
64   QGroupBox* myGroupBoxCoord;
65   QLineEdit* myX;
66   QLineEdit* myY;
67   QLineEdit* myZ;
68
69   void setEnabled(QGroupBox* theGrp, const bool theState);
70
71 protected slots:
72   void onBBCenterChecked();
73   
74   void onToOrigin();
75   void onSelectPoint();
76
77   void onCoordChanged();
78
79   void onClickClose();
80
81   void onViewShow();
82   void onViewHide();
83
84 protected:
85   void closeEvent( QCloseEvent* );
86 };
87
88 #endif // OCCVIEWER_SETROTATIONPOINTDLG_H