| 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 2011 ZXing authors | 8 * Copyright 2011 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"); |
| 11 * you may not use this file except in compliance with the License. | 11 * you may not use this file except in compliance with the License. |
| 12 * You may obtain a copy of the License at | 12 * You may obtain a copy of the License at |
| 13 * | 13 * |
| 14 * http://www.apache.org/licenses/LICENSE-2.0 | 14 * http://www.apache.org/licenses/LICENSE-2.0 |
| 15 * | 15 * |
| 16 * Unless required by applicable law or agreed to in writing, software | 16 * Unless required by applicable law or agreed to in writing, software |
| 17 * distributed under the License is distributed on an "AS IS" BASIS, | 17 * distributed under the License is distributed on an "AS IS" BASIS, |
| 18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 19 * See the License for the specific language governing permissions and | 19 * See the License for the specific language governing permissions and |
| 20 * limitations under the License. | 20 * limitations under the License. |
| 21 */ | 21 */ |
| 22 | 22 |
| 23 #include "barcode.h" | 23 #include "../barcode.h" |
| 24 #include "include/BC_Writer.h" | 24 #include "../BC_Writer.h" |
| 25 #include "include/BC_Reader.h" | 25 #include "../BC_Reader.h" |
| 26 #include "include/BC_OneDReader.h" | 26 #include "../common/BC_CommonBitMatrix.h" |
| 27 #include "include/BC_CommonBitArray.h" | 27 #include "../common/BC_CommonBitArray.h" |
| 28 #include "include/BC_OneDimWriter.h" | 28 #include "BC_OneDReader.h" |
| 29 #include "include/BC_OnedCodaBarReader.h" | 29 #include "BC_OneDimWriter.h" |
| 30 #include "include/BC_OnedCodaBarWriter.h" | 30 #include "BC_OnedCodaBarReader.h" |
| 31 #include "include/BC_CommonBitMatrix.h" | 31 #include "BC_OnedCodaBarWriter.h" |
| 32 const FX_CHAR CBC_OnedCodaBarWriter::START_END_CHARS[] = {'A', 'B', 'C', 'D', 'T
', 'N', '*', 'E', 'a', 'b', 'c', 'd', 't', 'n', 'e'}; | 32 const FX_CHAR CBC_OnedCodaBarWriter::START_END_CHARS[] = {'A', 'B', 'C', 'D', 'T
', 'N', '*', 'E', 'a', 'b', 'c', 'd', 't', 'n', 'e'}; |
| 33 const FX_CHAR CBC_OnedCodaBarWriter::CONTENT_CHARS[] = {'0', '1', '2', '3', '4',
'5', '6', '7', '8', '9', '-', '$', '/', ':', '+', '.'}; | 33 const FX_CHAR CBC_OnedCodaBarWriter::CONTENT_CHARS[] = {'0', '1', '2', '3', '4',
'5', '6', '7', '8', '9', '-', '$', '/', ':', '+', '.'}; |
| 34 CBC_OnedCodaBarWriter::CBC_OnedCodaBarWriter() | 34 CBC_OnedCodaBarWriter::CBC_OnedCodaBarWriter() |
| 35 { | 35 { |
| 36 m_chStart = 'A'; | 36 m_chStart = 'A'; |
| 37 m_chEnd = 'B'; | 37 m_chEnd = 'B'; |
| 38 m_iWideNarrRatio = 2; | 38 m_iWideNarrRatio = 2; |
| 39 } | 39 } |
| 40 CBC_OnedCodaBarWriter::~CBC_OnedCodaBarWriter() | 40 CBC_OnedCodaBarWriter::~CBC_OnedCodaBarWriter() |
| 41 { | 41 { |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 CFX_WideString CBC_OnedCodaBarWriter::encodedContents(FX_WSTR contents) | 213 CFX_WideString CBC_OnedCodaBarWriter::encodedContents(FX_WSTR contents) |
| 214 { | 214 { |
| 215 CFX_WideString strStart(m_chStart); | 215 CFX_WideString strStart(m_chStart); |
| 216 CFX_WideString strEnd(m_chEnd); | 216 CFX_WideString strEnd(m_chEnd); |
| 217 return strStart + contents + strEnd; | 217 return strStart + contents + strEnd; |
| 218 } | 218 } |
| 219 void CBC_OnedCodaBarWriter::RenderResult(FX_WSTR contents, FX_BYTE* code, FX_INT
32 codeLength, FX_BOOL isDevice, FX_INT32 &e) | 219 void CBC_OnedCodaBarWriter::RenderResult(FX_WSTR contents, FX_BYTE* code, FX_INT
32 codeLength, FX_BOOL isDevice, FX_INT32 &e) |
| 220 { | 220 { |
| 221 CBC_OneDimWriter::RenderResult(encodedContents(contents), code, codeLength,
isDevice, e); | 221 CBC_OneDimWriter::RenderResult(encodedContents(contents), code, codeLength,
isDevice, e); |
| 222 } | 222 } |
| OLD | NEW |