| 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/include/fwl/theme/widgettp.h" | 7 #include "xfa/include/fwl/theme/widgettp.h" |
| 8 | 8 |
| 9 #include <algorithm> | 9 #include <algorithm> |
| 10 | 10 |
| 11 #include "xfa/fde/tto/fde_textout.h" | 11 #include "xfa/fde/tto/fde_textout.h" |
| 12 #include "xfa/fxgraphics/cfx_color.h" |
| 13 #include "xfa/fxgraphics/cfx_path.h" |
| 14 #include "xfa/fxgraphics/cfx_shading.h" |
| 12 #include "xfa/include/fwl/core/fwl_widgetmgr.h" | 15 #include "xfa/include/fwl/core/fwl_widgetmgr.h" |
| 13 | 16 |
| 14 static void FWL_SetChildThemeID(IFWL_Widget* pParent, FX_DWORD dwThemeID) { | 17 static void FWL_SetChildThemeID(IFWL_Widget* pParent, FX_DWORD dwThemeID) { |
| 15 IFWL_WidgetMgr* pWidgetMgr = FWL_GetWidgetMgr(); | 18 IFWL_WidgetMgr* pWidgetMgr = FWL_GetWidgetMgr(); |
| 16 IFWL_Widget* pChild = | 19 IFWL_Widget* pChild = |
| 17 pWidgetMgr->GetWidget(pParent, FWL_WGTRELATION_FirstChild); | 20 pWidgetMgr->GetWidget(pParent, FWL_WGTRELATION_FirstChild); |
| 18 while (pChild) { | 21 while (pChild) { |
| 19 IFWL_ThemeProvider* pTheme = pChild->GetThemeProvider(); | 22 IFWL_ThemeProvider* pTheme = pChild->GetThemeProvider(); |
| 20 if (pTheme) { | 23 if (pTheme) { |
| 21 pTheme->SetThemeID(pChild, dwThemeID, FALSE); | 24 pTheme->SetThemeID(pChild, dwThemeID, FALSE); |
| (...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 FX_ARGB beginColor, | 447 FX_ARGB beginColor, |
| 445 FX_ARGB endColor, | 448 FX_ARGB endColor, |
| 446 CFX_Path* path, | 449 CFX_Path* path, |
| 447 int32_t fillMode, | 450 int32_t fillMode, |
| 448 CFX_Matrix* pMatrix) { | 451 CFX_Matrix* pMatrix) { |
| 449 if (!pGraphics || !path) | 452 if (!pGraphics || !path) |
| 450 return; | 453 return; |
| 451 | 454 |
| 452 CFX_PointF begPoint(fx1, fy1); | 455 CFX_PointF begPoint(fx1, fy1); |
| 453 CFX_PointF endPoint(fx2, fy2); | 456 CFX_PointF endPoint(fx2, fy2); |
| 454 CFX_Shading shading; | 457 CFX_Shading shading(begPoint, endPoint, FALSE, FALSE, beginColor, endColor); |
| 455 shading.CreateAxial(begPoint, endPoint, FALSE, FALSE, beginColor, endColor); | |
| 456 pGraphics->SaveGraphState(); | 458 pGraphics->SaveGraphState(); |
| 457 CFX_Color color1(&shading); | 459 CFX_Color color1(&shading); |
| 458 pGraphics->SetFillColor(&color1); | 460 pGraphics->SetFillColor(&color1); |
| 459 pGraphics->FillPath(path, fillMode, pMatrix); | 461 pGraphics->FillPath(path, fillMode, pMatrix); |
| 460 pGraphics->RestoreGraphState(); | 462 pGraphics->RestoreGraphState(); |
| 461 } | 463 } |
| 462 void CFWL_WidgetTP::DrawAnnulusRect(CFX_Graphics* pGraphics, | 464 void CFWL_WidgetTP::DrawAnnulusRect(CFX_Graphics* pGraphics, |
| 463 FX_ARGB fillColor, | 465 FX_ARGB fillColor, |
| 464 const CFX_RectF* pRect, | 466 const CFX_RectF* pRect, |
| 465 FX_FLOAT fRingWidth, | 467 FX_FLOAT fRingWidth, |
| (...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 831 m_pColorData->clrEnd[0] = ArgbEncode(255, 175, 204, 251); | 833 m_pColorData->clrEnd[0] = ArgbEncode(255, 175, 204, 251); |
| 832 m_pColorData->clrEnd[1] = ArgbEncode(255, 185, 218, 251); | 834 m_pColorData->clrEnd[1] = ArgbEncode(255, 185, 218, 251); |
| 833 m_pColorData->clrEnd[2] = ArgbEncode(255, 210, 222, 235); | 835 m_pColorData->clrEnd[2] = ArgbEncode(255, 210, 222, 235); |
| 834 m_pColorData->clrEnd[3] = ArgbEncode(255, 243, 241, 236); | 836 m_pColorData->clrEnd[3] = ArgbEncode(255, 243, 241, 236); |
| 835 m_pColorData->clrSign[0] = ArgbEncode(255, 77, 97, 133); | 837 m_pColorData->clrSign[0] = ArgbEncode(255, 77, 97, 133); |
| 836 m_pColorData->clrSign[1] = ArgbEncode(255, 77, 97, 133); | 838 m_pColorData->clrSign[1] = ArgbEncode(255, 77, 97, 133); |
| 837 m_pColorData->clrSign[2] = ArgbEncode(255, 77, 97, 133); | 839 m_pColorData->clrSign[2] = ArgbEncode(255, 77, 97, 133); |
| 838 m_pColorData->clrSign[3] = ArgbEncode(255, 128, 128, 128); | 840 m_pColorData->clrSign[3] = ArgbEncode(255, 128, 128, 128); |
| 839 } | 841 } |
| 840 } | 842 } |
| OLD | NEW |