| Index: xfa/fwl/lightwidget/cfwl_datetimepicker.cpp
|
| diff --git a/xfa/fwl/lightwidget/datetimepicker.cpp b/xfa/fwl/lightwidget/cfwl_datetimepicker.cpp
|
| similarity index 98%
|
| rename from xfa/fwl/lightwidget/datetimepicker.cpp
|
| rename to xfa/fwl/lightwidget/cfwl_datetimepicker.cpp
|
| index a3ace90c2d07b36887b6c6f9784e77f6e7212f83..e470616ed8bc5fd883ddc394e324d04709ebfcd9 100644
|
| --- a/xfa/fwl/lightwidget/datetimepicker.cpp
|
| +++ b/xfa/fwl/lightwidget/cfwl_datetimepicker.cpp
|
| @@ -4,7 +4,7 @@
|
|
|
| // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
|
|
|
| -#include "xfa/include/fwl/lightwidget/datetimepicker.h"
|
| +#include "xfa/fwl/lightwidget/cfwl_datetimepicker.h"
|
|
|
| #include <memory>
|
|
|
| @@ -15,6 +15,7 @@
|
| CFWL_DateTimePicker* CFWL_DateTimePicker::Create() {
|
| return new CFWL_DateTimePicker;
|
| }
|
| +
|
| FWL_ERR CFWL_DateTimePicker::Initialize(
|
| const CFWL_WidgetProperties* pProperties) {
|
| if (m_pIface)
|
| @@ -43,44 +44,55 @@ FWL_ERR CFWL_DateTimePicker::SetToday(int32_t iYear,
|
| m_DateTimePickerDP.m_iDay = iDay;
|
| return FWL_ERR_Succeeded;
|
| }
|
| +
|
| int32_t CFWL_DateTimePicker::CountSelRanges() {
|
| return static_cast<IFWL_DateTimePicker*>(m_pIface)->CountSelRanges();
|
| }
|
| +
|
| int32_t CFWL_DateTimePicker::GetSelRange(int32_t nIndex, int32_t& nStart) {
|
| return static_cast<IFWL_DateTimePicker*>(m_pIface)
|
| ->GetSelRange(nIndex, nStart);
|
| }
|
| +
|
| FWL_ERR CFWL_DateTimePicker::GetEditText(CFX_WideString& wsText) {
|
| return static_cast<IFWL_DateTimePicker*>(m_pIface)->GetEditText(wsText);
|
| }
|
| +
|
| FWL_ERR CFWL_DateTimePicker::SetEditText(const CFX_WideStringC& wsText) {
|
| return static_cast<IFWL_DateTimePicker*>(m_pIface)->SetEditText(wsText);
|
| }
|
| +
|
| FWL_ERR CFWL_DateTimePicker::GetCurSel(int32_t& iYear,
|
| int32_t& iMonth,
|
| int32_t& iDay) {
|
| return static_cast<IFWL_DateTimePicker*>(m_pIface)
|
| ->GetCurSel(iYear, iMonth, iDay);
|
| }
|
| +
|
| FWL_ERR CFWL_DateTimePicker::SetCurSel(int32_t iYear,
|
| int32_t iMonth,
|
| int32_t iDay) {
|
| return static_cast<IFWL_DateTimePicker*>(m_pIface)
|
| ->SetCurSel(iYear, iMonth, iDay);
|
| }
|
| +
|
| CFWL_DateTimePicker::CFWL_DateTimePicker() {}
|
| +
|
| CFWL_DateTimePicker::~CFWL_DateTimePicker() {}
|
| +
|
| CFWL_DateTimePicker::CFWL_DateTimePickerDP::CFWL_DateTimePickerDP() {
|
| m_iYear = 2011;
|
| m_iMonth = 1;
|
| m_iDay = 1;
|
| }
|
| +
|
| FWL_ERR CFWL_DateTimePicker::CFWL_DateTimePickerDP::GetCaption(
|
| IFWL_Widget* pWidget,
|
| CFX_WideString& wsCaption) {
|
| wsCaption = m_wsData;
|
| return FWL_ERR_Succeeded;
|
| }
|
| +
|
| FWL_ERR CFWL_DateTimePicker::CFWL_DateTimePickerDP::GetToday(
|
| IFWL_Widget* pWidget,
|
| int32_t& iYear,
|
| @@ -91,51 +103,67 @@ FWL_ERR CFWL_DateTimePicker::CFWL_DateTimePickerDP::GetToday(
|
| iDay = m_iDay;
|
| return FWL_ERR_Succeeded;
|
| }
|
| +
|
| FX_BOOL CFWL_DateTimePicker::CanUndo() {
|
| return static_cast<IFWL_DateTimePicker*>(m_pIface)->CanUndo();
|
| }
|
| +
|
| FX_BOOL CFWL_DateTimePicker::CanRedo() {
|
| return static_cast<IFWL_DateTimePicker*>(m_pIface)->CanRedo();
|
| }
|
| +
|
| FX_BOOL CFWL_DateTimePicker::Undo() {
|
| return static_cast<IFWL_DateTimePicker*>(m_pIface)->Undo();
|
| }
|
| +
|
| FX_BOOL CFWL_DateTimePicker::Redo() {
|
| return static_cast<IFWL_DateTimePicker*>(m_pIface)->Redo();
|
| }
|
| +
|
| FX_BOOL CFWL_DateTimePicker::CanCopy() {
|
| return static_cast<IFWL_DateTimePicker*>(m_pIface)->CanCopy();
|
| }
|
| +
|
| FX_BOOL CFWL_DateTimePicker::CanCut() {
|
| return static_cast<IFWL_DateTimePicker*>(m_pIface)->CanCut();
|
| }
|
| +
|
| FX_BOOL CFWL_DateTimePicker::CanSelectAll() {
|
| return static_cast<IFWL_DateTimePicker*>(m_pIface)->CanSelectAll();
|
| }
|
| +
|
| FX_BOOL CFWL_DateTimePicker::Copy(CFX_WideString& wsCopy) {
|
| return static_cast<IFWL_DateTimePicker*>(m_pIface)->Copy(wsCopy);
|
| }
|
| +
|
| FX_BOOL CFWL_DateTimePicker::Cut(CFX_WideString& wsCut) {
|
| return static_cast<IFWL_DateTimePicker*>(m_pIface)->Copy(wsCut);
|
| }
|
| +
|
| FX_BOOL CFWL_DateTimePicker::Paste(const CFX_WideString& wsPaste) {
|
| return static_cast<IFWL_DateTimePicker*>(m_pIface)->Paste(wsPaste);
|
| }
|
| +
|
| FX_BOOL CFWL_DateTimePicker::SelectAll() {
|
| return static_cast<IFWL_DateTimePicker*>(m_pIface)->SelectAll();
|
| }
|
| +
|
| FX_BOOL CFWL_DateTimePicker::Delete() {
|
| return static_cast<IFWL_DateTimePicker*>(m_pIface)->Delete();
|
| }
|
| +
|
| FX_BOOL CFWL_DateTimePicker::DeSelect() {
|
| return static_cast<IFWL_DateTimePicker*>(m_pIface)->DeSelect();
|
| }
|
| +
|
| FWL_ERR CFWL_DateTimePicker::GetBBox(CFX_RectF& rect) {
|
| return static_cast<IFWL_DateTimePicker*>(m_pIface)->GetBBox(rect);
|
| }
|
| +
|
| FWL_ERR CFWL_DateTimePicker::SetEditLimit(int32_t nLimit) {
|
| return static_cast<IFWL_DateTimePicker*>(m_pIface)->SetEditLimit(nLimit);
|
| }
|
| +
|
| FWL_ERR CFWL_DateTimePicker::ModifyEditStylesEx(uint32_t dwStylesExAdded,
|
| uint32_t dwStylesExRemoved) {
|
| return static_cast<IFWL_DateTimePicker*>(m_pIface)
|
|
|