diff options
author | dsinclair <dsinclair@chromium.org> | 2016-10-20 09:59:48 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-10-20 09:59:48 -0700 |
commit | 05259e98f7416b59da18ee6059b48a23fddca8af (patch) | |
tree | 8af6be4a43aa37e8cd36023ffd36262c04c26ff7 /xfa/fwl/lightwidget/cfwl_datetimepicker.h | |
parent | 73895de7dea3737d1a25801001b8efe186c6f5a3 (diff) | |
download | pdfium-05259e98f7416b59da18ee6059b48a23fddca8af.tar.xz |
Move fwl/lightwidget to fwl/core
This CL moves the code from fwl/lightwidget into fwl/core. In anticipation of
merging the two hierarchies.
Review-Url: https://chromiumcodereview.appspot.com/2430923006
Diffstat (limited to 'xfa/fwl/lightwidget/cfwl_datetimepicker.h')
-rw-r--r-- | xfa/fwl/lightwidget/cfwl_datetimepicker.h | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/xfa/fwl/lightwidget/cfwl_datetimepicker.h b/xfa/fwl/lightwidget/cfwl_datetimepicker.h deleted file mode 100644 index 309988446d..0000000000 --- a/xfa/fwl/lightwidget/cfwl_datetimepicker.h +++ /dev/null @@ -1,70 +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 - -#ifndef XFA_FWL_LIGHTWIDGET_CFWL_DATETIMEPICKER_H_ -#define XFA_FWL_LIGHTWIDGET_CFWL_DATETIMEPICKER_H_ - -#include "xfa/fwl/core/ifwl_datetimepicker.h" -#include "xfa/fwl/lightwidget/cfwl_widget.h" - -class CFWL_DateTimePicker : public CFWL_Widget { - public: - CFWL_DateTimePicker(); - ~CFWL_DateTimePicker() override; - - IFWL_DateTimePicker* GetWidget() override; - const IFWL_DateTimePicker* GetWidget() const override; - - FWL_Error Initialize(const CFWL_WidgetProperties* pProperties = nullptr); - FWL_Error SetToday(int32_t iYear, int32_t iMonth, int32_t iDay); - FWL_Error GetEditText(CFX_WideString& wsText); - FWL_Error SetEditText(const CFX_WideString& wsText); - int32_t CountSelRanges(); - int32_t GetSelRange(int32_t nIndex, int32_t& nStart); - FWL_Error GetCurSel(int32_t& iYear, int32_t& iMonth, int32_t& iDay); - FWL_Error SetCurSel(int32_t iYear, int32_t iMonth, int32_t iDay); - FX_BOOL CanUndo(); - FX_BOOL CanRedo(); - FX_BOOL Undo(); - FX_BOOL Redo(); - FX_BOOL CanCopy(); - FX_BOOL CanCut(); - FX_BOOL CanSelectAll(); - FX_BOOL Copy(CFX_WideString& wsCopy); - FX_BOOL Cut(CFX_WideString& wsCut); - FX_BOOL Paste(const CFX_WideString& wsPaste); - FX_BOOL SelectAll(); - FX_BOOL Delete(); - FX_BOOL DeSelect(); - FWL_Error GetBBox(CFX_RectF& rect); - FWL_Error SetEditLimit(int32_t nLimit); - FWL_Error ModifyEditStylesEx(uint32_t dwStylesExAdded, - uint32_t dwStylesExRemoved); - - protected: - class CFWL_DateTimePickerDP : public IFWL_DateTimePickerDP { - public: - CFWL_DateTimePickerDP(); - - // IFWL_DataProvider - FWL_Error GetCaption(IFWL_Widget* pWidget, - CFX_WideString& wsCaption) override; - - // IFWL_DateTimePickerDP - FWL_Error GetToday(IFWL_Widget* pWidget, - int32_t& iYear, - int32_t& iMonth, - int32_t& iDay) override; - int32_t m_iYear; - int32_t m_iMonth; - int32_t m_iDay; - CFX_WideString m_wsData; - }; - - CFWL_DateTimePickerDP m_DateTimePickerDP; -}; - -#endif // XFA_FWL_LIGHTWIDGET_CFWL_DATETIMEPICKER_H_ |