Salome HOME
Implementation of the following issues:
[modules/gui.git] / src / OCCViewer / OCCViewer_ViewWindow.cxx
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // File   : OCCViewer_ViewWindow.cxx
24 // Author :
25
26 #include "OCCViewer_ViewWindow.h"
27 #include "OCCViewer_ViewModel.h"
28 #include "OCCViewer_ViewPort3d.h"
29 #include "OCCViewer_ViewManager.h"
30 #include "OCCViewer_ViewSketcher.h"
31 #include "OCCViewer_CreateRestoreViewDlg.h"
32 #include "OCCViewer_ClipPlane.h"
33 #include "OCCViewer_SetRotationPointDlg.h"
34 #include "OCCViewer_AxialScaleDlg.h"
35 #include "OCCViewer_CubeAxesDlg.h"
36 #include "OCCViewer_ClippingDlg.h"
37
38 #include <Basics_OCCTVersion.hxx>
39
40 #include <SUIT_Desktop.h>
41 #include <SUIT_Session.h>
42 #include <SUIT_ViewManager.h>
43 #include <SUIT_Tools.h>
44 #include <SUIT_ResourceMgr.h>
45 #include <SUIT_MessageBox.h>
46 #include <SUIT_Application.h>
47
48 #include <QtxActionToolMgr.h>
49 #include <QtxMultiAction.h>
50 #include <QtxRubberBand.h>
51
52 #include <OpenGLUtils_FrameBuffer.h>
53
54 #include <QPainter>
55 #include <QTime>
56 #include <QImage>
57 #include <QKeyEvent>
58 #include <QMouseEvent>
59 #include <QApplication>
60 #include <QMenu>
61
62 #include <AIS_ListOfInteractive.hxx>
63 #include <AIS_ListIteratorOfListOfInteractive.hxx>
64 #include <AIS_Shape.hxx>
65
66 #include <BRep_Tool.hxx>
67 #include <BRepBndLib.hxx>
68 #include <TopoDS.hxx>
69
70 #include <Graphic3d_MapIteratorOfMapOfStructure.hxx>
71 #include <Graphic3d_MapOfStructure.hxx>
72 #include <Graphic3d_Structure.hxx>
73 #include <Graphic3d_ExportFormat.hxx>
74
75 #include <Visual3d_View.hxx>
76 #include <V3d_Plane.hxx>
77 #include <V3d_Light.hxx>
78
79 #include <gp_Dir.hxx>
80 #include <gp_Pln.hxx>
81 #include <TColgp_Array1OfPnt2d.hxx>
82
83 #if OCC_VERSION_LARGE > 0x06060000 
84 #include <Graphic3d_SetOfHClipPlane.hxx>
85 #include <Graphic3d_ClipPlane.hxx>
86
87 #endif
88
89 #include <Standard_Version.hxx>
90
91 #include "utilities.h"
92
93 // // OpenCV includes
94 // #include <cv.h>
95 // #include <highgui.h>
96
97 static QEvent* l_mbPressEvent = 0;
98
99 #ifdef WIN32
100 # include <QWindowsStyle>
101 #endif
102
103 #include <GL/gl.h>
104
105 const char* imageZoomCursor[] = {
106 "32 32 3 1",
107 ". c None",
108 "a c #000000",
109 "# c #ffffff",
110 "................................",
111 "................................",
112 ".#######........................",
113 "..aaaaaaa.......................",
114 "................................",
115 ".............#####..............",
116 "...........##.aaaa##............",
117 "..........#.aa.....a#...........",
118 ".........#.a.........#..........",
119 ".........#a..........#a.........",
120 "........#.a...........#.........",
121 "........#a............#a........",
122 "........#a............#a........",
123 "........#a............#a........",
124 "........#a............#a........",
125 ".........#...........#.a........",
126 ".........#a..........#a.........",
127 ".........##.........#.a.........",
128 "........#####.....##.a..........",
129 ".......###aaa#####.aa...........",
130 "......###aa...aaaaa.......#.....",
131 ".....###aa................#a....",
132 "....###aa.................#a....",
133 "...###aa...............#######..",
134 "....#aa.................aa#aaaa.",
135 ".....a....................#a....",
136 "..........................#a....",
137 "...........................a....",
138 "................................",
139 "................................",
140 "................................",
141 "................................"};
142
143 const char* imageRotateCursor[] = {
144 "32 32 3 1",
145 ". c None",
146 "a c #000000",
147 "# c #ffffff",
148 "................................",
149 "................................",
150 "................................",
151 "................................",
152 "........#.......................",
153 ".......#.a......................",
154 "......#######...................",
155 ".......#aaaaa#####..............",
156 "........#..##.a#aa##........##..",
157 ".........a#.aa..#..a#.....##.aa.",
158 ".........#.a.....#...#..##.aa...",
159 ".........#a.......#..###.aa.....",
160 "........#.a.......#a..#aa.......",
161 "........#a.........#..#a........",
162 "........#a.........#a.#a........",
163 "........#a.........#a.#a........",
164 "........#a.........#a.#a........",
165 ".........#.........#a#.a........",
166 "........##a........#a#a.........",
167 "......##.a#.......#.#.a.........",
168 "....##.aa..##.....##.a..........",
169 "..##.aa.....a#####.aa...........",
170 "...aa.........aaa#a.............",
171 "................#.a.............",
172 "...............#.a..............",
173 "..............#.a...............",
174 "...............a................",
175 "................................",
176 "................................",
177 "................................",
178 "................................",
179 "................................"};
180
181 const char* imageCrossCursor[] = {
182   "32 32 3 1",
183   ". c None",
184   "a c #000000",
185   "# c #ffffff",
186   "................................",
187   "................................",
188   "................................",
189   "................................",
190   "................................",
191   "................................",
192   "................................",
193   "...............#................",
194   "...............#a...............",
195   "...............#a...............",
196   "...............#a...............",
197   "...............#a...............",
198   "...............#a...............",
199   "...............#a...............",
200   "...............#a...............",
201   ".......#################........",
202   "........aaaaaaa#aaaaaaaaa.......",
203   "...............#a...............",
204   "...............#a...............",
205   "...............#a...............",
206   "...............#a...............",
207   "...............#a...............",
208   "...............#a...............",
209   "...............#a...............",
210   "................a...............",
211   "................................",
212   "................................",
213   "................................",
214   "................................",
215   "................................",
216   "................................",
217   "................................"};
218
219
220 /*!
221   \brief Constructor
222   \param theDesktop main window of application
223   \param theModel OCC 3D viewer
224 */
225 OCCViewer_ViewWindow::OCCViewer_ViewWindow( SUIT_Desktop*     theDesktop,
226                                             OCCViewer_Viewer* theModel )
227 : SUIT_ViewWindow( theDesktop )
228 {
229   myModel = theModel;
230   myRestoreFlag = 0;
231   myEnableDrawMode = false;
232   myDrawRect=false;
233   updateEnabledDrawMode();
234   myScalingDlg = 0;
235   mySetRotationPointDlg = 0;
236   myRectBand = 0;
237   
238   IsSketcherStyle = false;
239   myIsKeyFree = false;
240
241   mypSketcher = 0;
242   myCurSketch = -1;
243   my2dMode = No2dMode;
244
245   myInteractionStyle = SUIT_ViewModel::STANDARD;
246   myPreselectionEnabled = true;
247   mySelectionEnabled = true;
248
249
250   clearViewAspects();
251   
252 }
253
254 /*!
255   \brief Destructor.
256 */
257 OCCViewer_ViewWindow::~OCCViewer_ViewWindow()
258 {
259   endDrawRect();
260   qDeleteAll( mySketchers );
261 }
262
263 /*!
264   \brief Internal initialization.
265 */
266 void OCCViewer_ViewWindow::initLayout()
267 {
268   myViewPort = new OCCViewer_ViewPort3d( this, myModel->getViewer3d(), V3d_ORTHOGRAPHIC );
269   myViewPort->installEventFilter(this);
270   setCentralWidget(myViewPort);
271   myOperation = NOTHING;
272
273   myCurrPointType = GRAVITY;
274   myPrevPointType = GRAVITY;
275   mySelectedPoint = gp_Pnt(0.,0.,0.);
276   myRotationPointSelection = false;
277
278   setTransformRequested ( NOTHING );
279   setTransformInProcess ( false );
280
281   createActions();
282   createToolBar();
283
284   switch (my2dMode) {
285   case XYPlane:
286     onTopView();
287     break;
288   case XZPlane:
289     onLeftView();
290     break;
291   case YZPlane:
292     onFrontView();
293     break;
294   }
295
296   // Graduated axes dialog
297   QtxAction* anAction = dynamic_cast<QtxAction*>( toolMgr()->action( GraduatedAxesId ) );
298   myCubeAxesDlg = new OCCViewer_CubeAxesDlg( anAction, this, "OCCViewer_CubeAxesDlg" );
299   myCubeAxesDlg->initialize();
300   
301   connect( myViewPort, SIGNAL( vpTransformed( OCCViewer_ViewPort* ) ), this, SLOT( emitViewModified() ) );
302 }
303
304 OCCViewer_ViewWindow* OCCViewer_ViewWindow::getView( const int mode ) const
305 {
306   return mode == get2dMode() ? const_cast<OCCViewer_ViewWindow*>( this ) : 0;
307 }
308
309 /*!
310   \brief Detect viewer operation according the the mouse button pressed
311   and key modifiers used.
312   \param theEvent mouse event
313   \return type of the operation
314 */
315 OCCViewer_ViewWindow::OperationType
316 OCCViewer_ViewWindow::getButtonState( QMouseEvent* theEvent, int theInteractionStyle )
317 {
318   OperationType aOp = NOTHING;
319   SUIT_ViewModel::InteractionStyle aStyle = (SUIT_ViewModel::InteractionStyle)theInteractionStyle;
320   if( (theEvent->modifiers() == SUIT_ViewModel::myStateMap[aStyle][SUIT_ViewModel::ZOOM]) &&
321       (theEvent->buttons() == SUIT_ViewModel::myButtonMap[aStyle][SUIT_ViewModel::ZOOM]) )
322     aOp = ZOOMVIEW;
323   else if( (theEvent->modifiers() == SUIT_ViewModel::myStateMap[aStyle][SUIT_ViewModel::PAN]) &&
324            (theEvent->buttons() == SUIT_ViewModel::myButtonMap[aStyle][SUIT_ViewModel::PAN]) )
325     aOp = PANVIEW;
326   else if( (theEvent->modifiers()  == SUIT_ViewModel::myStateMap[aStyle][SUIT_ViewModel::ROTATE]) &&
327            (theEvent->buttons() == SUIT_ViewModel::myButtonMap[aStyle][SUIT_ViewModel::ROTATE]) &&
328            (my2dMode == No2dMode))
329     aOp = ROTATE;
330
331   return aOp;
332 }
333
334 /*!
335   \brief Customize event handling
336   \param watched event receiver object
337   \param e event
338   \return \c true if the event processing should be stopped
339 */
340 bool OCCViewer_ViewWindow::eventFilter( QObject* watched, QEvent* e )
341 {
342   if ( watched == myViewPort ) {
343     int aType = e->type();
344     switch(aType) {
345     case QEvent::MouseButtonPress:
346       vpMousePressEvent((QMouseEvent*) e);
347       return true;
348
349     case QEvent::MouseButtonRelease:
350       vpMouseReleaseEvent((QMouseEvent*) e);
351       return true;
352
353     case QEvent::MouseMove:
354       vpMouseMoveEvent((QMouseEvent*) e);
355       return true;
356
357     case QEvent::MouseButtonDblClick:
358       emit mouseDoubleClicked(this, (QMouseEvent*)e);
359       return true;
360
361     case QEvent::Wheel:
362       {
363         QWheelEvent* aEvent = (QWheelEvent*) e;
364   myViewPort->startZoomAtPoint( aEvent->x(), aEvent->y() );
365   double delta = (double)( aEvent->delta() ) / ( 15 * 8 );
366   int x  = aEvent->x();
367   int y  = aEvent->y();
368   int x1 = (int)( aEvent->x() + width()*delta/100 );
369   int y1 = (int)( aEvent->y() + height()*delta/100 );
370   myViewPort->zoom( x, y, x1, y1 );
371       }
372       return true;
373
374     case QEvent::ContextMenu:
375       {
376         QContextMenuEvent * aEvent = (QContextMenuEvent*)e;
377         if ( aEvent->reason() != QContextMenuEvent::Mouse )
378           emit contextMenuRequested( aEvent );
379       }
380       return true;
381
382     case QEvent::KeyPress:
383       emit keyPressed(this, (QKeyEvent*) e);
384       return true;
385
386     default:
387       break;
388     }
389   }
390   return SUIT_ViewWindow::eventFilter(watched, e);
391 }
392
393 /*!
394   \brief Update state of enable draw mode state.
395 */
396 void OCCViewer_ViewWindow::updateEnabledDrawMode()
397 {
398   if ( myModel )
399     myEnableDrawMode = myModel->isSelectionEnabled() && myModel->isMultiSelectionEnabled();
400 }
401
402 /*!
403   \brief Handle mouse press event
404   \param theEvent mouse event
405 */
406 void OCCViewer_ViewWindow::vpMousePressEvent( QMouseEvent* theEvent )
407 {
408   myStartX = theEvent->x();
409   myStartY = theEvent->y();
410   int anInteractionStyle = interactionStyle();
411
412   // in "key free" interaction style zoom operation is activated by two buttons (simultaneously pressed),
413   // which are assigned for pan and rotate - these operations are activated immediately after pressing 
414   // of the first button, so it is necessary to switch to zoom when the second button is pressed
415   bool aSwitchToZoom = false;
416   if ( anInteractionStyle == SUIT_ViewModel::KEY_FREE && 
417        ( myOperation == PANVIEW || myOperation == ROTATE ) ) {
418     aSwitchToZoom = getButtonState( theEvent, anInteractionStyle ) == ZOOMVIEW;
419   }
420
421   switch ( myOperation ) {
422   case WINDOWFIT:
423     if ( theEvent->button() == Qt::LeftButton )
424       emit vpTransformationStarted ( WINDOWFIT );
425     break;
426
427   case PANGLOBAL:
428     if ( theEvent->button() == Qt::LeftButton )
429       emit vpTransformationStarted ( PANGLOBAL );
430     break;
431
432   case ZOOMVIEW:
433     if ( theEvent->button() == Qt::LeftButton ) {
434       myViewPort->startZoomAtPoint( myStartX, myStartY );
435       emit vpTransformationStarted ( ZOOMVIEW );
436     }
437     break;
438
439   case PANVIEW:
440     if ( aSwitchToZoom ) {
441       myViewPort->startZoomAtPoint( myStartX, myStartY );
442       activateZoom();
443     }
444     else if ( theEvent->button() == Qt::LeftButton )
445       emit vpTransformationStarted ( PANVIEW );
446     break;
447
448   case ROTATE:
449     if ( aSwitchToZoom ) {
450       myViewPort->startZoomAtPoint( myStartX, myStartY );
451       activateZoom();
452     }
453     else if ( theEvent->button() == Qt::LeftButton ) {
454       myViewPort->startRotation(myStartX, myStartY, myCurrPointType, mySelectedPoint);
455       emit vpTransformationStarted ( ROTATE );
456     }
457     break;
458
459   default:
460   /*  Try to activate a transformation */
461     OperationType aState;
462     if ( interactionStyle() == SUIT_ViewModel::STANDARD )
463       aState = getButtonState(theEvent, anInteractionStyle);
464     else {
465       aState = OCCViewer_ViewWindow::NOTHING;
466       myIsKeyFree = true;
467     }
468     switch ( aState ) {
469     case ZOOMVIEW:
470       myViewPort->startZoomAtPoint( myStartX, myStartY );
471       activateZoom();
472       break;
473     case PANVIEW:
474       activatePanning();
475       break;
476     case ROTATE:
477       activateRotation();
478       myViewPort->startRotation(myStartX, myStartY, myCurrPointType, mySelectedPoint);
479       break;
480     default:
481       if ( myRotationPointSelection )
482       {
483         if ( theEvent->button() == Qt::LeftButton )
484         {
485           Handle(AIS_InteractiveContext) ic = myModel->getAISContext();
486           ic->Select();
487           for ( ic->InitSelected(); ic->MoreSelected(); ic->NextSelected() )
488           {
489             TopoDS_Shape aShape = ic->SelectedShape();
490             if ( !aShape.IsNull() && aShape.ShapeType() == TopAbs_VERTEX )
491             {
492               gp_Pnt aPnt = BRep_Tool::Pnt( TopoDS::Vertex( ic->SelectedShape() ) );
493               if ( mySetRotationPointDlg )
494               {
495                 myRotationPointSelection = false;
496                 mySetRotationPointDlg->setCoords(aPnt.X(), aPnt.Y(), aPnt.Z());
497               }
498             }
499             else
500             {
501               myCurrPointType = myPrevPointType;
502               break;
503             }
504           }
505           if ( ic->NbSelected() == 0 ) myCurrPointType = myPrevPointType;
506           if ( mySetRotationPointDlg ) mySetRotationPointDlg->toggleChange();
507           ic->CloseAllContexts();
508           myOperation = NOTHING;
509           myViewPort->setCursor( myCursor );
510           myCursorIsHand = false;
511           myRotationPointSelection = false;
512         }
513       }
514       else
515         emit mousePressed(this, theEvent);
516       break;
517     }
518     /* notify that we start a transformation */
519     if ( transformRequested() )
520             emit vpTransformationStarted ( myOperation );
521   }
522   if ( transformRequested() )
523     setTransformInProcess( true );
524
525   /* we may need it for sketching... */
526   if ( l_mbPressEvent )
527     delete l_mbPressEvent;
528   l_mbPressEvent = new QMouseEvent( *theEvent );
529 }
530
531
532 /*!
533   \brief Start zooming operation.
534
535   Sets the corresponding cursor for the widget.
536 */
537 void OCCViewer_ViewWindow::activateZoom()
538 {
539   if ( !transformRequested() && !myCursorIsHand )
540     myCursor = cursor();                /* save old cursor */
541
542   if ( myOperation != ZOOMVIEW ) {
543     QPixmap zoomPixmap (imageZoomCursor);
544     QCursor zoomCursor (zoomPixmap);
545     if( setTransformRequested ( ZOOMVIEW ) )
546       myViewPort->setCursor( zoomCursor );
547   }
548 }
549
550
551 /*!
552   \brief Start panning operation.
553
554   Sets the corresponding cursor for the widget.
555 */
556 void OCCViewer_ViewWindow::activatePanning()
557 {
558   if ( !transformRequested() && !myCursorIsHand )
559     myCursor = cursor();                // save old cursor
560
561   if ( myOperation != PANVIEW ) {
562     QCursor panCursor (Qt::SizeAllCursor);
563     if( setTransformRequested ( PANVIEW ) )
564       myViewPort->setCursor( panCursor );
565   }
566 }
567
568 /*!
569   \brief Start rotation operation
570
571   Sets the corresponding cursor for the widget.
572 */
573 void OCCViewer_ViewWindow::activateRotation()
574 {
575   if ( !transformRequested() && !myCursorIsHand )
576     myCursor = cursor();                // save old cursor
577
578   if ( myOperation != ROTATE ) {
579     QPixmap rotatePixmap (imageRotateCursor);
580     QCursor rotCursor (rotatePixmap);
581     if( setTransformRequested ( ROTATE ) )
582       myViewPort->setCursor( rotCursor );
583   }
584 }
585
586 /*!
587   \brief Compute the gravity center.
588   \param theX used to return X coordinate of the gravity center
589   \param theY used to return Y coordinate of the gravity center
590   \param theZ used to return Z coordinate of the gravity center
591   \return \c true if the gravity center is computed
592 */
593 bool OCCViewer_ViewWindow::computeGravityCenter( double& theX, double& theY, double& theZ )
594 {
595   Handle(Visual3d_View) aView = myViewPort->getView()->View();
596
597   Standard_Real Xmin,Ymin,Zmin,Xmax,Ymax,Zmax,U,V,W ;
598   Standard_Real Umin,Vmin,Umax,Vmax ;
599   Standard_Integer Nstruct,Npoint ;
600   Graphic3d_MapOfStructure MySetOfStructures;
601
602   aView->DisplayedStructures (MySetOfStructures);
603   Nstruct = MySetOfStructures.Extent() ;
604
605   Graphic3d_MapIteratorOfMapOfStructure MyIterator(MySetOfStructures) ;
606   aView->ViewMapping().WindowLimit(Umin,Vmin,Umax,Vmax) ;
607   Npoint = 0 ; theX = theY = theZ = 0. ;
608   for( ; MyIterator.More(); MyIterator.Next()) {
609     if (!(MyIterator.Key())->IsEmpty()) {
610       (MyIterator.Key())->MinMaxValues(Xmin,Ymin,Zmin,
611                                          Xmax,Ymax,Zmax) ;
612
613       Standard_Real LIM = ShortRealLast() -1.;
614       if (!    (fabs(Xmin) > LIM || fabs(Ymin) > LIM || fabs(Zmin) > LIM
615                 ||  fabs(Xmax) > LIM || fabs(Ymax) > LIM || fabs(Zmax) > LIM )) {
616
617         aView->Projects(Xmin,Ymin,Zmin,U,V,W) ;
618         if( U >= Umin && U <= Umax && V >= Vmin && V <= Vmax ) {
619           Npoint++ ; theX += Xmin ; theY += Ymin ; theZ += Zmin ;
620         }
621         aView->Projects(Xmax,Ymin,Zmin,U,V,W) ;
622         if( U >= Umin && U <= Umax && V >= Vmin && V <= Vmax ) {
623           Npoint++ ; theX += Xmax ; theY += Ymin ; theZ += Zmin ;
624         }
625         aView->Projects(Xmin,Ymax,Zmin,U,V,W) ;
626         if( U >= Umin && U <= Umax && V >= Vmin && V <= Vmax ) {
627           Npoint++ ; theX += Xmin ; theY += Ymax ; theZ += Zmin ;
628         }
629         aView->Projects(Xmax,Ymax,Zmin,U,V,W) ;
630         if( U >= Umin && U <= Umax && V >= Vmin && V <= Vmax ) {
631           Npoint++ ; theX += Xmax ; theY += Ymax ; theZ += Zmin ;
632         }
633         aView->Projects(Xmin,Ymin,Zmax,U,V,W) ;
634         if( U >= Umin && U <= Umax && V >= Vmin && V <= Vmax ) {
635           Npoint++ ; theX += Xmin ; theY += Ymin ; theZ += Zmax ;
636         }
637         aView->Projects(Xmax,Ymin,Zmax,U,V,W) ;
638         if( U >= Umin && U <= Umax && V >= Vmin && V <= Vmax ) {
639           Npoint++ ; theX += Xmax ; theY += Ymin ; theZ += Zmax ;
640         }
641         aView->Projects(Xmin,Ymax,Zmax,U,V,W) ;
642         if( U >= Umin && U <= Umax && V >= Vmin && V <= Vmax ) {
643           Npoint++ ; theX += Xmin ; theY += Ymax ; theZ += Zmax ;
644         }
645         aView->Projects(Xmax,Ymax,Zmax,U,V,W) ;
646         if( U >= Umin && U <= Umax && V >= Vmin && V <= Vmax ) {
647           Npoint++ ; theX += Xmax ; theY += Ymax ; theZ += Zmax ;
648         }
649       }
650     }
651   }
652   if( Npoint > 0 ) {
653     theX /= Npoint ; theY /= Npoint ; theZ /= Npoint ;
654   }
655   return true;
656 }
657
658 /*!
659   \brief Set the gravity center as a rotation point.
660 */
661 void OCCViewer_ViewWindow::activateSetRotationGravity()
662 {
663   if ( myRotationPointSelection )
664   {
665     Handle(AIS_InteractiveContext) ic = myModel->getAISContext();
666     ic->CloseAllContexts();
667     myOperation = NOTHING;
668     myViewPort->setCursor( myCursor );
669     myCursorIsHand = false;
670     myRotationPointSelection = false;
671   }
672
673   myPrevPointType = myCurrPointType;
674   myCurrPointType = GRAVITY;
675
676   Standard_Real Xcenter, Ycenter, Zcenter;
677   if ( computeGravityCenter( Xcenter, Ycenter, Zcenter ) )
678     mySetRotationPointDlg->setCoords( Xcenter, Ycenter, Zcenter );
679 }
680
681 /*!
682   \brief Update gravity center in the "Set Rotation Point" dialog box.
683   \sa OCCViewer_SetRotationPointDlg class
684 */
685 void OCCViewer_ViewWindow::updateGravityCoords()
686 {
687   if ( mySetRotationPointDlg && mySetRotationPointDlg->isVisible() && myCurrPointType == GRAVITY )
688   {
689     Standard_Real Xcenter, Ycenter, Zcenter;
690     if ( computeGravityCenter( Xcenter, Ycenter, Zcenter ) )
691       mySetRotationPointDlg->setCoords( Xcenter, Ycenter, Zcenter );
692   }
693 }
694
695 /*!
696   \brief Set the point selected by the user as a rotation point.
697   \param theX X coordinate of the rotation point
698   \param theY Y coordinate of the rotation point
699   \param theZ Z coordinate of the rotation point
700 */
701 void OCCViewer_ViewWindow::activateSetRotationSelected( double theX, double theY, double theZ )
702 {
703   if ( myRotationPointSelection )
704   {
705     Handle(AIS_InteractiveContext) ic = myModel->getAISContext();
706     ic->CloseAllContexts();
707     myOperation = NOTHING;
708     myViewPort->setCursor( myCursor );
709     myCursorIsHand = false;
710     myRotationPointSelection = false;
711   }
712
713   myPrevPointType = myCurrPointType;
714   myCurrPointType = SELECTED;
715   mySelectedPoint.SetCoord(theX,theY,theZ);
716 }
717
718 /*!
719   \brief Start the point selection process.
720 */
721 void OCCViewer_ViewWindow::activateStartPointSelection()
722 {
723   myPrevPointType = myCurrPointType;
724   myCurrPointType = SELECTED;
725
726   // activate selection ------>
727   Handle(AIS_InteractiveContext) ic = myModel->getAISContext();
728
729   ic->OpenLocalContext();
730
731   AIS_ListOfInteractive aList;
732   ic->DisplayedObjects( aList );
733   for ( AIS_ListIteratorOfListOfInteractive it( aList ); it.More(); it.Next() )
734   {
735     Handle(AIS_InteractiveObject) anObj = it.Value();
736     if ( !anObj.IsNull() && anObj->HasPresentation() &&
737          anObj->IsKind( STANDARD_TYPE(AIS_Shape) ) )
738     {
739       ic->Load(anObj,-1);
740       ic->Activate(anObj,AIS_Shape::SelectionMode(TopAbs_VERTEX));
741      }
742   }
743   // activate selection <------
744
745   if ( !myCursorIsHand )
746   {
747     QCursor handCursor (Qt::PointingHandCursor);
748     myCursorIsHand = true;
749     myCursor = cursor();
750     myViewPort->setCursor( handCursor );
751   }
752   myRotationPointSelection = true;
753 }
754
755 /*!
756   \brief Start global panning operation
757
758   Sets the corresponding cursor for the widget.
759 */
760 void OCCViewer_ViewWindow::activateGlobalPanning()
761 {
762   Handle(V3d_View) aView3d = myViewPort->getView();
763   if ( !aView3d.IsNull() ) {
764     QPixmap globalPanPixmap (imageCrossCursor);
765     QCursor glPanCursor (globalPanPixmap);
766     myCurScale = aView3d->Scale();
767     aView3d->FitAll(0.01, false);
768     myCursor = cursor();                // save old cursor
769     myViewPort->fitAll(); // fits view before selecting a new scene center
770     if( setTransformRequested( PANGLOBAL ) )
771       myViewPort->setCursor( glPanCursor );
772   }
773 }
774
775 /*!
776   \brief Starts fit operation.
777
778   Sets the corresponding cursor for the widget.
779 */
780 void OCCViewer_ViewWindow::activateWindowFit()
781 {
782   if ( !transformRequested() && !myCursorIsHand )
783     myCursor = cursor();                /* save old cursor */
784
785   if ( myOperation != WINDOWFIT ) {
786     QCursor handCursor (Qt::PointingHandCursor);
787     if( setTransformRequested ( WINDOWFIT ) )
788     {
789       myViewPort->setCursor ( handCursor );
790       myCursorIsHand = true;
791     }
792   }
793 }
794
795 /*!
796   \brief Start delayed viewer operation.
797 */
798 bool OCCViewer_ViewWindow::setTransformRequested( OperationType op )
799 {
800   bool ok = transformEnabled( op );
801   myOperation = ok ? op : NOTHING;
802   myViewPort->setMouseTracking( myOperation == NOTHING );  
803   return ok;
804 }
805
806 /*!
807   \brief Handle mouse move event.
808   \param theEvent mouse event
809 */
810 void OCCViewer_ViewWindow::vpMouseMoveEvent( QMouseEvent* theEvent )
811 {
812   if ( myIsKeyFree && interactionStyle() == SUIT_ViewModel::KEY_FREE ) {
813     myIsKeyFree = false;
814     switch ( getButtonState( theEvent, interactionStyle() ) ) {
815     case ZOOMVIEW:
816       myViewPort->startZoomAtPoint( myStartX, myStartY );
817       activateZoom();
818       break;
819     case PANVIEW:
820       activatePanning();
821       break;
822     case ROTATE:
823       activateRotation();
824       myViewPort->startRotation(myStartX, myStartY, myCurrPointType, mySelectedPoint);
825       break;
826     default:
827       break;
828     }
829   }
830
831   myCurrX = theEvent->x();
832   myCurrY = theEvent->y();
833   switch (myOperation) {
834   case ROTATE:
835     myViewPort->rotate(myCurrX, myCurrY, myCurrPointType, mySelectedPoint);
836     break;
837
838   case ZOOMVIEW:
839     myViewPort->zoom(myStartX, myStartY, myCurrX, myCurrY);
840     myStartX = myCurrX;
841     myStartY = myCurrY;
842     break;
843
844   case PANVIEW:
845     myViewPort->pan(myCurrX - myStartX, myStartY - myCurrY);
846     myStartX = myCurrX;
847     myStartY = myCurrY;
848     break;
849
850 /*    case WINDOWFIT:
851     myDrawRect = true;
852     repaint();
853     break;
854 */
855   case PANGLOBAL:
856     break;
857
858   default:
859     if ( myRotationPointSelection || isSketcherStyle() )
860     {
861       emit mouseMoving( this, theEvent );
862     }
863     else
864     {
865       int aState = theEvent->modifiers();
866       int aButton = theEvent->buttons();
867       int anInteractionStyle = interactionStyle();
868       if ( ( anInteractionStyle == SUIT_ViewModel::STANDARD &&
869            aButton == Qt::LeftButton && ( aState == Qt::NoModifier || Qt::ShiftModifier ) ) ||
870          ( anInteractionStyle == SUIT_ViewModel::KEY_FREE &&
871          aButton == Qt::LeftButton && ( aState == Qt::ControlModifier || aState == ( Qt::ControlModifier|Qt::ShiftModifier ) ) ) ) {
872         myDrawRect = myEnableDrawMode;
873         if ( myDrawRect ) {
874           drawRect();
875           if ( !myCursorIsHand )        {   // we are going to sketch a rectangle
876             QCursor handCursor (Qt::PointingHandCursor);
877             myCursorIsHand = true;
878             myCursor = cursor();
879             myViewPort->setCursor( handCursor );
880           }
881         }
882         emit mouseMoving( this, theEvent );
883       }
884       else if ( ( anInteractionStyle == SUIT_ViewModel::STANDARD &&
885                 aButton == Qt::RightButton && ( aState == Qt::NoModifier || Qt::ShiftModifier ) ) ||
886                 ( anInteractionStyle == SUIT_ViewModel::KEY_FREE &&
887                 aButton == Qt::RightButton && ( aState == Qt::ControlModifier || aState == ( Qt::ControlModifier|Qt::ShiftModifier ) ) ) ) {
888         OCCViewer_ViewSketcher* sketcher = 0;
889         QList<OCCViewer_ViewSketcher*>::Iterator it;
890         for ( it = mySketchers.begin(); it != mySketchers.end() && !sketcher; ++it )
891         {
892           OCCViewer_ViewSketcher* sk = (*it);
893           if( sk->isDefault() && sk->sketchButton() == aButton )
894             sketcher = sk;
895         }
896         if ( sketcher && myCurSketch == -1 )
897         {
898           activateSketching( sketcher->type() );
899           if ( mypSketcher )
900           {
901             myCurSketch = mypSketcher->sketchButton();
902
903             if ( l_mbPressEvent )
904             {
905               QApplication::sendEvent( getViewPort(), l_mbPressEvent );
906               delete l_mbPressEvent;
907               l_mbPressEvent = 0;
908             }
909             QApplication::sendEvent( getViewPort(), theEvent );
910           }
911         }
912       }
913       else
914         emit mouseMoving( this, theEvent );
915     }
916   }
917 }
918
919 /*!
920   \brief Handle mouse release event.
921   \param theEvent mouse event
922 */
923 void OCCViewer_ViewWindow::vpMouseReleaseEvent(QMouseEvent* theEvent)
924 {
925   switch ( myOperation ) {
926   case NOTHING:
927     {
928       int prevState = myCurSketch;
929       if(theEvent->button() == Qt::RightButton)
930       {
931         QList<OCCViewer_ViewSketcher*>::Iterator it;
932         for ( it = mySketchers.begin(); it != mySketchers.end() && myCurSketch != -1; ++it )
933         {
934           OCCViewer_ViewSketcher* sk = (*it);
935           if( ( sk->sketchButton() & theEvent->button() ) && sk->sketchButton() == myCurSketch )
936             myCurSketch = -1;
937         }
938       }
939
940       emit mouseReleased(this, theEvent);
941       if(theEvent->button() == Qt::RightButton && prevState == -1)
942       {
943         QContextMenuEvent aEvent( QContextMenuEvent::Mouse,
944                                   theEvent->pos(), theEvent->globalPos() );
945         emit contextMenuRequested( &aEvent );
946       }
947     }
948     break;
949   case ROTATE:
950     myViewPort->endRotation();
951     resetState();
952     break;
953
954   case PANVIEW:
955   case ZOOMVIEW:
956     resetState();
957     break;
958
959   case PANGLOBAL:
960     if ( theEvent->button() == Qt::LeftButton ) {
961       myViewPort->setCenter( theEvent->x(), theEvent->y() );
962       myViewPort->getView()->SetScale(myCurScale);
963       resetState();
964     }
965     break;
966
967   case WINDOWFIT:
968     if ( theEvent->button() == Qt::LeftButton ) {
969       myCurrX = theEvent->x();
970       myCurrY = theEvent->y();
971       drawRect();
972       QRect rect = SUIT_Tools::makeRect(myStartX, myStartY, myCurrX, myCurrY);
973       if ( !rect.isEmpty() ) myViewPort->fitRect(rect);
974       endDrawRect();
975       resetState();
976     }
977     break;
978   }
979
980   // NOTE: viewer 3D detects a rectangle of selection using this event
981   // so we must emit it BEFORE resetting the selection rectangle
982
983   if ( theEvent->button() == Qt::LeftButton && myDrawRect ) {
984     drawRect();
985     endDrawRect();
986     resetState();
987     myViewPort->update();
988   }
989
990   if ( l_mbPressEvent )
991   {
992     delete l_mbPressEvent;
993     l_mbPressEvent = 0;
994   }
995 }
996
997 /*!
998   \brief Reset the viewport to its initial state
999   ( no transformations in process etc. )
1000 */
1001 void OCCViewer_ViewWindow::resetState()
1002 {
1003   myDrawRect = false;
1004
1005   if ( myRotationPointSelection )
1006   {
1007     QCursor handCursor (Qt::PointingHandCursor);
1008     myViewPort->setCursor( handCursor );
1009   }
1010   else
1011   {
1012     if ( transformRequested() || myCursorIsHand )
1013       myViewPort->setCursor( myCursor );
1014     myCursorIsHand = false;
1015   }
1016
1017   if ( transformRequested() )
1018     emit vpTransformationFinished (myOperation);
1019
1020   setTransformInProcess( false );
1021   setTransformRequested( NOTHING );
1022 }
1023
1024
1025 /*!
1026   \brief Draw rubber band rectangle.
1027 */
1028 void OCCViewer_ViewWindow::drawRect()
1029 {
1030   if ( !myRectBand ) {
1031     myRectBand = new QtxRectRubberBand( myViewPort );
1032     //QPalette palette;
1033     //palette.setColor(myRectBand->foregroundRole(), Qt::white);
1034     //myRectBand->setPalette(palette);
1035   }
1036   //myRectBand->hide();
1037   
1038   myRectBand->setUpdatesEnabled ( false );
1039   QRect aRect = SUIT_Tools::makeRect(myStartX, myStartY, myCurrX, myCurrY);
1040   myRectBand->initGeometry( aRect );
1041
1042   if ( !myRectBand->isVisible() )
1043     myRectBand->show();
1044
1045   myRectBand->setUpdatesEnabled ( true );
1046   //myRectBand->repaint();
1047
1048   //myRectBand->setVisible( aRect.isValid() );
1049   //if ( myRectBand->isVisible() )
1050   //  myRectBand->repaint();
1051   //else
1052   //  myRectBand->show();
1053   //myRectBand->repaint();
1054 }
1055
1056 /*!
1057   \brief Clear rubber band rectangle on the end on the dragging operation.
1058 */
1059 void OCCViewer_ViewWindow::endDrawRect()
1060 {
1061   //delete myRectBand;
1062   //myRectBand = 0;
1063   if ( myRectBand )
1064     {
1065       myRectBand->clearGeometry();
1066       myRectBand->hide();
1067     }
1068 }
1069
1070 /*!
1071   \brief Create actions.
1072 */
1073 void OCCViewer_ViewWindow::createActions()
1074 {
1075   if( !toolMgr()->isEmpty() )
1076     return;
1077   
1078   SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
1079
1080   QtxAction* aAction;
1081
1082   // Dump view
1083   aAction = new QtxAction(tr("MNU_DUMP_VIEW"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_VIEW_DUMP" ) ),
1084                            tr( "MNU_DUMP_VIEW" ), 0, this);
1085   aAction->setStatusTip(tr("DSC_DUMP_VIEW"));
1086   connect(aAction, SIGNAL(triggered()), this, SLOT(onDumpView()));
1087   toolMgr()->registerAction( aAction, DumpId );
1088
1089   // FitAll
1090   aAction = new QtxAction(tr("MNU_FITALL"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_VIEW_FITALL" ) ),
1091                            tr( "MNU_FITALL" ), 0, this);
1092   aAction->setStatusTip(tr("DSC_FITALL"));
1093   connect(aAction, SIGNAL(triggered()), this, SLOT(onFitAll()));
1094   toolMgr()->registerAction( aAction, FitAllId );
1095
1096   // FitRect
1097   aAction = new QtxAction(tr("MNU_FITRECT"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_VIEW_FITAREA" ) ),
1098                            tr( "MNU_FITRECT" ), 0, this);
1099   aAction->setStatusTip(tr("DSC_FITRECT"));
1100   connect(aAction, SIGNAL(triggered()), this, SLOT(activateWindowFit()));
1101   toolMgr()->registerAction( aAction, FitRectId );
1102   
1103   // Zoom
1104   aAction = new QtxAction(tr("MNU_ZOOM_VIEW"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_VIEW_ZOOM" ) ),
1105                            tr( "MNU_ZOOM_VIEW" ), 0, this);
1106   aAction->setStatusTip(tr("DSC_ZOOM_VIEW"));
1107   connect(aAction, SIGNAL(triggered()), this, SLOT(activateZoom()));
1108   toolMgr()->registerAction( aAction, ZoomId );
1109
1110   // Panning
1111   aAction = new QtxAction(tr("MNU_PAN_VIEW"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_VIEW_PAN" ) ),
1112                            tr( "MNU_PAN_VIEW" ), 0, this);
1113   aAction->setStatusTip(tr("DSC_PAN_VIEW"));
1114   connect(aAction, SIGNAL(triggered()), this, SLOT(activatePanning()));
1115   toolMgr()->registerAction( aAction, PanId );
1116
1117   // Global Panning
1118   aAction = new QtxAction(tr("MNU_GLOBALPAN_VIEW"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_VIEW_GLOBALPAN" ) ),
1119                            tr( "MNU_GLOBALPAN_VIEW" ), 0, this);
1120   aAction->setStatusTip(tr("DSC_GLOBALPAN_VIEW"));
1121   connect(aAction, SIGNAL(triggered()), this, SLOT(activateGlobalPanning()));
1122   toolMgr()->registerAction( aAction, GlobalPanId );
1123
1124   // Rotation Point
1125   mySetRotationPointAction = new QtxAction(tr("MNU_CHANGINGROTATIONPOINT_VIEW"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_VIEW_ROTATION_POINT" ) ),
1126                            tr( "MNU_CHANGINGROTATIONPOINT_VIEW" ), 0, this);
1127   mySetRotationPointAction->setStatusTip(tr("DSC_CHANGINGROTATIONPOINT_VIEW"));
1128   mySetRotationPointAction->setCheckable( true );
1129   connect(mySetRotationPointAction, SIGNAL(toggled( bool )), this, SLOT(onSetRotationPoint( bool )));
1130   toolMgr()->registerAction( mySetRotationPointAction, ChangeRotationPointId );
1131
1132   // Rotation
1133   aAction = new QtxAction(tr("MNU_ROTATE_VIEW"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_VIEW_ROTATE" ) ),
1134                            tr( "MNU_ROTATE_VIEW" ), 0, this);
1135   aAction->setStatusTip(tr("DSC_ROTATE_VIEW"));
1136   connect(aAction, SIGNAL(triggered()), this, SLOT(activateRotation()));
1137   toolMgr()->registerAction( aAction, RotationId );
1138
1139   // Projections
1140   aAction = new QtxAction(tr("MNU_FRONT_VIEW"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_VIEW_FRONT" ) ),
1141                            tr( "MNU_FRONT_VIEW" ), 0, this, false, "Viewers:Front view");
1142   aAction->setStatusTip(tr("DSC_FRONT_VIEW"));
1143   connect(aAction, SIGNAL(triggered()), this, SLOT(onFrontView()));
1144   this->addAction(aAction);
1145   toolMgr()->registerAction( aAction, FrontId );
1146
1147   aAction = new QtxAction(tr("MNU_BACK_VIEW"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_VIEW_BACK" ) ),
1148                            tr( "MNU_BACK_VIEW" ), 0, this, false, "Viewers:Back view");
1149   aAction->setStatusTip(tr("DSC_BACK_VIEW"));
1150   connect(aAction, SIGNAL(triggered()), this, SLOT(onBackView()));
1151   this->addAction(aAction);
1152   toolMgr()->registerAction( aAction, BackId );
1153
1154   aAction = new QtxAction(tr("MNU_TOP_VIEW"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_VIEW_TOP" ) ),
1155                            tr( "MNU_TOP_VIEW" ), 0, this, false, "Viewers:Top view");
1156   aAction->setStatusTip(tr("DSC_TOP_VIEW"));
1157   connect(aAction, SIGNAL(triggered()), this, SLOT(onTopView()));
1158   this->addAction(aAction);
1159   toolMgr()->registerAction( aAction, TopId );
1160
1161   aAction = new QtxAction(tr("MNU_BOTTOM_VIEW"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_VIEW_BOTTOM" ) ),
1162                            tr( "MNU_BOTTOM_VIEW" ), 0, this, false, "Viewers:Bottom view");
1163   aAction->setStatusTip(tr("DSC_BOTTOM_VIEW"));
1164   connect(aAction, SIGNAL(triggered()), this, SLOT(onBottomView()));
1165   this->addAction(aAction);
1166   toolMgr()->registerAction( aAction, BottomId );
1167   
1168   aAction = new QtxAction(tr("MNU_LEFT_VIEW"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_VIEW_LEFT" ) ),
1169                            tr( "MNU_LEFT_VIEW" ), 0, this, false, "Viewers:Left view");
1170   aAction->setStatusTip(tr("DSC_LEFT_VIEW"));
1171   connect(aAction, SIGNAL(triggered()), this, SLOT(onLeftView()));
1172   this->addAction(aAction);
1173   toolMgr()->registerAction( aAction, LeftId );
1174
1175   aAction = new QtxAction(tr("MNU_RIGHT_VIEW"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_VIEW_RIGHT" ) ),
1176                            tr( "MNU_RIGHT_VIEW" ), 0, this, false, "Viewers:Right view");
1177   aAction->setStatusTip(tr("DSC_RIGHT_VIEW"));
1178   connect(aAction, SIGNAL(triggered()), this, SLOT(onRightView()));
1179   this->addAction(aAction);
1180   toolMgr()->registerAction( aAction, RightId );
1181
1182   // rotate anticlockwise
1183   aAction = new QtxAction(tr("MNU_ANTICLOCKWISE_VIEW"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_VIEW_ANTICLOCKWISE" ) ),
1184                            tr( "MNU_ANTICLOCKWISE_VIEW" ), 0, this, false, "Viewers:Rotate anticlockwise");
1185   aAction->setStatusTip(tr("DSC_ANTICLOCKWISE_VIEW"));
1186   connect(aAction, SIGNAL(triggered()), this, SLOT(onAntiClockWiseView()));
1187   this->addAction(aAction);
1188   toolMgr()->registerAction( aAction, AntiClockWiseId );
1189
1190   // rotate clockwise
1191   aAction = new QtxAction(tr("MNU_CLOCKWISE_VIEW"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_VIEW_CLOCKWISE" ) ),
1192                            tr( "MNU_CLOCKWISE_VIEW" ), 0, this, false, "Viewers:Rotate clockwise");
1193   aAction->setStatusTip(tr("DSC_CLOCKWISE_VIEW"));
1194   connect(aAction, SIGNAL(triggered()), this, SLOT(onClockWiseView()));
1195   this->addAction(aAction);
1196   toolMgr()->registerAction( aAction, ClockWiseId );
1197
1198   // Reset
1199   aAction = new QtxAction(tr("MNU_RESET_VIEW"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_VIEW_RESET" ) ),
1200                            tr( "MNU_RESET_VIEW" ), 0, this, false, "Viewers:Reset view");
1201   aAction->setStatusTip(tr("DSC_RESET_VIEW"));
1202   connect(aAction, SIGNAL(triggered()), this, SLOT(onResetView()));
1203   this->addAction(aAction);
1204   toolMgr()->registerAction( aAction, ResetId );
1205
1206   // Clone
1207   aAction = new QtxAction(tr("MNU_CLONE_VIEW"),
1208                           aResMgr->loadPixmap("OCCViewer", tr("ICON_OCCVIEWER_CLONE_VIEW")),
1209                           tr("MNU_CLONE_VIEW"), 0, this);
1210   aAction->setStatusTip(tr("DSC_CLONE_VIEW"));
1211   connect(aAction, SIGNAL(triggered()), this, SLOT(onCloneView()));
1212   toolMgr()->registerAction( aAction, CloneId );
1213
1214   aAction = new QtxAction (tr ("MNU_CLIPPING"), aResMgr->loadPixmap ("OCCViewer", tr ("ICON_OCCVIEWER_CLIPPING")),
1215                                       tr ("MNU_CLIPPING"), 0, this);
1216   aAction->setStatusTip (tr ("DSC_CLIPPING"));
1217   aAction->setCheckable (true);
1218   connect (aAction, SIGNAL (toggled (bool)), this, SLOT (onClipping (bool)));
1219   toolMgr()->registerAction (aAction, ClippingId);
1220
1221   aAction = new QtxAction(tr("MNU_SHOOT_VIEW"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_SHOOT_VIEW" ) ),
1222                            tr( "MNU_SHOOT_VIEW" ), 0, this);
1223   aAction->setStatusTip(tr("DSC_SHOOT_VIEW"));
1224   connect(aAction, SIGNAL(triggered()), this, SLOT(onMemorizeView()));
1225   toolMgr()->registerAction( aAction, MemId );
1226
1227   aAction = new QtxAction(tr("MNU_PRESETS_VIEW"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_PRESETS_VIEW" ) ),
1228                            tr( "MNU_PRESETS_VIEW" ), 0, this);
1229   aAction->setStatusTip(tr("DSC_PRESETS_VIEW"));
1230   connect(aAction, SIGNAL(triggered()), this, SLOT(onRestoreView()));
1231   toolMgr()->registerAction( aAction, RestoreId );
1232
1233   if (myModel->trihedronActivated()) {
1234     aAction = new QtxAction(tr("MNU_SHOW_TRIHEDRE"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_VIEW_TRIHEDRON" ) ),
1235                              tr( "MNU_SHOW_TRIHEDRE" ), 0, this);
1236     aAction->setStatusTip(tr("DSC_SHOW_TRIHEDRE"));
1237     connect(aAction, SIGNAL(triggered()), this, SLOT(onTrihedronShow()));
1238     toolMgr()->registerAction( aAction, TrihedronShowId );
1239   }
1240
1241   // Scale
1242   aAction = new QtxAction(tr("MNU_SCALING"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_SCALING" ) ),
1243                            tr( "MNU_SCALING" ), 0, this);
1244   aAction->setStatusTip(tr("DSC_SCALING"));
1245   connect(aAction, SIGNAL(triggered()), this, SLOT(onAxialScale()));
1246   toolMgr()->registerAction( aAction, AxialScaleId );
1247
1248   // Enable/disable preselection
1249   aAction = new QtxAction(tr("MNU_ENABLE_PRESELECTION"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_PRESELECTION" ) ),
1250                           tr( "MNU_ENABLE_PRESELECTION" ), 0, this);
1251   aAction->setStatusTip(tr("DSC_ENABLE_PRESELECTION"));
1252   aAction->setCheckable(true);
1253   connect(aAction, SIGNAL(toggled(bool)), this, SLOT(onSwitchPreselection(bool)));
1254   toolMgr()->registerAction( aAction, SwitchPreselectionId );
1255
1256   // Enable/disable selection
1257   aAction = new QtxAction(tr("MNU_ENABLE_SELECTION"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_SELECTION" ) ),
1258                           tr( "MNU_ENABLE_SELECTION" ), 0, this);
1259   aAction->setStatusTip(tr("DSC_ENABLE_SELECTION"));
1260   aAction->setCheckable(true);
1261   connect(aAction, SIGNAL(toggled(bool)), this, SLOT(onSwitchSelection(bool)));
1262   toolMgr()->registerAction( aAction, SwitchSelectionId );
1263
1264   // Graduated axes 
1265   aAction = new QtxAction(tr("MNU_GRADUATED_AXES"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_GRADUATED_AXES" ) ),
1266                            tr( "MNU_GRADUATED_AXES" ), 0, this);
1267   aAction->setStatusTip(tr("DSC_GRADUATED_AXES"));
1268   connect(aAction, SIGNAL(triggered()), this, SLOT(onGraduatedAxes()));
1269   toolMgr()->registerAction( aAction, GraduatedAxesId );
1270
1271   // Active only ambient light or not
1272   aAction = new QtxAction(tr("MNU_AMBIENT"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_AMBIENT" ) ),
1273                            tr( "MNU_AMBIENT" ), 0, this);
1274   aAction->setStatusTip(tr("DSC_AMBIENT"));
1275   connect(aAction, SIGNAL(triggered()), this, SLOT(onAmbientToogle()));
1276   toolMgr()->registerAction( aAction, AmbientId );
1277
1278   // Switch between interaction styles
1279   aAction = new QtxAction(tr("MNU_STYLE_SWITCH"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_STYLE_SWITCH" ) ),
1280                           tr( "MNU_STYLE_SWITCH" ), 0, this);
1281   aAction->setStatusTip(tr("DSC_STYLE_SWITCH"));
1282   aAction->setCheckable(true);
1283   connect(aAction, SIGNAL(toggled(bool)), this, SLOT(onSwitchInteractionStyle(bool)));
1284   toolMgr()->registerAction( aAction, SwitchInteractionStyleId );
1285
1286   // Switch between zooming styles
1287   aAction = new QtxAction(tr("MNU_ZOOMING_STYLE_SWITCH"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_ZOOMING_STYLE_SWITCH" ) ),
1288                           tr( "MNU_ZOOMING_STYLE_SWITCH" ), 0, this);
1289   aAction->setStatusTip(tr("DSC_ZOOMING_STYLE_SWITCH"));
1290   aAction->setCheckable(true);
1291   connect(aAction, SIGNAL(toggled(bool)), this, SLOT(onSwitchZoomingStyle(bool)));
1292   toolMgr()->registerAction( aAction, SwitchZoomingStyleId );
1293
1294   // Maximized view
1295   aAction = new QtxAction(tr("MNU_MINIMIZE_VIEW"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_MINIMIZE" ) ),
1296                           tr( "MNU_MINIMIZE_VIEW" ), 0, this );
1297   aAction->setStatusTip(tr("DSC_MINIMIZE_VIEW"));
1298   connect(aAction, SIGNAL(triggered()), this, SLOT(onMaximizedView()));
1299   toolMgr()->registerAction( aAction, MaximizedId );
1300
1301   // Return to 3d view
1302   if (my2dMode!=No2dMode){
1303     aAction = new QtxAction(tr("MNU_RETURN_3D_VIEW"), aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_RETURN_3D_VIEW" ) ),
1304                             tr( "MNU_RETURN_3D_VIEW" ), 0, this );
1305     aAction->setStatusTip(tr("DSC_RETURN_3D_VIEW"));
1306     connect(aAction, SIGNAL(triggered()), this, SLOT(returnTo3dView()));
1307     toolMgr()->registerAction( aAction, ReturnTo3dViewId );
1308   }
1309
1310   // Synchronize View 
1311   toolMgr()->registerAction( synchronizeAction(), SynchronizeId );
1312 }
1313
1314 /*!
1315   \brief Create toolbar.
1316 */
1317 void OCCViewer_ViewWindow::createToolBar()
1318 {
1319   QString aToolbarName;
1320   switch (my2dMode) {
1321   case XYPlane:
1322     aToolbarName = tr( "LBL_XYTOOLBAR_LABEL" );
1323     break;
1324   case XZPlane:
1325     aToolbarName = tr( "LBL_XZTOOLBAR_LABEL" );
1326     break;
1327   case YZPlane:
1328     aToolbarName = tr( "LBL_YZTOOLBAR_LABEL" );
1329     break;
1330   default:
1331     aToolbarName = tr( "LBL_3DTOOLBAR_LABEL" );
1332   }
1333   
1334   int tid = toolMgr()->createToolBar( aToolbarName, false );
1335   if ( my2dMode != No2dMode ){
1336     toolMgr()->append( ReturnTo3dViewId, tid );
1337     toolMgr()->append( toolMgr()->separator(), tid );
1338   }
1339   toolMgr()->append( DumpId, tid );
1340   toolMgr()->append( SwitchInteractionStyleId, tid );
1341 #if OCC_VERSION_LARGE > 0x0603000A // available only with OCC-6.3-sp11 and higher version
1342   toolMgr()->append( SwitchZoomingStyleId, tid );
1343 #endif
1344   toolMgr()->append( SwitchPreselectionId, tid );
1345   toolMgr()->append( SwitchSelectionId, tid );
1346   if( myModel->trihedronActivated() )
1347     toolMgr()->append( TrihedronShowId, tid );
1348
1349   QtxMultiAction* aScaleAction = new QtxMultiAction( this );
1350   aScaleAction->insertAction( toolMgr()->action( FitAllId ) );
1351   aScaleAction->insertAction( toolMgr()->action( FitRectId ) );
1352   aScaleAction->insertAction( toolMgr()->action( ZoomId ) );
1353   toolMgr()->append( aScaleAction, tid );
1354
1355   QtxMultiAction* aPanningAction = new QtxMultiAction( this );
1356   aPanningAction->insertAction( toolMgr()->action( PanId ) );
1357   aPanningAction->insertAction( toolMgr()->action( GlobalPanId ) );
1358   toolMgr()->append( aPanningAction, tid );
1359
1360   if (my2dMode == No2dMode) {
1361     toolMgr()->append( ChangeRotationPointId, tid );
1362     toolMgr()->append( RotationId, tid );
1363
1364     QtxMultiAction* aViewsAction = new QtxMultiAction( this );
1365     aViewsAction->insertAction( toolMgr()->action( FrontId ) );
1366     aViewsAction->insertAction( toolMgr()->action( BackId ) );
1367     aViewsAction->insertAction( toolMgr()->action( TopId ) );
1368     aViewsAction->insertAction( toolMgr()->action( BottomId ) );
1369     aViewsAction->insertAction( toolMgr()->action( LeftId ) );
1370     aViewsAction->insertAction( toolMgr()->action( RightId ) );
1371     toolMgr()->append( aViewsAction, tid );
1372
1373     toolMgr()->append( AntiClockWiseId, tid );
1374     toolMgr()->append( ClockWiseId, tid );
1375
1376     toolMgr()->append( ResetId, tid );
1377   }
1378
1379   QtxMultiAction* aMemAction = new QtxMultiAction( this );
1380   aMemAction->insertAction( toolMgr()->action( MemId ) );
1381   aMemAction->insertAction( toolMgr()->action( RestoreId ) );
1382   toolMgr()->append( aMemAction, tid );
1383
1384   toolMgr()->append( toolMgr()->separator(), tid );
1385   toolMgr()->append( CloneId, tid );
1386   
1387   toolMgr()->append( toolMgr()->separator(), tid );
1388   toolMgr()->append( ClippingId, tid );
1389   toolMgr()->append( AxialScaleId, tid );
1390 #if OCC_VERSION_LARGE > 0x06030009 // available only with OCC-6.3-sp10 and higher version
1391   toolMgr()->append( GraduatedAxesId, tid );
1392 #endif
1393   toolMgr()->append( AmbientId, tid );
1394
1395   toolMgr()->append( MaximizedId, tid );
1396   toolMgr()->append( SynchronizeId, tid );
1397 }
1398
1399 /*!
1400   \brief Perform 'fit all' operation.
1401 */
1402 void OCCViewer_ViewWindow::onViewFitAll()
1403 {
1404   myViewPort->fitAll();
1405 }
1406
1407 /*!
1408   \brief Perform "front view" transformation.
1409 */
1410 void OCCViewer_ViewWindow::onFrontView()
1411 {
1412   emit vpTransformationStarted ( FRONTVIEW );
1413   Handle(V3d_View) aView3d = myViewPort->getView();
1414   if ( !aView3d.IsNull() ) aView3d->SetProj (V3d_Xpos);
1415   onViewFitAll();
1416   emit vpTransformationFinished ( FRONTVIEW );
1417 }
1418
1419 /*!
1420   \brief Perform "back view" transformation.
1421 */
1422 void OCCViewer_ViewWindow::onBackView()
1423 {
1424   emit vpTransformationStarted ( BACKVIEW );
1425   Handle(V3d_View) aView3d = myViewPort->getView();
1426   if ( !aView3d.IsNull() ) aView3d->SetProj (V3d_Xneg);
1427   onViewFitAll();
1428   emit vpTransformationFinished ( BACKVIEW );
1429 }
1430
1431 /*!
1432   \brief Perform "top view" transformation.
1433 */
1434 void OCCViewer_ViewWindow::onTopView()
1435 {
1436   emit vpTransformationStarted ( TOPVIEW );
1437   Handle(V3d_View) aView3d = myViewPort->getView();
1438   if ( !aView3d.IsNull() ) aView3d->SetProj (V3d_Zpos);
1439   onViewFitAll();
1440   emit vpTransformationFinished ( TOPVIEW );
1441 }
1442
1443 /*!
1444   \brief Perform "bottom view" transformation.
1445 */
1446 void OCCViewer_ViewWindow::onBottomView()
1447 {
1448   emit vpTransformationStarted ( BOTTOMVIEW );
1449   Handle(V3d_View) aView3d = myViewPort->getView();
1450   if ( !aView3d.IsNull() ) aView3d->SetProj (V3d_Zneg);
1451   onViewFitAll();
1452   emit vpTransformationFinished ( BOTTOMVIEW );
1453 }
1454
1455 /*!
1456   \brief Perform "left view" transformation.
1457 */
1458 void OCCViewer_ViewWindow::onLeftView()
1459 {
1460   emit vpTransformationStarted ( LEFTVIEW );
1461   Handle(V3d_View) aView3d = myViewPort->getView();
1462   if ( !aView3d.IsNull() ) aView3d->SetProj (V3d_Yneg);
1463   onViewFitAll();
1464   emit vpTransformationFinished ( LEFTVIEW );
1465 }
1466
1467 /*!
1468   \brief Perform "right view" transformation.
1469 */
1470 void OCCViewer_ViewWindow::onRightView()
1471 {
1472   emit vpTransformationStarted ( RIGHTVIEW );
1473   Handle(V3d_View) aView3d = myViewPort->getView();
1474   if ( !aView3d.IsNull() ) aView3d->SetProj (V3d_Ypos);
1475   onViewFitAll();
1476   emit vpTransformationFinished ( RIGHTVIEW );
1477 }
1478
1479 /*!
1480   \brief Rotate view 90 degrees clockwise
1481 */
1482 void OCCViewer_ViewWindow::onClockWiseView()
1483 {
1484   emit vpTransformationStarted ( CLOCKWISEVIEW );
1485   myViewPort->rotateXY( 90. );
1486   emit vpTransformationFinished ( CLOCKWISEVIEW );
1487 }
1488
1489 /*!
1490   \brief Rotate view 90 degrees conterclockwise
1491 */
1492 void OCCViewer_ViewWindow::onAntiClockWiseView()
1493 {
1494   emit vpTransformationStarted ( ANTICLOCKWISEVIEW );
1495   myViewPort->rotateXY( -90. );
1496   emit vpTransformationFinished ( ANTICLOCKWISEVIEW );
1497 }
1498
1499 /*!
1500   \brief Perform "reset view" transformation.
1501
1502   Sets default orientation of the viewport camera.
1503 */
1504 void OCCViewer_ViewWindow::onResetView()
1505 {
1506   emit vpTransformationStarted( RESETVIEW );
1507   bool upd = myViewPort->getView()->SetImmediateUpdate( false );
1508   myViewPort->getView()->Reset( false );
1509   myViewPort->fitAll( false, true, false );
1510   myViewPort->getView()->SetImmediateUpdate( upd );
1511   myViewPort->getView()->Update();
1512   emit vpTransformationFinished( RESETVIEW );
1513 }
1514
1515 /*!
1516   \brief Perform "fit all" transformation.
1517 */
1518 void OCCViewer_ViewWindow::onFitAll()
1519 {
1520   emit vpTransformationStarted( FITALLVIEW );
1521   myViewPort->fitAll();
1522   emit vpTransformationFinished( FITALLVIEW );
1523 }
1524
1525 /*!
1526   \brief Called if 'change rotation point' operation is activated.
1527   \param on action state
1528 */
1529 void OCCViewer_ViewWindow::onSetRotationPoint( bool on )
1530 {
1531   if (on)
1532   {
1533     if (!mySetRotationPointDlg)
1534     {
1535       mySetRotationPointDlg = new OCCViewer_SetRotationPointDlg (this);
1536       mySetRotationPointDlg->SetAction(mySetRotationPointAction);
1537     }
1538
1539     if (!mySetRotationPointDlg->isVisible())
1540     {
1541       //if (mySetRotationPointDlg->IsFirstShown())
1542       if (myCurrPointType == GRAVITY)
1543       {
1544         Standard_Real Xcenter, Ycenter, Zcenter;
1545         if (computeGravityCenter(Xcenter, Ycenter, Zcenter))
1546           mySetRotationPointDlg->setCoords(Xcenter, Ycenter, Zcenter);
1547       }
1548       mySetRotationPointDlg->show();
1549     }
1550   }
1551   else
1552   {
1553     if (mySetRotationPointDlg->isVisible())
1554       mySetRotationPointDlg->hide();
1555   }
1556 }
1557
1558 /*!
1559    \brief Create one more window with same content.
1560 */
1561 void OCCViewer_ViewWindow::onCloneView()
1562 {
1563   SUIT_ViewWindow* vw = myManager->createViewWindow();
1564   //vw->show();
1565   emit viewCloned( vw );
1566 }
1567
1568 /*!
1569   Creates one more window with same content
1570 */
1571 void OCCViewer_ViewWindow::onAxialScale()
1572 {
1573   if ( !myScalingDlg )
1574     myScalingDlg = new OCCViewer_AxialScaleDlg( this );
1575   
1576   if ( !myScalingDlg->isVisible() )
1577   {
1578     myScalingDlg->Update();
1579     myScalingDlg->show();
1580   }
1581 }
1582
1583 /*!
1584   Shows Graduated Axes dialog
1585 */
1586 void OCCViewer_ViewWindow::onGraduatedAxes()
1587 {
1588   myCubeAxesDlg->Update();
1589   myCubeAxesDlg->show();
1590 }
1591
1592 void OCCViewer_ViewWindow::onAmbientToogle()
1593 {
1594   Handle(V3d_Viewer) viewer = myViewPort->getViewer();
1595   viewer->InitDefinedLights();
1596   while(viewer->MoreDefinedLights())
1597     {
1598       Handle(V3d_Light) light = viewer->DefinedLight();
1599       if(light->Type() != V3d_AMBIENT)
1600         {
1601           Handle(V3d_View) aView3d = myViewPort->getView();
1602           if( aView3d->IsActiveLight(light) ) viewer->SetLightOff(light);
1603           else viewer->SetLightOn(light);
1604         }
1605       viewer->NextDefinedLights();
1606     }
1607   viewer->Update();
1608 }
1609
1610 /*!
1611   \brief Store view parameters.
1612 */
1613 void OCCViewer_ViewWindow::onMemorizeView()
1614 {
1615   appendViewAspect( getViewParams() );
1616 }
1617
1618 /*!
1619   \brief Restore view parameters.
1620 */
1621 void OCCViewer_ViewWindow::onRestoreView()
1622 {
1623   OCCViewer_CreateRestoreViewDlg* aDlg = new OCCViewer_CreateRestoreViewDlg( centralWidget(), this );
1624   connect( aDlg, SIGNAL( dlgOk() ), this, SLOT( setRestoreFlag() ) );
1625   aDlg->exec();
1626   updateViewAspects( aDlg->parameters() );
1627   if( myRestoreFlag && aDlg->parameters().count() )
1628     performRestoring( aDlg->currentItem() );
1629 }
1630
1631 /*!
1632   \brief Restore view parameters.
1633   \param anItem view parameters
1634 */
1635 void OCCViewer_ViewWindow::performRestoring( const viewAspect& anItem, bool baseParamsOnly )
1636 {
1637   Handle(V3d_View) aView3d = myViewPort->getView();
1638
1639   Standard_Boolean prev = aView3d->SetImmediateUpdate( Standard_False );
1640   aView3d->SetScale( anItem.scale );
1641   aView3d->SetCenter( anItem.centerX, anItem.centerY );
1642   aView3d->SetTwist( anItem.twist );
1643   aView3d->SetAt( anItem.atX, anItem.atY, anItem.atZ );
1644   aView3d->SetImmediateUpdate( prev );
1645   aView3d->SetEye( anItem.eyeX, anItem.eyeY, anItem.eyeZ );
1646   aView3d->SetProj( anItem.projX, anItem.projY, anItem.projZ );
1647   aView3d->SetAxialScale( anItem.scaleX, anItem.scaleY, anItem.scaleZ );
1648
1649   if ( !baseParamsOnly ) {
1650
1651     myModel->setTrihedronShown( anItem.isVisible );
1652     myModel->setTrihedronSize( anItem.size );
1653         
1654 #if OCC_VERSION_LARGE > 0x06030009 // available only with OCC-6.3-sp10 and higher version
1655     // graduated trihedron
1656     bool anIsVisible = anItem.gtIsVisible;
1657     OCCViewer_AxisWidget::AxisData anAxisData[3];
1658     anAxisData[0].DrawName = anItem.gtDrawNameX;
1659     anAxisData[1].DrawName = anItem.gtDrawNameZ;
1660     anAxisData[2].DrawName = anItem.gtDrawNameZ;
1661     anAxisData[0].Name = anItem.gtNameX;
1662     anAxisData[1].Name = anItem.gtNameZ;
1663     anAxisData[2].Name = anItem.gtNameZ;
1664     anAxisData[0].NameColor = QColor( anItem.gtNameColorRX,
1665               anItem.gtNameColorGX,
1666               anItem.gtNameColorBX );
1667     anAxisData[1].NameColor = QColor( anItem.gtNameColorRY,
1668               anItem.gtNameColorGY,
1669               anItem.gtNameColorBY );
1670     anAxisData[2].NameColor = QColor( anItem.gtNameColorRZ,
1671               anItem.gtNameColorGZ,
1672               anItem.gtNameColorBZ );
1673     anAxisData[0].DrawValues = anItem.gtDrawValuesX;
1674     anAxisData[1].DrawValues = anItem.gtDrawValuesY;
1675     anAxisData[2].DrawValues = anItem.gtDrawValuesZ;
1676     anAxisData[0].NbValues = anItem.gtNbValuesX;
1677     anAxisData[1].NbValues = anItem.gtNbValuesY;
1678     anAxisData[2].NbValues = anItem.gtNbValuesZ;
1679     anAxisData[0].Offset = anItem.gtOffsetX;
1680     anAxisData[1].Offset = anItem.gtOffsetY;
1681     anAxisData[2].Offset = anItem.gtOffsetZ;
1682     anAxisData[0].Color = QColor( anItem.gtColorRX,
1683           anItem.gtColorGX,
1684           anItem.gtColorBX );
1685     anAxisData[1].Color = QColor( anItem.gtColorRY,
1686           anItem.gtColorGY,
1687           anItem.gtColorBY );
1688     anAxisData[2].Color = QColor( anItem.gtColorRZ,
1689           anItem.gtColorGZ,
1690           anItem.gtColorBZ );
1691     anAxisData[0].DrawTickmarks = anItem.gtDrawTickmarksX;
1692     anAxisData[1].DrawTickmarks = anItem.gtDrawTickmarksY;
1693     anAxisData[2].DrawTickmarks = anItem.gtDrawTickmarksZ;
1694     anAxisData[0].TickmarkLength = anItem.gtTickmarkLengthX;
1695     anAxisData[1].TickmarkLength = anItem.gtTickmarkLengthY;
1696     anAxisData[2].TickmarkLength = anItem.gtTickmarkLengthZ;
1697
1698     myCubeAxesDlg->SetData( anIsVisible, anAxisData );
1699     myCubeAxesDlg->ApplyData( aView3d );
1700 #endif
1701
1702   } // if ( !baseParamsOnly )
1703
1704   myRestoreFlag = 0;
1705 }
1706
1707 /*!
1708   \brief Set restore flag.
1709 */
1710 void OCCViewer_ViewWindow::setRestoreFlag()
1711 {
1712   myRestoreFlag = 1;
1713 }
1714
1715 /*!
1716   \brief Called when action "show/hide trihedron" is activated.
1717 */
1718 void OCCViewer_ViewWindow::onTrihedronShow()
1719 {
1720   myModel->toggleTrihedron();
1721 }
1722
1723 /*!
1724   \brief Toggles preselection (highlighting) on/off
1725 */
1726 void OCCViewer_ViewWindow::onSwitchPreselection( bool on )
1727 {
1728   myPreselectionEnabled = on;
1729   myModel->setSelectionOptions( isPreselectionEnabled(), myModel->isSelectionEnabled() );
1730
1731   // unhighlight all highlighted objects
1732   /*if ( !on ) {
1733     myModel->unHighlightAll( true, false );
1734   }*/
1735
1736   // update action state if method is called outside
1737   QtxAction* a = dynamic_cast<QtxAction*>( toolMgr()->action( SwitchPreselectionId ) );
1738   if ( a && a->isChecked() != on ) {
1739     a->setChecked( on );
1740   }
1741 }
1742
1743 /*!
1744   \brief Toggles selection on/off
1745 */
1746 void OCCViewer_ViewWindow::onSwitchSelection( bool on )
1747 {
1748   mySelectionEnabled = on;
1749   myModel->setSelectionOptions( myModel->isPreselectionEnabled(), isSelectionEnabled() );
1750   
1751   // update action state if method is called outside
1752
1753   // preselection
1754   QtxAction* a = dynamic_cast<QtxAction*>( toolMgr()->action( SwitchPreselectionId ) );
1755   if ( a ) {
1756     a->setEnabled( on );
1757   }
1758
1759   // selection
1760   a = dynamic_cast<QtxAction*>( toolMgr()->action( SwitchSelectionId ) );
1761   if ( a && a->isChecked() != on ) {
1762     a->setChecked( on );
1763   }
1764 }
1765
1766 /*!
1767   \brief Switches "keyboard free" interaction style on/off
1768 */
1769 void OCCViewer_ViewWindow::onSwitchInteractionStyle( bool on )
1770 {
1771   myInteractionStyle = on ? (int)SUIT_ViewModel::KEY_FREE : (int)SUIT_ViewModel::STANDARD;
1772
1773   // update action state if method is called outside
1774   QtxAction* a = dynamic_cast<QtxAction*>( toolMgr()->action( SwitchInteractionStyleId ) );
1775   if ( a->isChecked() != on )
1776     a->setChecked( on );
1777 }
1778
1779 /*!
1780   \brief Toogles advanced zooming style (relatively to the cursor position) on/off
1781 */
1782 void OCCViewer_ViewWindow::onSwitchZoomingStyle( bool on )
1783 {
1784   myViewPort->setAdvancedZoomingEnabled( on );
1785
1786   // update action state if method is called outside
1787   QtxAction* a = dynamic_cast<QtxAction*>( toolMgr()->action( SwitchZoomingStyleId ) );
1788   if ( a->isChecked() != on )
1789     a->setChecked( on );
1790 }
1791
1792 /*!
1793   \brief Get current interaction style
1794   \return interaction style
1795 */
1796 int OCCViewer_ViewWindow::interactionStyle() const
1797 {
1798   return myInteractionStyle;
1799 }
1800
1801 /*!
1802   \brief Set current interaction style
1803   \param theStyle interaction style
1804 */
1805 void OCCViewer_ViewWindow::setInteractionStyle( const int theStyle )
1806 {
1807   onSwitchInteractionStyle( theStyle == (int)SUIT_ViewModel::KEY_FREE );
1808 }
1809
1810 /*!
1811   \brief Get current zooming style
1812   \return zooming style
1813 */
1814 int OCCViewer_ViewWindow::zoomingStyle() const
1815 {
1816   return myViewPort->isAdvancedZoomingEnabled() ? 1 : 0;
1817 }
1818
1819 /*!
1820   \brief Set current zooming style
1821   \param theStyle zooming style
1822 */
1823 void OCCViewer_ViewWindow::setZoomingStyle( const int theStyle )
1824 {
1825   onSwitchZoomingStyle( theStyle == 1 );
1826 }
1827
1828 /*!
1829   \brief Dump view window contents to the pixmap.
1830   \return pixmap containing all scene rendered in the window
1831 */
1832 QImage OCCViewer_ViewWindow::dumpView()
1833 {
1834   Handle(V3d_View) view = myViewPort->getView();
1835   if ( view.IsNull() )
1836     return QImage();
1837   
1838   int aWidth = myViewPort->width();
1839   int aHeight = myViewPort->height();
1840   QApplication::syncX();
1841   view->Redraw(); // In order to reactivate GL context
1842   //view->Update();
1843
1844   OpenGLUtils_FrameBuffer aFrameBuffer;
1845   if( aFrameBuffer.init( aWidth, aHeight ) )
1846   {
1847     QImage anImage( aWidth, aHeight, QImage::Format_RGB32 );
1848    
1849     glPushAttrib( GL_VIEWPORT_BIT );
1850     glViewport( 0, 0, aWidth, aHeight );
1851     aFrameBuffer.bind();
1852
1853     // draw scene
1854     view->Redraw();
1855
1856     aFrameBuffer.unbind();
1857     glPopAttrib();
1858
1859     aFrameBuffer.bind();
1860     glReadPixels( 0, 0, aWidth, aHeight, GL_RGBA, GL_UNSIGNED_BYTE, anImage.bits() );
1861     aFrameBuffer.unbind();
1862
1863     anImage = anImage.rgbSwapped();
1864     anImage = anImage.mirrored();
1865     return anImage;
1866   }
1867   // if frame buffers are unsupported, use old functionality
1868   //view->Redraw();
1869
1870   unsigned char* data = new unsigned char[ aWidth*aHeight*4 ];
1871
1872   QPoint p = myViewPort->mapFromParent(myViewPort->geometry().topLeft());
1873
1874   glReadPixels( p.x(), p.y(), aWidth, aHeight, GL_RGBA, GL_UNSIGNED_BYTE,
1875                 data);
1876
1877   QImage anImage( data, aWidth, aHeight, QImage::Format_ARGB32 );
1878   anImage = anImage.mirrored();
1879   anImage = anImage.rgbSwapped();
1880   return anImage;
1881 }
1882
1883 bool OCCViewer_ViewWindow::dumpViewToFormat( const QImage& img, 
1884                                              const QString& fileName, 
1885                                              const QString& format )
1886 {
1887   if ( format != "PS" && format != "EPS")
1888     return SUIT_ViewWindow::dumpViewToFormat( img, fileName, format );
1889
1890   Handle(Visual3d_View) a3dView = myViewPort->getView()->View();
1891
1892   if (format == "PS")
1893     a3dView->Export(strdup(qPrintable(fileName)), Graphic3d_EF_PostScript);
1894   else if (format == "EPS")
1895     a3dView->Export(strdup(qPrintable(fileName)), Graphic3d_EF_EnhPostScript);
1896
1897   return true;
1898 }
1899
1900
1901 QString OCCViewer_ViewWindow::filter() const
1902 {
1903   return tr( "OCC_IMAGE_FILES" );
1904 }
1905
1906
1907 /*!
1908   \brief Set parameters of the cutting plane
1909   \param on if \c true, cutting plane is enabled
1910   \param x X position of plane point
1911   \param y Y position of plane point
1912   \param z Z position of plane point
1913   \param dx X coordinate of plane normal
1914   \param dy Y coordinate of plane normal
1915   \param dz Z coordinate of plane normal
1916 */
1917 void OCCViewer_ViewWindow::setCuttingPlane( bool on, const double x,  const double y,  const double z,
1918                                             const double dx, const double dy, const double dz )
1919 {
1920   Handle(V3d_View) view = myViewPort->getView();
1921   if ( view.IsNull() )
1922     return;
1923
1924   if ( on ) {
1925     Handle(V3d_Viewer) viewer = myViewPort->getViewer();
1926
1927     // try to use already existing plane or create a new one
1928     Handle(V3d_Plane) clipPlane;
1929
1930     // calculate new a,b,c,d values for the plane
1931     gp_Pln pln (gp_Pnt(x, y, z), gp_Dir(dx, dy, dz));
1932     double a, b, c, d;
1933     pln.Coefficients(a, b, c, d);
1934     
1935 #if OCC_VERSION_LARGE > 0x06060000 // Porting to OCCT higher 6.6.0 version
1936     Graphic3d_SetOfHClipPlane aPlanes = view->GetClipPlanes();
1937     Handle(Graphic3d_ClipPlane) aClipPlane;
1938     if(aPlanes.Size() > 0 ) {
1939       Graphic3d_SetOfHClipPlane::Iterator anIter (aPlanes);
1940       aClipPlane = anIter.Value();
1941       aClipPlane->SetEquation(pln);
1942       aClipPlane->SetOn(Standard_True);
1943     } else {
1944       aClipPlane = new Graphic3d_ClipPlane(pln);
1945       view->AddClipPlane(aClipPlane);
1946       aClipPlane->SetOn(Standard_True);
1947     }
1948 #elif OCC_VERSION_LARGE > 0x06040000 && CC_VERSION_LARGE <= 0x06060000 // Porting to OCCT6.5.1
1949     if (view->MoreActivePlanes()) {
1950       clipPlane = view->ActivePlane();
1951       clipPlane->SetPlane(a, b, c, d);
1952     }
1953     else {
1954       clipPlane = new V3d_Plane (a, b, c, d);
1955       view->SetPlaneOn(clipPlane);
1956     }
1957 #else
1958     clipPlane = new V3d_Plane (viewer);
1959     clipPlane->SetPlane(a, b, c, d);
1960 #endif
1961   }
1962   else {
1963 #if OCC_VERSION_LARGE > 0x06060000 // Porting to OCCT higher 6.6.0 version
1964     Graphic3d_SetOfHClipPlane aPlanes = view->GetClipPlanes();
1965     Graphic3d_SetOfHClipPlane::Iterator anIter (aPlanes);
1966     for( ;anIter.More();anIter.Next() ){
1967       Handle(Graphic3d_ClipPlane) aClipPlane = anIter.Value();
1968       aClipPlane->SetOn(Standard_False);
1969     }
1970 #else
1971     view->SetPlaneOff();
1972 #endif
1973   }
1974
1975   view->Update();
1976   view->Redraw();
1977 }
1978
1979 void OCCViewer_ViewWindow::setCuttingPlane( bool on, const gp_Pln pln )
1980 {
1981   gp_Dir aDir = pln.Axis().Direction();
1982   gp_Pnt aPnt = pln.Location();
1983   setCuttingPlane(on, aPnt.X(), aPnt.Y(), aPnt.Z(), aDir.X(), aDir.Y(), aDir.Z());
1984 }
1985
1986
1987 /*!
1988   \brief Check if any cutting plane is enabled
1989   \return \c true if at least one cutting plane is enabled
1990 */
1991 bool OCCViewer_ViewWindow::isCuttingPlane()
1992 {
1993   Handle(V3d_View) view = myViewPort->getView();
1994 #if OCC_VERSION_LARGE > 0x06060000 // Porting to OCCT higher 6.6.0 version
1995   bool res = false;
1996   Graphic3d_SetOfHClipPlane aPlanes = view->GetClipPlanes();
1997   Graphic3d_SetOfHClipPlane::Iterator anIter (aPlanes);
1998   for( ;anIter.More();anIter.Next() ) {
1999     Handle(Graphic3d_ClipPlane) aClipPlane = anIter.Value();
2000     if(aClipPlane->IsOn()) {
2001       res = true;
2002       break;
2003     }
2004   }
2005   return res;
2006 #else
2007   view->InitActivePlanes();
2008   return (view->MoreActivePlanes());
2009 #endif
2010 }
2011
2012 /*!
2013   \brief Get the visual parameters of the view window.
2014   \return visual parameters of view window
2015 */
2016 viewAspect OCCViewer_ViewWindow::getViewParams() const
2017 {
2018   double centerX, centerY, projX, projY, projZ, twist;
2019   double atX, atY, atZ, eyeX, eyeY, eyeZ;
2020   double aScaleX, aScaleY, aScaleZ;
2021
2022   Handle(V3d_View) aView3d = myViewPort->getView();
2023
2024   aView3d->Center( centerX, centerY );
2025   aView3d->Proj( projX, projY, projZ );
2026   aView3d->At( atX, atY, atZ );
2027   aView3d->Eye( eyeX, eyeY, eyeZ );
2028   twist = aView3d->Twist();
2029
2030   aView3d->AxialScale(aScaleX,aScaleY,aScaleZ);
2031
2032   bool isShown = myModel->isTrihedronVisible();
2033   double size = myModel->trihedronSize();
2034
2035   QString aName = QTime::currentTime().toString() + QString::fromLatin1( " h:m:s" );
2036
2037   viewAspect params;
2038   params.scale    = aView3d->Scale();
2039   params.centerX  = centerX;
2040   params.centerY  = centerY;
2041   params.projX    = projX;
2042   params.projY    = projY;
2043   params.projZ    = projZ;
2044   params.twist    = twist;
2045   params.atX      = atX;
2046   params.atY      = atY;
2047   params.atZ      = atZ;
2048   params.eyeX     = eyeX;
2049   params.eyeY     = eyeY;
2050   params.eyeZ     = eyeZ;
2051   params.scaleX   = aScaleX;
2052   params.scaleY   = aScaleY;
2053   params.scaleZ   = aScaleZ;
2054   params.name     = aName;
2055   params.isVisible= isShown;
2056   params.size     = size;
2057
2058 #if OCC_VERSION_LARGE > 0x06030009 // available only with OCC-6.3-sp10 and higher version
2059   // graduated trihedron
2060   bool anIsVisible = false;
2061   OCCViewer_AxisWidget::AxisData anAxisData[3];
2062   myCubeAxesDlg->GetData( anIsVisible, anAxisData );
2063
2064   params.gtIsVisible = anIsVisible;
2065   params.gtDrawNameX = anAxisData[0].DrawName;
2066   params.gtDrawNameY = anAxisData[1].DrawName;
2067   params.gtDrawNameZ = anAxisData[2].DrawName;
2068   params.gtNameX = anAxisData[0].Name;
2069   params.gtNameY = anAxisData[1].Name;
2070   params.gtNameZ = anAxisData[2].Name;
2071   params.gtNameColorRX = anAxisData[0].NameColor.red();
2072   params.gtNameColorGX = anAxisData[0].NameColor.green();
2073   params.gtNameColorBX = anAxisData[0].NameColor.blue();
2074   params.gtNameColorRY = anAxisData[1].NameColor.red();
2075   params.gtNameColorGY = anAxisData[1].NameColor.green();
2076   params.gtNameColorBY = anAxisData[1].NameColor.blue();
2077   params.gtNameColorRZ = anAxisData[2].NameColor.red();
2078   params.gtNameColorGZ = anAxisData[2].NameColor.green();
2079   params.gtNameColorBZ = anAxisData[2].NameColor.blue();
2080   params.gtDrawValuesX = anAxisData[0].DrawValues;
2081   params.gtDrawValuesY = anAxisData[1].DrawValues;
2082   params.gtDrawValuesZ = anAxisData[2].DrawValues;
2083   params.gtNbValuesX = anAxisData[0].NbValues;
2084   params.gtNbValuesY = anAxisData[1].NbValues;
2085   params.gtNbValuesZ = anAxisData[2].NbValues;
2086   params.gtOffsetX = anAxisData[0].Offset;
2087   params.gtOffsetY = anAxisData[1].Offset;
2088   params.gtOffsetZ = anAxisData[2].Offset;
2089   params.gtColorRX = anAxisData[0].Color.red();
2090   params.gtColorGX = anAxisData[0].Color.green();
2091   params.gtColorBX = anAxisData[0].Color.blue();
2092   params.gtColorRY = anAxisData[1].Color.red();
2093   params.gtColorGY = anAxisData[1].Color.green();
2094   params.gtColorBY = anAxisData[1].Color.blue();
2095   params.gtColorRZ = anAxisData[2].Color.red();
2096   params.gtColorGZ = anAxisData[2].Color.green();
2097   params.gtColorBZ = anAxisData[2].Color.blue();
2098   params.gtDrawTickmarksX = anAxisData[0].DrawTickmarks;
2099   params.gtDrawTickmarksY = anAxisData[1].DrawTickmarks;
2100   params.gtDrawTickmarksZ = anAxisData[2].DrawTickmarks;
2101   params.gtTickmarkLengthX = anAxisData[0].TickmarkLength;
2102   params.gtTickmarkLengthY = anAxisData[1].TickmarkLength;
2103   params.gtTickmarkLengthZ = anAxisData[2].TickmarkLength;
2104 #endif
2105
2106   return params;
2107 }
2108
2109 /*!
2110   \brief Get visual parameters of this view window.
2111   \return visual parameters of view window
2112 */
2113 QString OCCViewer_ViewWindow::getVisualParameters()
2114 {
2115   viewAspect params = getViewParams();
2116
2117   QStringList data;
2118
2119   data << QString( "scale=%1" )    .arg( params.scale,   0, 'e', 12 );
2120   data << QString( "centerX=%1" )  .arg( params.centerX, 0, 'e', 12 );
2121   data << QString( "centerY=%1" )  .arg( params.centerY, 0, 'e', 12 );
2122   data << QString( "projX=%1" )    .arg( params.projX,   0, 'e', 12 );
2123   data << QString( "projY=%1" )    .arg( params.projY,   0, 'e', 12 );
2124   data << QString( "projZ=%1" )    .arg( params.projZ,   0, 'e', 12 );
2125   data << QString( "twist=%1" )    .arg( params.twist,   0, 'e', 12 );
2126   data << QString( "atX=%1" )      .arg( params.atX,     0, 'e', 12 );
2127   data << QString( "atY=%1" )      .arg( params.atY,     0, 'e', 12 );
2128   data << QString( "atZ=%1" )      .arg( params.atZ,     0, 'e', 12 );
2129   data << QString( "eyeX=%1" )     .arg( params.eyeX,    0, 'e', 12 );
2130   data << QString( "eyeY=%1" )     .arg( params.eyeY,    0, 'e', 12 );
2131   data << QString( "eyeZ=%1" )     .arg( params.eyeZ,    0, 'e', 12 );
2132   data << QString( "scaleX=%1" )   .arg( params.scaleX,  0, 'e', 12 );
2133   data << QString( "scaleY=%1" )   .arg( params.scaleY,  0, 'e', 12 );
2134   data << QString( "scaleZ=%1" )   .arg( params.scaleZ,  0, 'e', 12 );
2135   data << QString( "isVisible=%1" ).arg( params.isVisible );
2136   data << QString( "size=%1" )     .arg( params.size,    0, 'f',  2 );
2137
2138   ClipPlanesList aPlanes =  myModel->getClipPlanes();
2139   for ( int i=0; i < aPlanes.size(); i++ ) {
2140     OCCViewer_ClipPlane& aPlane = aPlanes[i];
2141     QString ClippingPlane = QString( "ClippingPlane%1=").arg( i+1 );
2142     ClippingPlane +=  QString( "Mode~%1;").arg( (int)aPlane.PlaneMode );
2143     ClippingPlane +=  QString( "IsActive~%1;").arg( aPlane.IsOn );
2144     ClippingPlane += QString( "AbsoluteOrientation~%1;" ).arg( aPlane.Orientation );
2145     ClippingPlane += QString( "IsInvert~%1;" ).arg( aPlane.IsInvert );
2146     ClippingPlane +=  QString( "X~%1;" ).arg( aPlane.X );
2147     ClippingPlane +=  QString( "Y~%1;" ).arg( aPlane.Y );
2148     ClippingPlane +=  QString( "Z~%1;" ).arg( aPlane.Z );
2149     ClippingPlane +=  QString( "Dx~%1;" ).arg( aPlane.Dx );
2150     ClippingPlane +=  QString( "Dy~%1;" ).arg( aPlane.Dy );;
2151     ClippingPlane +=  QString( "Dz~%1;" ).arg( aPlane.Dz );
2152     ClippingPlane +=  QString( "RelativeOrientation~%1;" ).arg( aPlane.RelativeMode.Orientation );
2153     ClippingPlane +=  QString( "Distance~%1;" ).arg( aPlane.RelativeMode.Distance );
2154     ClippingPlane +=  QString( "Rotation1~%1;" ).arg( aPlane.RelativeMode.Rotation1 );
2155     ClippingPlane +=  QString( "Rotation2~%1" ).arg( aPlane.RelativeMode.Rotation2 );
2156     data << ClippingPlane;
2157   }
2158
2159
2160 #if OCC_VERSION_LARGE > 0x06030009 // available only with OCC-6.3-sp10 or newer version
2161   // graduated trihedron
2162   data << QString( "gtIsVisible=%1" )      .arg( params.gtIsVisible );
2163   data << QString( "gtDrawNameX=%1" )      .arg( params.gtDrawNameX );
2164   data << QString( "gtDrawNameY=%1" )      .arg( params.gtDrawNameY );
2165   data << QString( "gtDrawNameZ=%1" )      .arg( params.gtDrawNameZ );
2166   data << QString( "gtNameX=%1" )          .arg( params.gtNameX );
2167   data << QString( "gtNameY=%1" )          .arg( params.gtNameY );
2168   data << QString( "gtNameZ=%1" )          .arg( params.gtNameZ );
2169   data << QString( "gtNameColorRX=%1" )    .arg( params.gtNameColorRX );
2170   data << QString( "gtNameColorGX=%1" )    .arg( params.gtNameColorGX );
2171   data << QString( "gtNameColorBX=%1" )    .arg( params.gtNameColorBX );
2172   data << QString( "gtNameColorRY=%1" )    .arg( params.gtNameColorRY );
2173   data << QString( "gtNameColorGY=%1" )    .arg( params.gtNameColorGY );
2174   data << QString( "gtNameColorBY=%1" )    .arg( params.gtNameColorBY );
2175   data << QString( "gtNameColorRZ=%1" )    .arg( params.gtNameColorRZ );
2176   data << QString( "gtNameColorGZ=%1" )    .arg( params.gtNameColorGZ );
2177   data << QString( "gtNameColorBZ=%1" )    .arg( params.gtNameColorBZ );
2178   data << QString( "gtDrawValuesX=%1" )    .arg( params.gtDrawValuesX );
2179   data << QString( "gtDrawValuesY=%1" )    .arg( params.gtDrawValuesY );
2180   data << QString( "gtDrawValuesZ=%1" )    .arg( params.gtDrawValuesZ );
2181   data << QString( "gtNbValuesX=%1" )      .arg( params.gtNbValuesX );
2182   data << QString( "gtNbValuesY=%1" )      .arg( params.gtNbValuesY );
2183   data << QString( "gtNbValuesZ=%1" )      .arg( params.gtNbValuesZ );
2184   data << QString( "gtOffsetX=%1" )        .arg( params.gtOffsetX );
2185   data << QString( "gtOffsetY=%1" )        .arg( params.gtOffsetY );
2186   data << QString( "gtOffsetZ=%1" )        .arg( params.gtOffsetZ );
2187   data << QString( "gtColorRX=%1" )        .arg( params.gtColorRX );
2188   data << QString( "gtColorGX=%1" )        .arg( params.gtColorGX );
2189   data << QString( "gtColorBX=%1" )        .arg( params.gtColorBX );
2190   data << QString( "gtColorRY=%1" )        .arg( params.gtColorRY );
2191   data << QString( "gtColorGY=%1" )        .arg( params.gtColorGY );
2192   data << QString( "gtColorBY=%1" )        .arg( params.gtColorBY );
2193   data << QString( "gtColorRZ=%1" )        .arg( params.gtColorRZ );
2194   data << QString( "gtColorGZ=%1" )        .arg( params.gtColorGZ );
2195   data << QString( "gtColorBZ=%1" )        .arg( params.gtColorBZ );
2196   data << QString( "gtDrawTickmarksX=%1" ) .arg( params.gtDrawTickmarksX );
2197   data << QString( "gtDrawTickmarksY=%1" ) .arg( params.gtDrawTickmarksY );
2198   data << QString( "gtDrawTickmarksZ=%1" ) .arg( params.gtDrawTickmarksZ );
2199   data << QString( "gtTickmarkLengthX=%1" ).arg( params.gtTickmarkLengthX );
2200   data << QString( "gtTickmarkLengthY=%1" ).arg( params.gtTickmarkLengthY );
2201   data << QString( "gtTickmarkLengthZ=%1" ).arg( params.gtTickmarkLengthZ );
2202 #endif
2203   QString bg = Qtx::backgroundToString( background() ).replace( "=", "$" );
2204   data << QString( "background=%1" ).arg( bg );
2205
2206   return data.join("*");
2207 }
2208
2209 /*!
2210   \brief Restore visual parameters of the view window.
2211   \param parameters visual parameters of view window
2212 */
2213 void OCCViewer_ViewWindow::setVisualParameters( const QString& parameters )
2214 {
2215   viewAspect params;
2216   ClipPlanesList aClipPlanes;
2217   QStringList data = parameters.split( '*' );
2218   Qtx::BackgroundData bgData;
2219   if ( parameters.contains( '=' )  ) // new format - "scale=1.000e+00*centerX=0.000e+00..."
2220   {
2221     foreach( QString param, data ) {
2222       QString paramName  = param.section( '=', 0, 0 ).trimmed();
2223       QString paramValue = param.section( '=', 1, 1 ).trimmed();
2224       if      ( paramName == "scale" )             params.scale             = paramValue.toDouble();
2225       else if ( paramName == "centerX" )           params.centerX           = paramValue.toDouble();
2226       else if ( paramName == "centerY" )           params.centerY           = paramValue.toDouble();
2227       else if ( paramName == "projX" )             params.projX             = paramValue.toDouble();
2228       else if ( paramName == "projY" )             params.projY             = paramValue.toDouble();
2229       else if ( paramName == "projZ" )             params.projZ             = paramValue.toDouble();
2230       else if ( paramName == "twist" )             params.twist             = paramValue.toDouble();
2231       else if ( paramName == "atX" )               params.atX               = paramValue.toDouble();
2232       else if ( paramName == "atY" )               params.atY               = paramValue.toDouble();
2233       else if ( paramName == "atZ" )               params.atZ               = paramValue.toDouble();
2234       else if ( paramName == "eyeX" )              params.eyeX              = paramValue.toDouble();
2235       else if ( paramName == "eyeY" )              params.eyeY              = paramValue.toDouble();
2236       else if ( paramName == "eyeZ" )              params.eyeZ              = paramValue.toDouble();
2237       else if ( paramName == "scaleX" )            params.scaleX            = paramValue.toDouble();
2238       else if ( paramName == "scaleY" )            params.scaleY            = paramValue.toDouble();
2239       else if ( paramName == "scaleZ" )            params.scaleZ            = paramValue.toDouble();
2240       else if ( paramName == "isVisible" )         params.isVisible         = paramValue.toInt();
2241       else if ( paramName == "size" )              params.size              = paramValue.toDouble();
2242       else if ( paramName.contains( "ClippingPlane" ) ) {
2243         QStringList ClipPlaneData = paramValue.split( ';' );
2244         OCCViewer_ClipPlane aPlane;
2245         foreach( QString ClipPlaneParam, ClipPlaneData ) {
2246           QString ClipPlane_paramName  = ClipPlaneParam.section( '~', 0, 0 ).trimmed();
2247           QString ClipPlane_paramValue = ClipPlaneParam.section( '~', 1, 1 ).trimmed();
2248             if      ( ClipPlane_paramName == "Mode" )                aPlane.PlaneMode                  = ( ClipPlaneMode )ClipPlane_paramValue.toInt();
2249             else if ( ClipPlane_paramName == "IsActive" )            aPlane.IsOn                       = ClipPlane_paramValue.toInt();
2250             else if ( ClipPlane_paramName == "AbsoluteOrientation" ) aPlane.Orientation                = ClipPlane_paramValue.toInt();
2251             else if ( ClipPlane_paramName == "IsInvert" )            aPlane.IsInvert                   = ClipPlane_paramValue.toInt();
2252             else if ( ClipPlane_paramName == "X" )                   aPlane.X                          = ClipPlane_paramValue.toDouble();
2253             else if ( ClipPlane_paramName == "Y" )                   aPlane.Y                          = ClipPlane_paramValue.toDouble();
2254             else if ( ClipPlane_paramName == "Z" )                   aPlane.Z                          = ClipPlane_paramValue.toDouble();
2255             else if ( ClipPlane_paramName == "Dx" )                  aPlane.Dx                         = ClipPlane_paramValue.toDouble();
2256             else if ( ClipPlane_paramName == "Dy" )                  aPlane.Dy                         = ClipPlane_paramValue.toDouble();
2257             else if ( ClipPlane_paramName == "Dz" )                  aPlane.Dz                         = ClipPlane_paramValue.toDouble();
2258             else if ( ClipPlane_paramName == "RelativeOrientation" ) aPlane.RelativeMode.Orientation   = ClipPlane_paramValue.toInt();
2259             else if ( ClipPlane_paramName == "Distance" )            aPlane.RelativeMode.Distance      = ClipPlane_paramValue.toDouble();
2260             else if ( ClipPlane_paramName == "Rotation1" )           aPlane.RelativeMode.Rotation1     = ClipPlane_paramValue.toDouble();
2261             else if ( ClipPlane_paramName == "Rotation2" )           aPlane.RelativeMode.Rotation2     = ClipPlane_paramValue.toDouble();
2262         }
2263         aClipPlanes.push_back(aPlane);
2264       }
2265       // graduated trihedron
2266       else if ( paramName == "gtIsVisible" )       params.gtIsVisible       = paramValue.toInt();
2267       else if ( paramName == "gtDrawNameX" )       params.gtDrawNameX       = paramValue.toInt();
2268       else if ( paramName == "gtDrawNameY" )       params.gtDrawNameY       = paramValue.toInt();
2269       else if ( paramName == "gtDrawNameZ" )       params.gtDrawNameZ       = paramValue.toInt();
2270       else if ( paramName == "gtNameX" )           params.gtNameX           = paramValue;
2271       else if ( paramName == "gtNameY" )           params.gtNameY           = paramValue;
2272       else if ( paramName == "gtNameZ" )           params.gtNameZ           = paramValue;
2273       else if ( paramName == "gtNameColorRX" )     params.gtNameColorRX     = paramValue.toInt();
2274       else if ( paramName == "gtNameColorGX" )     params.gtNameColorGX     = paramValue.toInt();
2275       else if ( paramName == "gtNameColorBX" )     params.gtNameColorBX     = paramValue.toInt();
2276       else if ( paramName == "gtNameColorRY" )     params.gtNameColorRY     = paramValue.toInt();
2277       else if ( paramName == "gtNameColorGY" )     params.gtNameColorGY     = paramValue.toInt();
2278       else if ( paramName == "gtNameColorBY" )     params.gtNameColorBY     = paramValue.toInt();
2279       else if ( paramName == "gtNameColorRZ" )     params.gtNameColorRZ     = paramValue.toInt();
2280       else if ( paramName == "gtNameColorGZ" )     params.gtNameColorGZ     = paramValue.toInt();
2281       else if ( paramName == "gtNameColorBZ" )     params.gtNameColorBZ     = paramValue.toInt();
2282       else if ( paramName == "gtDrawValuesX" )     params.gtDrawValuesX     = paramValue.toInt();
2283       else if ( paramName == "gtDrawValuesY" )     params.gtDrawValuesY     = paramValue.toInt();
2284       else if ( paramName == "gtDrawValuesZ" )     params.gtDrawValuesZ     = paramValue.toInt();
2285       else if ( paramName == "gtNbValuesX" )       params.gtNbValuesX       = paramValue.toInt();
2286       else if ( paramName == "gtNbValuesY" )       params.gtNbValuesY       = paramValue.toInt();
2287       else if ( paramName == "gtNbValuesZ" )       params.gtNbValuesZ       = paramValue.toInt();
2288       else if ( paramName == "gtOffsetX" )         params.gtOffsetX         = paramValue.toInt();
2289       else if ( paramName == "gtOffsetY" )         params.gtOffsetY         = paramValue.toInt();
2290       else if ( paramName == "gtOffsetZ" )         params.gtOffsetZ         = paramValue.toInt();
2291       else if ( paramName == "gtColorRX" )         params.gtColorRX         = paramValue.toInt();
2292       else if ( paramName == "gtColorGX" )         params.gtColorGX         = paramValue.toInt();
2293       else if ( paramName == "gtColorBX" )         params.gtColorBX         = paramValue.toInt();
2294       else if ( paramName == "gtColorRY" )         params.gtColorRY         = paramValue.toInt();
2295       else if ( paramName == "gtColorGY" )         params.gtColorGY         = paramValue.toInt();
2296       else if ( paramName == "gtColorBY" )         params.gtColorBY         = paramValue.toInt();
2297       else if ( paramName == "gtColorRZ" )         params.gtColorRZ         = paramValue.toInt();
2298       else if ( paramName == "gtColorGZ" )         params.gtColorGZ         = paramValue.toInt();
2299       else if ( paramName == "gtColorBZ" )         params.gtColorBZ         = paramValue.toInt();
2300       else if ( paramName == "gtDrawTickmarksX" )  params.gtDrawTickmarksX  = paramValue.toInt();
2301       else if ( paramName == "gtDrawTickmarksY" )  params.gtDrawTickmarksY  = paramValue.toInt();
2302       else if ( paramName == "gtDrawTickmarksZ" )  params.gtDrawTickmarksZ  = paramValue.toInt();
2303       else if ( paramName == "gtTickmarkLengthX" ) params.gtTickmarkLengthX = paramValue.toInt();
2304       else if ( paramName == "gtTickmarkLengthY" ) params.gtTickmarkLengthY = paramValue.toInt();
2305       else if ( paramName == "gtTickmarkLengthZ" ) params.gtTickmarkLengthZ = paramValue.toInt();
2306       else if ( paramName == "background" )        {
2307   QString bg = paramValue.replace( "$", "=" );
2308   bgData = Qtx::stringToBackground( bg );
2309       }
2310     }
2311   }
2312   else // old format - "1.000e+00*0.000e+00..."
2313   {
2314     int idx = 0;
2315     params.scale     = data.count() > idx ? data[idx++].toDouble() : 1.0;
2316     params.centerX   = data.count() > idx ? data[idx++].toDouble() : 0.0;
2317     params.centerY   = data.count() > idx ? data[idx++].toDouble() : 0.0;
2318     params.projX     = data.count() > idx ? data[idx++].toDouble() : sqrt(1./3);
2319     params.projY     = data.count() > idx ? data[idx++].toDouble() : -sqrt(1./3);
2320     params.projZ     = data.count() > idx ? data[idx++].toDouble() : sqrt(1./3);
2321     params.twist     = data.count() > idx ? data[idx++].toDouble() : 0.0;
2322     params.atX       = data.count() > idx ? data[idx++].toDouble() : 0.0;
2323     params.atY       = data.count() > idx ? data[idx++].toDouble() : 0.0;
2324     params.atZ       = data.count() > idx ? data[idx++].toDouble() : 0.0;
2325     params.eyeX      = data.count() > idx ? data[idx++].toDouble() : sqrt(250000./3);
2326     params.eyeY      = data.count() > idx ? data[idx++].toDouble() : -sqrt(250000./3);
2327     params.eyeZ      = data.count() > idx ? data[idx++].toDouble() : sqrt(250000./3);
2328     params.scaleX    = data.count() > idx ? data[idx++].toDouble() : 1.0;
2329     params.scaleY    = data.count() > idx ? data[idx++].toDouble() : 1.0;
2330     params.scaleZ    = data.count() > idx ? data[idx++].toDouble() : 1.0;
2331     params.isVisible = data.count() > idx ? data[idx++].toInt()    : 1;
2332     params.size      = data.count() > idx ? data[idx++].toDouble() : 100.0;
2333   }
2334   performRestoring( params );  
2335   setBackground( bgData );
2336   myModel->setClipPlanes(aClipPlanes);
2337 }
2338
2339 /*!
2340   \brief Handle show event.
2341
2342   Emits Show() signal.
2343
2344   \param theEvent show event
2345 */
2346 void OCCViewer_ViewWindow::showEvent( QShowEvent* theEvent )
2347 {
2348   emit Show( theEvent );
2349 }
2350
2351 /*!
2352   \brief Handle hide event.
2353
2354   Emits Hide() signal.
2355
2356   \param theEvent hide event
2357 */
2358 void OCCViewer_ViewWindow::hideEvent( QHideEvent* theEvent )
2359 {
2360   emit Hide( theEvent );
2361 }
2362
2363
2364 /*!
2365     Creates default sketcher. [ virtual protected ]
2366 */
2367 OCCViewer_ViewSketcher* OCCViewer_ViewWindow::createSketcher( int type )
2368 {
2369   if ( type == Rect )
2370     return new OCCViewer_RectSketcher( this, type );
2371   if ( type == Polygon )
2372     return new OCCViewer_PolygonSketcher( this, type );
2373   return 0;
2374 }
2375
2376 void OCCViewer_ViewWindow::initSketchers()
2377 {
2378   if ( mySketchers.isEmpty() )
2379   {
2380     mySketchers.append( createSketcher( Rect ) );
2381     mySketchers.append( createSketcher( Polygon ) );
2382   }
2383 }
2384
2385 OCCViewer_ViewSketcher* OCCViewer_ViewWindow::getSketcher( const int typ )
2386 {
2387   OCCViewer_ViewSketcher* sketcher = 0;
2388   QList<OCCViewer_ViewSketcher*>::Iterator it;
2389   for ( it = mySketchers.begin(); it != mySketchers.end() && !sketcher; ++it )
2390   {
2391     OCCViewer_ViewSketcher* sk = (*it);
2392     if ( sk->type() == typ )
2393       sketcher = sk;
2394   }
2395   return sketcher;
2396 }
2397
2398 /*!
2399     Handles requests for sketching in the active view. [ virtual public ]
2400 */
2401 void OCCViewer_ViewWindow::activateSketching( int type )
2402 {
2403   OCCViewer_ViewPort3d* vp = getViewPort();
2404   if ( !vp )
2405     return;
2406
2407   if ( !vp->isSketchingEnabled() )
2408     return;
2409
2410   /* Finish current sketching */
2411   if ( type == NoSketching )
2412   {
2413     if ( mypSketcher )
2414     {
2415       onSketchingFinished();
2416       mypSketcher->deactivate();
2417       mypSketcher = 0;
2418     }
2419   }
2420   /* Activate new sketching */
2421   else
2422   {
2423     activateSketching( NoSketching );  /* concurrency not suported */
2424     mypSketcher = getSketcher( type );
2425     if ( mypSketcher )
2426     {
2427       mypSketcher->activate();
2428       onSketchingStarted();
2429     }
2430   }
2431 }
2432
2433 /*!
2434     Unhilights detected entities. [ virtual protected ]
2435 */
2436 void OCCViewer_ViewWindow::onSketchingStarted()
2437 {
2438 }
2439
2440 /*!
2441     Selection by rectangle or polygon. [ virtual protected ]
2442 */
2443 void OCCViewer_ViewWindow::onSketchingFinished()
2444 {
2445   MESSAGE("OCCViewer_ViewWindow::onSketchingFinished()")
2446   if ( mypSketcher && mypSketcher->result() == OCCViewer_ViewSketcher::Accept )
2447   {
2448     Handle(AIS_InteractiveContext) ic = myModel->getAISContext();
2449     bool append = bool( mypSketcher->buttonState() && mypSketcher->isHasShift() );
2450     switch( mypSketcher->type() )
2451     {
2452     case Rect:
2453       {
2454         QRect* aRect = (QRect*)mypSketcher->data();
2455         if( aRect )
2456         {
2457           int aLeft = aRect->left();
2458           int aRight = aRect->right();
2459           int aTop = aRect->top();
2460           int aBottom = aRect->bottom();
2461 //           myRect = aRect;
2462
2463           if( append )
2464             ic->ShiftSelect( aLeft, aBottom, aRight, aTop, getViewPort()->getView(), Standard_False );
2465           else
2466             ic->Select( aLeft, aBottom, aRight, aTop, getViewPort()->getView(), Standard_False );
2467         }
2468       }
2469       break;
2470     case Polygon:
2471       {
2472         QPolygon* aPolygon = (QPolygon*)mypSketcher->data();
2473         if( aPolygon )
2474         {
2475           int size = aPolygon->size();
2476           TColgp_Array1OfPnt2d anArray( 1, size );
2477
2478           QPolygon::Iterator it = aPolygon->begin();
2479           QPolygon::Iterator itEnd = aPolygon->end();
2480           for( int index = 1; it != itEnd; ++it, index++ )
2481           {
2482             QPoint aPoint = *it;
2483             anArray.SetValue( index, gp_Pnt2d( aPoint.x(), aPoint.y() ) );
2484           }
2485
2486           if( append )
2487             ic->ShiftSelect( anArray, getViewPort()->getView(), Standard_False );
2488           else
2489             ic->Select( anArray, getViewPort()->getView(), Standard_False );
2490         }
2491       }
2492       break;
2493     default:
2494       break;
2495     }
2496
2497     OCCViewer_ViewManager* aViewMgr = ( OCCViewer_ViewManager* )getViewManager();
2498     aViewMgr->getOCCViewer()->performSelectionChanged();
2499   }
2500 }
2501
2502 OCCViewer_ViewPort3d* OCCViewer_ViewWindow::getViewPort()
2503 {
2504   return myViewPort;
2505 }
2506
2507 bool OCCViewer_ViewWindow::transformRequested() const
2508 {
2509   return ( myOperation != NOTHING );
2510 }
2511
2512 bool OCCViewer_ViewWindow::transformInProcess() const
2513 {
2514   return myEventStarted;
2515 }
2516
2517 void OCCViewer_ViewWindow::setTransformInProcess( bool bOn )
2518 {
2519   myEventStarted = bOn;
2520 }
2521
2522 /*!
2523   Set enabled state of transformation (rotate, zoom, etc)
2524 */
2525 void OCCViewer_ViewWindow::setTransformEnabled( const OperationType id, const bool on )
2526 {
2527   if ( id != NOTHING ) myStatus.insert( id, on );
2528 }
2529
2530 /*!
2531   \return enabled state of transformation (rotate, zoom, etc)
2532 */
2533 bool OCCViewer_ViewWindow::transformEnabled( const OperationType id ) const
2534 {
2535   return myStatus.contains( id ) ? myStatus[ id ] : true;
2536 }
2537
2538 void OCCViewer_ViewWindow::onMaximizedView()
2539 {
2540   setMaximized(!isMaximized());
2541 }
2542
2543 void OCCViewer_ViewWindow::returnTo3dView()
2544 {
2545   setReturnedTo3dView( true );
2546 }
2547
2548 void OCCViewer_ViewWindow::setReturnedTo3dView(bool isVisible3dView)
2549 {
2550   if ( !toolMgr()->action( ReturnTo3dViewId ) ||
2551     toolMgr()->isShown(ReturnTo3dViewId) != isVisible3dView ) return;
2552   if ( !isVisible3dView )
2553     toolMgr()->show( ReturnTo3dViewId );
2554   else
2555     toolMgr()->hide( ReturnTo3dViewId );
2556   if ( isVisible3dView ) emit returnedTo3d( );
2557 }
2558
2559
2560 void OCCViewer_ViewWindow::setMaximized(bool toMaximize, bool toSendSignal)
2561 {
2562   QAction* anAction =  toolMgr()->action( MaximizedId );
2563   QAction* anAction2 =  toolMgr()->action( ReturnTo3dViewId );
2564   SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
2565   if ( toMaximize ) {
2566     anAction->setText( tr( "MNU_MINIMIZE_VIEW" ) );  
2567     anAction->setToolTip( tr( "MNU_MINIMIZE_VIEW" ) );  
2568     anAction->setIcon( aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_MINIMIZE" ) ) );
2569     anAction->setStatusTip( tr( "DSC_MINIMIZE_VIEW" ) );
2570     if ( anAction2 && my2dMode != No2dMode ) toolMgr()->show( ReturnTo3dViewId );
2571     if (toSendSignal) {
2572       emit maximized( this, true );
2573     }
2574   }
2575   else {
2576     anAction->setText( tr( "MNU_MAXIMIZE_VIEW" ) );  
2577     anAction->setToolTip( tr( "MNU_MAXIMIZE_VIEW" ) );  
2578     anAction->setIcon( aResMgr->loadPixmap( "OCCViewer", tr( "ICON_OCCVIEWER_MAXIMIZE" ) ) );
2579     anAction->setStatusTip( tr( "DSC_MAXIMIZE_VIEW" ) );
2580     if ( anAction2 && my2dMode != No2dMode ) toolMgr()->hide( ReturnTo3dViewId );
2581     if (toSendSignal) {
2582       emit maximized( this, false );
2583     }
2584   }
2585 }
2586
2587 bool OCCViewer_ViewWindow::isMaximized() const
2588 {
2589   return !(toolMgr()->action( MaximizedId )->text() == tr( "MNU_MAXIMIZE_VIEW" ));
2590 }
2591
2592 void OCCViewer_ViewWindow::setSketcherStyle( bool enable )
2593
2594   IsSketcherStyle = enable; 
2595 }
2596
2597 bool OCCViewer_ViewWindow::isSketcherStyle() const 
2598
2599   return IsSketcherStyle; 
2600 }
2601
2602
2603 void OCCViewer_ViewWindow::set2dMode(Mode2dType theType)
2604 {
2605   my2dMode = theType;
2606 }
2607
2608 // obsolete   
2609 QColor OCCViewer_ViewWindow::backgroundColor() const
2610 {
2611   return myViewPort ? myViewPort->backgroundColor() : Qt::black;
2612 }
2613    
2614 // obsolete
2615 void OCCViewer_ViewWindow::setBackgroundColor( const QColor& theColor )
2616 {
2617   if ( myViewPort ) myViewPort->setBackgroundColor( theColor );
2618 }
2619
2620 Qtx::BackgroundData OCCViewer_ViewWindow::background() const
2621 {
2622   return myViewPort ? myViewPort->background() : Qtx::BackgroundData();
2623 }
2624    
2625 void OCCViewer_ViewWindow::setBackground( const Qtx::BackgroundData& theBackground )
2626 {
2627   if ( myViewPort ) myViewPort->setBackground( theBackground );
2628 }
2629
2630 /*!
2631   Clears view aspects
2632 */
2633 void OCCViewer_ViewWindow::clearViewAspects()
2634 {
2635   myViewAspects.clear();
2636 }
2637
2638 /*!
2639   \return const reference to list of view aspects
2640 */
2641 const viewAspectList& OCCViewer_ViewWindow::getViewAspects()
2642 {
2643   return myViewAspects;
2644 }
2645
2646 /*!
2647   Appends new view aspect
2648   \param aParams - new view aspects
2649 */
2650 void OCCViewer_ViewWindow::appendViewAspect( const viewAspect& aParams )
2651 {
2652   myViewAspects.append( aParams );
2653 }
2654
2655 /*!
2656   Replaces old view aspects by new ones
2657   \param aViewList - list of new view aspects
2658 */
2659 void OCCViewer_ViewWindow::updateViewAspects( const viewAspectList& aViewList )
2660 {
2661   myViewAspects = aViewList;
2662 }
2663
2664 /*!
2665   Get camera properties for the OCC view window.
2666   \return shared pointer on camera properties.
2667 */
2668 SUIT_CameraProperties OCCViewer_ViewWindow::cameraProperties()
2669 {
2670   SUIT_CameraProperties aProps;
2671
2672   Handle(V3d_View) aSourceView = getViewPort()->getView();
2673   if ( aSourceView.IsNull() )
2674     return aProps;
2675
2676   if ( get2dMode() == No2dMode ) {
2677     aProps.setDimension( SUIT_CameraProperties::Dim3D );
2678   }
2679   else {
2680     aProps.setDimension( SUIT_CameraProperties::Dim2D );
2681     aProps.setViewSide( (SUIT_CameraProperties::ViewSide)(int)get2dMode() );
2682   }
2683   
2684   // read common properites of the view
2685   Standard_Real anUpDir[3];
2686   Standard_Real aPrjDir[3];
2687   Standard_Real aMapScale[2];
2688   Standard_Real aTranslation[3];
2689   Standard_Real anAxialScale[3];
2690   
2691   aSourceView->Up(anUpDir[0], anUpDir[1], anUpDir[2]);
2692   aSourceView->Proj(aPrjDir[0], aPrjDir[1], aPrjDir[2]);
2693   aSourceView->At(aTranslation[0], aTranslation[1], aTranslation[2]);
2694   aSourceView->Size(aMapScale[0], aMapScale[1]);
2695
2696   getViewPort()->getAxialScale(anAxialScale[0], anAxialScale[1], anAxialScale[2]);
2697
2698   // we use similar depth to the one used in perspective projection 
2699   // to proivde a convinience synchronization with other camera views that
2700   // can switch between orthogonal & perspective projection. otherwise,
2701   // the camera will get to close when switching from orthogonal to perspective.
2702   Standard_Real aCameraDepth = aSourceView->Depth() + aSourceView->ZSize() * 0.5;
2703
2704   // store common props
2705   aProps.setViewUp(anUpDir[0], anUpDir[1], anUpDir[2]);
2706   aProps.setMappingScale(aMapScale[1] / 2.0);
2707   aProps.setAxialScale(anAxialScale[0], anAxialScale[1], anAxialScale[2]);
2708   
2709   // generate view orientation matrix for transforming OCC projection reference point
2710   // into a camera (eye) position.
2711   gp_Dir aLeftDir = gp_Dir(anUpDir[0], anUpDir[1], anUpDir[2]).Crossed(
2712     gp_Dir(aPrjDir[0], aPrjDir[1], aPrjDir[2]));
2713
2714   gp_Trsf aTrsf;
2715   aTrsf.SetValues( aLeftDir.X(), anUpDir[0], aPrjDir[0], aTranslation[0],
2716                    aLeftDir.Y(), anUpDir[1], aPrjDir[1], aTranslation[1],
2717                    aLeftDir.Z(), anUpDir[2], aPrjDir[2], aTranslation[2],
2718                    Precision::Confusion(),
2719                    Precision::Confusion() );
2720
2721   // get projection reference point in view coordinates
2722   Graphic3d_Vertex aProjRef = aSourceView->ViewMapping().ProjectionReferencePoint();
2723   
2724   // transform to world-space coordinate system
2725   gp_Pnt aPosition = gp_Pnt(aProjRef.X(), aProjRef.Y(), aCameraDepth).Transformed(aTrsf);
2726   
2727   // compute focal point
2728   double aFocalPoint[3];
2729
2730   aFocalPoint[0] = aPosition.X() - aPrjDir[0] * aCameraDepth;
2731   aFocalPoint[1] = aPosition.Y() - aPrjDir[1] * aCameraDepth;
2732   aFocalPoint[2] = aPosition.Z() - aPrjDir[2] * aCameraDepth;
2733
2734   aProps.setFocalPoint(aFocalPoint[0], aFocalPoint[1], aFocalPoint[2]);
2735   aProps.setPosition(aPosition.X(), aPosition.Y(), aPosition.Z());
2736
2737   return aProps;
2738 }
2739
2740 /*!
2741   Synchronize views.
2742   This implementation synchronizes OCC view's camera propreties.
2743 */
2744 void OCCViewer_ViewWindow::synchronize( SUIT_ViewWindow* theView )
2745 {
2746   bool blocked = blockSignals( true );
2747
2748   SUIT_CameraProperties aProps = theView->cameraProperties();
2749   if ( !cameraProperties().isCompatible( aProps ) ) {
2750     // other view, this one is being currently synchronized to, seems has become incompatible
2751     // we have to break synchronization
2752     updateSyncViews();
2753     return;
2754   }
2755
2756   Handle(V3d_View) aDestView = getViewPort()->getView();
2757
2758   aDestView->SetImmediateUpdate( Standard_False );
2759
2760   double anUpDir[3];
2761   double aPosition[3];
2762   double aFocalPoint[3];
2763   double aMapScaling;
2764   double anAxialScale[3];
2765
2766   // get common properties
2767   aProps.getFocalPoint(aFocalPoint[0], aFocalPoint[1], aFocalPoint[2]);
2768   aProps.getPosition(aPosition[0], aPosition[1], aPosition[2]);
2769   aProps.getViewUp(anUpDir[0], anUpDir[1], anUpDir[2]);
2770   aProps.getAxialScale(anAxialScale[0], anAxialScale[1], anAxialScale[2]);
2771   aMapScaling = aProps.getMappingScale() * 2.0;
2772
2773   gp_Dir aProjDir(aPosition[0] - aFocalPoint[0],
2774                   aPosition[1] - aFocalPoint[1],
2775                   aPosition[2] - aFocalPoint[2]);
2776   
2777   // get custom view translation
2778   Standard_Real aTranslation[3];
2779   aDestView->At(aTranslation[0], aTranslation[1], aTranslation[2]);
2780
2781   gp_Dir aLeftDir = gp_Dir(anUpDir[0], anUpDir[1], anUpDir[2]).Crossed(
2782     gp_Dir(aProjDir.X(), aProjDir.Y(), aProjDir.Z()));
2783
2784   // convert camera position into a view reference point
2785   gp_Trsf aTrsf;
2786   aTrsf.SetValues( aLeftDir.X(), anUpDir[0], aProjDir.X(), aTranslation[0],
2787                    aLeftDir.Y(), anUpDir[1], aProjDir.Y(), aTranslation[1],
2788                    aLeftDir.Z(), anUpDir[2], aProjDir.Z(), aTranslation[2], 
2789                    Precision::Confusion(),
2790                    Precision::Confusion() );
2791   aTrsf.Invert();
2792
2793   // transform to view-space coordinate system
2794   gp_Pnt aProjRef(aPosition[0], aPosition[1], aPosition[2]);
2795   aProjRef.Transform(aTrsf);
2796
2797   // set view camera properties using low-level approach. this is done
2798   // in order to avoid interference with static variables in v3d view used
2799   // when rotation is in process in another view.
2800   Visual3d_ViewMapping aMapping = aDestView->View()->ViewMapping();
2801   Visual3d_ViewOrientation anOrientation = aDestView->View()->ViewOrientation();
2802
2803   Graphic3d_Vector aMappingProj(aProjDir.X(), aProjDir.Y(), aProjDir.Z());
2804   Graphic3d_Vector aMappingUp(anUpDir[0], anUpDir[1], anUpDir[2]);
2805
2806   aMappingProj.Normalize();
2807   aMappingUp.Normalize();
2808
2809   anOrientation.SetViewReferencePlane(aMappingProj);
2810   anOrientation.SetViewReferenceUp(aMappingUp);
2811
2812   aDestView->SetViewMapping(aMapping);
2813   aDestView->SetViewOrientation(anOrientation);
2814
2815   // set panning
2816   aDestView->SetCenter(aProjRef.X(), aProjRef.Y());
2817
2818   // set mapping scale
2819   Standard_Real aWidth, aHeight;
2820   aDestView->Size(aWidth, aHeight);
2821   
2822   if ( aWidth > aHeight )
2823     aDestView->SetSize (aMapScaling * (aWidth / aHeight));
2824   else
2825     aDestView->SetSize (aMapScaling);
2826
2827   getViewPort()->setAxialScale(anAxialScale[0], anAxialScale[1], anAxialScale[2]);
2828
2829   aDestView->ZFitAll();
2830   aDestView->SetImmediateUpdate( Standard_True );
2831   aDestView->Redraw();
2832
2833   blockSignals( blocked );
2834 }
2835
2836 /*!
2837   \brief Indicates whether preselection is enabled
2838   \return true if preselection is enabled
2839 */
2840 bool OCCViewer_ViewWindow::isPreselectionEnabled() const
2841 {
2842   return myPreselectionEnabled;
2843 }
2844
2845 /*!
2846   \brief Enables/disables preselection
2847   \param theIsToEnable if true - preselection will be enabled
2848 */
2849 void OCCViewer_ViewWindow::enablePreselection( bool theIsToEnable )
2850 {
2851   onSwitchPreselection( theIsToEnable );
2852 }
2853
2854 /*!
2855   \brief Indicates whether selection is enabled
2856   \return true if selection is enabled
2857 */
2858 bool OCCViewer_ViewWindow::isSelectionEnabled() const
2859 {
2860   return mySelectionEnabled;
2861 }
2862
2863 /*!
2864   \brief Enables/disables selection
2865   \param theIsToEnable if true - selection will be enabled
2866 */
2867 void OCCViewer_ViewWindow::enableSelection( bool theIsToEnable )
2868 {
2869   onSwitchSelection( theIsToEnable );
2870 }
2871
2872
2873 /*!
2874   \brief called if clipping operation is activated / deactivated.
2875
2876   Enables/disables clipping plane displaying.
2877
2878   \parma on action state
2879 */
2880 void OCCViewer_ViewWindow::onClipping (bool theIsOn)
2881 {
2882   if(!myModel) return;
2883   OCCViewer_ClippingDlg* aClippingDlg = myModel->getClippingDlg();
2884   
2885   if (theIsOn) {
2886     if (!aClippingDlg) {
2887       aClippingDlg = new OCCViewer_ClippingDlg (this, myModel);
2888       myModel->setClippingDlg(aClippingDlg);
2889     }
2890     if (!aClippingDlg->isVisible())
2891       aClippingDlg->show();
2892   } else {
2893     if ( aClippingDlg ) {
2894       aClippingDlg->close();
2895       myModel->setClippingDlg(0);
2896     }
2897   }
2898
2899   SUIT_ViewManager* mgr = getViewManager();
2900   if( mgr ) {
2901     QVector<SUIT_ViewWindow*> aViews = mgr->getViews();
2902     for(int i = 0, iEnd = aViews.size(); i < iEnd; i++) {
2903       if(SUIT_ViewWindow* aViewWindow = aViews.at(i)) {
2904         QtxActionToolMgr* mgr = aViewWindow->toolMgr();
2905         if(!mgr) continue;
2906         QAction* a = toolMgr()->action( ClippingId );
2907         if(!a) continue;
2908         if(theIsOn != a->isChecked()){
2909           disconnect (a, SIGNAL (toggled (bool)), aViewWindow, SLOT (onClipping (bool)));
2910           a->setChecked(theIsOn);
2911           connect (a, SIGNAL (toggled (bool)), aViewWindow, SLOT (onClipping (bool)));
2912         }
2913       }
2914     }
2915   }
2916 }