Changeset 38211 in webkit
- Timestamp:
- Nov 6, 2008, 9:52:46 PM (16 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r38210 r38211 1 2008-11-06 Alexey Proskuryakov <[email protected]> 2 3 Reviewed by Darin Adler. 4 5 https://bugs.webkit.org/show_bug.cgi?id=21107 6 <rdar://problem/6264219> New access key combination conflicts with VoiceOver 7 8 * page/EventHandler.h: 9 * page/gtk/EventHandlerGtk.cpp: 10 (WebCore::EventHandler::accessKeyModifiers): 11 * page/qt/EventHandlerQt.cpp: 12 (WebCore::EventHandler::accessKeyModifiers): 13 * page/win/EventHandlerWin.cpp: 14 (WebCore::EventHandler::accessKeyModifiers): 15 * page/wx/EventHandlerWx.cpp: 16 (WebCore::EventHandler::accessKeyModifiers): 17 Access access key modifiers via a function, not a static variable. 18 19 * page/mac/EventHandlerMac.mm: (WebCore::EventHandler::accessKeyModifiers): 20 Use Ctrl when VoiceOver is enabled, because a conflict with Emacs-style key bindings is 21 less troublesome than one with VO keys. 22 23 * page/EventHandler.cpp: (WebCore::EventHandler::handleAccessKey): 24 Also fix an access key matching bug introduced in r32424 - Any superset of specified 25 modifier set invoked access keys. We can use simple equality comparison instead because 26 CapsLock is not part of modifiers(), so it doesn't need to be ignored explicitly. 27 1 28 2008-11-06 Anders Carlsson <[email protected]> 2 29 -
trunk/WebCore/page/EventHandler.cpp
r38207 r38211 1723 1723 bool EventHandler::handleAccessKey(const PlatformKeyboardEvent& evt) 1724 1724 { 1725 if ( (evt.modifiers() & s_accessKeyModifiers) != s_accessKeyModifiers)1725 if (evt.modifiers() != accessKeyModifiers()) 1726 1726 return false; 1727 1727 String key = evt.unmodifiedText(); -
trunk/WebCore/page/EventHandler.h
r37435 r38211 141 141 bool needsKeyboardEventDisambiguationQuirks() const; 142 142 143 static unsigned accessKeyModifiers() { return s_accessKeyModifiers; }143 static unsigned accessKeyModifiers(); 144 144 bool handleAccessKey(const PlatformKeyboardEvent&); 145 145 bool keyEvent(const PlatformKeyboardEvent&); … … 335 335 double m_mouseDownTimestamp; 336 336 PlatformMouseEvent m_mouseDown; 337 338 static unsigned s_accessKeyModifiers;339 337 340 338 unsigned m_pendingFrameUnloadEventCount; -
trunk/WebCore/page/gtk/EventHandlerGtk.cpp
r38094 r38211 42 42 43 43 namespace WebCore { 44 45 unsigned EventHandler::s_accessKeyModifiers = PlatformKeyboardEvent::AltKey;46 44 47 45 const double EventHandler::TextDragDelay = 0.0; … … 121 119 } 122 120 121 unsigned EventHandler::accessKeyModifiers() 122 { 123 return PlatformKeyboardEvent::AltKey; 123 124 } 125 126 } -
trunk/WebCore/page/mac/EventHandlerMac.mm
r38094 r38211 27 27 #include "EventHandler.h" 28 28 29 #include "AXObjectCache.h" 29 30 #include "BlockExceptions.h" 30 31 #include "ChromeClient.h" … … 45 46 46 47 namespace WebCore { 47 48 unsigned EventHandler::s_accessKeyModifiers = PlatformKeyboardEvent::CtrlKey | PlatformKeyboardEvent::AltKey;49 48 50 49 const double EventHandler::TextDragDelay = 0.15; … … 644 643 } 645 644 646 } 645 unsigned EventHandler::accessKeyModifiers() 646 { 647 / Control+Option key combinations are usually unused on Mac OS X, but not when VoiceOver is enabled. 648 / So, we use Control in this case, even though it conflicts with Emacs-style key bindings. 649 / See <https://bugs.webkit.org/show_bug.cgi?id=21107> for more detail. 650 if (AXObjectCache::accessibilityEnhancedUserInterfaceEnabled()) 651 return PlatformKeyboardEvent::CtrlKey; 652 653 return PlatformKeyboardEvent::CtrlKey | PlatformKeyboardEvent::AltKey; 654 } 655 656 } -
trunk/WebCore/page/qt/EventHandlerQt.cpp
r38094 r38211 56 56 57 57 namespace WebCore { 58 59 unsigned EventHandler::s_accessKeyModifiers = PlatformKeyboardEvent::CtrlKey;60 58 61 59 const double EventHandler::TextDragDelay = 0.0; … … 133 131 } 134 132 133 unsigned EventHandler::accessKeyModifiers() 134 { 135 return PlatformKeyboardEvent::CtrlKey; 135 136 } 137 138 } -
trunk/WebCore/page/win/EventHandlerWin.cpp
r37251 r38211 45 45 46 46 namespace WebCore { 47 48 unsigned EventHandler::s_accessKeyModifiers = PlatformKeyboardEvent::AltKey;49 47 50 48 const double EventHandler::TextDragDelay = 0.0; … … 109 107 } 110 108 109 unsigned EventHandler::accessKeyModifiers() 110 { 111 return PlatformKeyboardEvent::AltKey; 111 112 } 113 114 } -
trunk/WebCore/page/wx/EventHandlerWx.cpp
r37251 r38211 39 39 40 40 namespace WebCore { 41 42 unsigned EventHandler::s_accessKeyModifiers = PlatformKeyboardEvent::AltKey;43 41 44 42 const double EventHandler::TextDragDelay = 0.0; … … 92 90 } 93 91 92 unsigned EventHandler::accessKeyModifiers() 93 { 94 return PlatformKeyboardEvent::AltKey; 94 95 } 96 97 }
Note:
See TracChangeset
for help on using the changeset viewer.