X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_UpdateFlags.h;h=e5e18321c1b96f7d49e9c4eefc89022002dc7f19;hb=f34b90e9e4e02ba65419134d5d37a2e42aecfabf;hp=e3ae171b55bb842bbb2c7cf609e8adce0186f147;hpb=96b092becebebaa413b1272a78594a643d7678fc;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_UpdateFlags.h b/src/HYDROGUI/HYDROGUI_UpdateFlags.h index e3ae171b..e5e18321 100644 --- a/src/HYDROGUI/HYDROGUI_UpdateFlags.h +++ b/src/HYDROGUI/HYDROGUI_UpdateFlags.h @@ -34,9 +34,22 @@ typedef enum { UF_Base = UF_Forced | UF_Model | UF_Viewer | UF_ObjBrowser | UF_Controls, + UF_GV_Init = 0x00000020, //!< initial update (used with UF_Viewer) UF_GV_Forced = 0x00000040, //!< to force recomputing all presentations (used with UF_Viewer) - UF_All = UF_Base | UF_GV_Init | UF_GV_Forced //!< all update flags + + UF_OCCViewer = 0x00000080, //!< OCC viewer + 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 | + UF_VTKViewer | UF_VTK_Init | UF_VTK_Forced//!< all update flags } HYDRO_UpdateFlags; #endif