Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1741)

Unified Diff: views/controls/textfield/native_textfield_views.cc

Issue 6119003: views textfield: Handle ctrl and shift modifiers for Backspace and Delete (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: comments Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | views/controls/textfield/native_textfield_views_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/controls/textfield/native_textfield_views.cc
diff --git a/views/controls/textfield/native_textfield_views.cc b/views/controls/textfield/native_textfield_views.cc
index 677ada55632d2dc9aef7ae18002dbc59173ed3fb..0a5a3b8a7ff8a4dc76071c584d6f9b9d0946eea9 100644
--- a/views/controls/textfield/native_textfield_views.cc
+++ b/views/controls/textfield/native_textfield_views.cc
@@ -464,6 +464,16 @@ bool NativeTextfieldViews::HandleKeyEvent(const KeyEvent& key_event) {
cursor_changed = true;
break;
case app::VKEY_BACK:
+ if (!model_->HasSelection()) {
+ if (selection && control) {
+ // If both shift and control are pressed, then erase upto the
+ // beginning of the buffer.
+ model_->MoveCursorToStart(true);
+ } else if (control) {
+ // Otherwise, if control is pressed, then erase the previous word.
+ model_->MoveCursorToPreviousWord(true);
+ }
+ }
oshima 2011/01/10 23:15:17 are we going to implement gtk behavior? If so, ctr
sadrul 2011/01/11 04:46:55 I did some testing, out of curiosity, and the beha
text_changed = model_->Backspace();
cursor_changed = true;
break;
« no previous file with comments | « no previous file | views/controls/textfield/native_textfield_views_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698