IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 11, 2005, 4:09:30 PM (21 years ago)
Author:
eugene
Message:

fix of EventLoop, which was not flushing some events

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/kapa/include/constants.h

    r2473 r3695  
    11/* hardwired values for some window parameters */
    2 # define EVENT_MASK (long) (ButtonPressMask | ClientMessage | ButtonReleaseMask | KeyPressMask | ExposureMask | StructureNotifyMask | PointerMotionMask)
     2
     3# define EVENT_MASK (long) \
     4(ButtonPressMask \
     5 | ClientMessage \
     6 | ButtonReleaseMask \
     7 | KeyPressMask \
     8 | ExposureMask \
     9 | StructureNotifyMask \
     10 | PointerMotionMask)
     11
    312# define DEFAULT_CURSOR XC_crosshair
    413# define BORDER_WIDTH 2
     
    1827enum {SCALE, NOSCALE, RAW};
    1928
     29/* EVENT_MASK consists of:
     30
     31ExposureMask        : Expose
     32StructureNotifyMask : CirculateNotify |
     33                      ConfigureNotify |
     34                      DestroyNotify   |
     35                      GravityNotify   |
     36                      MapNotify       |
     37                      ReparentNotify  |
     38                      UnmapNotify
     39ButtonPressMask     : ButtonPress
     40ButtonReleaseMask   : ButtonRelease
     41KeyPressMask        : KeyPress
     42PointerMotionMask   : MotionNotify
     43(always)            : ClientMessage
     44(always)            : MappingNotify
     45
     46*/
Note: See TracChangeset for help on using the changeset viewer.