source: NonGTP/glut/FLTK/include/fltk/damage.h @ 814

Revision 814, 461 bytes checked in by gumbau, 18 years ago (diff)

Glut initial import used by Geometry modules

Line 
1/* Values of the bits stored in Widget::damage(). */
2
3#ifndef fltk_damage_h
4#define fltk_damage_h
5
6namespace fltk {
7
8/*! \addtogroup damage
9 \{ */
10enum {
11  DAMAGE_VALUE          = 0x01,
12  DAMAGE_PUSHED         = 0x02,
13  DAMAGE_SCROLL         = 0x04,
14  DAMAGE_OVERLAY        = 0x04, // reused value
15  DAMAGE_HIGHLIGHT      = 0x08,
16  DAMAGE_CHILD          = 0x10,
17  DAMAGE_CHILD_LABEL    = 0x20,
18  DAMAGE_EXPOSE         = 0x40,
19  DAMAGE_CONTENTS       = 0x40, // reused value
20  DAMAGE_ALL            = 0x80
21};
22/*! \} */
23
24}
25
26#endif
Note: See TracBrowser for help on using the repository browser.