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/kii/include/constants.h

    r2466 r3695  
    1414*/
    1515
    16 # define EVENT_MASK (long) (ButtonPressMask | ClientMessage | ButtonReleaseMask | KeyPressMask | ExposureMask | StructureNotifyMask | PointerMotionMask)
    1716# define DEFAULT_CURSOR XC_crosshair
    1817# define BORDER_WIDTH 2
     
    2625int DECIMAL_DEG;
    2726int DEBUG;
     27
     28# define EVENT_MASK (long) \
     29(ButtonPressMask \
     30 | ClientMessage \
     31 | ButtonReleaseMask \
     32 | KeyPressMask \
     33 | ExposureMask \
     34 | StructureNotifyMask \
     35 | PointerMotionMask)
     36
     37/* EVENT_MASK consists of:
     38
     39ExposureMask        : Expose
     40StructureNotifyMask : CirculateNotify |
     41                      ConfigureNotify |
     42                      DestroyNotify   |
     43                      GravityNotify   |
     44                      MapNotify       |
     45                      ReparentNotify  |
     46                      UnmapNotify
     47ButtonPressMask     : ButtonPress
     48ButtonReleaseMask   : ButtonRelease
     49KeyPressMask        : KeyPress
     50PointerMotionMask   : MotionNotify
     51(always)            : ClientMessage
     52(always)            : MappingNotify
     53
     54*/
Note: See TracChangeset for help on using the changeset viewer.