From beecc34d2b4b295dcefe4a71772983fbccb50eff Mon Sep 17 00:00:00 2001 From: weili Date: Thu, 4 Aug 2016 11:57:22 -0700 Subject: Fix a file name typo Fix a file name to be consistent with its class name and header file name. Review-Url: https://codereview.chromium.org/2215813003 --- BUILD.gn | 2 +- xfa.gyp | 2 +- xfa/fwl/theme/cfwl_datetimepickedtp.cpp | 103 -------------------------------- xfa/fwl/theme/cfwl_datetimepickertp.cpp | 103 ++++++++++++++++++++++++++++++++ 4 files changed, 105 insertions(+), 105 deletions(-) delete mode 100644 xfa/fwl/theme/cfwl_datetimepickedtp.cpp create mode 100644 xfa/fwl/theme/cfwl_datetimepickertp.cpp diff --git a/BUILD.gn b/BUILD.gn index 11b73b3a7a..82850cc5f3 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -1158,7 +1158,7 @@ if (pdf_enable_xfa) { "xfa/fwl/theme/cfwl_checkboxtp.h", "xfa/fwl/theme/cfwl_comboboxtp.cpp", "xfa/fwl/theme/cfwl_comboboxtp.h", - "xfa/fwl/theme/cfwl_datetimepickedtp.cpp", + "xfa/fwl/theme/cfwl_datetimepickertp.cpp", "xfa/fwl/theme/cfwl_datetimepickertp.h", "xfa/fwl/theme/cfwl_edittp.cpp", "xfa/fwl/theme/cfwl_edittp.h", diff --git a/xfa.gyp b/xfa.gyp index 7a79ae5fb7..42013def6d 100644 --- a/xfa.gyp +++ b/xfa.gyp @@ -216,7 +216,7 @@ "xfa/fwl/theme/cfwl_checkboxtp.h", "xfa/fwl/theme/cfwl_comboboxtp.cpp", "xfa/fwl/theme/cfwl_comboboxtp.h", - "xfa/fwl/theme/cfwl_datetimepickedtp.cpp", + "xfa/fwl/theme/cfwl_datetimepickertp.cpp", "xfa/fwl/theme/cfwl_datetimepickertp.h", "xfa/fwl/theme/cfwl_edittp.cpp", "xfa/fwl/theme/cfwl_edittp.h", diff --git a/xfa/fwl/theme/cfwl_datetimepickedtp.cpp b/xfa/fwl/theme/cfwl_datetimepickedtp.cpp deleted file mode 100644 index a303a4ea1f..0000000000 --- a/xfa/fwl/theme/cfwl_datetimepickedtp.cpp +++ /dev/null @@ -1,103 +0,0 @@ -// Copyright 2014 PDFium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com - -#include "xfa/fwl/theme/cfwl_datetimepickertp.h" - -#include "xfa/fwl/basewidget/ifwl_datetimepicker.h" -#include "xfa/fwl/core/cfwl_themebackground.h" - -CFWL_DateTimePickerTP::CFWL_DateTimePickerTP() { - m_pThemeData = new DTPThemeData; - initThemeData(); -} - -CFWL_DateTimePickerTP::~CFWL_DateTimePickerTP() { - delete m_pThemeData; -} - -bool CFWL_DateTimePickerTP::IsValidWidget(IFWL_Widget* pWidget) { - return pWidget && pWidget->GetClassID() == FWL_Type::DateTimePicker; -} - -FX_BOOL CFWL_DateTimePickerTP::DrawBackground(CFWL_ThemeBackground* pParams) { - if (!pParams) - return FALSE; - switch (pParams->m_iPart) { - case CFWL_Part::Border: { - DrawBorder(pParams->m_pGraphics, &pParams->m_rtPart, &pParams->m_matrix); - break; - } - case CFWL_Part::Edge: { - DrawEdge(pParams->m_pGraphics, pParams->m_pWidget->GetStyles(), - &pParams->m_rtPart, &pParams->m_matrix); - break; - } - case CFWL_Part::DropDownButton: { - DrawDropDownButton(pParams, &pParams->m_matrix); - break; - } - default: {} - } - return TRUE; -} - -void CFWL_DateTimePickerTP::DrawDropDownButton(CFWL_ThemeBackground* pParams, - CFX_Matrix* pMatrix) { - uint32_t dwStates = pParams->m_dwStates; - dwStates &= 0x03; - FWLTHEME_STATE eState = FWLTHEME_STATE_Normal; - switch (eState & dwStates) { - case CFWL_PartState_Normal: { - eState = FWLTHEME_STATE_Normal; - break; - } - case CFWL_PartState_Hovered: { - eState = FWLTHEME_STATE_Hover; - break; - } - case CFWL_PartState_Pressed: { - eState = FWLTHEME_STATE_Pressed; - break; - } - case CFWL_PartState_Disabled: { - eState = FWLTHEME_STATE_Disabale; - break; - } - default: {} - } - DrawArrowBtn(pParams->m_pGraphics, &pParams->m_rtPart, - FWLTHEME_DIRECTION_Down, eState, pMatrix); -} - -void CFWL_DateTimePickerTP::initThemeData() { - uint32_t* pData = (uint32_t*)&m_pThemeData->BoxBkColor; - *pData++ = 0; - *pData++ = 0; - *pData++ = ArgbEncode(255, 220, 220, 215), - *pData++ = ArgbEncode(255, 255, 255, 255), - *pData++ = ArgbEncode(255, 255, 240, 207), - *pData++ = ArgbEncode(255, 248, 179, 48), - *pData++ = ArgbEncode(255, 176, 176, 167), - *pData++ = ArgbEncode(255, 241, 239, 239), - *pData++ = ArgbEncode(255, 255, 255, 255), - *pData++ = ArgbEncode(255, 255, 255, 255), - *pData++ = ArgbEncode(255, 220, 220, 215), - *pData++ = ArgbEncode(255, 255, 255, 255), - *pData++ = ArgbEncode(255, 255, 240, 207), - *pData++ = ArgbEncode(255, 248, 179, 48), - *pData++ = ArgbEncode(255, 176, 176, 167), - *pData++ = ArgbEncode(255, 241, 239, 239), - *pData++ = ArgbEncode(255, 255, 255, 255), - *pData++ = ArgbEncode(255, 255, 255, 255), - *pData++ = ArgbEncode(255, 220, 220, 215), - *pData++ = ArgbEncode(255, 255, 255, 255), - *pData++ = ArgbEncode(255, 255, 240, 207), - *pData++ = ArgbEncode(255, 248, 179, 48), - *pData++ = ArgbEncode(255, 176, 176, 167), - *pData++ = ArgbEncode(255, 241, 239, 239), - *pData++ = ArgbEncode(255, 255, 255, 255), - *pData++ = ArgbEncode(255, 255, 255, 255); -} diff --git a/xfa/fwl/theme/cfwl_datetimepickertp.cpp b/xfa/fwl/theme/cfwl_datetimepickertp.cpp new file mode 100644 index 0000000000..a303a4ea1f --- /dev/null +++ b/xfa/fwl/theme/cfwl_datetimepickertp.cpp @@ -0,0 +1,103 @@ +// Copyright 2014 PDFium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com + +#include "xfa/fwl/theme/cfwl_datetimepickertp.h" + +#include "xfa/fwl/basewidget/ifwl_datetimepicker.h" +#include "xfa/fwl/core/cfwl_themebackground.h" + +CFWL_DateTimePickerTP::CFWL_DateTimePickerTP() { + m_pThemeData = new DTPThemeData; + initThemeData(); +} + +CFWL_DateTimePickerTP::~CFWL_DateTimePickerTP() { + delete m_pThemeData; +} + +bool CFWL_DateTimePickerTP::IsValidWidget(IFWL_Widget* pWidget) { + return pWidget && pWidget->GetClassID() == FWL_Type::DateTimePicker; +} + +FX_BOOL CFWL_DateTimePickerTP::DrawBackground(CFWL_ThemeBackground* pParams) { + if (!pParams) + return FALSE; + switch (pParams->m_iPart) { + case CFWL_Part::Border: { + DrawBorder(pParams->m_pGraphics, &pParams->m_rtPart, &pParams->m_matrix); + break; + } + case CFWL_Part::Edge: { + DrawEdge(pParams->m_pGraphics, pParams->m_pWidget->GetStyles(), + &pParams->m_rtPart, &pParams->m_matrix); + break; + } + case CFWL_Part::DropDownButton: { + DrawDropDownButton(pParams, &pParams->m_matrix); + break; + } + default: {} + } + return TRUE; +} + +void CFWL_DateTimePickerTP::DrawDropDownButton(CFWL_ThemeBackground* pParams, + CFX_Matrix* pMatrix) { + uint32_t dwStates = pParams->m_dwStates; + dwStates &= 0x03; + FWLTHEME_STATE eState = FWLTHEME_STATE_Normal; + switch (eState & dwStates) { + case CFWL_PartState_Normal: { + eState = FWLTHEME_STATE_Normal; + break; + } + case CFWL_PartState_Hovered: { + eState = FWLTHEME_STATE_Hover; + break; + } + case CFWL_PartState_Pressed: { + eState = FWLTHEME_STATE_Pressed; + break; + } + case CFWL_PartState_Disabled: { + eState = FWLTHEME_STATE_Disabale; + break; + } + default: {} + } + DrawArrowBtn(pParams->m_pGraphics, &pParams->m_rtPart, + FWLTHEME_DIRECTION_Down, eState, pMatrix); +} + +void CFWL_DateTimePickerTP::initThemeData() { + uint32_t* pData = (uint32_t*)&m_pThemeData->BoxBkColor; + *pData++ = 0; + *pData++ = 0; + *pData++ = ArgbEncode(255, 220, 220, 215), + *pData++ = ArgbEncode(255, 255, 255, 255), + *pData++ = ArgbEncode(255, 255, 240, 207), + *pData++ = ArgbEncode(255, 248, 179, 48), + *pData++ = ArgbEncode(255, 176, 176, 167), + *pData++ = ArgbEncode(255, 241, 239, 239), + *pData++ = ArgbEncode(255, 255, 255, 255), + *pData++ = ArgbEncode(255, 255, 255, 255), + *pData++ = ArgbEncode(255, 220, 220, 215), + *pData++ = ArgbEncode(255, 255, 255, 255), + *pData++ = ArgbEncode(255, 255, 240, 207), + *pData++ = ArgbEncode(255, 248, 179, 48), + *pData++ = ArgbEncode(255, 176, 176, 167), + *pData++ = ArgbEncode(255, 241, 239, 239), + *pData++ = ArgbEncode(255, 255, 255, 255), + *pData++ = ArgbEncode(255, 255, 255, 255), + *pData++ = ArgbEncode(255, 220, 220, 215), + *pData++ = ArgbEncode(255, 255, 255, 255), + *pData++ = ArgbEncode(255, 255, 240, 207), + *pData++ = ArgbEncode(255, 248, 179, 48), + *pData++ = ArgbEncode(255, 176, 176, 167), + *pData++ = ArgbEncode(255, 241, 239, 239), + *pData++ = ArgbEncode(255, 255, 255, 255), + *pData++ = ArgbEncode(255, 255, 255, 255); +} -- cgit v1.2.3