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/fwl/basewidget/fwl_editimp.h" | 10 #include "xfa/fwl/basewidget/fwl_editimp.h" |
10 #include "xfa/fwl/basewidget/fxmath_barcodeimp.h" | 11 #include "xfa/fwl/basewidget/fxmath_barcodeimp.h" |
11 #include "xfa/fwl/core/cfwl_themepart.h" | 12 #include "xfa/fwl/core/cfwl_themepart.h" |
12 #include "xfa/fwl/core/fwl_noteimp.h" | 13 #include "xfa/fwl/core/fwl_noteimp.h" |
13 #include "xfa/fwl/core/fwl_widgetimp.h" | 14 #include "xfa/fwl/core/fwl_widgetimp.h" |
14 #include "xfa/fwl/core/ifwl_themeprovider.h" | 15 #include "xfa/fwl/core/ifwl_themeprovider.h" |
15 | 16 |
16 // static | 17 // static |
17 IFWL_Barcode* IFWL_Barcode::Create(const CFWL_WidgetImpProperties& properties) { | 18 IFWL_Barcode* IFWL_Barcode::Create(const CFWL_WidgetImpProperties& properties) { |
18 IFWL_Barcode* pBarcode = new IFWL_Barcode; | 19 IFWL_Barcode* pBarcode = new IFWL_Barcode; |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 if (!pData) | 105 if (!pData) |
105 return; | 106 return; |
106 if (!m_pBarcodeEngine) | 107 if (!m_pBarcodeEngine) |
107 return; | 108 return; |
108 CFX_WideString wsText; | 109 CFX_WideString wsText; |
109 if (GetText(wsText) != FWL_Error::Succeeded) | 110 if (GetText(wsText) != FWL_Error::Succeeded) |
110 return; | 111 return; |
111 CFWL_ThemePart part; | 112 CFWL_ThemePart part; |
112 part.m_pWidget = m_pInterface; | 113 part.m_pWidget = m_pInterface; |
113 IFWL_ThemeProvider* pTheme = GetAvailableTheme(); | 114 IFWL_ThemeProvider* pTheme = GetAvailableTheme(); |
114 IFGAS_Font* pFont = static_cast<IFGAS_Font*>( | 115 CFGAS_GEFont* pFont = static_cast<CFGAS_GEFont*>( |
115 pTheme->GetCapacity(&part, CFWL_WidgetCapacity::Font)); | 116 pTheme->GetCapacity(&part, CFWL_WidgetCapacity::Font)); |
116 CFX_Font* pCXFont = pFont ? pFont->GetDevFont() : nullptr; | 117 CFX_Font* pCXFont = pFont ? pFont->GetDevFont() : nullptr; |
117 if (pCXFont) { | 118 if (pCXFont) { |
118 m_pBarcodeEngine->SetFont(pCXFont); | 119 m_pBarcodeEngine->SetFont(pCXFont); |
119 } | 120 } |
120 FX_FLOAT* pFontSize = static_cast<FX_FLOAT*>( | 121 FX_FLOAT* pFontSize = static_cast<FX_FLOAT*>( |
121 pTheme->GetCapacity(&part, CFWL_WidgetCapacity::FontSize)); | 122 pTheme->GetCapacity(&part, CFWL_WidgetCapacity::FontSize)); |
122 if (pFontSize) { | 123 if (pFontSize) { |
123 m_pBarcodeEngine->SetFontSize(*pFontSize); | 124 m_pBarcodeEngine->SetFontSize(*pFontSize); |
124 } | 125 } |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 : CFWL_EditImpDelegate(pOwner) {} | 214 : CFWL_EditImpDelegate(pOwner) {} |
214 | 215 |
215 void CFWL_BarcodeImpDelegate::OnProcessEvent(CFWL_Event* pEvent) { | 216 void CFWL_BarcodeImpDelegate::OnProcessEvent(CFWL_Event* pEvent) { |
216 if (pEvent->GetClassID() == CFWL_EventType::TextChanged) { | 217 if (pEvent->GetClassID() == CFWL_EventType::TextChanged) { |
217 CFWL_BarcodeImp* pOwner = static_cast<CFWL_BarcodeImp*>(m_pOwner); | 218 CFWL_BarcodeImp* pOwner = static_cast<CFWL_BarcodeImp*>(m_pOwner); |
218 pOwner->m_pBarcodeEngine.reset(); | 219 pOwner->m_pBarcodeEngine.reset(); |
219 pOwner->m_dwStatus = XFA_BCS_NeedUpdate; | 220 pOwner->m_dwStatus = XFA_BCS_NeedUpdate; |
220 } | 221 } |
221 CFWL_EditImpDelegate::OnProcessEvent(pEvent); | 222 CFWL_EditImpDelegate::OnProcessEvent(pEvent); |
222 } | 223 } |
OLD | NEW |