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

Side by Side Diff: xfa/fgas/layout/fgas_rtfbreak.h

Issue 2362063003: Clean up xfa_fontmgr.cpp. (Closed)
Patch Set: nits Created 4 years, 2 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
« no previous file with comments | « xfa/fgas/font/fgas_gefont.cpp ('k') | xfa/fgas/layout/fgas_rtfbreak.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_FGAS_LAYOUT_FGAS_RTFBREAK_H_ 7 #ifndef XFA_FGAS_LAYOUT_FGAS_RTFBREAK_H_
8 #define XFA_FGAS_LAYOUT_FGAS_RTFBREAK_H_ 8 #define XFA_FGAS_LAYOUT_FGAS_RTFBREAK_H_
9 9
10 #include "core/fxcrt/include/fx_basic.h" 10 #include "core/fxcrt/include/fx_basic.h"
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 uint32_t dwStatus); 281 uint32_t dwStatus);
282 void EndBreak_BidiLine(CFX_TPOArray& tpos, uint32_t dwStatus); 282 void EndBreak_BidiLine(CFX_TPOArray& tpos, uint32_t dwStatus);
283 void EndBreak_Alignment(CFX_TPOArray& tpos, 283 void EndBreak_Alignment(CFX_TPOArray& tpos,
284 FX_BOOL bAllChars, 284 FX_BOOL bAllChars,
285 uint32_t dwStatus); 285 uint32_t dwStatus);
286 286
287 uint32_t m_dwPolicies; 287 uint32_t m_dwPolicies;
288 int32_t m_iBoundaryStart; 288 int32_t m_iBoundaryStart;
289 int32_t m_iBoundaryEnd; 289 int32_t m_iBoundaryEnd;
290 uint32_t m_dwLayoutStyles; 290 uint32_t m_dwLayoutStyles;
291 FX_BOOL m_bPagination; 291 bool m_bPagination;
292 FX_BOOL m_bVertical; 292 bool m_bVertical;
293 FX_BOOL m_bSingleLine; 293 bool m_bSingleLine;
294 FX_BOOL m_bCharCode; 294 bool m_bCharCode;
295 CFGAS_GEFont* m_pFont; 295 CFGAS_GEFont* m_pFont;
296 int32_t m_iFontHeight; 296 int32_t m_iFontHeight;
297 int32_t m_iFontSize; 297 int32_t m_iFontSize;
298 int32_t m_iTabWidth; 298 int32_t m_iTabWidth;
299 CFX_Int32Array m_PositionedTabs; 299 CFX_Int32Array m_PositionedTabs;
300 FX_BOOL m_bOrphanLine; 300 FX_BOOL m_bOrphanLine;
301 FX_WCHAR m_wDefChar; 301 FX_WCHAR m_wDefChar;
302 int32_t m_iDefChar; 302 int32_t m_iDefChar;
303 FX_WCHAR m_wLineBreakChar; 303 FX_WCHAR m_wLineBreakChar;
304 int32_t m_iHorizontalScale; 304 int32_t m_iHorizontalScale;
(...skipping 10 matching lines...) Expand all
315 FX_CHARTYPE m_eCharType; 315 FX_CHARTYPE m_eCharType;
316 uint32_t m_dwIdentity; 316 uint32_t m_dwIdentity;
317 CFX_RTFLine m_RTFLine1; 317 CFX_RTFLine m_RTFLine1;
318 CFX_RTFLine m_RTFLine2; 318 CFX_RTFLine m_RTFLine2;
319 CFX_RTFLine* m_pCurLine; 319 CFX_RTFLine* m_pCurLine;
320 int32_t m_iReady; 320 int32_t m_iReady;
321 int32_t m_iTolerance; 321 int32_t m_iTolerance;
322 }; 322 };
323 323
324 #endif // XFA_FGAS_LAYOUT_FGAS_RTFBREAK_H_ 324 #endif // XFA_FGAS_LAYOUT_FGAS_RTFBREAK_H_
OLDNEW
« no previous file with comments | « xfa/fgas/font/fgas_gefont.cpp ('k') | xfa/fgas/layout/fgas_rtfbreak.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698