X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_UpdateFlags.h;h=b01da33503e14026fd35c480ef32736499bf1d34;hb=5cae7e874afd2fc1b6f61023e8ebd33a933db3c7;hp=33773f20b5bb9ed39e801c8c0c4c7fe5c6d49387;hpb=d74afc6389ed4e656c9451ac01b4065470746fd8;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_UpdateFlags.h b/src/HYDROGUI/HYDROGUI_UpdateFlags.h index 33773f20..b01da335 100644 --- a/src/HYDROGUI/HYDROGUI_UpdateFlags.h +++ b/src/HYDROGUI/HYDROGUI_UpdateFlags.h @@ -23,6 +23,8 @@ #ifndef HYDROGUI_UPDATEFLAGS_H #define HYDROGUI_UPDATEFLAGS_H +#include + /** * \enum HYDRO_UpdateFlags * Enumeration for update flags. First byte is reserved for LightApp_Module. @@ -31,8 +33,16 @@ */ 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_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_All = UF_Base | UF_GV_Init | UF_GV_Forced | UF_OCCViewer | UF_OCC_Init | UF_OCC_Forced//!< all update flags } HYDRO_UpdateFlags; #endif