Salome HOME
Image positioning by two points.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_UpdateFlags.h
index e3ae171b55bb842bbb2c7cf609e8adce0186f147..b01da33503e14026fd35c480ef32736499bf1d34 100644 (file)
 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_All           = UF_Base | UF_GV_Init | UF_GV_Forced | UF_OCCViewer | UF_OCC_Init | UF_OCC_Forced//!< all update flags
 } HYDRO_UpdateFlags;
 
 #endif