Salome HOME
refs #1493
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ViewerDlg.cxx
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 #include "HYDROGUI_ViewerDlg.h"
20
21 #include "HYDROGUI_Module.h"
22 #include "HYDROGUI_Tool.h"
23 #include "HYDROGUI_AISTrihedron.h"
24
25 #include <CurveCreator_Widget.h>
26 #include <CurveCreator_ICurve.hxx>
27 #include <CurveCreator_Utils.hxx>
28
29 #include <OCCViewer_ViewPort3d.h>
30 #include <OCCViewer_Utilities.h>
31 #include <OCCViewer_ViewManager.h>
32 #include <OCCViewer_ViewFrame.h>
33
34 #include <LightApp_Application.h>
35 #include <LightApp_SelectionMgr.h>
36
37 #include <SUIT_Session.h>
38 #include <SUIT_ResourceMgr.h>
39
40 #include <QGroupBox>
41 #include <QHBoxLayout>
42 #include <QLabel>
43 #include <QLineEdit>
44 #include <QMouseEvent>
45
46 HYDROGUI_ViewerDlg::HYDROGUI_ViewerDlg( HYDROGUI_Module* theModule, const QString& theTitle, bool isSplitter, bool dispTrihedron )
47 : HYDROGUI_InputPanel( theModule, theTitle, true, isSplitter )
48 {
49   SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
50 #ifndef TEST_MODE
51   SUIT_Study* aStudy = theModule ? theModule->application()->activeStudy() : 0;
52 #else
53   SUIT_Study* aStudy = 0;
54 #endif
55   myViewManager = new OCCViewer_ViewManager( aStudy, 0 );
56   OCCViewer_Viewer* aViewer = new OCCViewer_Viewer( dispTrihedron );
57
58   aViewer->setBackground( OCCViewer_ViewFrame::TOP_LEFT,
59                           aResMgr->backgroundValue( "OCCViewer", "xz_background", aViewer->background(OCCViewer_ViewFrame::TOP_LEFT) ) );
60   aViewer->setBackground( OCCViewer_ViewFrame::TOP_RIGHT,
61                           aResMgr->backgroundValue( "OCCViewer", "yz_background", aViewer->background(OCCViewer_ViewFrame::TOP_RIGHT) ) );
62   aViewer->setBackground( OCCViewer_ViewFrame::BOTTOM_LEFT,
63                           aResMgr->backgroundValue( "OCCViewer", "xy_background", aViewer->background(OCCViewer_ViewFrame::BOTTOM_LEFT) ) );
64   aViewer->setBackground( OCCViewer_ViewFrame::BOTTOM_RIGHT,
65                           aResMgr->backgroundValue( "OCCViewer", "background", aViewer->background(OCCViewer_ViewFrame::MAIN_VIEW) ) );
66
67   aViewer->setTrihedronSize( aResMgr->doubleValue( "3DViewer", "trihedron_size", aViewer->trihedronSize() ),
68                              aResMgr->booleanValue( "3DViewer", "relative_size", aViewer->trihedronRelative() ));
69   aViewer->setInteractionStyle( aResMgr->integerValue( "3DViewer", "navigation_mode", aViewer->interactionStyle() ) );
70   aViewer->setZoomingStyle( aResMgr->integerValue( "3DViewer", "zooming_mode", aViewer->zoomingStyle() ) );
71   aViewer->enablePreselection( aResMgr->booleanValue( "OCCViewer", "enable_preselection", aViewer->isPreselectionEnabled() ) );
72   aViewer->enableSelection( aResMgr->booleanValue( "OCCViewer", "enable_selection", aViewer->isSelectionEnabled() ) );
73
74   myViewManager->setViewModel( aViewer );// custom view model, which extends SALOME_View interface
75
76   //aViewer->enableMultiselection( false );
77
78   SUIT_ViewWindow* aViewWin = myViewManager->createViewWindow();
79   aViewer->setStaticTrihedronDisplayed( false );
80   /*
81   Handle(AIS_Trihedron) aTrihedron =
82       HYDROGUI_AISTrihedron::createTrihedron( aResMgr->doubleValue( "3DViewer", "trihedron_size", aViewer->trihedronSize() ) );
83   Handle(AIS_InteractiveContext) anAISContext = aViewer->getAISContext();
84   if ( !anAISContext.IsNull() )
85   {
86     anAISContext->Display( aTrihedron );
87     anAISContext->Deactivate( aTrihedron );
88   }
89   */
90   addWidget( aViewWin, 1 );
91
92   // Coordinates
93   connect( myViewManager, SIGNAL( mouseMove( SUIT_ViewWindow*, QMouseEvent* ) ),
94            this, SLOT( onMouseMove( SUIT_ViewWindow*, QMouseEvent* ) ) );
95
96   if ( aViewWin )
97   {
98     OCCViewer_ViewFrame* aViewFrame = dynamic_cast<OCCViewer_ViewFrame*>( aViewWin );
99     if ( aViewFrame && aViewFrame->getViewPort() )
100       aViewFrame->getViewPort()->installEventFilter( this );
101   }
102
103   myCoordLabel = new QLabel( mainFrame() );
104   addWidget( myCoordLabel, 0 );
105 }
106
107 HYDROGUI_ViewerDlg::~HYDROGUI_ViewerDlg()
108 {
109   myViewManager->closeAllViews();
110   delete myViewManager;
111 }
112
113 bool HYDROGUI_ViewerDlg::event( QEvent* e )
114 {
115     if ( e->type() == QEvent::Polish )
116     {
117         //addWidget( myCoordLabel->parentWidget(), 4 );
118
119         Handle(AIS_Trihedron) aTrihedron = trihedron();
120         Handle(AIS_InteractiveContext) anAISContext = getAISContext();
121         if ( !anAISContext.IsNull() && !aTrihedron.IsNull() )
122         {
123             viewer()->setTrihedronShown( false );
124             anAISContext->Display( aTrihedron, true );
125             anAISContext->Deactivate( aTrihedron );
126         }
127     }
128
129     return HYDROGUI_InputPanel::event( e );
130 }
131
132 Handle(AIS_InteractiveContext) HYDROGUI_ViewerDlg::getAISContext()
133 {
134   OCCViewer_Viewer* aViewer = (OCCViewer_Viewer*)myViewManager->getViewModel();
135   return aViewer ? aViewer->getAISContext() : 0;
136 }
137
138 OCCViewer_Viewer* HYDROGUI_ViewerDlg::viewer() const
139 {
140     return ::qobject_cast<OCCViewer_Viewer*>( myViewManager->getViewModel() );
141 }
142
143 OCCViewer_ViewManager* HYDROGUI_ViewerDlg::viewManager() const
144 {
145     return myViewManager;
146 }
147
148 SUIT_SelectionMgr* HYDROGUI_ViewerDlg::selectionMgr() const
149 {
150 #ifdef TEST_MODE
151   static SUIT_SelectionMgr* mgr = new SUIT_SelectionMgr();
152   return mgr;
153 #else
154     SUIT_SelectionMgr* aSelMgr = 0;
155     if ( module() )
156     {
157         LightApp_Application* app = module()->getApp();
158         if ( app )
159             aSelMgr = app->selectionMgr();
160     }
161     return aSelMgr;
162 #endif
163 }
164
165 void HYDROGUI_ViewerDlg::onMouseMove( SUIT_ViewWindow* theViewWindow, QMouseEvent* theEvent )
166 {
167   OCCViewer_ViewWindow* anOCCViewWindow = 
168     dynamic_cast<OCCViewer_ViewWindow*>(theViewWindow);
169   if ( anOCCViewWindow && anOCCViewWindow->getViewPort() )
170   {
171     gp_Pnt aPnt = CurveCreator_Utils::ConvertClickToPoint( theEvent->x(), theEvent->y(), anOCCViewWindow->getViewPort()->getView() );
172
173     // Show the coordinates
174     QString aX = HYDROGUI_Tool::GetCoordinateString( aPnt.X(), true );
175     QString anY = HYDROGUI_Tool::GetCoordinateString( aPnt.Y(), true );
176     myCoordLabel->setText( tr("UZ_COORDINATES_INFO").arg( aX ).arg( anY ) );
177   }
178 }
179
180 bool HYDROGUI_ViewerDlg::eventFilter( QObject* theObj, QEvent* theEvent )
181 {
182   if ( theObj->inherits( "OCCViewer_ViewPort" ) )
183   {
184     if ( theEvent->type() == QEvent::Leave )
185       myCoordLabel->clear();
186
187     return false;
188   }
189
190   return HYDROGUI_InputPanel::eventFilter( theObj, theEvent );
191 }
192
193 Handle(AIS_Trihedron) HYDROGUI_ViewerDlg::trihedron()
194 {
195     return Handle(AIS_Trihedron)();
196 }