diff options
author | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-03 22:00:37 +0000 |
---|---|---|
committer | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-03 22:00:37 +0000 |
commit | d1d1f9f14a63c8b8a6b882c5e9bf5f67eeb3d574 (patch) | |
tree | 1103bbdb29bb7f8608ceb6f4e226af72d13c0479 /views | |
parent | d4ad1947465c74539226d34254537cfea9aa2e81 (diff) | |
download | chromium_src-d1d1f9f14a63c8b8a6b882c5e9bf5f67eeb3d574.zip chromium_src-d1d1f9f14a63c8b8a6b882c5e9bf5f67eeb3d574.tar.gz chromium_src-d1d1f9f14a63c8b8a6b882c5e9bf5f67eeb3d574.tar.bz2 |
Some previous refactoring I did of the accelerator code had introduced regressions (pressing ESC would close the dialog instead of closing an opened combo-box, pressing enter on a dialog with a focused link would not open the link).Looking at fixing these I realized the method View::OvverideAccelerator was not needed anymore as View::SkipDefaultKeyEventProcessing supersedes it.So I removed View::OvverideAccelerator. As a result I also ended up moving some Windows specific code from LocationbarView to AutocompleteEditViewWin.BUG=6900TEST=Open the option dialog, click on a combo-box to open the drop-down list. Press ESC, the drop-down list should be closed. Move the focus to a link (by pressing Tab). Press Enter, the link should be opened and the option dialog should not be closed. Make sure that accelerators (ESC, tab, key up/down...) still work ok in the omnibox)
Review URL: http://codereview.chromium.org/119016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17544 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views')
-rw-r--r-- | views/controls/combobox/combobox.cc | 12 | ||||
-rw-r--r-- | views/controls/combobox/combobox.h | 2 | ||||
-rw-r--r-- | views/controls/link.cc | 6 | ||||
-rw-r--r-- | views/controls/link.h | 2 | ||||
-rw-r--r-- | views/focus/focus_manager.cc | 5 | ||||
-rw-r--r-- | views/view.h | 9 |
6 files changed, 11 insertions, 25 deletions
diff --git a/views/controls/combobox/combobox.cc b/views/controls/combobox/combobox.cc index f4ae17b..43165a2 100644 --- a/views/controls/combobox/combobox.cc +++ b/views/controls/combobox/combobox.cc @@ -4,6 +4,7 @@ #include "views/controls/combobox/combobox.h" +#include "base/keyboard_codes.h" #include "base/logging.h" #include "views/controls/combobox/native_combobox_wrapper.h" @@ -69,14 +70,11 @@ void Combobox::SetEnabled(bool flag) { // VK_ESCAPE should be handled by this view when the drop down list is active. // In other words, the list should be closed instead of the dialog. -bool Combobox::OverrideAccelerator(const Accelerator& accelerator) { -#if defined(OS_WIN) - if (accelerator != Accelerator(VK_ESCAPE, false, false, false)) +bool Combobox::SkipDefaultKeyEventProcessing(const KeyEvent& e) { + if (e.GetCharacter() != base::VKEY_ESCAPE || + e.IsShiftDown() || e.IsControlDown() || e.IsAltDown()) { return false; -#else - NOTIMPLEMENTED(); - // TODO(port): figure out VK_keys -#endif + } return native_wrapper_ && native_wrapper_->IsDropdownOpen(); } diff --git a/views/controls/combobox/combobox.h b/views/controls/combobox/combobox.h index 2bb63d2..2196974 100644 --- a/views/controls/combobox/combobox.h +++ b/views/controls/combobox/combobox.h @@ -60,7 +60,7 @@ class Combobox : public View { virtual gfx::Size GetPreferredSize(); virtual void Layout(); virtual void SetEnabled(bool enabled); - virtual bool OverrideAccelerator(const Accelerator& accelerator); + virtual bool SkipDefaultKeyEventProcessing(const KeyEvent& e); protected: virtual void Focus(); diff --git a/views/controls/link.cc b/views/controls/link.cc index a9b8d7e..14bc112 100644 --- a/views/controls/link.cc +++ b/views/controls/link.cc @@ -127,10 +127,10 @@ bool Link::OnKeyPressed(const KeyEvent& e) { return false; } -bool Link::OverrideAccelerator(const Accelerator& accelerator) { +bool Link::SkipDefaultKeyEventProcessing(const KeyEvent& e) { #if defined(OS_WIN) - return (accelerator.GetKeyCode() == VK_SPACE) || - (accelerator.GetKeyCode() == VK_RETURN); + // Make sure we don't process space or enter as accelerators. + return (e.GetCharacter() == VK_SPACE) || (e.GetCharacter() == VK_RETURN); #else NOTIMPLEMENTED(); return false; diff --git a/views/controls/link.h b/views/controls/link.h index 36c1f4f..91e77ad 100644 --- a/views/controls/link.h +++ b/views/controls/link.h @@ -47,7 +47,7 @@ class Link : public Label { virtual void OnMouseReleased(const MouseEvent& event, bool canceled); virtual bool OnKeyPressed(const KeyEvent& e); - virtual bool OverrideAccelerator(const Accelerator& accelerator); + virtual bool SkipDefaultKeyEventProcessing(const KeyEvent& e); virtual void SetFont(const gfx::Font& font); diff --git a/views/focus/focus_manager.cc b/views/focus/focus_manager.cc index f504fd0..280aca4 100644 --- a/views/focus/focus_manager.cc +++ b/views/focus/focus_manager.cc @@ -316,10 +316,7 @@ bool FocusManager::OnKeyDown(HWND window, UINT message, WPARAM wparam, win_util::IsShiftPressed(), win_util::IsCtrlPressed(), win_util::IsAltPressed())); - // We give a chance to the focused view to override the accelerator before - // processing it. - if ((focused_view_ && focused_view_->OverrideAccelerator(accelerator)) || - ProcessAccelerator(accelerator)) { + if (ProcessAccelerator(accelerator)) { // If a shortcut was activated for this keydown message, do not propagate // the message further. return false; diff --git a/views/view.h b/views/view.h index 760192f..63fd56d 100644 --- a/views/view.h +++ b/views/view.h @@ -509,15 +509,6 @@ class View : public AcceleratorTarget { return false; } - // Called on a view (if it is has focus) before an Accelerator is processed. - // Views that want to override an accelerator should override this method to - // perform the required action and return true, to indicate that the - // accelerator should not be processed any further (in which case the key - // event is eaten). - virtual bool OverrideAccelerator(const Accelerator& accelerator) { - return false; - } - // Returns whether this view currently has the focus. virtual bool HasFocus(); |