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

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

Issue 1481523004: master: more underlying types (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 5 years 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
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_CBA_Fontmap.h" 7 #include "fpdfsdk/include/formfiller/FFL_CBA_Fontmap.h"
8 #include "fpdfsdk/include/formfiller/FFL_TextField.h" 8 #include "fpdfsdk/include/formfiller/FFL_TextField.h"
9 9
10 /* ------------------------------- CFFL_TextField 10 /* ------------------------------- CFFL_TextField
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 FX_BOOL CFFL_TextField::OnChar(CPDFSDK_Annot* pAnnot, 112 FX_BOOL CFFL_TextField::OnChar(CPDFSDK_Annot* pAnnot,
113 FX_UINT nChar, 113 FX_UINT nChar,
114 FX_UINT nFlags) { 114 FX_UINT nFlags) {
115 switch (nChar) { 115 switch (nChar) {
116 case FWL_VKEY_Return: 116 case FWL_VKEY_Return:
117 if (!(m_pWidget->GetFieldFlags() & FIELDFLAG_MULTILINE)) { 117 if (!(m_pWidget->GetFieldFlags() & FIELDFLAG_MULTILINE)) {
118 CPDFSDK_PageView* pPageView = GetCurPageView(); 118 CPDFSDK_PageView* pPageView = GetCurPageView();
119 ASSERT(pPageView != NULL); 119 ASSERT(pPageView != NULL);
120 m_bValid = !m_bValid; 120 m_bValid = !m_bValid;
121 CPDF_Rect rcAnnot = pAnnot->GetRect(); 121 CPDF_Rect rcAnnot = pAnnot->GetRect();
122 m_pApp->FFI_Invalidate(pAnnot->GetPDFPage(), rcAnnot.left, rcAnnot.top, 122 m_pApp->FFI_Invalidate(pAnnot->GetUnderlyingPage(), rcAnnot.left,
123 rcAnnot.right, rcAnnot.bottom); 123 rcAnnot.top, rcAnnot.right, rcAnnot.bottom);
124 124
125 if (m_bValid) { 125 if (m_bValid) {
126 if (CPWL_Wnd* pWnd = GetPDFWindow(pPageView, TRUE)) 126 if (CPWL_Wnd* pWnd = GetPDFWindow(pPageView, TRUE))
127 pWnd->SetFocus(); 127 pWnd->SetFocus();
128 } else { 128 } else {
129 if (CommitData(pPageView, nFlags)) { 129 if (CommitData(pPageView, nFlags)) {
130 DestroyPDFWindow(pPageView); 130 DestroyPDFWindow(pPageView);
131 return TRUE; 131 return TRUE;
132 } 132 }
133 return FALSE; 133 return FALSE;
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 m_pApp->FFI_OnSetFieldInputFocus(m_pWidget->GetFormField(), pBuffer, 286 m_pApp->FFI_OnSetFieldInputFocus(m_pWidget->GetFormField(), pBuffer,
287 nCharacters, TRUE); 287 nCharacters, TRUE);
288 288
289 pEdit->SetEditNotify(this); 289 pEdit->SetEditNotify(this);
290 } 290 }
291 } 291 }
292 292
293 void CFFL_TextField::OnKillFocus(CPWL_Wnd* pWnd) {} 293 void CFFL_TextField::OnKillFocus(CPWL_Wnd* pWnd) {}
294 294
295 void CFFL_TextField::OnAddUndo(CPWL_Edit* pEdit) {} 295 void CFFL_TextField::OnAddUndo(CPWL_Edit* pEdit) {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698