Salome HOME
0022077: EDF 2272 : Selection with the Paraview interaction mode in GEOM/SMESH
[modules/gui.git] / src / OCCViewer / OCCViewer_ViewSketcher.cxx
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "OCCViewer_ViewSketcher.h"
21 #include "OCCViewer_ViewWindow.h"
22 #include "OCCViewer_ViewPort3d.h"
23
24 #include "QtxRubberBand.h"
25
26 #include <QApplication>
27 #include <QPainter>
28 #include <QPolygon>
29 #include <QMouseEvent>
30 #include <QKeyEvent>
31
32 /****************************************************************
33 **  Class: OCCViewer_ViewSketcher
34 **  Level: Public
35 *****************************************************************/
36
37 OCCViewer_ViewSketcher::OCCViewer_ViewSketcher( OCCViewer_ViewWindow* vw, int type )
38 : QObject( vw ),
39 mySketchButton( Qt::LeftButton ),
40 mypViewWindow( vw ),
41 myType( type ),
42 mypData( 0 ),
43 myResult( Neutral ),
44 myButtonState( 0 ),
45 myHasShift( false )
46 {
47 }
48
49 OCCViewer_ViewSketcher::~OCCViewer_ViewSketcher()
50 {
51 }
52
53 void OCCViewer_ViewSketcher::activate()
54 {
55   OCCViewer_ViewPort3d* avp = mypViewWindow->getViewPort();
56
57   mySavedCursor = avp->cursor();
58   avp->setCursor( Qt::PointingHandCursor );
59   avp->installEventFilter( this );
60   qApp->installEventFilter( this );
61
62   connect( avp, SIGNAL( vpDrawExternal( QPainter* ) ), this, SLOT( onDrawViewPort() ) );
63
64   myStart = QPoint();
65   myResult = Neutral;
66
67   onActivate();
68 }
69
70 void OCCViewer_ViewSketcher::deactivate()
71 {
72   OCCViewer_ViewPort3d* avp = mypViewWindow->getViewPort();
73
74   disconnect( avp, SIGNAL( vpDrawExternal( QPainter* ) ), this, SLOT( onDrawViewPort() ) );
75
76   qApp->removeEventFilter( this );
77   avp->removeEventFilter( this );
78   avp->setCursor( mySavedCursor );
79
80   onDeactivate();
81 }
82
83 int OCCViewer_ViewSketcher::type() const
84 {
85   return myType;
86 }
87
88 void* OCCViewer_ViewSketcher::data() const
89 {
90   return mypData;
91 }
92
93 int OCCViewer_ViewSketcher::result() const
94 {
95   return myResult;
96 }
97
98 int OCCViewer_ViewSketcher::buttonState() const
99 {
100   return myButtonState;
101 }
102
103 bool OCCViewer_ViewSketcher::isHasShift() const
104 {
105   return myHasShift;
106 }
107
108 void OCCViewer_ViewSketcher::onActivate()
109 {
110 }
111
112 void OCCViewer_ViewSketcher::onDeactivate()
113 {
114 }
115
116 bool OCCViewer_ViewSketcher::isDefault() const
117 {
118   return true;
119 }
120
121 bool OCCViewer_ViewSketcher::eventFilter( QObject* o, QEvent* e )
122 {
123   OCCViewer_ViewPort3d* avp = mypViewWindow->getViewPort();
124
125   QMouseEvent* me = (QMouseEvent*)e;
126   SketchState state = EnTrain;
127   bool ignore = false;
128   if ( o == avp )
129   {
130     switch ( e->type() )
131     {
132       case QEvent::MouseMove:
133       case QEvent::MouseButtonPress:
134       case QEvent::MouseButtonRelease:
135       case QEvent::MouseButtonDblClick:
136       {
137
138         myButtonState = me->buttons();
139         if ( e->type() == QEvent::MouseButtonPress )
140           myButtonState |= me->button();
141
142         if ( myStart.isNull() && ( myButtonState & sketchButton() ) )
143         {
144           state = Debut;
145           myStart = me->pos();
146         }
147
148         myCurr = me->pos();
149
150         onMouse( me );
151
152         if ( myResult != Neutral )
153           state = Fin;
154
155         ignore = true;
156         myHasShift = ( me->modifiers() & Qt::ShiftModifier );
157         break;
158       }
159       case QEvent::Hide:
160       case QEvent::HideToParent:
161         myResult = Reject;
162         onSketch( Fin );
163         break;
164       default:
165         break;
166     }
167   }
168   if ( e->type() == QEvent::KeyPress || e->type() == QEvent::KeyRelease )
169   {
170     ignore = onKey( (QKeyEvent*)e );
171     if ( myResult != Neutral )
172       state = Fin;
173   }
174
175   if ( ignore )
176   {
177     onSketch( state );
178     return true;
179   }
180   return QObject::eventFilter( o, e );
181 }
182
183 void OCCViewer_ViewSketcher::onDrawViewPort()
184 {
185   onSketch( Debut );
186 }
187
188 bool OCCViewer_ViewSketcher::onKey( QKeyEvent* )
189 {
190   return false;
191 }
192
193 void OCCViewer_ViewSketcher::onMouse( QMouseEvent* )
194 {
195 }
196
197 int OCCViewer_ViewSketcher::sketchButton()
198 {
199   return mySketchButton;
200 }
201
202 void OCCViewer_ViewSketcher::setSketchButton( int b )
203 {
204   mySketchButton = b;
205 }
206
207 /****************************************************************
208 **  Class: OCCViewer_RectSketcher
209 **  Level: Public
210 *****************************************************************/
211
212 OCCViewer_RectSketcher::OCCViewer_RectSketcher( OCCViewer_ViewWindow* vw, int typ )
213   : OCCViewer_ViewSketcher( vw, typ )
214 {
215   if ( vw )
216     {
217       OCCViewer_ViewPort3d* avp = mypViewWindow->getViewPort();
218       mypRectRB = new QtxRectRubberBand( avp );
219     }
220 }
221
222 OCCViewer_RectSketcher::~OCCViewer_RectSketcher()
223 {
224   delete (QRect*)mypData;
225 }
226
227 void OCCViewer_RectSketcher::onActivate()
228 {
229   mypData = new QRect();
230 }
231
232 void OCCViewer_RectSketcher::onDeactivate()
233 {
234   delete (QRect*)mypData;
235   mypData = 0;
236   mypRectRB->clearGeometry();
237 }
238
239 bool OCCViewer_RectSketcher::onKey( QKeyEvent* e )
240 {
241   if ( e->key() == Qt::Key_Escape )
242     myResult = Reject;
243   else if ( e->key() == Qt::Key_Enter || e->key() == Qt::Key_Return )
244     myResult = Accept;
245
246   return true;
247 }
248
249 void OCCViewer_RectSketcher::onMouse( QMouseEvent* e )
250 {
251   OCCViewer_ViewPort3d* avp = mypViewWindow->getViewPort();
252
253   if ( avp->rect().contains( myCurr ) )
254     avp->setCursor( Qt::PointingHandCursor );
255   else
256     avp->setCursor( Qt::ForbiddenCursor );
257
258   if ( e->type() == QEvent::MouseButtonRelease && e->button() == sketchButton() )
259   {
260     myResult = Accept;
261     QApplication::postEvent( avp, new QMouseEvent( e->type(), e->pos(),
262                                                    e->globalPos(), e->button(), 
263                                                    e->buttons(), e->modifiers() ) );
264   }
265 }
266
267 void OCCViewer_RectSketcher::onSketch( SketchState state )
268 {
269   //OCCViewer_ViewPort3d* avp = mypViewWindow->getViewPort();
270
271   if ( mypRectRB )
272     {      
273       QRect* sketchRect = (QRect*)data();
274       if ( myButtonState & sketchButton() )
275         {   
276           QRect rect = QRect( myStart, myCurr ).normalized();
277           /*QRect rect( qMin( myStart.x(), myCurr.x() ), qMin( myStart.y(), myCurr.y() ),
278                       qAbs( myStart.x() - myCurr.x() ), qAbs( myStart.y() - myCurr.y() ) );
279           QPainter p( avp );
280           p.setPen( Qt::white );
281           p.setCompositionMode( QPainter::CompositionMode_Xor );
282           */
283           
284           //if ( state != Debut && !sketchRect->isEmpty() )
285           //  p.drawRect( *sketchRect );
286
287           *sketchRect = rect;
288           if ( !rect.isEmpty() && state != Fin )
289             {
290               //p.drawRect( *sketchRect );            
291               mypRectRB->initGeometry( rect );
292               mypRectRB->show();
293             }          
294           else
295             mypRectRB->hide();
296         }
297     }
298
299   if ( state == Fin )
300   {
301     QApplication::syncX();  /* force rectangle redrawing */
302     mypViewWindow->activateSketching( OCCViewer_ViewWindow::NoSketching );
303   }
304 }
305
306 /****************************************************************
307 **  Class: OCCViewer_PolygonSketcher
308 **  Level: Public
309 *****************************************************************/
310
311 OCCViewer_PolygonSketcher::OCCViewer_PolygonSketcher( OCCViewer_ViewWindow* vw, int typ )
312 : OCCViewer_ViewSketcher( vw, typ ),
313   myDbl           ( false ),
314   myToler         ( 5, 5 ),
315   //mypPoints        ( 0L ),
316   myAddButton     ( 0 ),
317   myDelButton     ( 0 )
318 {
319   mySketchButton = Qt::RightButton;
320   if ( vw )
321     {
322       OCCViewer_ViewPort3d* avp = mypViewWindow->getViewPort();
323       mypPolyRB = new QtxPolyRubberBand( avp );
324     }
325 }
326
327 OCCViewer_PolygonSketcher::~OCCViewer_PolygonSketcher()
328 {
329   //delete mypPoints;
330   delete (QPolygon*)mypData;
331 }
332
333 void OCCViewer_PolygonSketcher::onActivate()
334 {
335   myDbl = false;
336   mypData = new QPolygon( 0 );
337   //mypPoints = new QPolygon( 0 );
338
339   switch ( sketchButton() )
340   {
341   case Qt::LeftButton:
342     myAddButton = Qt::RightButton;
343     myDelButton = Qt::MidButton;
344     break;
345   case Qt::MidButton:
346     myAddButton = Qt::LeftButton;
347     myDelButton = Qt::RightButton;
348     break;
349   case Qt::RightButton:
350   default:
351     myAddButton = Qt::LeftButton;
352     myDelButton = Qt::MidButton;
353     break;
354   };
355 }
356
357 void OCCViewer_PolygonSketcher::onDeactivate()
358 {
359   //delete mypPoints;
360   //mypPoints = 0;
361   delete (QPolygon*)mypData;
362   mypData = 0;
363
364   if ( mypPolyRB )
365     mypPolyRB->clearGeometry();  
366 }
367
368 bool OCCViewer_PolygonSketcher::onKey( QKeyEvent* e )
369 {
370   if ( e->key() == Qt::Key_Escape )
371   {
372     myResult = Reject;
373     return true;
374   }
375   else if ( e->key() == Qt::Key_Enter || e->key() == Qt::Key_Return )
376   {
377     QPolygon* points = (QPolygon*)data();
378     if ( points->count() )
379     {
380       QPoint last = points->point( points->count() - 1 );
381       if ( last != myCurr )
382       {
383         points->resize( points->count() + 1 );
384         points->setPoint( points->count() - 1, myCurr );
385       }
386     }
387     myResult = Accept;
388     return true;
389   }
390   else if ( e->key() == Qt::Key_Backspace && e->type() == QEvent::KeyRelease )
391   {
392     QPolygon* points = (QPolygon*)data();
393     if ( points->count() > 1 )
394       points->resize( points->count() - 1 );
395     onMouse( 0 );
396     return true;
397   }
398
399   return true;
400 }
401
402 void OCCViewer_PolygonSketcher::onMouse( QMouseEvent* e )
403 {
404   OCCViewer_ViewPort3d* avp = mypViewWindow->getViewPort();
405
406   QPolygon* points = (QPolygon*)data();
407   if ( !points->count() && !myStart.isNull() )
408   {
409     points->resize( points->count() + 1 );
410     points->setPoint( points->count() - 1, myStart );
411   }
412
413   bool closed = false;
414   bool valid = avp->rect().contains( myCurr );
415   if ( !myStart.isNull() )
416   {
417     QRect aRect( myStart.x() - myToler.width(), myStart.y() - myToler.height(),
418                  2 * myToler.width(), 2 * myToler.height() );
419     closed = aRect.contains( myCurr );
420   }
421   valid = valid && isValid( points, myCurr );
422   if ( closed && !valid )
423     closed = false;
424
425   if ( closed )
426     avp->setCursor( Qt::CrossCursor );
427   else if ( valid )
428     avp->setCursor( Qt::PointingHandCursor );
429   else
430     avp->setCursor( Qt::ForbiddenCursor );
431
432   if ( !e )
433     return;
434
435   if ( e->type() == QEvent::MouseButtonRelease && ( e->button() & sketchButton() ) )
436   {
437     myResult = Reject;
438     QApplication::postEvent( avp, new QMouseEvent( e->type(), e->pos(),
439                                                    e->globalPos(), e->button(), 
440                                                    e->buttons(), e->modifiers() ) );
441   }
442   else if ( e->type() == QEvent::MouseButtonRelease && ( e->button() & myAddButton ) )
443   {
444     if ( closed )
445       myResult = Accept;
446     else
447     {
448       if ( myStart.isNull() )
449         myStart = myCurr;
450       else
451       {
452         QPoint last = points->point( points->count() - 1 );
453         if ( last != myCurr && valid )
454         {
455           points->resize( points->count() + 1 );
456           points->setPoint( points->count() - 1, myCurr );
457         }
458         if ( valid && myDbl )
459           myResult = Accept;
460       }
461     }
462   }
463   else if ( ( e->type() == QEvent::MouseButtonRelease && ( e->button() & myDelButton ) ) ||
464             ( e->type() == QEvent::MouseButtonDblClick && ( e->button() & myDelButton ) ) )
465   {
466     if ( points->count() > 1 )
467       points->resize( points->count() - 1 );
468     onMouse( 0 );
469   }
470   myDbl = e->type() == QEvent::MouseButtonDblClick && ( e->button() & myAddButton );
471 }
472
473 void OCCViewer_PolygonSketcher::onSketch( SketchState state )
474 {
475   //OCCViewer_ViewPort3d* avp = mypViewWindow->getViewPort();
476
477   QPolygon* points = (QPolygon*)data();
478   /*QPainter p( avp );
479   p.setPen( Qt::white );
480   p.setCompositionMode( QPainter::CompositionMode_Xor );
481   if ( state != Debut )
482     p.drawPolyline( *mypPoints );
483
484   if ( points->count() )
485   {
486     mypPoints->resize( points->count() + 1 );
487     for ( uint i = 0; i < points->count(); i++ )
488       mypPoints->setPoint( i, points->point( i ) );
489     mypPoints->setPoint( points->count(), myCurr );
490     if ( state != Fin )
491       p.drawPolyline( *mypPoints );
492       }*/
493   if ( mypPolyRB )
494     {
495       mypPolyRB->setUpdatesEnabled ( false );
496       if ( !mypPolyRB->isVisible() )
497         mypPolyRB->show();
498       //if ( state != Debut )
499       //  mypPolyRB->repaint();
500
501       if ( state != Fin && points->count() )
502         mypPolyRB->initGeometry( QPolygon(*points) << myCurr );
503       //mypPolyRB->addNode( myCurr );
504
505       //if ( state != Fin )
506       //  mypPolyRB->repaint();
507       mypPolyRB->setUpdatesEnabled ( true );
508       //mypPolyRB->repaint();
509     }
510       
511   if ( state == Fin )
512   {
513     if ( mypPolyRB )
514       {
515         mypPolyRB->clearGeometry();
516         mypPolyRB->hide();
517       }
518     QApplication::syncX();
519     mypViewWindow->activateSketching( OCCViewer_ViewWindow::NoSketching );
520   }
521 }
522
523 bool OCCViewer_PolygonSketcher::isValid( const QPolygon* aPoints, const QPoint& aCur ) const
524 {
525   if ( !aPoints->count() )
526     return true;
527
528   if ( aPoints->count() == 1 && aPoints->point( 0 ) == aCur )
529     return false;
530
531   const QPoint& aLast = aPoints->point( aPoints->count() - 1 );
532
533   if ( aLast == aCur )
534     return true;
535
536   bool res = true;
537   for ( uint i = 0; i < aPoints->count() - 1 && res; i++ )
538   {
539     const QPoint& aStart = aPoints->point( i );
540     const QPoint& anEnd  = aPoints->point( i + 1 );
541     res = !isIntersect( aStart, anEnd, aCur, aLast );
542   }
543
544   return res;
545 }
546
547 bool OCCViewer_PolygonSketcher::isIntersect( const QPoint& aStart1, const QPoint& anEnd1,
548                                              const QPoint& aStart2, const QPoint& anEnd2 ) const
549 {
550   if ( ( aStart1 == aStart2 && anEnd1 == anEnd2 ) ||
551        ( aStart1 == anEnd2 && anEnd1 == aStart2 ) )
552     return true;
553
554   if ( aStart1 == aStart2 || aStart2 == anEnd1 ||
555        aStart1 == anEnd2 || anEnd1 == anEnd2 )
556     return false;
557
558   double x11 = aStart1.x() * 1.0;
559   double x12 = anEnd1.x() * 1.0;
560   double y11 = aStart1.y() * 1.0;
561   double y12 = anEnd1.y() * 1.0;
562
563   double x21 = aStart2.x() * 1.0;
564   double x22 = anEnd2.x() * 1.0;
565   double y21 = aStart2.y() * 1.0;
566   double y22 = anEnd2.y() * 1.0;
567
568   double k1 = x12 == x11 ? 0 : ( y12 - y11 ) / ( x12 - x11 );
569   double k2 = x22 == x21 ? 0 : ( y22 - y21 ) / ( x22 - x21 );
570
571   double b1 = y11 - k1 * x11;
572   double b2 = y21 - k2 * x21;
573
574   if ( k1 == k2 )
575   {
576     if ( b1 != b2 )
577       return false;
578     else
579       return !( ( qMax( x11, x12 ) <= qMin( x21, x22 ) ||
580                   qMin( x11, x12 ) >= qMax( x21, x22 ) ) &&
581                 ( qMax( y11, y12 ) <= qMin( y21, y22 ) ||
582                   qMin( y11, y12 ) >= qMax( y21, y22 ) ) );
583   }
584   else
585   {
586     double x0 = ( b2 - b1 ) / ( k1 - k2 );
587     double y0 = ( k1 * b2 - k2 * b1 ) / ( k1 - k2 );
588
589     if ( qMin( x11, x12 ) < x0 && x0 < qMax( x11, x12 ) &&
590          qMin( y11, y12 ) < y0 && y0 < qMax( y11, y12 ) &&
591          qMin( x21, x22 ) < x0 && x0 < qMax( x21, x22 ) &&
592          qMin( y21, y22 ) < y0 && y0 < qMax( y21, y22 ) )
593       return true;
594   }
595   return false;
596 }
597
598