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

Side by Side Diff: fpdfsdk/src/formfiller/FFL_TextField.cpp

Issue 1564773003: Invalidate IPWL_FocusHandler and IPWL_Provider on destruction. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: fix copy pasta Created 4 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 unified diff | Download patch
« no previous file with comments | « fpdfsdk/src/formfiller/FFL_FormFiller.cpp ('k') | fpdfsdk/src/fpdfview_embeddertest.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #include "fpdfsdk/include/formfiller/FFL_TextField.h" 7 #include "fpdfsdk/include/formfiller/FFL_TextField.h"
8 8
9 #include "fpdfsdk/include/formfiller/FFL_CBA_Fontmap.h" 9 #include "fpdfsdk/include/formfiller/FFL_CBA_Fontmap.h"
10 #include "fpdfsdk/include/fsdk_common.h" 10 #include "fpdfsdk/include/fsdk_common.h"
11 #include "fpdfsdk/include/fsdk_mgr.h" 11 #include "fpdfsdk/include/fsdk_mgr.h"
12 12
13 CFFL_TextField::CFFL_TextField(CPDFDoc_Environment* pApp, CPDFSDK_Annot* pAnnot) 13 CFFL_TextField::CFFL_TextField(CPDFDoc_Environment* pApp, CPDFSDK_Annot* pAnnot)
14 : CFFL_FormFiller(pApp, pAnnot), m_pFontMap(NULL) { 14 : CFFL_FormFiller(pApp, pAnnot), m_pFontMap(NULL) {
15 m_State.nStart = m_State.nEnd = 0; 15 m_State.nStart = m_State.nEnd = 0;
16 } 16 }
17 17
18 CFFL_TextField::~CFFL_TextField() { 18 CFFL_TextField::~CFFL_TextField() {
19 for (const auto& it : m_Maps)
20 it.second->InvalidateFocusHandler(this);
19 delete m_pFontMap; 21 delete m_pFontMap;
20 } 22 }
21 23
22 PWL_CREATEPARAM CFFL_TextField::GetCreateParam() { 24 PWL_CREATEPARAM CFFL_TextField::GetCreateParam() {
23 PWL_CREATEPARAM cp = CFFL_FormFiller::GetCreateParam(); 25 PWL_CREATEPARAM cp = CFFL_FormFiller::GetCreateParam();
24 26
25 int nFlags = m_pWidget->GetFieldFlags(); 27 int nFlags = m_pWidget->GetFieldFlags();
26 28
27 if (nFlags & FIELDFLAG_PASSWORD) { 29 if (nFlags & FIELDFLAG_PASSWORD) {
28 cp.dwFlags |= PES_PASSWORD; 30 cp.dwFlags |= PES_PASSWORD;
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 m_pApp->FFI_OnSetFieldInputFocus(m_pWidget->GetFormField(), pBuffer, 273 m_pApp->FFI_OnSetFieldInputFocus(m_pWidget->GetFormField(), pBuffer,
272 nCharacters, TRUE); 274 nCharacters, TRUE);
273 275
274 pEdit->SetEditNotify(this); 276 pEdit->SetEditNotify(this);
275 } 277 }
276 } 278 }
277 279
278 void CFFL_TextField::OnKillFocus(CPWL_Wnd* pWnd) {} 280 void CFFL_TextField::OnKillFocus(CPWL_Wnd* pWnd) {}
279 281
280 void CFFL_TextField::OnAddUndo(CPWL_Edit* pEdit) {} 282 void CFFL_TextField::OnAddUndo(CPWL_Edit* pEdit) {}
OLDNEW
« no previous file with comments | « fpdfsdk/src/formfiller/FFL_FormFiller.cpp ('k') | fpdfsdk/src/fpdfview_embeddertest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698