- added the ability to set the auto repeating variable to force a keyPressed
event from a keyDown event.
* platform/PlatformKeyboardEvent.h:
(WebCore::PlatformKeyboardEvent::setIsAutoRepeat):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@18068
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-12-07 Kevin McCullough <kmccullough@apple.com>
+
+ Reviewed by Geof.
+
+ - added the ability to set the auto repeating variable to force a keyPressed
+ event from a keyDown event.
+
+ * platform/PlatformKeyboardEvent.h:
+ (WebCore::PlatformKeyboardEvent::setIsAutoRepeat):
+
2006-12-07 Don Gibson <dgibson77@gmail.com>
Reviewed by Darin.
String keyIdentifier() const { return m_keyIdentifier; }
bool isKeyUp() const { return m_isKeyUp; }
bool isAutoRepeat() const { return m_autoRepeat; }
+ void setIsAutoRepeat(bool in) { m_autoRepeat = in; }
int WindowsKeyCode() const { return m_WindowsKeyCode; }
bool isKeypad() const { return m_isKeypad; }
bool shiftKey() const { return m_shiftKey; }