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

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

Issue 2510793003: Continue formatting fwl/core (Closed)
Patch Set: format 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_IFWL_MONTHCALENDAR_H_ 7 #ifndef XFA_FWL_CORE_IFWL_MONTHCALENDAR_H_
8 #define XFA_FWL_CORE_IFWL_MONTHCALENDAR_H_ 8 #define XFA_FWL_CORE_IFWL_MONTHCALENDAR_H_
9 9
10 #include "xfa/fgas/localization/fgas_datetime.h" 10 #include "xfa/fgas/localization/fgas_datetime.h"
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 CFX_WideString& wsday); 94 CFX_WideString& wsday);
95 ~DATEINFO(); 95 ~DATEINFO();
96 96
97 int32_t iDay; 97 int32_t iDay;
98 int32_t iDayOfWeek; 98 int32_t iDayOfWeek;
99 uint32_t dwStates; 99 uint32_t dwStates;
100 CFX_RectF rect; 100 CFX_RectF rect;
101 CFX_WideString wsDay; 101 CFX_WideString wsDay;
102 }; 102 };
103 103
104 void DrawBkground(CFX_Graphics* pGraphics, 104 void DrawBackground(CFX_Graphics* pGraphics,
105 IFWL_ThemeProvider* pTheme, 105 IFWL_ThemeProvider* pTheme,
106 const CFX_Matrix* pMatrix); 106 const CFX_Matrix* pMatrix);
107 void DrawHeadBK(CFX_Graphics* pGraphics, 107 void DrawHeadBK(CFX_Graphics* pGraphics,
108 IFWL_ThemeProvider* pTheme, 108 IFWL_ThemeProvider* pTheme,
109 const CFX_Matrix* pMatrix); 109 const CFX_Matrix* pMatrix);
110 void DrawLButton(CFX_Graphics* pGraphics, 110 void DrawLButton(CFX_Graphics* pGraphics,
111 IFWL_ThemeProvider* pTheme, 111 IFWL_ThemeProvider* pTheme,
112 const CFX_Matrix* pMatrix); 112 const CFX_Matrix* pMatrix);
113 void DrawRButton(CFX_Graphics* pGraphics, 113 void DrawRButton(CFX_Graphics* pGraphics,
114 IFWL_ThemeProvider* pTheme, 114 IFWL_ThemeProvider* pTheme,
115 const CFX_Matrix* pMatrix); 115 const CFX_Matrix* pMatrix);
116 void DrawCaption(CFX_Graphics* pGraphics, 116 void DrawCaption(CFX_Graphics* pGraphics,
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 FX_FLOAT m_fDateCellHei; 225 FX_FLOAT m_fDateCellHei;
226 FX_FLOAT m_fTodayWid; 226 FX_FLOAT m_fTodayWid;
227 FX_FLOAT m_fTodayHei; 227 FX_FLOAT m_fTodayHei;
228 FX_FLOAT m_fTodayFlagWid; 228 FX_FLOAT m_fTodayFlagWid;
229 FX_FLOAT m_fMCWid; 229 FX_FLOAT m_fMCWid;
230 FX_FLOAT m_fMCHei; 230 FX_FLOAT m_fMCHei;
231 bool m_bFlag; 231 bool m_bFlag;
232 }; 232 };
233 233
234 #endif // XFA_FWL_CORE_IFWL_MONTHCALENDAR_H_ 234 #endif // XFA_FWL_CORE_IFWL_MONTHCALENDAR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698