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