Salome HOME
refs #1278: by default objects in study are not expanded
[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
24 #include <AIS_Trihedron.hxx>
25 #include <AIS_InteractiveContext.hxx>
26
27 class QLabel;
28
29 class SUIT_ViewWindow;
30 class SUIT_SelectionMgr;
31
32 class OCCViewer_Viewer;
33 class OCCViewer_ViewManager;
34
35 class HYDROGUI_ViewerDlg : public HYDROGUI_InputPanel
36 {
37   Q_OBJECT
38
39 public:
40   HYDROGUI_ViewerDlg( HYDROGUI_Module* theModule, const QString& theTitle );
41   virtual ~HYDROGUI_ViewerDlg();
42
43   Handle(AIS_InteractiveContext) getAISContext();
44
45   OCCViewer_Viewer*              viewer() const;
46   OCCViewer_ViewManager*         viewManager() const;
47   SUIT_SelectionMgr*             selectionMgr() const;
48
49   virtual bool                   event( QEvent* );
50   virtual bool                   eventFilter( QObject*, QEvent* );
51
52 protected:
53   virtual Handle(AIS_Trihedron)  trihedron();
54
55 protected slots:
56   void                           onMouseMove( SUIT_ViewWindow*, QMouseEvent* );
57
58 private:
59   OCCViewer_ViewManager*         myViewManager;
60   QLabel*                        myCoordLabel;
61 };
62
63 #endif