X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FOCCViewer%2FOCCViewer_ViewSketcher.cxx;h=16d028f1d787bfbdf1ae8cb0b3eb4e5ef95218c2;hb=8d986a56d8745aba15e2241a252c02bf30b53999;hp=eec828a81dc587dab09435cb6231c293525f816b;hpb=1c889394b028b786898a995d38c07c8f3d564837;p=modules%2Fgui.git diff --git a/src/OCCViewer/OCCViewer_ViewSketcher.cxx b/src/OCCViewer/OCCViewer_ViewSketcher.cxx index eec828a81..16d028f1d 100755 --- a/src/OCCViewer/OCCViewer_ViewSketcher.cxx +++ b/src/OCCViewer/OCCViewer_ViewSketcher.cxx @@ -1,24 +1,22 @@ -// Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE // -// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, -// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. // -// This library is free software; you can redistribute it and/or -// modify it under the terms of the GNU Lesser General Public -// License as published by the Free Software Foundation; either -// version 2.1 of the License. +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. // -// This library is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// Lesser General Public License for more details. +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// You should have received a copy of the GNU Lesser General Public -// License along with this library; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // + #include "OCCViewer_ViewSketcher.h" #include "OCCViewer_ViewWindow.h" #include "OCCViewer_ViewPort3d.h" @@ -43,7 +41,8 @@ mypViewWindow( vw ), myType( type ), mypData( 0 ), myResult( Neutral ), -myButtonState( 0 ) +myButtonState( 0 ), +myHasShift( false ) { } @@ -101,6 +100,11 @@ int OCCViewer_ViewSketcher::buttonState() const return myButtonState; } +bool OCCViewer_ViewSketcher::isHasShift() const +{ + return myHasShift; +} + void OCCViewer_ViewSketcher::onActivate() { } @@ -118,6 +122,7 @@ bool OCCViewer_ViewSketcher::eventFilter( QObject* o, QEvent* e ) { OCCViewer_ViewPort3d* avp = mypViewWindow->getViewPort(); + QMouseEvent* me = (QMouseEvent*)e; SketchState state = EnTrain; bool ignore = false; if ( o == avp ) @@ -129,7 +134,6 @@ bool OCCViewer_ViewSketcher::eventFilter( QObject* o, QEvent* e ) case QEvent::MouseButtonRelease: case QEvent::MouseButtonDblClick: { - QMouseEvent* me = (QMouseEvent*)e; myButtonState = me->buttons(); if ( e->type() == QEvent::MouseButtonPress ) @@ -149,6 +153,7 @@ bool OCCViewer_ViewSketcher::eventFilter( QObject* o, QEvent* e ) state = Fin; ignore = true; + myHasShift = ( me->modifiers() & Qt::ShiftModifier ); break; } case QEvent::Hide: @@ -255,7 +260,7 @@ void OCCViewer_RectSketcher::onMouse( QMouseEvent* e ) myResult = Accept; QApplication::postEvent( avp, new QMouseEvent( e->type(), e->pos(), e->globalPos(), e->button(), - e->buttons(), e->modifiers() ) ); + e->buttons(), e->modifiers() ) ); } } @@ -293,7 +298,9 @@ void OCCViewer_RectSketcher::onSketch( SketchState state ) if ( state == Fin ) { +#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0) QApplication::syncX(); /* force rectangle redrawing */ +#endif mypViewWindow->activateSketching( OCCViewer_ViewWindow::NoSketching ); } } @@ -432,7 +439,7 @@ void OCCViewer_PolygonSketcher::onMouse( QMouseEvent* e ) myResult = Reject; QApplication::postEvent( avp, new QMouseEvent( e->type(), e->pos(), e->globalPos(), e->button(), - e->buttons(), e->modifiers() ) ); + e->buttons(), e->modifiers() ) ); } else if ( e->type() == QEvent::MouseButtonRelease && ( e->button() & myAddButton ) ) { @@ -485,33 +492,30 @@ void OCCViewer_PolygonSketcher::onSketch( SketchState state ) if ( state != Fin ) p.drawPolyline( *mypPoints ); }*/ - if ( mypPolyRB ) - { + if ( mypPolyRB ) { + if ( state == Fin ) { + mypPolyRB->clearGeometry(); + mypPolyRB->hide(); +#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0) + QApplication::syncX(); +#endif + mypViewWindow->activateSketching( OCCViewer_ViewWindow::NoSketching ); + } else { mypPolyRB->setUpdatesEnabled ( false ); if ( !mypPolyRB->isVisible() ) - mypPolyRB->show(); + mypPolyRB->show(); //if ( state != Debut ) // mypPolyRB->repaint(); - + if ( state != Fin && points->count() ) - mypPolyRB->initGeometry( QPolygon(*points) << myCurr ); + mypPolyRB->initGeometry( QPolygon(*points) << myCurr ); //mypPolyRB->addNode( myCurr ); - + //if ( state != Fin ) // mypPolyRB->repaint(); mypPolyRB->setUpdatesEnabled ( true ); //mypPolyRB->repaint(); } - - if ( state == Fin ) - { - if ( mypPolyRB ) - { - mypPolyRB->clearGeometry(); - mypPolyRB->hide(); - } - QApplication::syncX(); - mypViewWindow->activateSketching( OCCViewer_ViewWindow::NoSketching ); } } @@ -540,7 +544,7 @@ bool OCCViewer_PolygonSketcher::isValid( const QPolygon* aPoints, const QPoint& } bool OCCViewer_PolygonSketcher::isIntersect( const QPoint& aStart1, const QPoint& anEnd1, - const QPoint& aStart2, const QPoint& anEnd2 ) const + const QPoint& aStart2, const QPoint& anEnd2 ) const { if ( ( aStart1 == aStart2 && anEnd1 == anEnd2 ) || ( aStart1 == anEnd2 && anEnd1 == aStart2 ) )