Revision 773,
461 bytes
checked in by gumbau, 19 years ago
(diff) |
FLTK imported to SVN repository to be linked agains the GeoTool? application
|
Line | |
---|
1 | /* Values of the bits stored in Widget::damage(). */ |
---|
2 | |
---|
3 | #ifndef fltk_damage_h |
---|
4 | #define fltk_damage_h |
---|
5 | |
---|
6 | namespace fltk { |
---|
7 | |
---|
8 | /*! \addtogroup damage |
---|
9 | \{ */ |
---|
10 | enum { |
---|
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.