Salome HOME
Merge branch 'oscar/imps_2017' of ssh://git.salome-platform.org/modules/gui into...
[modules/gui.git] / src / GraphicsView / GraphicsView_ViewFrame.cxx
1 // Copyright (C) 2013-2016  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "GraphicsView_ViewFrame.h"
21
22 #include "GraphicsView_Viewer.h"
23 #include "GraphicsView_ViewPort.h"
24
25 #include <QtxAction.h>
26 #include <QtxActionToolMgr.h>
27 #include <QtxMultiAction.h>
28 #include <QtxToolBar.h>
29
30 #include <SUIT_Desktop.h>
31 #include <SUIT_MessageBox.h>
32 #include <SUIT_Session.h>
33 #include <SUIT_ResourceMgr.h>
34
35 #include <QColor>
36 #include <QFrame>
37 #include <QFileDialog>
38 #include <QGraphicsSceneMouseEvent>
39 #include <QGraphicsSceneWheelEvent>
40 #include <QHBoxLayout>
41 #include <QImage>
42 #include <QMouseEvent>
43 #include <QString>
44 #include <QWheelEvent>
45
46 //=======================================================================
47 // Name    : GraphicsView_ViewFrame
48 // Purpose : Constructor
49 //=======================================================================
50 GraphicsView_ViewFrame::GraphicsView_ViewFrame( SUIT_Desktop* d, GraphicsView_Viewer* vw, QWidget* w )
51 : SUIT_ViewWindow( d ),
52   myViewer( vw )
53 {
54   QFrame* aFrame = new QFrame( this );
55   setCentralWidget( aFrame );
56
57   QBoxLayout* aLayout = new QHBoxLayout( aFrame );
58   aLayout->setMargin( 0 );
59   aLayout->setSpacing( 0 );
60
61   if( w )
62     myViewPort = dynamic_cast<GraphicsView_ViewPort*>(w);
63   else
64     myViewPort = new GraphicsView_ViewPort( aFrame );
65
66   aLayout->addWidget( myViewPort );
67
68   createActions();
69   myToolBarId = createToolBar();
70
71   connect( myViewPort, SIGNAL( vpKeyEvent( QKeyEvent* ) ),
72            this, SLOT( keyEvent( QKeyEvent* ) ) );
73   connect( myViewPort, SIGNAL( vpMouseEvent( QGraphicsSceneMouseEvent* ) ),
74            this, SLOT( mouseEvent( QGraphicsSceneMouseEvent* ) ) );
75   connect( myViewPort, SIGNAL( vpWheelEvent( QGraphicsSceneWheelEvent* ) ),
76            this, SLOT( wheelEvent( QGraphicsSceneWheelEvent* ) ) );
77   connect( myViewPort, SIGNAL( vpContextMenuEvent( QGraphicsSceneContextMenuEvent* ) ),
78            this, SLOT( contextMenuEvent( QGraphicsSceneContextMenuEvent* ) ) );
79
80   connect( myViewPort, SIGNAL( vpSketchingFinished( QPainterPath ) ),
81            this, SIGNAL( sketchingFinished( QPainterPath ) ) );
82 }
83
84 //=======================================================================
85 // Name    : GraphicsView_ViewFrame
86 // Purpose : Destructor
87 //=======================================================================
88 GraphicsView_ViewFrame::~GraphicsView_ViewFrame()
89 {
90 }
91
92 //================================================================
93 // Function : createActions
94 // Purpose  : 
95 //================================================================
96 void GraphicsView_ViewFrame::createActions()
97 {
98   SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
99   QtxAction* anAction;
100
101   // Dump view
102   anAction = new QtxAction( tr( "MNU_DUMP_VIEW" ),
103                            aResMgr->loadPixmap( "GraphicsView", tr( "ICON_GV_DUMP" ) ),
104                            tr( "MNU_DUMP_VIEW" ), 0, this );
105   anAction->setStatusTip( tr( "DSC_DUMP_VIEW" ) );
106   connect( anAction, SIGNAL( triggered( bool ) ), this, SLOT( onDumpView() ) );
107   toolMgr()->registerAction( anAction, DumpId );
108
109   // FitAll
110   anAction = new QtxAction( tr( "MNU_FITALL" ),
111                            aResMgr->loadPixmap( "GraphicsView", tr( "ICON_GV_FITALL" ) ),
112                            tr( "MNU_FITALL" ), 0, this );
113   anAction->setStatusTip( tr( "DSC_FITALL" ) );
114   connect( anAction, SIGNAL( triggered( bool ) ), this, SLOT( onViewFitAll() ) );
115   toolMgr()->registerAction( anAction, FitAllId );
116
117   // FitRect
118   anAction = new QtxAction( tr( "MNU_FITRECT" ),
119                            aResMgr->loadPixmap( "GraphicsView", tr( "ICON_GV_FITAREA" ) ),
120                            tr( "MNU_FITRECT" ), 0, this );
121   anAction->setStatusTip( tr( "DSC_FITRECT" ) );
122   connect( anAction, SIGNAL( triggered( bool ) ), this, SLOT( onViewFitArea() ) );
123   toolMgr()->registerAction( anAction, FitRectId );
124
125   // FitSelect
126   anAction = new QtxAction( tr( "MNU_FITSELECT" ),
127                            aResMgr->loadPixmap( "GraphicsView", tr( "ICON_GV_FITSELECT" ) ),
128                            tr( "MNU_FITSELECT" ), 0, this );
129   anAction->setStatusTip( tr( "DSC_FITSELECT" ) );
130   connect( anAction, SIGNAL( triggered( bool ) ), this, SLOT( onViewFitSelect() ) );
131   toolMgr()->registerAction( anAction, FitSelectId );
132
133   // Zoom
134   anAction = new QtxAction( tr( "MNU_ZOOM_VIEW" ),
135                            aResMgr->loadPixmap( "GraphicsView", tr( "ICON_GV_ZOOM" ) ),
136                            tr( "MNU_ZOOM_VIEW" ), 0, this );
137   anAction->setStatusTip( tr( "DSC_ZOOM_VIEW" ) );
138   connect( anAction, SIGNAL( triggered( bool ) ), this, SLOT( onViewZoom() ) );
139   toolMgr()->registerAction( anAction, ZoomId );
140
141   // Panning
142   anAction = new QtxAction( tr( "MNU_PAN_VIEW" ),
143                            aResMgr->loadPixmap( "GraphicsView", tr( "ICON_GV_PAN" ) ),
144                            tr( "MNU_PAN_VIEW" ), 0, this );
145   anAction->setStatusTip( tr( "DSC_PAN_VIEW" ) );
146   connect( anAction, SIGNAL( triggered( bool ) ), this, SLOT( onViewPan() ) );
147   toolMgr()->registerAction( anAction, PanId );
148
149   // Global Panning
150   anAction = new QtxAction( tr( "MNU_GLOBALPAN_VIEW" ),
151                            aResMgr->loadPixmap( "GraphicsView", tr( "ICON_GV_GLOBALPAN" ) ),
152                            tr( "MNU_GLOBALPAN_VIEW" ), 0, this );
153   anAction->setStatusTip( tr( "DSC_GLOBALPAN_VIEW" ) );
154   connect( anAction, SIGNAL( triggered( bool ) ), this, SLOT( onViewGlobalPan() ) );
155   toolMgr()->registerAction( anAction, GlobalPanId );
156
157   // Reset (obsolete)
158   /*
159   anAction = new QtxAction( tr( "MNU_RESET_VIEW" ),
160                            aResMgr->loadPixmap( "GraphicsView", tr( "ICON_GV_RESET" ) ),
161                            tr( "MNU_RESET_VIEW" ), 0, this );
162   anAction->setStatusTip( tr( "DSC_RESET_VIEW" ) );
163   connect( anAction, SIGNAL( triggered( bool ) ), this, SLOT( onViewReset() ) );
164   toolMgr()->registerAction( anAction, ResetId );
165   */
166 }
167
168 //================================================================
169 // Function : createToolBar
170 // Purpose  : 
171 //================================================================
172 int GraphicsView_ViewFrame::createToolBar()
173 {
174   int tid = toolMgr()->createToolBar( tr("LBL_TOOLBAR_LABEL"),                 // title (language-dependant)
175                                       QString( "GraphicsViewViewOperations" ), // name (language-independant)
176                                       false );                                 // disable floatable toolbar
177   toolMgr()->append( DumpId, tid );
178
179   myScaleAction = new QtxMultiAction( this );
180   myScaleAction->insertAction( toolMgr()->action( FitAllId ) );
181   myScaleAction->insertAction( toolMgr()->action( FitRectId ) );
182   myScaleAction->insertAction( toolMgr()->action( FitSelectId ) );
183   myScaleAction->insertAction( toolMgr()->action( ZoomId ) );
184   toolMgr()->append( myScaleAction, tid );
185
186   myPanAction = new QtxMultiAction( this );
187   myPanAction->insertAction( toolMgr()->action( PanId ) );
188   myPanAction->insertAction( toolMgr()->action( GlobalPanId ) );
189   toolMgr()->append( myPanAction, tid );
190
191   toolMgr()->append( toolMgr()->action( ResetId ), tid );
192
193   return tid;
194 }
195
196 //================================================================
197 // Function : getToolBarId
198 // Purpose  :
199 //================================================================
200 int GraphicsView_ViewFrame::getToolBarId()
201 {
202   return myToolBarId;
203 }
204
205 //================================================================
206 // Function : dumpView
207 // Purpose  : 
208 //================================================================
209 QImage GraphicsView_ViewFrame::dumpView()
210 {
211   return myViewPort->dumpView();
212 }
213
214 //================================================================
215 // Function : dumpViewToPSFormat
216 // Purpose  : 
217 //================================================================
218 bool GraphicsView_ViewFrame::dumpViewToPSFormat(const QString& fileName)
219 {
220   return myViewPort->dumpViewToPSFormat(fileName);
221 }
222
223 //================================================================
224 // Function : getVisualParameters
225 // Purpose  : 
226 //================================================================
227 QString GraphicsView_ViewFrame::getVisualParameters()
228 {
229   QTransform aTransform = myViewPort->transform();
230
231   QString aString;
232   aString.sprintf( "%.3f*%.3f*%.3f*%.3f*%.3f*%.3f*%.3f*%.3f*%.3f",
233     aTransform.m11(), aTransform.m12(), aTransform.m13(),
234     aTransform.m21(), aTransform.m22(), aTransform.m23(),
235     aTransform.m31(), aTransform.m32(), aTransform.m33() );
236   return aString;
237 }
238
239 //================================================================
240 // Function : setVisualParameters
241 // Purpose  : 
242 //================================================================
243 void GraphicsView_ViewFrame::setVisualParameters( const QString& theParameters )
244 {
245   QStringList aList = theParameters.split( '*' );
246   if( aList.size() < 9 )
247     return;
248
249   bool anIsOk[9];
250   QTransform aTransform( aList[0].toDouble( &anIsOk[0] ),
251                          aList[1].toDouble( &anIsOk[1] ),
252                          aList[2].toDouble( &anIsOk[2] ),
253                          aList[3].toDouble( &anIsOk[3] ),
254                          aList[4].toDouble( &anIsOk[4] ),
255                          aList[5].toDouble( &anIsOk[5] ),
256                          aList[6].toDouble( &anIsOk[6] ),
257                          aList[7].toDouble( &anIsOk[7] ),
258                          aList[8].toDouble( &anIsOk[8] ) );
259   for( int i = 0; i < 9; i++ )
260     if( !anIsOk[ i ] )
261       return;
262
263   myViewPort->setTransform( aTransform );
264   myViewPort->applyTransform();
265 }
266
267 //================================================================
268 // Function : expandToolBarActions
269 // Purpose  : 
270 //================================================================
271 void GraphicsView_ViewFrame::expandToolBarActions()
272 {
273   QList<QtxMultiAction*> anExpandableActions;
274   anExpandableActions.append( myScaleAction );
275   anExpandableActions.append( myPanAction );
276
277   QListIterator<QtxMultiAction*> anIter( anExpandableActions );
278   while( anIter.hasNext() )
279   {
280     if( QtxMultiAction* aMultiAction = anIter.next() )
281     {
282       QList<QAction*> aLocalActions = aMultiAction->actions();
283       QListIterator<QAction*> aLocalIter( aLocalActions );
284       while( aLocalIter.hasNext() )
285         if( QAction* anAction = aLocalIter.next() )
286           toolMgr()->append( anAction, myToolBarId );
287
288       int anId = toolMgr()->actionId( aMultiAction );
289       toolMgr()->remove( anId, myToolBarId );
290     }
291   }
292 }
293
294 //================================================================
295 // Function : onViewPan
296 // Purpose  : 
297 //================================================================
298 void GraphicsView_ViewFrame::onViewPan()
299 {
300   myViewer->activateTransform( GraphicsView_Viewer::Pan );
301 }
302
303 //================================================================
304 // Function : onViewZoom
305 // Purpose  : 
306 //================================================================
307 void GraphicsView_ViewFrame::onViewZoom()
308 {
309   myViewer->activateTransform( GraphicsView_Viewer::Zoom );
310 }
311
312 //================================================================
313 // Function : onViewFitAll
314 // Purpose  : 
315 //================================================================
316 void GraphicsView_ViewFrame::onViewFitAll()
317 {
318   myViewer->activateTransform( GraphicsView_Viewer::FitAll );
319 }
320
321 //================================================================
322 // Function : onViewFitArea
323 // Purpose  : 
324 //================================================================
325 void GraphicsView_ViewFrame::onViewFitArea()
326 {
327   myViewer->activateTransform( GraphicsView_Viewer::FitRect );
328 }
329
330 //================================================================
331 // Function : onViewFitSelect
332 // Purpose  : 
333 //================================================================
334 void GraphicsView_ViewFrame::onViewFitSelect()
335 {
336   myViewer->activateTransform( GraphicsView_Viewer::FitSelect );
337 }
338
339 //================================================================
340 // Function : onViewGlobalPan
341 // Purpose  : 
342 //================================================================
343 void GraphicsView_ViewFrame::onViewGlobalPan()
344 {
345   myViewer->activateTransform( GraphicsView_Viewer::PanGlobal );
346 }
347
348 //================================================================
349 // Function : onViewReset
350 // Purpose  : 
351 //================================================================
352 void GraphicsView_ViewFrame::onViewReset()
353 {
354   myViewer->activateTransform( GraphicsView_Viewer::Reset );
355 }
356
357 //================================================================
358 // Function : keyEvent
359 // Purpose  : 
360 //================================================================
361 void GraphicsView_ViewFrame::keyEvent( QKeyEvent* e )
362 {
363   switch ( e->type() )
364   {
365     case QEvent::KeyPress:
366       emit keyPressed( e );
367       break;
368     case QEvent::KeyRelease:
369       emit keyReleased( e );
370       break;
371     default:
372       break;
373   }
374 }
375
376 //================================================================
377 // Function : mouseEvent
378 // Purpose  : 
379 //================================================================
380 void GraphicsView_ViewFrame::mouseEvent( QGraphicsSceneMouseEvent* e )
381 {
382   switch ( e->type() )
383   {
384     case QEvent::GraphicsSceneMousePress:
385       emit mousePressed( e );
386       break;
387     case QEvent::GraphicsSceneMouseMove:
388       emit mouseMoving( e );
389       break;
390     case QEvent::GraphicsSceneMouseRelease:
391       emit mouseReleased( e );
392       break;
393     case QEvent::GraphicsSceneMouseDoubleClick:
394       emit mouseDoubleClicked( e );
395       break;
396     default:
397       break;
398   }
399 }
400
401 //================================================================
402 // Function : wheelEvent
403 // Purpose  : 
404 //================================================================
405 void GraphicsView_ViewFrame::wheelEvent( QGraphicsSceneWheelEvent* e )
406 {
407   switch ( e->type() )
408   {
409     case QEvent::GraphicsSceneWheel:
410       emit wheeling( e );
411       break;
412     default:
413       break;
414   }
415 }
416
417 //================================================================
418 // Function : contextMenuEvent
419 // Purpose  : 
420 //================================================================
421 void GraphicsView_ViewFrame::contextMenuEvent( QGraphicsSceneContextMenuEvent* e )
422 {
423   QPoint aPos = myViewPort->mapFromScene( e->scenePos() );
424   QContextMenuEvent* anEvent = new QContextMenuEvent( (QContextMenuEvent::Reason)e->reason(),
425                                                       aPos, e->screenPos(), e->modifiers() );
426   emit contextMenuRequested( anEvent );
427   delete anEvent;
428 }