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

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: TODO: Undo/Redo 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
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..2a42c5a82749c8a4951972348acddf0ffb962f08 100644
--- a/views/controls/textfield/native_textfield_views.cc
+++ b/views/controls/textfield/native_textfield_views.cc
@@ -464,10 +464,38 @@ 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 in ChromeOS. In windows, do nothing.
+#if defined(OS_WIN)
+ break;
+#else
+ model_->MoveCursorToStart(true);
+#endif
+ } else if (control) {
+ // If only control is pressed, then erase the previous word.
+ model_->MoveCursorToPreviousWord(true);
+ }
+ }
text_changed = model_->Backspace();
cursor_changed = true;
break;
case app::VKEY_DELETE:
+ if (!model_->HasSelection()) {
+ if (selection && control) {
+ // If both shift and control are pressed, then erase upto the
+ // end of the buffer in ChromeOS. In windows, do nothing.
+#if defined(OS_WIN)
+ break;
+#else
+ model_->MoveCursorToEnd(true);
+#endif
+ } else if (control) {
+ // If only control is pressed, then erase the next word.
+ model_->MoveCursorToNextWord(true);
+ }
+ }
text_changed = model_->Delete();
break;
case app::VKEY_INSERT:
« no previous file with comments | « views/controls/textfield/native_textfield_views.h ('k') | views/controls/textfield/native_textfield_views_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698