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

Side by Side Diff: xfa/fwl/basewidget/fwl_datetimepickerimp.cpp

Issue 1921853006: More FWL interface cleanup. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 7 months 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 #include "xfa/fwl/basewidget/fwl_datetimepickerimp.h" 7 #include "xfa/fwl/basewidget/fwl_datetimepickerimp.h"
8 8
9 #include "xfa/fwl/basewidget/fwl_editimp.h" 9 #include "xfa/fwl/basewidget/fwl_editimp.h"
10 #include "xfa/fwl/basewidget/fwl_formproxyimp.h" 10 #include "xfa/fwl/basewidget/fwl_formproxyimp.h"
11 #include "xfa/fwl/basewidget/fwl_monthcalendarimp.h" 11 #include "xfa/fwl/basewidget/fwl_monthcalendarimp.h"
12 #include "xfa/fwl/basewidget/ifwl_spinbutton.h" 12 #include "xfa/fwl/basewidget/ifwl_spinbutton.h"
13 #include "xfa/fwl/core/cfwl_message.h" 13 #include "xfa/fwl/core/cfwl_message.h"
14 #include "xfa/fwl/core/cfwl_themebackground.h" 14 #include "xfa/fwl/core/cfwl_themebackground.h"
15 #include "xfa/fwl/core/fwl_formimp.h" 15 #include "xfa/fwl/core/fwl_formimp.h"
16 #include "xfa/fwl/core/fwl_noteimp.h" 16 #include "xfa/fwl/core/fwl_noteimp.h"
17 #include "xfa/fwl/core/fwl_targetimp.h"
18 #include "xfa/fwl/core/fwl_widgetimp.h" 17 #include "xfa/fwl/core/fwl_widgetimp.h"
19 #include "xfa/fwl/core/fwl_widgetmgrimp.h" 18 #include "xfa/fwl/core/fwl_widgetmgrimp.h"
20 #include "xfa/fwl/core/ifwl_themeprovider.h" 19 #include "xfa/fwl/core/ifwl_themeprovider.h"
21 20
22 #define FWL_DTP_WIDTH 100 21 #define FWL_DTP_WIDTH 100
23 #define FWL_DTP_HEIGHT 20 22 #define FWL_DTP_HEIGHT 20
24 23
25 // static 24 // static
26 IFWL_DateTimePicker* IFWL_DateTimePicker::Create( 25 IFWL_DateTimePicker* IFWL_DateTimePicker::Create(
27 const CFWL_WidgetImpProperties& properties, 26 const CFWL_WidgetImpProperties& properties,
(...skipping 1145 matching lines...) Expand 10 before | Expand all | Expand 10 after
1173 } 1172 }
1174 if (m_pOwner->m_pEdit->GetStates() & FWL_WGTSTATE_Focused) { 1173 if (m_pOwner->m_pEdit->GetStates() & FWL_WGTSTATE_Focused) {
1175 pMsg->m_pSrcTarget = m_pOwner->m_pEdit.get(); 1174 pMsg->m_pSrcTarget = m_pOwner->m_pEdit.get();
1176 IFWL_WidgetDelegate* pDelegate = m_pOwner->m_pEdit->SetDelegate(NULL); 1175 IFWL_WidgetDelegate* pDelegate = m_pOwner->m_pEdit->SetDelegate(NULL);
1177 pDelegate->OnProcessMessage(pMsg); 1176 pDelegate->OnProcessMessage(pMsg);
1178 } 1177 }
1179 } 1178 }
1180 rtInvalidate.Inflate(2, 2); 1179 rtInvalidate.Inflate(2, 2);
1181 m_pOwner->Repaint(&rtInvalidate); 1180 m_pOwner->Repaint(&rtInvalidate);
1182 } 1181 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698