CrystalSpace

Public API Reference

Main Page | Modules | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

_csKeyModifiers Struct Reference
[Event handling]

Flags for all currently pressed modifiers. More...

#include <iutil/evdefs.h>

List of all members.

Public Attributes

unsigned int modifiers [csKeyModifierTypeLast]
 Bitmasks for different modifiers.


Detailed Description

Flags for all currently pressed modifiers.

Definition at line 217 of file evdefs.h.


Member Data Documentation

unsigned int _csKeyModifiers::modifiers[csKeyModifierTypeLast]
 

Bitmasks for different modifiers.

If the modifier number n was pressed, the nth bit is set.

Example - testing for a specific modifier:

 csKeyModifiers m;
 bool rightAlt = m.modifiers[csKeyModifierTypeAlt] & 
   (1 << csKeyModifierNumRight);
Example - testing if any modifier of a type is pressed:
 csKeyModifiers m;
 bool ctrl = m.modifiers[csKeyModifierTypeAlt] != 0;

Definition at line 235 of file evdefs.h.


The documentation for this struct was generated from the following file:
Generated for Crystal Space by doxygen 1.3.9.1