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

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

Issue 2521303002: Rename IFWL_App to CFWL_App (Closed)
Patch Set: Rebase to master 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_datetimepicker.h ('k') | xfa/fwl/core/cfwl_edit.h » ('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 #include "xfa/fwl/core/cfwl_datetimepicker.h" 7 #include "xfa/fwl/core/cfwl_datetimepicker.h"
8 8
9 #include <memory> 9 #include <memory>
10 10
11 #include "third_party/base/ptr_util.h" 11 #include "third_party/base/ptr_util.h"
12 #include "xfa/fwl/core/fwl_error.h" 12 #include "xfa/fwl/core/fwl_error.h"
13 #include "xfa/fwl/core/ifwl_datetimepicker.h" 13 #include "xfa/fwl/core/ifwl_datetimepicker.h"
14 #include "xfa/fwl/core/ifwl_widget.h" 14 #include "xfa/fwl/core/ifwl_widget.h"
15 15
16 namespace { 16 namespace {
17 17
18 IFWL_DateTimePicker* ToDateTimePicker(IFWL_Widget* widget) { 18 IFWL_DateTimePicker* ToDateTimePicker(IFWL_Widget* widget) {
19 return static_cast<IFWL_DateTimePicker*>(widget); 19 return static_cast<IFWL_DateTimePicker*>(widget);
20 } 20 }
21 21
22 } // namespace 22 } // namespace
23 23
24 CFWL_DateTimePicker::CFWL_DateTimePicker(const IFWL_App* app) 24 CFWL_DateTimePicker::CFWL_DateTimePicker(const CFWL_App* app)
25 : CFWL_Widget(app) {} 25 : CFWL_Widget(app) {}
26 26
27 CFWL_DateTimePicker::~CFWL_DateTimePicker() {} 27 CFWL_DateTimePicker::~CFWL_DateTimePicker() {}
28 28
29 void CFWL_DateTimePicker::Initialize() { 29 void CFWL_DateTimePicker::Initialize() {
30 ASSERT(!m_pIface); 30 ASSERT(!m_pIface);
31 31
32 m_pIface = pdfium::MakeUnique<IFWL_DateTimePicker>( 32 m_pIface = pdfium::MakeUnique<IFWL_DateTimePicker>(
33 m_pApp, pdfium::MakeUnique<CFWL_WidgetProperties>(this)); 33 m_pApp, pdfium::MakeUnique<CFWL_WidgetProperties>(this));
34 34
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 72
73 void CFWL_DateTimePicker::SetEditLimit(int32_t nLimit) { 73 void CFWL_DateTimePicker::SetEditLimit(int32_t nLimit) {
74 ToDateTimePicker(GetWidget())->SetEditLimit(nLimit); 74 ToDateTimePicker(GetWidget())->SetEditLimit(nLimit);
75 } 75 }
76 76
77 void CFWL_DateTimePicker::ModifyEditStylesEx(uint32_t dwStylesExAdded, 77 void CFWL_DateTimePicker::ModifyEditStylesEx(uint32_t dwStylesExAdded,
78 uint32_t dwStylesExRemoved) { 78 uint32_t dwStylesExRemoved) {
79 ToDateTimePicker(GetWidget()) 79 ToDateTimePicker(GetWidget())
80 ->ModifyEditStylesEx(dwStylesExAdded, dwStylesExRemoved); 80 ->ModifyEditStylesEx(dwStylesExAdded, dwStylesExRemoved);
81 } 81 }
OLDNEW
« no previous file with comments | « xfa/fwl/core/cfwl_datetimepicker.h ('k') | xfa/fwl/core/cfwl_edit.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698