Added the sf::Event::KeyEvent::System member (implements feature #8)

This commit is contained in:
Laurent Gomila 2011-04-26 21:58:03 +02:00
parent eac841ec71
commit ede01df778
13 changed files with 17 additions and 1 deletions

View file

@ -23,6 +23,7 @@ namespace SFML
Alt = e.Alt != 0;
Control = e.Control != 0;
Shift = e.Shift != 0;
System = e.System != 0;
}
////////////////////////////////////////////////////////////
@ -37,7 +38,8 @@ namespace SFML
" Code(" + Code + ")" +
" Alt(" + Alt + ")" +
" Control(" + Control + ")" +
" Shift(" + Shift + ")";
" Shift(" + Shift + ")" +
" System(" + System + ")";
}
/// <summary>Code of the key (see KeyCode enum)</summary>
@ -51,6 +53,9 @@ namespace SFML
/// <summary>Is the Shift modifier pressed?</summary>
public bool Shift;
/// <summary>Is the System modifier pressed?</summary>
public bool System;
}
////////////////////////////////////////////////////////////