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

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

Issue 2095653002: Remove NULL in xfa/ (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase to master Created 4 years, 5 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/fgas/layout/fgas_rtfbreak.h" 7 #include "xfa/fgas/layout/fgas_rtfbreak.h"
8 8
9 #include <algorithm> 9 #include <algorithm>
10 10
11 #include "core/fxcrt/include/fx_arabic.h" 11 #include "core/fxcrt/include/fx_arabic.h"
12 #include "core/fxcrt/include/fx_arb.h" 12 #include "core/fxcrt/include/fx_arb.h"
13 #include "xfa/fgas/font/fgas_gefont.h" 13 #include "xfa/fgas/font/fgas_gefont.h"
14 #include "xfa/fgas/layout/fgas_linebreak.h" 14 #include "xfa/fgas/layout/fgas_linebreak.h"
15 #include "xfa/fgas/layout/fgas_unicode.h" 15 #include "xfa/fgas/layout/fgas_unicode.h"
16 16
17 CFX_RTFBreak::CFX_RTFBreak(uint32_t dwPolicies) 17 CFX_RTFBreak::CFX_RTFBreak(uint32_t dwPolicies)
18 : m_dwPolicies(dwPolicies), 18 : m_dwPolicies(dwPolicies),
19 m_iBoundaryStart(0), 19 m_iBoundaryStart(0),
20 m_iBoundaryEnd(2000000), 20 m_iBoundaryEnd(2000000),
21 m_dwLayoutStyles(0), 21 m_dwLayoutStyles(0),
22 m_bPagination(FALSE), 22 m_bPagination(FALSE),
23 m_bVertical(FALSE), 23 m_bVertical(FALSE),
24 m_bSingleLine(FALSE), 24 m_bSingleLine(FALSE),
25 m_bCharCode(FALSE), 25 m_bCharCode(FALSE),
26 m_pFont(NULL), 26 m_pFont(nullptr),
27 m_iFontHeight(240), 27 m_iFontHeight(240),
28 m_iFontSize(240), 28 m_iFontSize(240),
29 m_iTabWidth(720000), 29 m_iTabWidth(720000),
30 m_PositionedTabs(), 30 m_PositionedTabs(),
31 m_bOrphanLine(FALSE), 31 m_bOrphanLine(FALSE),
32 m_wDefChar(0xFEFF), 32 m_wDefChar(0xFEFF),
33 m_iDefChar(0), 33 m_iDefChar(0),
34 m_wLineBreakChar(L'\n'), 34 m_wLineBreakChar(L'\n'),
35 m_iHorizontalScale(100), 35 m_iHorizontalScale(100),
36 m_iVerticalScale(100), 36 m_iVerticalScale(100),
37 m_iLineRotation(0), 37 m_iLineRotation(0),
38 m_iCharRotation(0), 38 m_iCharRotation(0),
39 m_iRotation(0), 39 m_iRotation(0),
40 m_iCharSpace(0), 40 m_iCharSpace(0),
41 m_bWordSpace(FALSE), 41 m_bWordSpace(FALSE),
42 m_iWordSpace(0), 42 m_iWordSpace(0),
43 m_bRTL(FALSE), 43 m_bRTL(FALSE),
44 m_iAlignment(FX_RTFLINEALIGNMENT_Left), 44 m_iAlignment(FX_RTFLINEALIGNMENT_Left),
45 m_pUserData(NULL), 45 m_pUserData(nullptr),
46 m_eCharType(FX_CHARTYPE_Unknown), 46 m_eCharType(FX_CHARTYPE_Unknown),
47 m_dwIdentity(0), 47 m_dwIdentity(0),
48 m_RTFLine1(), 48 m_RTFLine1(),
49 m_RTFLine2(), 49 m_RTFLine2(),
50 m_pCurLine(NULL), 50 m_pCurLine(nullptr),
51 m_iReady(0), 51 m_iReady(0),
52 m_iTolerance(0) { 52 m_iTolerance(0) {
53 m_pCurLine = &m_RTFLine1; 53 m_pCurLine = &m_RTFLine1;
54 } 54 }
55 CFX_RTFBreak::~CFX_RTFBreak() { 55 CFX_RTFBreak::~CFX_RTFBreak() {
56 Reset(); 56 Reset();
57 m_PositionedTabs.RemoveAll(); 57 m_PositionedTabs.RemoveAll();
58 if (m_pUserData != NULL) { 58 if (m_pUserData) {
59 m_pUserData->Release(); 59 m_pUserData->Release();
60 } 60 }
61 } 61 }
62 void CFX_RTFBreak::SetLineBoundary(FX_FLOAT fLineStart, FX_FLOAT fLineEnd) { 62 void CFX_RTFBreak::SetLineBoundary(FX_FLOAT fLineStart, FX_FLOAT fLineEnd) {
63 if (fLineStart > fLineEnd) 63 if (fLineStart > fLineEnd)
64 return; 64 return;
65 m_iBoundaryStart = FXSYS_round(fLineStart * 20000.0f); 65 m_iBoundaryStart = FXSYS_round(fLineStart * 20000.0f);
66 m_iBoundaryEnd = FXSYS_round(fLineEnd * 20000.0f); 66 m_iBoundaryEnd = FXSYS_round(fLineEnd * 20000.0f);
67 m_pCurLine->m_iStart = std::min(m_pCurLine->m_iStart, m_iBoundaryEnd); 67 m_pCurLine->m_iStart = std::min(m_pCurLine->m_iStart, m_iBoundaryEnd);
68 m_pCurLine->m_iStart = std::max(m_pCurLine->m_iStart, m_iBoundaryStart); 68 m_pCurLine->m_iStart = std::max(m_pCurLine->m_iStart, m_iBoundaryStart);
(...skipping 12 matching lines...) Expand all
81 m_dwLayoutStyles = dwLayoutStyles; 81 m_dwLayoutStyles = dwLayoutStyles;
82 m_bPagination = (m_dwLayoutStyles & FX_RTFLAYOUTSTYLE_Pagination) != 0; 82 m_bPagination = (m_dwLayoutStyles & FX_RTFLAYOUTSTYLE_Pagination) != 0;
83 m_bVertical = (m_dwLayoutStyles & FX_RTFLAYOUTSTYLE_VerticalChars) != 0; 83 m_bVertical = (m_dwLayoutStyles & FX_RTFLAYOUTSTYLE_VerticalChars) != 0;
84 m_bSingleLine = (m_dwLayoutStyles & FX_RTFLAYOUTSTYLE_SingleLine) != 0; 84 m_bSingleLine = (m_dwLayoutStyles & FX_RTFLAYOUTSTYLE_SingleLine) != 0;
85 m_bCharCode = (m_dwLayoutStyles & FX_RTFLAYOUTSTYLE_MBCSCode) != 0; 85 m_bCharCode = (m_dwLayoutStyles & FX_RTFLAYOUTSTYLE_MBCSCode) != 0;
86 m_iLineRotation = GetLineRotation(m_dwLayoutStyles); 86 m_iLineRotation = GetLineRotation(m_dwLayoutStyles);
87 m_iRotation = m_iLineRotation + m_iCharRotation; 87 m_iRotation = m_iLineRotation + m_iCharRotation;
88 m_iRotation %= 4; 88 m_iRotation %= 4;
89 } 89 }
90 void CFX_RTFBreak::SetFont(CFGAS_GEFont* pFont) { 90 void CFX_RTFBreak::SetFont(CFGAS_GEFont* pFont) {
91 if (pFont == NULL) { 91 if (!pFont) {
92 return; 92 return;
93 } 93 }
94 if (m_pFont == pFont) { 94 if (m_pFont == pFont) {
95 return; 95 return;
96 } 96 }
97 SetBreakStatus(); 97 SetBreakStatus();
98 m_pFont = pFont; 98 m_pFont = pFont;
99 m_iDefChar = 0; 99 m_iDefChar = 0;
100 if (m_pFont != NULL) { 100 if (m_pFont) {
101 m_iFontHeight = m_iFontSize; 101 m_iFontHeight = m_iFontSize;
102 if (m_wDefChar != 0xFEFF) { 102 if (m_wDefChar != 0xFEFF) {
103 m_pFont->GetCharWidth(m_wDefChar, m_iDefChar, FALSE); 103 m_pFont->GetCharWidth(m_wDefChar, m_iDefChar, FALSE);
104 m_iDefChar *= m_iFontSize; 104 m_iDefChar *= m_iFontSize;
105 } 105 }
106 } 106 }
107 } 107 }
108 void CFX_RTFBreak::SetFontSize(FX_FLOAT fFontSize) { 108 void CFX_RTFBreak::SetFontSize(FX_FLOAT fFontSize) {
109 int32_t iFontSize = FXSYS_round(fFontSize * 20.0f); 109 int32_t iFontSize = FXSYS_round(fFontSize * 20.0f);
110 if (m_iFontSize == iFontSize) { 110 if (m_iFontSize == iFontSize) {
111 return; 111 return;
112 } 112 }
113 SetBreakStatus(); 113 SetBreakStatus();
114 m_iFontSize = iFontSize; 114 m_iFontSize = iFontSize;
115 m_iDefChar = 0; 115 m_iDefChar = 0;
116 if (m_pFont != NULL) { 116 if (m_pFont) {
117 m_iFontHeight = m_iFontSize; 117 m_iFontHeight = m_iFontSize;
118 if (m_wDefChar != 0xFEFF) { 118 if (m_wDefChar != 0xFEFF) {
119 m_pFont->GetCharWidth(m_wDefChar, m_iDefChar, FALSE); 119 m_pFont->GetCharWidth(m_wDefChar, m_iDefChar, FALSE);
120 m_iDefChar *= m_iFontSize; 120 m_iDefChar *= m_iFontSize;
121 } 121 }
122 } 122 }
123 } 123 }
124 void CFX_RTFBreak::SetTabWidth(FX_FLOAT fTabWidth) { 124 void CFX_RTFBreak::SetTabWidth(FX_FLOAT fTabWidth) {
125 m_iTabWidth = FXSYS_round(fTabWidth * 20000.0f); 125 m_iTabWidth = FXSYS_round(fTabWidth * 20000.0f);
126 } 126 }
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 m_bOrphanLine = FALSE; 166 m_bOrphanLine = FALSE;
167 } 167 }
168 } 168 }
169 void CFX_RTFBreak::ClearPositionedTabs() { 169 void CFX_RTFBreak::ClearPositionedTabs() {
170 m_PositionedTabs.RemoveAll(); 170 m_PositionedTabs.RemoveAll();
171 m_bOrphanLine = FALSE; 171 m_bOrphanLine = FALSE;
172 } 172 }
173 void CFX_RTFBreak::SetDefaultChar(FX_WCHAR wch) { 173 void CFX_RTFBreak::SetDefaultChar(FX_WCHAR wch) {
174 m_wDefChar = wch; 174 m_wDefChar = wch;
175 m_iDefChar = 0; 175 m_iDefChar = 0;
176 if (m_wDefChar != 0xFEFF && m_pFont != NULL) { 176 if (m_wDefChar != 0xFEFF && m_pFont) {
177 m_pFont->GetCharWidth(m_wDefChar, m_iDefChar, FALSE); 177 m_pFont->GetCharWidth(m_wDefChar, m_iDefChar, FALSE);
178 if (m_iDefChar < 0) { 178 if (m_iDefChar < 0) {
179 m_iDefChar = 0; 179 m_iDefChar = 0;
180 } else { 180 } else {
181 m_iDefChar *= m_iFontSize; 181 m_iDefChar *= m_iFontSize;
182 } 182 }
183 } 183 }
184 } 184 }
185 void CFX_RTFBreak::SetLineBreakChar(FX_WCHAR wch) { 185 void CFX_RTFBreak::SetLineBreakChar(FX_WCHAR wch) {
186 if (wch != L'\r' && wch != L'\n') { 186 if (wch != L'\r' && wch != L'\n') {
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 void CFX_RTFBreak::SetAlignment(int32_t iAlignment) { 238 void CFX_RTFBreak::SetAlignment(int32_t iAlignment) {
239 ASSERT(iAlignment >= FX_RTFLINEALIGNMENT_Left && 239 ASSERT(iAlignment >= FX_RTFLINEALIGNMENT_Left &&
240 iAlignment <= FX_RTFLINEALIGNMENT_Distributed); 240 iAlignment <= FX_RTFLINEALIGNMENT_Distributed);
241 m_iAlignment = iAlignment; 241 m_iAlignment = iAlignment;
242 } 242 }
243 void CFX_RTFBreak::SetUserData(IFX_Retainable* pUserData) { 243 void CFX_RTFBreak::SetUserData(IFX_Retainable* pUserData) {
244 if (m_pUserData == pUserData) { 244 if (m_pUserData == pUserData) {
245 return; 245 return;
246 } 246 }
247 SetBreakStatus(); 247 SetBreakStatus();
248 if (m_pUserData != NULL) { 248 if (m_pUserData) {
249 m_pUserData->Release(); 249 m_pUserData->Release();
250 } 250 }
251 m_pUserData = pUserData; 251 m_pUserData = pUserData;
252 if (m_pUserData != NULL) { 252 if (m_pUserData) {
253 m_pUserData->Retain(); 253 m_pUserData->Retain();
254 } 254 }
255 } 255 }
256 static const int32_t gs_FX_RTFLineRotations[8] = {0, 3, 1, 0, 2, 1, 3, 2}; 256 static const int32_t gs_FX_RTFLineRotations[8] = {0, 3, 1, 0, 2, 1, 3, 2};
257 int32_t CFX_RTFBreak::GetLineRotation(uint32_t dwStyles) const { 257 int32_t CFX_RTFBreak::GetLineRotation(uint32_t dwStyles) const {
258 return gs_FX_RTFLineRotations[(dwStyles & 0x0E) >> 1]; 258 return gs_FX_RTFLineRotations[(dwStyles & 0x0E) >> 1];
259 } 259 }
260 void CFX_RTFBreak::SetBreakStatus() { 260 void CFX_RTFBreak::SetBreakStatus() {
261 m_dwIdentity++; 261 m_dwIdentity++;
262 int32_t iCount = m_pCurLine->CountChars(); 262 int32_t iCount = m_pCurLine->CountChars();
263 if (iCount < 1) { 263 if (iCount < 1) {
264 return; 264 return;
265 } 265 }
266 CFX_RTFChar& tc = m_pCurLine->GetChar(iCount - 1); 266 CFX_RTFChar& tc = m_pCurLine->GetChar(iCount - 1);
267 if (tc.m_dwStatus == 0) { 267 if (tc.m_dwStatus == 0) {
268 tc.m_dwStatus = FX_RTFBREAK_PieceBreak; 268 tc.m_dwStatus = FX_RTFBREAK_PieceBreak;
269 } 269 }
270 } 270 }
271 CFX_RTFChar* CFX_RTFBreak::GetLastChar(int32_t index) const { 271 CFX_RTFChar* CFX_RTFBreak::GetLastChar(int32_t index) const {
272 CFX_RTFCharArray& tca = m_pCurLine->m_LineChars; 272 CFX_RTFCharArray& tca = m_pCurLine->m_LineChars;
273 int32_t iCount = tca.GetSize(); 273 int32_t iCount = tca.GetSize();
274 if (index < 0 || index >= iCount) { 274 if (index < 0 || index >= iCount) {
275 return NULL; 275 return nullptr;
276 } 276 }
277 CFX_RTFChar* pTC; 277 CFX_RTFChar* pTC;
278 int32_t iStart = iCount - 1; 278 int32_t iStart = iCount - 1;
279 while (iStart > -1) { 279 while (iStart > -1) {
280 pTC = tca.GetDataPtr(iStart--); 280 pTC = tca.GetDataPtr(iStart--);
281 if (pTC->m_iCharWidth >= 0 || 281 if (pTC->m_iCharWidth >= 0 ||
282 pTC->GetCharType() != FX_CHARTYPE_Combination) { 282 pTC->GetCharType() != FX_CHARTYPE_Combination) {
283 if (--index < 0) { 283 if (--index < 0) {
284 return pTC; 284 return pTC;
285 } 285 }
286 } 286 }
287 } 287 }
288 return NULL; 288 return nullptr;
289 } 289 }
290 CFX_RTFLine* CFX_RTFBreak::GetRTFLine(FX_BOOL bReady) const { 290 CFX_RTFLine* CFX_RTFBreak::GetRTFLine(FX_BOOL bReady) const {
291 if (bReady) { 291 if (bReady) {
292 if (m_iReady == 1) { 292 if (m_iReady == 1) {
293 return (CFX_RTFLine*)&m_RTFLine1; 293 return (CFX_RTFLine*)&m_RTFLine1;
294 } else if (m_iReady == 2) { 294 } else if (m_iReady == 2) {
295 return (CFX_RTFLine*)&m_RTFLine2; 295 return (CFX_RTFLine*)&m_RTFLine2;
296 } else { 296 } else {
297 return NULL; 297 return nullptr;
298 } 298 }
299 } 299 }
300 ASSERT(m_pCurLine != NULL); 300 ASSERT(m_pCurLine);
301 return m_pCurLine; 301 return m_pCurLine;
302 } 302 }
303 CFX_RTFPieceArray* CFX_RTFBreak::GetRTFPieces(FX_BOOL bReady) const { 303 CFX_RTFPieceArray* CFX_RTFBreak::GetRTFPieces(FX_BOOL bReady) const {
304 CFX_RTFLine* pRTFLine = GetRTFLine(bReady); 304 CFX_RTFLine* pRTFLine = GetRTFLine(bReady);
305 if (pRTFLine == NULL) { 305 if (!pRTFLine) {
Lei Zhang 2016/06/23 17:56:00 ternary operator?
dsinclair 2016/06/23 18:46:52 Done.
306 return NULL; 306 return nullptr;
307 } 307 }
308 return &pRTFLine->m_LinePieces; 308 return &pRTFLine->m_LinePieces;
309 } 309 }
310 inline FX_CHARTYPE CFX_RTFBreak::GetUnifiedCharType( 310 inline FX_CHARTYPE CFX_RTFBreak::GetUnifiedCharType(
311 FX_CHARTYPE chartype) const { 311 FX_CHARTYPE chartype) const {
312 return chartype >= FX_CHARTYPE_ArabicAlef ? FX_CHARTYPE_Arabic : chartype; 312 return chartype >= FX_CHARTYPE_ArabicAlef ? FX_CHARTYPE_Arabic : chartype;
313 } 313 }
314 int32_t CFX_RTFBreak::GetLastPositionedTab() const { 314 int32_t CFX_RTFBreak::GetLastPositionedTab() const {
315 int32_t iCount = m_PositionedTabs.GetSize(); 315 int32_t iCount = m_PositionedTabs.GetSize();
316 if (iCount < 1) { 316 if (iCount < 1) {
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 pCurChar->m_dwCharProps = dwProps; 355 pCurChar->m_dwCharProps = dwProps;
356 pCurChar->m_dwCharStyles = 0; 356 pCurChar->m_dwCharStyles = 0;
357 pCurChar->m_dwLayoutStyles = 0; 357 pCurChar->m_dwLayoutStyles = 0;
358 pCurChar->m_iFontSize = m_iFontSize; 358 pCurChar->m_iFontSize = m_iFontSize;
359 pCurChar->m_iFontHeight = m_iFontHeight; 359 pCurChar->m_iFontHeight = m_iFontHeight;
360 pCurChar->m_iHorizontalScale = m_iHorizontalScale; 360 pCurChar->m_iHorizontalScale = m_iHorizontalScale;
361 pCurChar->m_iVertialScale = m_iVerticalScale; 361 pCurChar->m_iVertialScale = m_iVerticalScale;
362 pCurChar->m_nRotation = m_iCharRotation; 362 pCurChar->m_nRotation = m_iCharRotation;
363 pCurChar->m_iCharWidth = 0; 363 pCurChar->m_iCharWidth = 0;
364 pCurChar->m_dwIdentity = m_dwIdentity; 364 pCurChar->m_dwIdentity = m_dwIdentity;
365 if (m_pUserData != NULL) { 365 if (m_pUserData) {
366 m_pUserData->Retain(); 366 m_pUserData->Retain();
367 } 367 }
368 pCurChar->m_pUserData = m_pUserData; 368 pCurChar->m_pUserData = m_pUserData;
369 uint32_t dwRet1 = FX_RTFBREAK_None; 369 uint32_t dwRet1 = FX_RTFBREAK_None;
370 if (chartype != FX_CHARTYPE_Combination && 370 if (chartype != FX_CHARTYPE_Combination &&
371 GetUnifiedCharType(m_eCharType) != GetUnifiedCharType(chartype)) { 371 GetUnifiedCharType(m_eCharType) != GetUnifiedCharType(chartype)) {
372 if (!m_bSingleLine && !m_bOrphanLine && 372 if (!m_bSingleLine && !m_bOrphanLine &&
373 m_eCharType != FX_CHARTYPE_Unknown && 373 m_eCharType != FX_CHARTYPE_Unknown &&
374 m_pCurLine->GetLineEnd() > m_iBoundaryEnd + m_iTolerance) { 374 m_pCurLine->GetLineEnd() > m_iBoundaryEnd + m_iTolerance) {
375 if (m_eCharType != FX_CHARTYPE_Space || chartype != FX_CHARTYPE_Control) { 375 if (m_eCharType != FX_CHARTYPE_Space || chartype != FX_CHARTYPE_Control) {
376 dwRet1 = EndBreak(FX_RTFBREAK_LineBreak); 376 dwRet1 = EndBreak(FX_RTFBREAK_LineBreak);
377 int32_t iCount = m_pCurLine->CountChars(); 377 int32_t iCount = m_pCurLine->CountChars();
378 if (iCount > 0) { 378 if (iCount > 0) {
379 pCurChar = m_pCurLine->m_LineChars.GetDataPtr(iCount - 1); 379 pCurChar = m_pCurLine->m_LineChars.GetDataPtr(iCount - 1);
380 } 380 }
381 } 381 }
382 } 382 }
383 } 383 }
384 int32_t iRotation = m_iRotation; 384 int32_t iRotation = m_iRotation;
385 if (m_bVertical && (dwProps & 0x8000) != 0) { 385 if (m_bVertical && (dwProps & 0x8000) != 0) {
386 iRotation = (iRotation + 1) % 4; 386 iRotation = (iRotation + 1) % 4;
387 } 387 }
388 uint32_t dwRet2 = 388 uint32_t dwRet2 =
389 (this->*g_FX_RTFBreak_lpfAppendChar[chartype >> FX_CHARTYPEBITS])( 389 (this->*g_FX_RTFBreak_lpfAppendChar[chartype >> FX_CHARTYPEBITS])(
390 pCurChar, iRotation); 390 pCurChar, iRotation);
391 m_eCharType = chartype; 391 m_eCharType = chartype;
392 return std::max(dwRet1, dwRet2); 392 return std::max(dwRet1, dwRet2);
393 } 393 }
394 uint32_t CFX_RTFBreak::AppendChar_CharCode(FX_WCHAR wch) { 394 uint32_t CFX_RTFBreak::AppendChar_CharCode(FX_WCHAR wch) {
395 ASSERT(m_pFont != NULL && m_pCurLine != NULL); 395 ASSERT(m_pFont && m_pCurLine);
396 ASSERT(m_bCharCode); 396 ASSERT(m_bCharCode);
397 m_pCurLine->m_iMBCSChars++; 397 m_pCurLine->m_iMBCSChars++;
398 CFX_RTFCharArray& tca = m_pCurLine->m_LineChars; 398 CFX_RTFCharArray& tca = m_pCurLine->m_LineChars;
399 CFX_RTFChar* pCurChar = tca.AddSpace(); 399 CFX_RTFChar* pCurChar = tca.AddSpace();
400 pCurChar->m_dwStatus = 0; 400 pCurChar->m_dwStatus = 0;
401 pCurChar->m_wCharCode = wch; 401 pCurChar->m_wCharCode = wch;
402 pCurChar->m_dwCharProps = 0; 402 pCurChar->m_dwCharProps = 0;
403 pCurChar->m_dwCharStyles = 0; 403 pCurChar->m_dwCharStyles = 0;
404 pCurChar->m_dwLayoutStyles = m_dwLayoutStyles; 404 pCurChar->m_dwLayoutStyles = m_dwLayoutStyles;
405 pCurChar->m_iFontSize = m_iFontSize; 405 pCurChar->m_iFontSize = m_iFontSize;
406 pCurChar->m_iFontHeight = m_iFontHeight; 406 pCurChar->m_iFontHeight = m_iFontHeight;
407 pCurChar->m_iHorizontalScale = m_iHorizontalScale; 407 pCurChar->m_iHorizontalScale = m_iHorizontalScale;
408 pCurChar->m_iVertialScale = m_iVerticalScale; 408 pCurChar->m_iVertialScale = m_iVerticalScale;
409 pCurChar->m_nRotation = m_iCharRotation; 409 pCurChar->m_nRotation = m_iCharRotation;
410 pCurChar->m_iCharWidth = 0; 410 pCurChar->m_iCharWidth = 0;
411 pCurChar->m_dwIdentity = m_dwIdentity; 411 pCurChar->m_dwIdentity = m_dwIdentity;
412 if (m_pUserData != NULL) { 412 if (m_pUserData) {
413 m_pUserData->Retain(); 413 m_pUserData->Retain();
414 } 414 }
415 pCurChar->m_pUserData = m_pUserData; 415 pCurChar->m_pUserData = m_pUserData;
416 int32_t iCharWidth = 0; 416 int32_t iCharWidth = 0;
417 if (m_bVertical != FX_IsOdd(m_iRotation)) { 417 if (m_bVertical != FX_IsOdd(m_iRotation)) {
418 iCharWidth = 1000; 418 iCharWidth = 1000;
419 } else { 419 } else {
420 if (!m_pFont->GetCharWidth(wch, iCharWidth, TRUE)) { 420 if (!m_pFont->GetCharWidth(wch, iCharWidth, TRUE)) {
421 iCharWidth = m_iDefChar; 421 iCharWidth = m_iDefChar;
422 } 422 }
(...skipping 17 matching lines...) Expand all
440 iCharWidth = 1000; 440 iCharWidth = 1000;
441 } else { 441 } else {
442 if (!m_pFont->GetCharWidth(pCurChar->m_wCharCode, iCharWidth, 442 if (!m_pFont->GetCharWidth(pCurChar->m_wCharCode, iCharWidth,
443 m_bCharCode)) { 443 m_bCharCode)) {
444 iCharWidth = 0; 444 iCharWidth = 0;
445 } 445 }
446 } 446 }
447 iCharWidth *= m_iFontSize; 447 iCharWidth *= m_iFontSize;
448 iCharWidth = iCharWidth * m_iHorizontalScale / 100; 448 iCharWidth = iCharWidth * m_iHorizontalScale / 100;
449 CFX_RTFChar* pLastChar = GetLastChar(0); 449 CFX_RTFChar* pLastChar = GetLastChar(0);
450 if (pLastChar != NULL && pLastChar->GetCharType() > FX_CHARTYPE_Combination) { 450 if (pLastChar && pLastChar->GetCharType() > FX_CHARTYPE_Combination) {
451 iCharWidth = -iCharWidth; 451 iCharWidth = -iCharWidth;
452 } else { 452 } else {
453 m_eCharType = FX_CHARTYPE_Combination; 453 m_eCharType = FX_CHARTYPE_Combination;
454 } 454 }
455 pCurChar->m_iCharWidth = iCharWidth; 455 pCurChar->m_iCharWidth = iCharWidth;
456 if (iCharWidth > 0) { 456 if (iCharWidth > 0) {
457 m_pCurLine->m_iWidth += iCharWidth; 457 m_pCurLine->m_iWidth += iCharWidth;
458 } 458 }
459 return FX_RTFBREAK_None; 459 return FX_RTFBREAK_None;
460 } 460 }
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
502 break; 502 break;
503 } 503 }
504 if (dwRet2 != FX_RTFBREAK_None) { 504 if (dwRet2 != FX_RTFBREAK_None) {
505 dwRet2 = EndBreak(dwRet2); 505 dwRet2 = EndBreak(dwRet2);
506 } 506 }
507 } 507 }
508 return dwRet2; 508 return dwRet2;
509 } 509 }
510 uint32_t CFX_RTFBreak::AppendChar_Arabic(CFX_RTFChar* pCurChar, 510 uint32_t CFX_RTFBreak::AppendChar_Arabic(CFX_RTFChar* pCurChar,
511 int32_t iRotation) { 511 int32_t iRotation) {
512 CFX_RTFChar* pLastChar = NULL; 512 CFX_RTFChar* pLastChar = nullptr;
513 int32_t& iLineWidth = m_pCurLine->m_iWidth; 513 int32_t& iLineWidth = m_pCurLine->m_iWidth;
514 int32_t iCharWidth = 0; 514 int32_t iCharWidth = 0;
515 FX_WCHAR wForm; 515 FX_WCHAR wForm;
516 FX_BOOL bAlef = FALSE; 516 FX_BOOL bAlef = FALSE;
517 if (m_eCharType >= FX_CHARTYPE_ArabicAlef && 517 if (m_eCharType >= FX_CHARTYPE_ArabicAlef &&
518 m_eCharType <= FX_CHARTYPE_ArabicDistortion) { 518 m_eCharType <= FX_CHARTYPE_ArabicDistortion) {
519 pLastChar = GetLastChar(1); 519 pLastChar = GetLastChar(1);
520 if (pLastChar != NULL) { 520 if (pLastChar) {
521 iLineWidth -= pLastChar->m_iCharWidth; 521 iLineWidth -= pLastChar->m_iCharWidth;
522 CFX_RTFChar* pPrevChar = GetLastChar(2); 522 CFX_RTFChar* pPrevChar = GetLastChar(2);
523 wForm = pdfium::arabic::GetFormChar(pLastChar, pPrevChar, pCurChar); 523 wForm = pdfium::arabic::GetFormChar(pLastChar, pPrevChar, pCurChar);
524 bAlef = (wForm == 0xFEFF && 524 bAlef = (wForm == 0xFEFF &&
525 pLastChar->GetCharType() == FX_CHARTYPE_ArabicAlef); 525 pLastChar->GetCharType() == FX_CHARTYPE_ArabicAlef);
526 int32_t iLastRotation = pLastChar->m_nRotation + m_iLineRotation; 526 int32_t iLastRotation = pLastChar->m_nRotation + m_iLineRotation;
527 if (m_bVertical && (pLastChar->m_dwCharProps & 0x8000) != 0) { 527 if (m_bVertical && (pLastChar->m_dwCharProps & 0x8000) != 0) {
528 iLastRotation++; 528 iLastRotation++;
529 } 529 }
530 if (m_bVertical != FX_IsOdd(iLastRotation)) { 530 if (m_bVertical != FX_IsOdd(iLastRotation)) {
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
614 if (iCount > 0) { 614 if (iCount > 0) {
615 CFX_RTFPiece* pLastPiece = pCurPieces->GetPtrAt(--iCount); 615 CFX_RTFPiece* pLastPiece = pCurPieces->GetPtrAt(--iCount);
616 if (dwStatus > FX_RTFBREAK_PieceBreak) { 616 if (dwStatus > FX_RTFBREAK_PieceBreak) {
617 pLastPiece->m_dwStatus = dwStatus; 617 pLastPiece->m_dwStatus = dwStatus;
618 } else { 618 } else {
619 dwStatus = pLastPiece->m_dwStatus; 619 dwStatus = pLastPiece->m_dwStatus;
620 } 620 }
621 return dwStatus; 621 return dwStatus;
622 } else { 622 } else {
623 CFX_RTFLine* pLastLine = GetRTFLine(TRUE); 623 CFX_RTFLine* pLastLine = GetRTFLine(TRUE);
624 if (pLastLine != NULL) { 624 if (pLastLine) {
625 pCurPieces = &pLastLine->m_LinePieces; 625 pCurPieces = &pLastLine->m_LinePieces;
626 iCount = pCurPieces->GetSize(); 626 iCount = pCurPieces->GetSize();
627 if (iCount-- > 0) { 627 if (iCount-- > 0) {
628 CFX_RTFPiece* pLastPiece = pCurPieces->GetPtrAt(iCount); 628 CFX_RTFPiece* pLastPiece = pCurPieces->GetPtrAt(iCount);
629 if (dwStatus > FX_RTFBREAK_PieceBreak) { 629 if (dwStatus > FX_RTFBREAK_PieceBreak) {
630 pLastPiece->m_dwStatus = dwStatus; 630 pLastPiece->m_dwStatus = dwStatus;
631 } else { 631 } else {
632 dwStatus = pLastPiece->m_dwStatus; 632 dwStatus = pLastPiece->m_dwStatus;
633 } 633 }
634 return dwStatus; 634 return dwStatus;
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after
1056 } 1056 }
1057 if (iLast > -1) { 1057 if (iLast > -1) {
1058 iEndPos = iLastPos; 1058 iEndPos = iLastPos;
1059 return iLast; 1059 return iLast;
1060 } 1060 }
1061 return 0; 1061 return 0;
1062 } 1062 }
1063 void CFX_RTFBreak::SplitTextLine(CFX_RTFLine* pCurLine, 1063 void CFX_RTFBreak::SplitTextLine(CFX_RTFLine* pCurLine,
1064 CFX_RTFLine* pNextLine, 1064 CFX_RTFLine* pNextLine,
1065 FX_BOOL bAllChars) { 1065 FX_BOOL bAllChars) {
1066 ASSERT(pCurLine != NULL && pNextLine != NULL); 1066 ASSERT(pCurLine && pNextLine);
1067 int32_t iCount = pCurLine->CountChars(); 1067 int32_t iCount = pCurLine->CountChars();
1068 if (iCount < 2) { 1068 if (iCount < 2) {
1069 return; 1069 return;
1070 } 1070 }
1071 int32_t iEndPos = pCurLine->GetLineEnd(); 1071 int32_t iEndPos = pCurLine->GetLineEnd();
1072 CFX_RTFCharArray& curChars = pCurLine->m_LineChars; 1072 CFX_RTFCharArray& curChars = pCurLine->m_LineChars;
1073 int32_t iCharPos = GetBreakPos(curChars, iEndPos, bAllChars, FALSE); 1073 int32_t iCharPos = GetBreakPos(curChars, iEndPos, bAllChars, FALSE);
1074 if (iCharPos < 0) { 1074 if (iCharPos < 0) {
1075 iCharPos = 0; 1075 iCharPos = 0;
1076 } 1076 }
(...skipping 26 matching lines...) Expand all
1103 } 1103 }
1104 if (tc->m_dwLayoutStyles & FX_RTFLAYOUTSTYLE_MBCSCode) { 1104 if (tc->m_dwLayoutStyles & FX_RTFLAYOUTSTYLE_MBCSCode) {
1105 pCurLine->m_iMBCSChars--; 1105 pCurLine->m_iMBCSChars--;
1106 pNextLine->m_iMBCSChars++; 1106 pNextLine->m_iMBCSChars++;
1107 } 1107 }
1108 tc->m_dwStatus = 0; 1108 tc->m_dwStatus = 0;
1109 } 1109 }
1110 } 1110 }
1111 int32_t CFX_RTFBreak::CountBreakPieces() const { 1111 int32_t CFX_RTFBreak::CountBreakPieces() const {
1112 CFX_RTFPieceArray* pRTFPieces = GetRTFPieces(TRUE); 1112 CFX_RTFPieceArray* pRTFPieces = GetRTFPieces(TRUE);
1113 if (pRTFPieces == NULL) { 1113 if (!pRTFPieces) {
Lei Zhang 2016/06/23 17:56:00 ternary
dsinclair 2016/06/23 18:46:52 Done.
1114 return 0; 1114 return 0;
1115 } 1115 }
1116 return pRTFPieces->GetSize(); 1116 return pRTFPieces->GetSize();
1117 } 1117 }
1118 const CFX_RTFPiece* CFX_RTFBreak::GetBreakPiece(int32_t index) const { 1118 const CFX_RTFPiece* CFX_RTFBreak::GetBreakPiece(int32_t index) const {
1119 CFX_RTFPieceArray* pRTFPieces = GetRTFPieces(TRUE); 1119 CFX_RTFPieceArray* pRTFPieces = GetRTFPieces(TRUE);
1120 if (pRTFPieces == NULL) { 1120 if (!pRTFPieces) {
1121 return NULL; 1121 return nullptr;
1122 } 1122 }
1123 if (index < 0 || index >= pRTFPieces->GetSize()) { 1123 if (index < 0 || index >= pRTFPieces->GetSize()) {
1124 return NULL; 1124 return nullptr;
1125 } 1125 }
1126 return pRTFPieces->GetPtrAt(index); 1126 return pRTFPieces->GetPtrAt(index);
1127 } 1127 }
1128 void CFX_RTFBreak::GetLineRect(CFX_RectF& rect) const { 1128 void CFX_RTFBreak::GetLineRect(CFX_RectF& rect) const {
1129 rect.top = 0; 1129 rect.top = 0;
1130 CFX_RTFLine* pRTFLine = GetRTFLine(TRUE); 1130 CFX_RTFLine* pRTFLine = GetRTFLine(TRUE);
1131 if (pRTFLine == NULL) { 1131 if (!pRTFLine) {
1132 rect.left = ((FX_FLOAT)m_iBoundaryStart) / 20000.0f; 1132 rect.left = ((FX_FLOAT)m_iBoundaryStart) / 20000.0f;
1133 rect.width = rect.height = 0; 1133 rect.width = rect.height = 0;
1134 return; 1134 return;
1135 } 1135 }
1136 rect.left = ((FX_FLOAT)pRTFLine->m_iStart) / 20000.0f; 1136 rect.left = ((FX_FLOAT)pRTFLine->m_iStart) / 20000.0f;
1137 rect.width = ((FX_FLOAT)pRTFLine->m_iWidth) / 20000.0f; 1137 rect.width = ((FX_FLOAT)pRTFLine->m_iWidth) / 20000.0f;
1138 CFX_RTFPieceArray& rtfPieces = pRTFLine->m_LinePieces; 1138 CFX_RTFPieceArray& rtfPieces = pRTFLine->m_LinePieces;
1139 int32_t iCount = rtfPieces.GetSize(); 1139 int32_t iCount = rtfPieces.GetSize();
1140 if (iCount < 1) { 1140 if (iCount < 1) {
1141 rect.width = 0; 1141 rect.width = 0;
1142 return; 1142 return;
1143 } 1143 }
1144 CFX_RTFPiece* pBreakPiece; 1144 CFX_RTFPiece* pBreakPiece;
1145 int32_t iLineHeight = 0, iMax; 1145 int32_t iLineHeight = 0, iMax;
1146 for (int32_t i = 0; i < iCount; i++) { 1146 for (int32_t i = 0; i < iCount; i++) {
1147 pBreakPiece = rtfPieces.GetPtrAt(i); 1147 pBreakPiece = rtfPieces.GetPtrAt(i);
1148 int32_t iFontHeight = FXSYS_round(pBreakPiece->m_iFontHeight * 1148 int32_t iFontHeight = FXSYS_round(pBreakPiece->m_iFontHeight *
1149 pBreakPiece->m_iVerticalScale / 100.0f); 1149 pBreakPiece->m_iVerticalScale / 100.0f);
1150 iMax = std::max(pBreakPiece->m_iFontSize, iFontHeight); 1150 iMax = std::max(pBreakPiece->m_iFontSize, iFontHeight);
1151 if (i == 0) { 1151 if (i == 0) {
1152 iLineHeight = iMax; 1152 iLineHeight = iMax;
1153 } else if (iLineHeight < iMax) { 1153 } else if (iLineHeight < iMax) {
1154 iLineHeight = iMax; 1154 iLineHeight = iMax;
1155 } 1155 }
1156 } 1156 }
1157 rect.height = ((FX_FLOAT)iLineHeight) / 20.0f; 1157 rect.height = ((FX_FLOAT)iLineHeight) / 20.0f;
1158 } 1158 }
1159 void CFX_RTFBreak::ClearBreakPieces() { 1159 void CFX_RTFBreak::ClearBreakPieces() {
1160 CFX_RTFLine* pRTFLine = GetRTFLine(TRUE); 1160 CFX_RTFLine* pRTFLine = GetRTFLine(TRUE);
1161 if (pRTFLine != NULL) { 1161 if (pRTFLine) {
1162 pRTFLine->RemoveAll(TRUE); 1162 pRTFLine->RemoveAll(TRUE);
1163 } 1163 }
1164 m_iReady = 0; 1164 m_iReady = 0;
1165 } 1165 }
1166 void CFX_RTFBreak::Reset() { 1166 void CFX_RTFBreak::Reset() {
1167 m_eCharType = FX_CHARTYPE_Unknown; 1167 m_eCharType = FX_CHARTYPE_Unknown;
1168 m_RTFLine1.RemoveAll(TRUE); 1168 m_RTFLine1.RemoveAll(TRUE);
1169 m_RTFLine2.RemoveAll(TRUE); 1169 m_RTFLine2.RemoveAll(TRUE);
1170 } 1170 }
1171 int32_t CFX_RTFBreak::GetDisplayPos(const FX_RTFTEXTOBJ* pText, 1171 int32_t CFX_RTFBreak::GetDisplayPos(const FX_RTFTEXTOBJ* pText,
1172 FXTEXT_CHARPOS* pCharPos, 1172 FXTEXT_CHARPOS* pCharPos,
1173 FX_BOOL bCharCode, 1173 FX_BOOL bCharCode,
1174 CFX_WideString* pWSForms, 1174 CFX_WideString* pWSForms,
1175 FX_AdjustCharDisplayPos pAdjustPos) const { 1175 FX_AdjustCharDisplayPos pAdjustPos) const {
1176 if (pText == NULL || pText->iLength < 1) { 1176 if (!pText || pText->iLength < 1) {
1177 return 0; 1177 return 0;
1178 } 1178 }
1179 ASSERT(pText->pStr != NULL && pText->pWidths != NULL && 1179 ASSERT(pText->pStr && pText->pWidths && pText->pFont && pText->pRect);
1180 pText->pFont != NULL && pText->pRect != NULL);
1181 const FX_WCHAR* pStr = pText->pStr; 1180 const FX_WCHAR* pStr = pText->pStr;
1182 int32_t* pWidths = pText->pWidths; 1181 int32_t* pWidths = pText->pWidths;
1183 int32_t iLength = pText->iLength - 1; 1182 int32_t iLength = pText->iLength - 1;
1184 CFGAS_GEFont* pFont = pText->pFont; 1183 CFGAS_GEFont* pFont = pText->pFont;
1185 uint32_t dwStyles = pText->dwLayoutStyles; 1184 uint32_t dwStyles = pText->dwLayoutStyles;
1186 CFX_RectF rtText(*pText->pRect); 1185 CFX_RectF rtText(*pText->pRect);
1187 FX_BOOL bRTLPiece = FX_IsOdd(pText->iBidiLevel); 1186 FX_BOOL bRTLPiece = FX_IsOdd(pText->iBidiLevel);
1188 FX_FLOAT fFontSize = pText->fFontSize; 1187 FX_FLOAT fFontSize = pText->fFontSize;
1189 int32_t iFontSize = FXSYS_round(fFontSize * 20.0f); 1188 int32_t iFontSize = FXSYS_round(fFontSize * 20.0f);
1190 int32_t iAscent = pFont->GetAscent(); 1189 int32_t iAscent = pFont->GetAscent();
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
1241 } 1240 }
1242 if (!bMBCSCode) { 1241 if (!bMBCSCode) {
1243 bEmptyChar = (dwCharType >= FX_CHARTYPE_Tab && 1242 bEmptyChar = (dwCharType >= FX_CHARTYPE_Tab &&
1244 dwCharType <= FX_CHARTYPE_Control); 1243 dwCharType <= FX_CHARTYPE_Control);
1245 } else { 1244 } else {
1246 bEmptyChar = FALSE; 1245 bEmptyChar = FALSE;
1247 } 1246 }
1248 if (!bEmptyChar) { 1247 if (!bEmptyChar) {
1249 iCount++; 1248 iCount++;
1250 } 1249 }
1251 if (pCharPos != NULL) { 1250 if (pCharPos) {
1252 iCharWidth /= iFontSize; 1251 iCharWidth /= iFontSize;
1253 wForm = wch; 1252 wForm = wch;
1254 if (!bMBCSCode) { 1253 if (!bMBCSCode) {
1255 if (dwCharType >= FX_CHARTYPE_ArabicAlef) { 1254 if (dwCharType >= FX_CHARTYPE_ArabicAlef) {
1256 if (i < iLength) { 1255 if (i < iLength) {
1257 wNext = *pStr; 1256 wNext = *pStr;
1258 if (*pWidths < 0) { 1257 if (*pWidths < 0) {
1259 if (i + 1 < iLength) { 1258 if (i + 1 < iLength) {
1260 wNext = pStr[1]; 1259 wNext = pStr[1];
1261 } 1260 }
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
1409 } 1408 }
1410 if (iWidth > 0) { 1409 if (iWidth > 0) {
1411 wPrev = wch; 1410 wPrev = wch;
1412 } 1411 }
1413 } 1412 }
1414 return iCount; 1413 return iCount;
1415 } 1414 }
1416 int32_t CFX_RTFBreak::GetCharRects(const FX_RTFTEXTOBJ* pText, 1415 int32_t CFX_RTFBreak::GetCharRects(const FX_RTFTEXTOBJ* pText,
1417 CFX_RectFArray& rtArray, 1416 CFX_RectFArray& rtArray,
1418 FX_BOOL bCharBBox) const { 1417 FX_BOOL bCharBBox) const {
1419 if (pText == NULL || pText->iLength < 1) { 1418 if (!pText || pText->iLength < 1) {
1420 return 0; 1419 return 0;
1421 } 1420 }
1422 ASSERT(pText->pStr != NULL && pText->pWidths != NULL && 1421 ASSERT(pText->pStr && pText->pWidths && pText->pFont && pText->pRect);
1423 pText->pFont != NULL && pText->pRect != NULL);
1424 const FX_WCHAR* pStr = pText->pStr; 1422 const FX_WCHAR* pStr = pText->pStr;
1425 int32_t* pWidths = pText->pWidths; 1423 int32_t* pWidths = pText->pWidths;
1426 int32_t iLength = pText->iLength; 1424 int32_t iLength = pText->iLength;
1427 CFX_RectF rect(*pText->pRect); 1425 CFX_RectF rect(*pText->pRect);
1428 FX_BOOL bRTLPiece = FX_IsOdd(pText->iBidiLevel); 1426 FX_BOOL bRTLPiece = FX_IsOdd(pText->iBidiLevel);
1429 FX_FLOAT fFontSize = pText->fFontSize; 1427 FX_FLOAT fFontSize = pText->fFontSize;
1430 int32_t iFontSize = FXSYS_round(fFontSize * 20.0f); 1428 int32_t iFontSize = FXSYS_round(fFontSize * 20.0f);
1431 FX_FLOAT fScale = fFontSize / 1000.0f; 1429 FX_FLOAT fScale = fFontSize / 1000.0f;
1432 CFGAS_GEFont* pFont = pText->pFont; 1430 CFGAS_GEFont* pFont = pText->pFont;
1433 if (pFont == NULL) { 1431 if (!pFont) {
1434 bCharBBox = FALSE; 1432 bCharBBox = FALSE;
1435 } 1433 }
1436 CFX_Rect bbox; 1434 CFX_Rect bbox;
1437 bbox.Set(0, 0, 0, 0); 1435 bbox.Set(0, 0, 0, 0);
1438 if (bCharBBox) { 1436 if (bCharBBox) {
1439 bCharBBox = pFont->GetBBox(bbox); 1437 bCharBBox = pFont->GetBBox(bbox);
1440 } 1438 }
1441 FX_FLOAT fLeft = std::max(0.0f, bbox.left * fScale); 1439 FX_FLOAT fLeft = std::max(0.0f, bbox.left * fScale);
1442 FX_FLOAT fHeight = FXSYS_fabs(bbox.height * fScale); 1440 FX_FLOAT fHeight = FXSYS_fabs(bbox.height * fScale);
1443 rtArray.RemoveAll(); 1441 rtArray.RemoveAll();
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
1526 m_iStartChar(0), 1524 m_iStartChar(0),
1527 m_iChars(0), 1525 m_iChars(0),
1528 m_iBidiLevel(0), 1526 m_iBidiLevel(0),
1529 m_iBidiPos(0), 1527 m_iBidiPos(0),
1530 m_iFontSize(0), 1528 m_iFontSize(0),
1531 m_iFontHeight(0), 1529 m_iFontHeight(0),
1532 m_iHorizontalScale(100), 1530 m_iHorizontalScale(100),
1533 m_iVerticalScale(100), 1531 m_iVerticalScale(100),
1534 m_dwLayoutStyles(0), 1532 m_dwLayoutStyles(0),
1535 m_dwIdentity(0), 1533 m_dwIdentity(0),
1536 m_pChars(NULL), 1534 m_pChars(nullptr),
1537 m_pUserData(NULL) {} 1535 m_pUserData(nullptr) {}
1538 1536
1539 CFX_RTFPiece::~CFX_RTFPiece() { 1537 CFX_RTFPiece::~CFX_RTFPiece() {
1540 Reset(); 1538 Reset();
1541 } 1539 }
1542 1540
1543 CFX_RTFLine::CFX_RTFLine() 1541 CFX_RTFLine::CFX_RTFLine()
1544 : m_LinePieces(16), 1542 : m_LinePieces(16),
1545 m_iStart(0), 1543 m_iStart(0),
1546 m_iWidth(0), 1544 m_iWidth(0),
1547 m_iArabicChars(0), 1545 m_iArabicChars(0),
1548 m_iMBCSChars(0) {} 1546 m_iMBCSChars(0) {}
1549 1547
1550 CFX_RTFLine::~CFX_RTFLine() { 1548 CFX_RTFLine::~CFX_RTFLine() {
1551 RemoveAll(); 1549 RemoveAll();
1552 } 1550 }
1553 1551
1554 FX_RTFTEXTOBJ::FX_RTFTEXTOBJ() 1552 FX_RTFTEXTOBJ::FX_RTFTEXTOBJ()
1555 : pStr(nullptr), 1553 : pStr(nullptr),
1556 pWidths(nullptr), 1554 pWidths(nullptr),
1557 iLength(0), 1555 iLength(0),
1558 pFont(nullptr), 1556 pFont(nullptr),
1559 fFontSize(12.0f), 1557 fFontSize(12.0f),
1560 dwLayoutStyles(0), 1558 dwLayoutStyles(0),
1561 iCharRotation(0), 1559 iCharRotation(0),
1562 iBidiLevel(0), 1560 iBidiLevel(0),
1563 pRect(nullptr), 1561 pRect(nullptr),
1564 wLineBreakChar(L'\n'), 1562 wLineBreakChar(L'\n'),
1565 iHorizontalScale(100), 1563 iHorizontalScale(100),
1566 iVerticalScale(100) {} 1564 iVerticalScale(100) {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698