Salome HOME
"About SALOME" dialog box moved to LightApp --> string resources should be also moved...
[modules/gui.git] / src / LightApp / LightApp_UpdateFlags.h
1 //  LIGHT LightApp
2 //
3 //  Copyright (C) 2005  CEA/DEN, EDF R&D
4 //
5 //
6 //
7 //  File   : LightApp_UpdateFlags.h
8 //  Author : Sergey LITONIN
9 //  Module : LIGHT
10
11
12 #ifndef LightApp_UpdateFlags_H
13 #define LightApp_UpdateFlags_H
14
15 /*
16   Enum        : UpdateFlags
17   Description : Enumeration for update flags. First byte is reserved for LightApp_Module.
18                 Modules derived from this model must use other 3 bytes to define their
19                 own update flags
20 */
21
22 typedef enum
23 {
24   UF_Forced       = 0x00000001,
25   UF_Model        = 0x00000002,
26   UF_Viewer       = 0x00000004,
27   UF_ObjBrowser   = 0x00000008,
28   UF_Controls     = 0x00000010,
29 } UpdateFlags;
30
31 #endif
32
33
34
35
36
37