Salome HOME
Update copyrights
[modules/gui.git] / src / OCCViewer / OCCViewer_ViewSketcher.cxx
1 // Copyright (C) 2007-2019  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "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 #if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
302     QApplication::syncX();  /* force rectangle redrawing */
303 #endif
304     mypViewWindow->activateSketching( OCCViewer_ViewWindow::NoSketching );
305   }
306 }
307
308 /****************************************************************
309 **  Class: OCCViewer_PolygonSketcher
310 **  Level: Public
311 *****************************************************************/
312
313 OCCViewer_PolygonSketcher::OCCViewer_PolygonSketcher( OCCViewer_ViewWindow* vw, int typ )
314 : OCCViewer_ViewSketcher( vw, typ ),
315   myDbl           ( false ),
316   myToler         ( 5, 5 ),
317   //mypPoints        ( 0L ),
318   myAddButton     ( 0 ),
319   myDelButton     ( 0 )
320 {
321   mySketchButton = Qt::RightButton;
322   if ( vw )
323     {
324       OCCViewer_ViewPort3d* avp = mypViewWindow->getViewPort();
325       mypPolyRB = new QtxPolyRubberBand( avp );
326     }
327 }
328
329 OCCViewer_PolygonSketcher::~OCCViewer_PolygonSketcher()
330 {
331   //delete mypPoints;
332   delete (QPolygon*)mypData;
333 }
334
335 void OCCViewer_PolygonSketcher::onActivate()
336 {
337   myDbl = false;
338   mypData = new QPolygon( 0 );
339   //mypPoints = new QPolygon( 0 );
340
341   switch ( sketchButton() )
342   {
343   case Qt::LeftButton:
344     myAddButton = Qt::RightButton;
345     myDelButton = Qt::MidButton;
346     break;
347   case Qt::MidButton:
348     myAddButton = Qt::LeftButton;
349     myDelButton = Qt::RightButton;
350     break;
351   case Qt::RightButton:
352   default:
353     myAddButton = Qt::LeftButton;
354     myDelButton = Qt::MidButton;
355     break;
356   };
357 }
358
359 void OCCViewer_PolygonSketcher::onDeactivate()
360 {
361   //delete mypPoints;
362   //mypPoints = 0;
363   delete (QPolygon*)mypData;
364   mypData = 0;
365
366   if ( mypPolyRB )
367     mypPolyRB->clearGeometry();  
368 }
369
370 bool OCCViewer_PolygonSketcher::onKey( QKeyEvent* e )
371 {
372   if ( e->key() == Qt::Key_Escape )
373   {
374     myResult = Reject;
375     return true;
376   }
377   else if ( e->key() == Qt::Key_Enter || e->key() == Qt::Key_Return )
378   {
379     QPolygon* points = (QPolygon*)data();
380     if ( points->count() )
381     {
382       QPoint last = points->point( points->count() - 1 );
383       if ( last != myCurr )
384       {
385         points->resize( points->count() + 1 );
386         points->setPoint( points->count() - 1, myCurr );
387       }
388     }
389     myResult = Accept;
390     return true;
391   }
392   else if ( e->key() == Qt::Key_Backspace && e->type() == QEvent::KeyRelease )
393   {
394     QPolygon* points = (QPolygon*)data();
395     if ( points->count() > 1 )
396       points->resize( points->count() - 1 );
397     onMouse( 0 );
398     return true;
399   }
400
401   return true;
402 }
403
404 void OCCViewer_PolygonSketcher::onMouse( QMouseEvent* e )
405 {
406   OCCViewer_ViewPort3d* avp = mypViewWindow->getViewPort();
407
408   QPolygon* points = (QPolygon*)data();
409   if ( !points->count() && !myStart.isNull() )
410   {
411     points->resize( points->count() + 1 );
412     points->setPoint( points->count() - 1, myStart );
413   }
414
415   bool closed = false;
416   bool valid = avp->rect().contains( myCurr );
417   if ( !myStart.isNull() )
418   {
419     QRect aRect( myStart.x() - myToler.width(), myStart.y() - myToler.height(),
420                  2 * myToler.width(), 2 * myToler.height() );
421     closed = aRect.contains( myCurr );
422   }
423   valid = valid && isValid( points, myCurr );
424   if ( closed && !valid )
425     closed = false;
426
427   if ( closed )
428     avp->setCursor( Qt::CrossCursor );
429   else if ( valid )
430     avp->setCursor( Qt::PointingHandCursor );
431   else
432     avp->setCursor( Qt::ForbiddenCursor );
433
434   if ( !e )
435     return;
436
437   if ( e->type() == QEvent::MouseButtonRelease && ( e->button() & sketchButton() ) )
438   {
439     myResult = Reject;
440     QApplication::postEvent( avp, new QMouseEvent( e->type(), e->pos(),
441                                                    e->globalPos(), e->button(), 
442                                                    e->buttons(), e->modifiers() ) );
443   }
444   else if ( e->type() == QEvent::MouseButtonRelease && ( e->button() & myAddButton ) )
445   {
446     if ( closed )
447       myResult = Accept;
448     else
449     {
450       if ( myStart.isNull() )
451         myStart = myCurr;
452       else
453       {
454         QPoint last = points->point( points->count() - 1 );
455         if ( last != myCurr && valid )
456         {
457           points->resize( points->count() + 1 );
458           points->setPoint( points->count() - 1, myCurr );
459         }
460         if ( valid && myDbl )
461           myResult = Accept;
462       }
463     }
464   }
465   else if ( ( e->type() == QEvent::MouseButtonRelease && ( e->button() & myDelButton ) ) ||
466             ( e->type() == QEvent::MouseButtonDblClick && ( e->button() & myDelButton ) ) )
467   {
468     if ( points->count() > 1 )
469       points->resize( points->count() - 1 );
470     onMouse( 0 );
471   }
472   myDbl = e->type() == QEvent::MouseButtonDblClick && ( e->button() & myAddButton );
473 }
474
475 void OCCViewer_PolygonSketcher::onSketch( SketchState state )
476 {
477   //OCCViewer_ViewPort3d* avp = mypViewWindow->getViewPort();
478
479   QPolygon* points = (QPolygon*)data();
480   /*QPainter p( avp );
481   p.setPen( Qt::white );
482   p.setCompositionMode( QPainter::CompositionMode_Xor );
483   if ( state != Debut )
484     p.drawPolyline( *mypPoints );
485
486   if ( points->count() )
487   {
488     mypPoints->resize( points->count() + 1 );
489     for ( uint i = 0; i < points->count(); i++ )
490       mypPoints->setPoint( i, points->point( i ) );
491     mypPoints->setPoint( points->count(), myCurr );
492     if ( state != Fin )
493       p.drawPolyline( *mypPoints );
494       }*/
495   if ( mypPolyRB ) {
496     if ( state == Fin ) {
497       mypPolyRB->clearGeometry();
498       mypPolyRB->hide();
499 #if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
500       QApplication::syncX();
501 #endif
502       mypViewWindow->activateSketching( OCCViewer_ViewWindow::NoSketching );
503     } else {
504       mypPolyRB->setUpdatesEnabled ( false );
505       if ( !mypPolyRB->isVisible() )
506         mypPolyRB->show();
507       //if ( state != Debut )
508       //  mypPolyRB->repaint();
509       
510       if ( state != Fin && points->count() )
511         mypPolyRB->initGeometry( QPolygon(*points) << myCurr );
512       //mypPolyRB->addNode( myCurr );
513       
514       //if ( state != Fin )
515       //  mypPolyRB->repaint();
516       mypPolyRB->setUpdatesEnabled ( true );
517       //mypPolyRB->repaint();
518     }
519   }
520 }
521
522 bool OCCViewer_PolygonSketcher::isValid( const QPolygon* aPoints, const QPoint& aCur ) const
523 {
524   if ( !aPoints->count() )
525     return true;
526
527   if ( aPoints->count() == 1 && aPoints->point( 0 ) == aCur )
528     return false;
529
530   const QPoint& aLast = aPoints->point( aPoints->count() - 1 );
531
532   if ( aLast == aCur )
533     return true;
534
535   bool res = true;
536   for ( uint i = 0; i < aPoints->count() - 1 && res; i++ )
537   {
538     const QPoint& aStart = aPoints->point( i );
539     const QPoint& anEnd  = aPoints->point( i + 1 );
540     res = !isIntersect( aStart, anEnd, aCur, aLast );
541   }
542
543   return res;
544 }
545
546 bool OCCViewer_PolygonSketcher::isIntersect( const QPoint& aStart1, const QPoint& anEnd1,
547                                              const QPoint& aStart2, const QPoint& anEnd2 ) const
548 {
549   if ( ( aStart1 == aStart2 && anEnd1 == anEnd2 ) ||
550        ( aStart1 == anEnd2 && anEnd1 == aStart2 ) )
551     return true;
552
553   if ( aStart1 == aStart2 || aStart2 == anEnd1 ||
554        aStart1 == anEnd2 || anEnd1 == anEnd2 )
555     return false;
556
557   double x11 = aStart1.x() * 1.0;
558   double x12 = anEnd1.x() * 1.0;
559   double y11 = aStart1.y() * 1.0;
560   double y12 = anEnd1.y() * 1.0;
561
562   double x21 = aStart2.x() * 1.0;
563   double x22 = anEnd2.x() * 1.0;
564   double y21 = aStart2.y() * 1.0;
565   double y22 = anEnd2.y() * 1.0;
566
567   double k1 = x12 == x11 ? 0 : ( y12 - y11 ) / ( x12 - x11 );
568   double k2 = x22 == x21 ? 0 : ( y22 - y21 ) / ( x22 - x21 );
569
570   double b1 = y11 - k1 * x11;
571   double b2 = y21 - k2 * x21;
572
573   if ( k1 == k2 )
574   {
575     if ( b1 != b2 )
576       return false;
577     else
578       return !( ( qMax( x11, x12 ) <= qMin( x21, x22 ) ||
579                   qMin( x11, x12 ) >= qMax( x21, x22 ) ) &&
580                 ( qMax( y11, y12 ) <= qMin( y21, y22 ) ||
581                   qMin( y11, y12 ) >= qMax( y21, y22 ) ) );
582   }
583   else
584   {
585     double x0 = ( b2 - b1 ) / ( k1 - k2 );
586     double y0 = ( k1 * b2 - k2 * b1 ) / ( k1 - k2 );
587
588     if ( qMin( x11, x12 ) < x0 && x0 < qMax( x11, x12 ) &&
589          qMin( y11, y12 ) < y0 && y0 < qMax( y11, y12 ) &&
590          qMin( x21, x22 ) < x0 && x0 < qMax( x21, x22 ) &&
591          qMin( y21, y22 ) < y0 && y0 < qMax( y21, y22 ) )
592       return true;
593   }
594   return false;
595 }
596
597