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

Side by Side Diff: xfa/src/fwl/basewidget/fwl_datetimepickerimp.h

Issue 1770953004: Remove xfa/src/fwl/src and move code up a level. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 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 #ifndef XFA_SRC_FWL_SRC_BASEWIDGET_FWL_DATETIMEPICKERIMP_H_ 7 #ifndef XFA_SRC_FWL_BASEWIDGET_FWL_DATETIMEPICKERIMP_H_
8 #define XFA_SRC_FWL_SRC_BASEWIDGET_FWL_DATETIMEPICKERIMP_H_ 8 #define XFA_SRC_FWL_BASEWIDGET_FWL_DATETIMEPICKERIMP_H_
9 9
10 #include <memory> 10 #include <memory>
11 11
12 #include "xfa/include/fwl/core/fwl_form.h" 12 #include "xfa/include/fwl/core/fwl_form.h"
13 #include "xfa/include/fwl/core/fwl_theme.h" 13 #include "xfa/include/fwl/core/fwl_theme.h"
14 #include "xfa/include/fwl/basewidget/fwl_datetimepicker.h" 14 #include "xfa/include/fwl/basewidget/fwl_datetimepicker.h"
15 #include "xfa/include/fwl/basewidget/fwl_edit.h" 15 #include "xfa/include/fwl/basewidget/fwl_edit.h"
16 #include "xfa/include/fwl/basewidget/fwl_monthcalendar.h" 16 #include "xfa/include/fwl/basewidget/fwl_monthcalendar.h"
17 #include "xfa/src/fwl/src/basewidget/fwl_editimp.h" 17 #include "xfa/src/fwl/basewidget/fwl_editimp.h"
18 #include "xfa/src/fwl/src/basewidget/fwl_monthcalendarimp.h" 18 #include "xfa/src/fwl/basewidget/fwl_monthcalendarimp.h"
19 19
20 class CFWL_WidgetImp; 20 class CFWL_WidgetImp;
21 class CFWL_WidgetImpProperties; 21 class CFWL_WidgetImpProperties;
22 class CFWL_WidgetImpDelegate; 22 class CFWL_WidgetImpDelegate;
23 class CFWL_DateTimeEdit; 23 class CFWL_DateTimeEdit;
24 class CFWL_DateTimeEditImpDelegate; 24 class CFWL_DateTimeEditImpDelegate;
25 class CFWL_DateTimeCalendar; 25 class CFWL_DateTimeCalendar;
26 class CFWL_DateTimeCalendarImpDelegate; 26 class CFWL_DateTimeCalendarImpDelegate;
27 class CFWL_DateTimePickerImp; 27 class CFWL_DateTimePickerImp;
28 class CFWL_DateTimePickerImpDelegate; 28 class CFWL_DateTimePickerImpDelegate;
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 void OnLButtonUp(CFWL_MsgMouse* pMsg); 225 void OnLButtonUp(CFWL_MsgMouse* pMsg);
226 void OnMouseMove(CFWL_MsgMouse* pMsg); 226 void OnMouseMove(CFWL_MsgMouse* pMsg);
227 void OnMouseLeave(CFWL_MsgMouse* pMsg); 227 void OnMouseLeave(CFWL_MsgMouse* pMsg);
228 228
229 CFWL_DateTimePickerImp* m_pOwner; 229 CFWL_DateTimePickerImp* m_pOwner;
230 230
231 private: 231 private:
232 void DisForm_OnFocusChanged(CFWL_Message* pMsg, FX_BOOL bSet = TRUE); 232 void DisForm_OnFocusChanged(CFWL_Message* pMsg, FX_BOOL bSet = TRUE);
233 }; 233 };
234 234
235 #endif // XFA_SRC_FWL_SRC_BASEWIDGET_FWL_DATETIMEPICKERIMP_H_ 235 #endif // XFA_SRC_FWL_BASEWIDGET_FWL_DATETIMEPICKERIMP_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698