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

Side by Side Diff: xfa/fwl/basewidget/fwl_barcodeimp.cpp

Issue 1901183002: Remove CFWL_Note. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 8 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 | « xfa.gyp ('k') | xfa/fwl/basewidget/fwl_checkboximp.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 "xfa/fwl/basewidget/fwl_barcodeimp.h" 7 #include "xfa/fwl/basewidget/fwl_barcodeimp.h"
8 8
9 #include "xfa/fwl/basewidget/fwl_editimp.h" 9 #include "xfa/fwl/basewidget/fwl_editimp.h"
10 #include "xfa/fwl/basewidget/fxmath_barcodeimp.h" 10 #include "xfa/fwl/basewidget/fxmath_barcodeimp.h"
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 if (!m_pBarcodeEngine) { 210 if (!m_pBarcodeEngine) {
211 return TRUE; 211 return TRUE;
212 } 212 }
213 BC_TYPE tEngineType = m_pBarcodeEngine->GetType(); 213 BC_TYPE tEngineType = m_pBarcodeEngine->GetType();
214 if (tEngineType == BC_QR_CODE || tEngineType == BC_PDF417 || 214 if (tEngineType == BC_QR_CODE || tEngineType == BC_PDF417 ||
215 tEngineType == BC_DATAMATRIX) { 215 tEngineType == BC_DATAMATRIX) {
216 return TRUE; 216 return TRUE;
217 } 217 }
218 return FALSE; 218 return FALSE;
219 } 219 }
220
220 CFWL_BarcodeImpDelegate::CFWL_BarcodeImpDelegate(CFWL_BarcodeImp* pOwner) 221 CFWL_BarcodeImpDelegate::CFWL_BarcodeImpDelegate(CFWL_BarcodeImp* pOwner)
221 : CFWL_EditImpDelegate(pOwner) {} 222 : CFWL_EditImpDelegate(pOwner) {}
223
222 FWL_ERR CFWL_BarcodeImpDelegate::OnProcessEvent(CFWL_Event* pEvent) { 224 FWL_ERR CFWL_BarcodeImpDelegate::OnProcessEvent(CFWL_Event* pEvent) {
223 uint32_t dwFlag = pEvent->GetClassID(); 225 if (pEvent->GetClassID() == CFWL_EventType::TextChanged) {
224 if (dwFlag == FWL_EVTHASH_EDT_TextChanged) {
225 CFWL_BarcodeImp* pOwner = static_cast<CFWL_BarcodeImp*>(m_pOwner); 226 CFWL_BarcodeImp* pOwner = static_cast<CFWL_BarcodeImp*>(m_pOwner);
226 pOwner->ReleaseBarcodeEngine(); 227 pOwner->ReleaseBarcodeEngine();
227 pOwner->m_dwStatus = XFA_BCS_NeedUpdate; 228 pOwner->m_dwStatus = XFA_BCS_NeedUpdate;
228 } 229 }
229 return CFWL_EditImpDelegate::OnProcessEvent(pEvent); 230 return CFWL_EditImpDelegate::OnProcessEvent(pEvent);
230 } 231 }
OLDNEW
« no previous file with comments | « xfa.gyp ('k') | xfa/fwl/basewidget/fwl_checkboximp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698