| 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/fwl/basewidget/fwl_barcodeimp.h" | 7 #include "xfa/fwl/basewidget/fwl_barcodeimp.h" |
| 8 | 8 |
| 9 #include "xfa/fgas/font/fgas_gefont.h" | 9 #include "xfa/fgas/font/fgas_gefont.h" |
| 10 #include "xfa/fwl/basewidget/cfx_barcode.h" |
| 10 #include "xfa/fwl/basewidget/fwl_editimp.h" | 11 #include "xfa/fwl/basewidget/fwl_editimp.h" |
| 11 #include "xfa/fwl/basewidget/fxmath_barcodeimp.h" | |
| 12 #include "xfa/fwl/core/cfwl_themepart.h" | 12 #include "xfa/fwl/core/cfwl_themepart.h" |
| 13 #include "xfa/fwl/core/fwl_noteimp.h" | 13 #include "xfa/fwl/core/fwl_noteimp.h" |
| 14 #include "xfa/fwl/core/fwl_widgetimp.h" | 14 #include "xfa/fwl/core/fwl_widgetimp.h" |
| 15 #include "xfa/fwl/core/ifwl_themeprovider.h" | 15 #include "xfa/fwl/core/ifwl_themeprovider.h" |
| 16 | 16 |
| 17 // static | 17 // static |
| 18 IFWL_Barcode* IFWL_Barcode::Create(const CFWL_WidgetImpProperties& properties) { | 18 IFWL_Barcode* IFWL_Barcode::Create(const CFWL_WidgetImpProperties& properties) { |
| 19 IFWL_Barcode* pBarcode = new IFWL_Barcode; | 19 IFWL_Barcode* pBarcode = new IFWL_Barcode; |
| 20 CFWL_BarcodeImp* pBarcodeImpl = new CFWL_BarcodeImp(properties, nullptr); | 20 CFWL_BarcodeImp* pBarcodeImpl = new CFWL_BarcodeImp(properties, nullptr); |
| 21 pBarcode->SetImpl(pBarcodeImpl); | 21 pBarcode->SetImpl(pBarcodeImpl); |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 : CFWL_EditImpDelegate(pOwner) {} | 214 : CFWL_EditImpDelegate(pOwner) {} |
| 215 | 215 |
| 216 void CFWL_BarcodeImpDelegate::OnProcessEvent(CFWL_Event* pEvent) { | 216 void CFWL_BarcodeImpDelegate::OnProcessEvent(CFWL_Event* pEvent) { |
| 217 if (pEvent->GetClassID() == CFWL_EventType::TextChanged) { | 217 if (pEvent->GetClassID() == CFWL_EventType::TextChanged) { |
| 218 CFWL_BarcodeImp* pOwner = static_cast<CFWL_BarcodeImp*>(m_pOwner); | 218 CFWL_BarcodeImp* pOwner = static_cast<CFWL_BarcodeImp*>(m_pOwner); |
| 219 pOwner->m_pBarcodeEngine.reset(); | 219 pOwner->m_pBarcodeEngine.reset(); |
| 220 pOwner->m_dwStatus = XFA_BCS_NeedUpdate; | 220 pOwner->m_dwStatus = XFA_BCS_NeedUpdate; |
| 221 } | 221 } |
| 222 CFWL_EditImpDelegate::OnProcessEvent(pEvent); | 222 CFWL_EditImpDelegate::OnProcessEvent(pEvent); |
| 223 } | 223 } |
| OLD | NEW |