X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_UpdateFlags.h;h=2e06848b764ec8087d11724787239780d3d8db02;hb=d6e19029f8b41f295db878e9aecf451c2edda4af;hp=14ef92ef13124e83280acaa4e388f9de8e5c4805;hpb=db1999ae9883edbf6f18672b5f179a6da4871978;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_UpdateFlags.h b/src/HYDROGUI/HYDROGUI_UpdateFlags.h index 14ef92ef..2e06848b 100644 --- a/src/HYDROGUI/HYDROGUI_UpdateFlags.h +++ b/src/HYDROGUI/HYDROGUI_UpdateFlags.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 @@ -42,9 +38,14 @@ typedef enum UF_OCC_Init = 0x00000100, //!< initial update (used with UF_OCCViewer) UF_OCC_Forced = 0x00000200, //!< to force recomputing all presentations (used with UF_OCCViewer) + UF_VTKViewer = 0x00000800, //!< VTK viewer + UF_VTK_Init = 0x00001000, //!< initial update (used with UF_VTKViewer) + UF_VTK_Forced = 0x00002000, //!< to force recomputing all presentations (used with UF_VTKViewer) + UF_FitAll = 0x00000400, //!< to do fit all (used with UF_Viewer or UF_OCCViewer) - UF_All = UF_Base | UF_GV_Init | UF_GV_Forced | UF_OCCViewer | UF_OCC_Init | UF_OCC_Forced//!< all update flags + UF_All = UF_Base | UF_GV_Init | UF_GV_Forced | UF_OCCViewer | UF_OCC_Init | UF_OCC_Forced | + UF_VTKViewer | UF_VTK_Init | UF_VTK_Forced//!< all update flags } HYDRO_UpdateFlags; #endif