| OLD | NEW |
| 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/src/fwl/src/basewidget/fwl_barcodeimp.h" | 7 #include "xfa/src/fwl/basewidget/fwl_barcodeimp.h" |
| 8 | 8 |
| 9 #include "xfa/include/fwl/core/fwl_theme.h" | 9 #include "xfa/include/fwl/core/fwl_theme.h" |
| 10 #include "xfa/src/fwl/src/basewidget/fwl_editimp.h" | 10 #include "xfa/src/fwl/basewidget/fwl_editimp.h" |
| 11 #include "xfa/src/fwl/src/core/fwl_noteimp.h" | 11 #include "xfa/src/fwl/core/fwl_noteimp.h" |
| 12 #include "xfa/src/fwl/src/core/fwl_targetimp.h" | 12 #include "xfa/src/fwl/core/fwl_targetimp.h" |
| 13 #include "xfa/src/fwl/src/core/fwl_widgetimp.h" | 13 #include "xfa/src/fwl/core/fwl_widgetimp.h" |
| 14 | 14 |
| 15 // static | 15 // static |
| 16 IFWL_Barcode* IFWL_Barcode::Create(const CFWL_WidgetImpProperties& properties) { | 16 IFWL_Barcode* IFWL_Barcode::Create(const CFWL_WidgetImpProperties& properties) { |
| 17 IFWL_Barcode* pBarcode = new IFWL_Barcode; | 17 IFWL_Barcode* pBarcode = new IFWL_Barcode; |
| 18 CFWL_BarcodeImp* pBarcodeImpl = new CFWL_BarcodeImp(properties, nullptr); | 18 CFWL_BarcodeImp* pBarcodeImpl = new CFWL_BarcodeImp(properties, nullptr); |
| 19 pBarcode->SetImpl(pBarcodeImpl); | 19 pBarcode->SetImpl(pBarcodeImpl); |
| 20 pBarcodeImpl->SetInterface(pBarcode); | 20 pBarcodeImpl->SetInterface(pBarcode); |
| 21 return pBarcode; | 21 return pBarcode; |
| 22 } | 22 } |
| 23 IFWL_Barcode::IFWL_Barcode() {} | 23 IFWL_Barcode::IFWL_Barcode() {} |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 : CFWL_EditImpDelegate(pOwner) {} | 212 : CFWL_EditImpDelegate(pOwner) {} |
| 213 FWL_ERR CFWL_BarcodeImpDelegate::OnProcessEvent(CFWL_Event* pEvent) { | 213 FWL_ERR CFWL_BarcodeImpDelegate::OnProcessEvent(CFWL_Event* pEvent) { |
| 214 FX_DWORD dwFlag = pEvent->GetClassID(); | 214 FX_DWORD dwFlag = pEvent->GetClassID(); |
| 215 if (dwFlag == FWL_EVTHASH_EDT_TextChanged) { | 215 if (dwFlag == FWL_EVTHASH_EDT_TextChanged) { |
| 216 CFWL_BarcodeImp* pOwner = static_cast<CFWL_BarcodeImp*>(m_pOwner); | 216 CFWL_BarcodeImp* pOwner = static_cast<CFWL_BarcodeImp*>(m_pOwner); |
| 217 pOwner->ReleaseBarcodeEngine(); | 217 pOwner->ReleaseBarcodeEngine(); |
| 218 pOwner->m_dwStatus = XFA_BCS_NeedUpdate; | 218 pOwner->m_dwStatus = XFA_BCS_NeedUpdate; |
| 219 } | 219 } |
| 220 return CFWL_EditImpDelegate::OnProcessEvent(pEvent); | 220 return CFWL_EditImpDelegate::OnProcessEvent(pEvent); |
| 221 } | 221 } |
| OLD | NEW |