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

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

Issue 2033243004: Make GetDevFont() return a CFX_Font* instead of void* (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: One more file. Created 4 years, 6 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/fgas/font/fgas_stdfontmgr.cpp ('k') | no next file » | 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 if (!m_pBarcodeEngine) 106 if (!m_pBarcodeEngine)
107 return; 107 return;
108 CFX_WideString wsText; 108 CFX_WideString wsText;
109 if (GetText(wsText) != FWL_Error::Succeeded) 109 if (GetText(wsText) != FWL_Error::Succeeded)
110 return; 110 return;
111 CFWL_ThemePart part; 111 CFWL_ThemePart part;
112 part.m_pWidget = m_pInterface; 112 part.m_pWidget = m_pInterface;
113 IFWL_ThemeProvider* pTheme = GetAvailableTheme(); 113 IFWL_ThemeProvider* pTheme = GetAvailableTheme();
114 IFGAS_Font* pFont = static_cast<IFGAS_Font*>( 114 IFGAS_Font* pFont = static_cast<IFGAS_Font*>(
115 pTheme->GetCapacity(&part, CFWL_WidgetCapacity::Font)); 115 pTheme->GetCapacity(&part, CFWL_WidgetCapacity::Font));
116 CFX_Font* pCXFont = 116 CFX_Font* pCXFont = pFont ? pFont->GetDevFont() : nullptr;
117 pFont ? static_cast<CFX_Font*>(pFont->GetDevFont()) : nullptr;
118 if (pCXFont) { 117 if (pCXFont) {
119 m_pBarcodeEngine->SetFont(pCXFont); 118 m_pBarcodeEngine->SetFont(pCXFont);
120 } 119 }
121 FX_FLOAT* pFontSize = static_cast<FX_FLOAT*>( 120 FX_FLOAT* pFontSize = static_cast<FX_FLOAT*>(
122 pTheme->GetCapacity(&part, CFWL_WidgetCapacity::FontSize)); 121 pTheme->GetCapacity(&part, CFWL_WidgetCapacity::FontSize));
123 if (pFontSize) { 122 if (pFontSize) {
124 m_pBarcodeEngine->SetFontSize(*pFontSize); 123 m_pBarcodeEngine->SetFontSize(*pFontSize);
125 } 124 }
126 FX_ARGB* pFontColor = static_cast<FX_ARGB*>( 125 FX_ARGB* pFontColor = static_cast<FX_ARGB*>(
127 pTheme->GetCapacity(&part, CFWL_WidgetCapacity::TextColor)); 126 pTheme->GetCapacity(&part, CFWL_WidgetCapacity::TextColor));
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 : CFWL_EditImpDelegate(pOwner) {} 213 : CFWL_EditImpDelegate(pOwner) {}
215 214
216 void CFWL_BarcodeImpDelegate::OnProcessEvent(CFWL_Event* pEvent) { 215 void CFWL_BarcodeImpDelegate::OnProcessEvent(CFWL_Event* pEvent) {
217 if (pEvent->GetClassID() == CFWL_EventType::TextChanged) { 216 if (pEvent->GetClassID() == CFWL_EventType::TextChanged) {
218 CFWL_BarcodeImp* pOwner = static_cast<CFWL_BarcodeImp*>(m_pOwner); 217 CFWL_BarcodeImp* pOwner = static_cast<CFWL_BarcodeImp*>(m_pOwner);
219 pOwner->m_pBarcodeEngine.reset(); 218 pOwner->m_pBarcodeEngine.reset();
220 pOwner->m_dwStatus = XFA_BCS_NeedUpdate; 219 pOwner->m_dwStatus = XFA_BCS_NeedUpdate;
221 } 220 }
222 CFWL_EditImpDelegate::OnProcessEvent(pEvent); 221 CFWL_EditImpDelegate::OnProcessEvent(pEvent);
223 } 222 }
OLDNEW
« no previous file with comments | « xfa/fgas/font/fgas_stdfontmgr.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698