Changeset 18068 in webkit


Ignore:
Timestamp:
Dec 7, 2006 4:23:36 PM (17 years ago)
Author:
kmccullo
Message:

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):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r18066 r18068  
     12006-12-07  Kevin McCullough  <kmccullough@apple.com>
     2
     3        Reviewed by Geof.
     4
     5        - added the ability to set the auto repeating variable to force a keyPressed
     6        event from a keyDown event.
     7
     8        * platform/PlatformKeyboardEvent.h:
     9        (WebCore::PlatformKeyboardEvent::setIsAutoRepeat):
     10
    1112006-12-07  Don Gibson  <dgibson77@gmail.com>
    212
  • trunk/WebCore/platform/PlatformKeyboardEvent.h

    r17405 r18068  
    6161        bool isKeyUp() const { return m_isKeyUp; }
    6262        bool isAutoRepeat() const { return m_autoRepeat; }
     63        void setIsAutoRepeat(bool in) { m_autoRepeat = in; }
    6364        int WindowsKeyCode() const { return m_WindowsKeyCode; }
    6465        bool isKeypad() const { return m_isKeypad; }
Note: See TracChangeset for help on using the changeset viewer.