X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_Displayer.h;h=b4a574ed450bbb01763e3d3c578aeb7a2e6c3fd6;hb=a53349567d67f4df0ef737798a25c24d9dc8f08e;hp=f7948dcab39993540c2e8d25c0970bf673316f1b;hpb=d5288d46b0d85156f7666edf2cef050dc6655eae;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_Displayer.h b/src/HYDROGUI/HYDROGUI_Displayer.h index f7948dca..b4a574ed 100644 --- a/src/HYDROGUI/HYDROGUI_Displayer.h +++ b/src/HYDROGUI/HYDROGUI_Displayer.h @@ -1,12 +1,8 @@ -// Copyright (C) 2007-2013 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 -// +// Copyright (C) 2014-2015 EDF-R&D // 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. +// version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -20,14 +16,19 @@ // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // + #ifndef HYDROGUI_DISPLAYER_H #define HYDROGUI_DISPLAYER_H #include "HYDROGUI_AbstractDisplayer.h" #include +#include +#include class HYDROGUI_PrsDriver; +class SUIT_ViewWindow; +class vtkWorldPointPicker; /** * \class HYDROGUI_Displayer @@ -61,6 +62,25 @@ public: */ virtual QString GetType() const; + /* + * Get the current cursor view position and save it in the displayer + * to be used in the obtaining the view coordinates of the cursor. + * \param theViewWindow a view window. If a view window is null, an active view is used + * only OCC and VTK views are processed + */ + void SaveCursorViewPosition( SUIT_ViewWindow* theViewWindow = 0 ); + /** + * \brief Get the coodinates from the view window, projected on XOY plane + * \param theViewWindow a view window + * \param theXCoordinate a X coordinate + * \param theXCoordinate an Y coordinate + * \param theXCoordinate a Z coordinate, has a zero value because of the plane + * \return true if the coordinates are got + */ + bool GetCursorViewCoordinates( SUIT_ViewWindow* theViewWindow, + double& theXCoordinate, + double& theYCoordinate, + double& theZCoordinate ); protected: /** * \brief Erase all viewer objects. @@ -105,6 +125,10 @@ private: private: typedef QMap< ObjectKind, HYDROGUI_PrsDriver* > PrsDriversMap; PrsDriversMap myPrsDriversMap; + vtkNew myPicker; + int myXPosition; + int myYPosition; + bool myIsPositionSaved; }; #endif