From 512332670a87377ba6b705232d22a67681fba3ff Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Mon, 19 Oct 1998 17:53:09 +0000 Subject: Added Gustavo's damage() update - now use symbolic constants for all values! git-svn-id: file:///fltk/svn/fltk/trunk@18 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- FL/Enumerations.H | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'FL/Enumerations.H') diff --git a/FL/Enumerations.H b/FL/Enumerations.H index e8237ff74..add29e828 100644 --- a/FL/Enumerations.H +++ b/FL/Enumerations.H @@ -290,4 +290,13 @@ enum Fl_Mode { // visual types and Fl_Gl_Window::mode() (values match Glut) FL_MULTISAMPLE= 128 }; +// damage masks + +const uchar FL_DAMAGE_CHILD = 0x01; +const uchar FL_DAMAGE_EXPOSE = 0x02; +const uchar FL_DAMAGE_LINE = 0x02; +const uchar FL_DAMAGE_SCROLL = 0x04; +const uchar FL_DAMAGE_OVERLAY = 0x04|0x08; +const uchar FL_DAMAGE_ALL = 0x80; + #endif -- cgit v1.2.3