diff options
author | Diana Gage <drgage@google.com> | 2017-07-24 11:19:52 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-07-24 20:14:25 +0000 |
commit | 1c7f1420b78f37ec1619ab1552261e9ce3947a3b (patch) | |
tree | fd27fec330d569359d3be308595d41cf9dd02f2a /fpdfsdk/pdfwindow/cpwl_edit_ctrl.cpp | |
parent | bfa2a97ca9f5026ceb8e8c2ce23cfc3c3e8b38a1 (diff) | |
download | pdfium-1c7f1420b78f37ec1619ab1552261e9ce3947a3b.tar.xz |
Add FORM_DeleteSelectedText() and embedder tests.
This method deletes the current text selection in a form text field or
user-editable form combobox text field. If there is no selection, this
method does nothing.
BUG=chromium:59266
Change-Id: I3229ffad990c62beac1cf769cd366458b9ee5daa
Reviewed-on: https://pdfium-review.googlesource.com/8370
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: Diana Gage <drgage@google.com>
Diffstat (limited to 'fpdfsdk/pdfwindow/cpwl_edit_ctrl.cpp')
-rw-r--r-- | fpdfsdk/pdfwindow/cpwl_edit_ctrl.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fpdfsdk/pdfwindow/cpwl_edit_ctrl.cpp b/fpdfsdk/pdfwindow/cpwl_edit_ctrl.cpp index c7e1f14499..a3aac19e20 100644 --- a/fpdfsdk/pdfwindow/cpwl_edit_ctrl.cpp +++ b/fpdfsdk/pdfwindow/cpwl_edit_ctrl.cpp @@ -59,6 +59,11 @@ CFX_WideString CPWL_EditCtrl::GetSelectedText() { return CFX_WideString(); } +void CPWL_EditCtrl::DeleteSelectedText() { + if (m_pEdit) + m_pEdit->ClearSelection(); +} + void CPWL_EditCtrl::RePosChildWnd() { m_pEdit->SetPlateRect(GetClientRect()); } |