X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FVTKViewer%2FVTKViewer_ViewWindow.h;h=d256bca80d470689c2484c6462a3bc4f487424ff;hb=refs%2Fheads%2Fngr%2Fpython3_dev_pv5.4;hp=3bceda6c595b55ebc9593477346daa9eb07c189d;hpb=1c889394b028b786898a995d38c07c8f3d564837;p=modules%2Fgui.git diff --git a/src/VTKViewer/VTKViewer_ViewWindow.h b/src/VTKViewer/VTKViewer_ViewWindow.h index 3bceda6c5..d256bca80 100755 --- a/src/VTKViewer/VTKViewer_ViewWindow.h +++ b/src/VTKViewer/VTKViewer_ViewWindow.h @@ -1,24 +1,25 @@ -// 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 +// 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. +// 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 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 // + #ifndef VTKVIEWER_VIEWWINDOW_H #define VTKVIEWER_VIEWWINDOW_H @@ -49,19 +50,21 @@ class VTKVIEWER_EXPORT VTKViewer_ViewWindow : public SUIT_ViewWindow public: VTKViewer_ViewWindow( SUIT_Desktop*, VTKViewer_Viewer*, VTKViewer_InteractorStyle* = 0, - VTKViewer_RenderWindowInteractor* = 0 ); + VTKViewer_RenderWindowInteractor* = 0 ); virtual ~VTKViewer_ViewWindow(); /*!Gets tool bar.*/ - QToolBar* getToolBar() { return myToolBar; } + QToolBar* getToolBar() { return myToolBar; } - void setBackgroundColor( const QColor& ); - QColor backgroundColor() const; + void setBackgroundColor( const QColor& ); // obsolete + QColor backgroundColor() const; // obsolete + void setBackground( const Qtx::BackgroundData& ); + Qtx::BackgroundData background() const; /*!Gets renderer.*/ vtkRenderer* getRenderer() { return myRenderer; } /*!Gets render window.*/ - VTKViewer_RenderWindow* getRenderWindow() { return myRenderWindow; } + VTKViewer_RenderWindow* getRenderWindow() { return myRenderWindow; } /*!Gets render window interactor.*/ VTKViewer_RenderWindowInteractor* getRWInteractor() { return myRWInteractor; } bool isTrihedronDisplayed(); @@ -83,8 +86,11 @@ public slots: void onBottomView(); void onLeftView(); void onRightView(); + void onClockWiseView(); + void onAntiClockWiseView(); void onResetView(); void onFitAll(); + void onFitSelection(); void activateZoom(); void activateWindowFit(); void activateRotation(); @@ -109,8 +115,9 @@ private: void MoveActor( VTKViewer_Actor* theActor ); private: - enum { DumpId, FitAllId, FitRectId, ZoomId, PanId, GlobalPanId, RotationId, - FrontId, BackId, TopId, BottomId, LeftId, RightId, ResetId, TrihedronShowId }; + enum { DumpId, FitAllId, FitRectId, FitSelectionId, ZoomId, PanId, GlobalPanId, RotationId, + FrontId, BackId, TopId, BottomId, LeftId, RightId, ClockWiseId, AntiClockWiseId, + ResetId, TrihedronShowId }; typedef QMap ActionsMap; void createActions(); @@ -129,6 +136,7 @@ private: ActionsMap myActionsMap; double myCurScale; + Qtx::BackgroundData myBackground; friend class VTKViewer_RenderWindowInteractor; };