OLD | NEW |
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 // Original code is licensed as follows: | 6 // Original code is licensed as follows: |
7 /* | 7 /* |
8 * Copyright 2010 ZXing authors | 8 * Copyright 2010 ZXing authors |
9 * | 9 * |
10 * Licensed under the Apache License, Version 2.0 (the "License"); | 10 * Licensed under the Apache License, Version 2.0 (the "License"); |
(...skipping 10 matching lines...) Expand all Loading... |
21 */ | 21 */ |
22 | 22 |
23 #include "core/fxge/cfx_fxgedevice.h" | 23 #include "core/fxge/cfx_fxgedevice.h" |
24 #include "core/fxge/cfx_gemodule.h" | 24 #include "core/fxge/cfx_gemodule.h" |
25 #include "xfa/fxbarcode/BC_Writer.h" | 25 #include "xfa/fxbarcode/BC_Writer.h" |
26 #include "xfa/fxbarcode/oned/BC_OneDimWriter.h" | 26 #include "xfa/fxbarcode/oned/BC_OneDimWriter.h" |
27 #include "xfa/fxbarcode/oned/BC_OnedEAN13Writer.h" | 27 #include "xfa/fxbarcode/oned/BC_OnedEAN13Writer.h" |
28 #include "xfa/fxbarcode/oned/BC_OnedUPCAWriter.h" | 28 #include "xfa/fxbarcode/oned/BC_OnedUPCAWriter.h" |
29 | 29 |
30 CBC_OnedUPCAWriter::CBC_OnedUPCAWriter() { | 30 CBC_OnedUPCAWriter::CBC_OnedUPCAWriter() { |
31 m_bLeftPadding = TRUE; | 31 m_bLeftPadding = true; |
32 m_bRightPadding = TRUE; | 32 m_bRightPadding = true; |
33 } | 33 } |
34 | 34 |
35 void CBC_OnedUPCAWriter::Init() { | 35 void CBC_OnedUPCAWriter::Init() { |
36 m_subWriter.reset(new CBC_OnedEAN13Writer); | 36 m_subWriter.reset(new CBC_OnedEAN13Writer); |
37 } | 37 } |
38 | 38 |
39 CBC_OnedUPCAWriter::~CBC_OnedUPCAWriter() {} | 39 CBC_OnedUPCAWriter::~CBC_OnedUPCAWriter() {} |
40 | 40 |
41 FX_BOOL CBC_OnedUPCAWriter::CheckContentValidity( | 41 bool CBC_OnedUPCAWriter::CheckContentValidity(const CFX_WideStringC& contents) { |
42 const CFX_WideStringC& contents) { | |
43 for (FX_STRSIZE i = 0; i < contents.GetLength(); ++i) { | 42 for (FX_STRSIZE i = 0; i < contents.GetLength(); ++i) { |
44 if (contents.GetAt(i) < '0' || contents.GetAt(i) > '9') | 43 if (contents.GetAt(i) < '0' || contents.GetAt(i) > '9') |
45 return FALSE; | 44 return false; |
46 } | 45 } |
47 return TRUE; | 46 return true; |
48 } | 47 } |
49 | 48 |
50 CFX_WideString CBC_OnedUPCAWriter::FilterContents( | 49 CFX_WideString CBC_OnedUPCAWriter::FilterContents( |
51 const CFX_WideStringC& contents) { | 50 const CFX_WideStringC& contents) { |
52 CFX_WideString filtercontents; | 51 CFX_WideString filtercontents; |
53 FX_WCHAR ch; | 52 FX_WCHAR ch; |
54 for (int32_t i = 0; i < contents.GetLength(); i++) { | 53 for (int32_t i = 0; i < contents.GetLength(); i++) { |
55 ch = contents.GetAt(i); | 54 ch = contents.GetAt(i); |
56 if (ch > 175) { | 55 if (ch > 175) { |
57 i++; | 56 i++; |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 } | 267 } |
269 device->DrawNormalText(iLen, pCharPos + 11, m_pFont, (FX_FLOAT)iFontSize, | 268 device->DrawNormalText(iLen, pCharPos + 11, m_pFont, (FX_FLOAT)iFontSize, |
270 &affine_matrix1, m_fontColor, FXTEXT_CLEARTYPE); | 269 &affine_matrix1, m_fontColor, FXTEXT_CLEARTYPE); |
271 } | 270 } |
272 FX_Free(pCharPos); | 271 FX_Free(pCharPos); |
273 } | 272 } |
274 | 273 |
275 void CBC_OnedUPCAWriter::RenderResult(const CFX_WideStringC& contents, | 274 void CBC_OnedUPCAWriter::RenderResult(const CFX_WideStringC& contents, |
276 uint8_t* code, | 275 uint8_t* code, |
277 int32_t codeLength, | 276 int32_t codeLength, |
278 FX_BOOL isDevice, | 277 bool isDevice, |
279 int32_t& e) { | 278 int32_t& e) { |
280 CBC_OneDimWriter::RenderResult(contents, code, codeLength, isDevice, e); | 279 CBC_OneDimWriter::RenderResult(contents, code, codeLength, isDevice, e); |
281 } | 280 } |
OLD | NEW |