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

Side by Side Diff: xfa/fwl/core/cfwl_datetimepicker.h

Issue 2480233003: Fold DataProviders into parent classes (Closed)
Patch Set: Created 4 years, 1 month 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
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 #ifndef XFA_FWL_CORE_CFWL_DATETIMEPICKER_H_ 7 #ifndef XFA_FWL_CORE_CFWL_DATETIMEPICKER_H_
8 #define XFA_FWL_CORE_CFWL_DATETIMEPICKER_H_ 8 #define XFA_FWL_CORE_CFWL_DATETIMEPICKER_H_
9 9
10 #include "xfa/fwl/core/cfwl_widget.h" 10 #include "xfa/fwl/core/cfwl_widget.h"
11 #include "xfa/fwl/core/ifwl_datetimepicker.h" 11 #include "xfa/fwl/core/ifwl_datetimepicker.h"
12 12
13 class CFWL_DateTimePicker : public CFWL_Widget { 13 class CFWL_DateTimePicker : public CFWL_Widget, public IFWL_DateTimePickerDP {
14 public: 14 public:
15 CFWL_DateTimePicker(const IFWL_App*); 15 CFWL_DateTimePicker(const IFWL_App*);
16 ~CFWL_DateTimePicker() override; 16 ~CFWL_DateTimePicker() override;
17 17
18 void Initialize(); 18 void Initialize();
19 19
20 FWL_Error SetToday(int32_t iYear, int32_t iMonth, int32_t iDay); 20 FWL_Error SetToday(int32_t iYear, int32_t iMonth, int32_t iDay);
21 FWL_Error GetEditText(CFX_WideString& wsText); 21 FWL_Error GetEditText(CFX_WideString& wsText);
22 FWL_Error SetEditText(const CFX_WideString& wsText); 22 FWL_Error SetEditText(const CFX_WideString& wsText);
23 int32_t CountSelRanges(); 23 int32_t CountSelRanges();
(...skipping 12 matching lines...) Expand all
36 bool Paste(const CFX_WideString& wsPaste); 36 bool Paste(const CFX_WideString& wsPaste);
37 bool SelectAll(); 37 bool SelectAll();
38 bool Delete(); 38 bool Delete();
39 bool DeSelect(); 39 bool DeSelect();
40 FWL_Error GetBBox(CFX_RectF& rect); 40 FWL_Error GetBBox(CFX_RectF& rect);
41 FWL_Error SetEditLimit(int32_t nLimit); 41 FWL_Error SetEditLimit(int32_t nLimit);
42 FWL_Error ModifyEditStylesEx(uint32_t dwStylesExAdded, 42 FWL_Error ModifyEditStylesEx(uint32_t dwStylesExAdded,
43 uint32_t dwStylesExRemoved); 43 uint32_t dwStylesExRemoved);
44 44
45 protected: 45 protected:
46 class CFWL_DateTimePickerDP : public IFWL_DateTimePickerDP { 46 // IFWL_DataProvider
47 public: 47 FWL_Error GetCaption(IFWL_Widget* pWidget,
48 CFWL_DateTimePickerDP(); 48 CFX_WideString& wsCaption) override;
49 49
50 // IFWL_DataProvider 50 // IFWL_DateTimePickerDP
51 FWL_Error GetCaption(IFWL_Widget* pWidget, 51 FWL_Error GetToday(IFWL_Widget* pWidget,
52 CFX_WideString& wsCaption) override; 52 int32_t& iYear,
53 53 int32_t& iMonth,
54 // IFWL_DateTimePickerDP 54 int32_t& iDay) override;
55 FWL_Error GetToday(IFWL_Widget* pWidget, 55 int32_t m_iYear;
56 int32_t& iYear, 56 int32_t m_iMonth;
57 int32_t& iMonth, 57 int32_t m_iDay;
58 int32_t& iDay) override; 58 CFX_WideString m_wsData;
59 int32_t m_iYear;
60 int32_t m_iMonth;
61 int32_t m_iDay;
62 CFX_WideString m_wsData;
63 };
64
65 CFWL_DateTimePickerDP m_DateTimePickerDP;
66 }; 59 };
67 60
68 #endif // XFA_FWL_CORE_CFWL_DATETIMEPICKER_H_ 61 #endif // XFA_FWL_CORE_CFWL_DATETIMEPICKER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698