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

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

Issue 2480233003: Fold DataProviders into parent classes (Closed)
Patch Set: Review feedback 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
« no previous file with comments | « xfa/fwl/core/cfwl_combobox.cpp ('k') | xfa/fwl/core/cfwl_datetimepicker.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 11 matching lines...) Expand all
35 bool Cut(CFX_WideString& wsCut); 35 bool Cut(CFX_WideString& wsCut);
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 // IFWL_DataProvider
46 class CFWL_DateTimePickerDP : public IFWL_DateTimePickerDP { 46 FWL_Error GetCaption(IFWL_Widget* pWidget,
47 public: 47 CFX_WideString& wsCaption) override;
48 CFWL_DateTimePickerDP();
49 48
50 // IFWL_DataProvider 49 // IFWL_DateTimePickerDP
51 FWL_Error GetCaption(IFWL_Widget* pWidget, 50 FWL_Error GetToday(IFWL_Widget* pWidget,
52 CFX_WideString& wsCaption) override; 51 int32_t& iYear,
52 int32_t& iMonth,
53 int32_t& iDay) override;
53 54
54 // IFWL_DateTimePickerDP 55 private:
55 FWL_Error GetToday(IFWL_Widget* pWidget, 56 int32_t m_iYear;
56 int32_t& iYear, 57 int32_t m_iMonth;
57 int32_t& iMonth, 58 int32_t m_iDay;
58 int32_t& iDay) override; 59 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 }; 60 };
67 61
68 #endif // XFA_FWL_CORE_CFWL_DATETIMEPICKER_H_ 62 #endif // XFA_FWL_CORE_CFWL_DATETIMEPICKER_H_
OLDNEW
« no previous file with comments | « xfa/fwl/core/cfwl_combobox.cpp ('k') | xfa/fwl/core/cfwl_datetimepicker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698