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