Salome HOME
refs #1493
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ViewerDlg.h
1 // Copyright (C) 2014-2015  EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
6 //
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10 // Lesser General Public License for more details.
11 //
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19 #ifndef HYDROGUI_VIEWERDLG_H
20 #define HYDROGUI_VIEWERDLG_H
21
22 #include "HYDROGUI_InputPanel.h"
23 #include <Standard_Handle.hxx>
24
25 class AIS_Trihedron;
26 class AIS_InteractiveContext;
27 class QLabel;
28 class SUIT_ViewWindow;
29 class SUIT_SelectionMgr;
30 class OCCViewer_Viewer;
31 class OCCViewer_ViewManager;
32
33 class HYDROGUI_ViewerDlg : public HYDROGUI_InputPanel
34 {
35   Q_OBJECT
36
37 public:
38   HYDROGUI_ViewerDlg( HYDROGUI_Module* theModule, const QString& theTitle, bool isSplitter, bool dispTrihedron = true );
39   virtual ~HYDROGUI_ViewerDlg();
40
41   Handle(AIS_InteractiveContext) getAISContext();
42
43   OCCViewer_Viewer*              viewer() const;
44   OCCViewer_ViewManager*         viewManager() const;
45   SUIT_SelectionMgr*             selectionMgr() const;
46
47   virtual bool                   event( QEvent* );
48   virtual bool                   eventFilter( QObject*, QEvent* );
49
50 protected:
51   virtual Handle(AIS_Trihedron)  trihedron();
52
53 protected slots:
54   void                           onMouseMove( SUIT_ViewWindow*, QMouseEvent* );
55
56 private:
57   OCCViewer_ViewManager*         myViewManager;
58   QLabel*                        myCoordLabel;
59 };
60
61 #endif