// "Therefore those skilled at the unorthodox
// are infinite as heaven and earth,
// inexhaustible as the great rivers.
// When they come to an end,
// they begin again,
// like the days and months;
// they die and are reborn,
// like the four seasons."
//
// - Sun Tsu,
// "The Art of War"
using TheArtOfDev.HtmlRenderer.Core;
namespace TheArtOfDev.HtmlRenderer.Adapters.Entities
{
///
/// Even class for handling keyboard events in .
///
public sealed class RKeyEvent
{
///
/// is control is pressed
///
private readonly bool _control;
///
/// is 'A' key is pressed
///
private readonly bool _aKeyCode;
///
/// is 'C' key is pressed
///
private readonly bool _cKeyCode;
///
/// Init.
///
public RKeyEvent(bool control, bool aKeyCode, bool cKeyCode)
{
_control = control;
_aKeyCode = aKeyCode;
_cKeyCode = cKeyCode;
}
///
/// is control is pressed
///
public bool Control
{
get { return _control; }
}
///
/// is 'A' key is pressed
///
public bool AKeyCode
{
get { return _aKeyCode; }
}
///
/// is 'C' key is pressed
///
public bool CKeyCode
{
get { return _cKeyCode; }
}
}
}