OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 /* |
| 7 * Copyright 2011 ZXing authors |
| 8 * |
| 9 * Licensed under the Apache License, Version 2.0 (the "License"); |
| 10 * you may not use this file except in compliance with the License. |
| 11 * You may obtain a copy of the License at |
| 12 * |
| 13 * http://www.apache.org/licenses/LICENSE-2.0 |
| 14 * |
| 15 * Unless required by applicable law or agreed to in writing, software |
| 16 * distributed under the License is distributed on an "AS IS" BASIS, |
| 17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 * See the License for the specific language governing permissions and |
| 19 * limitations under the License. |
| 20 */ |
| 21 |
| 22 #include "xfa/fxbarcode/cbc_onecode.h" |
| 23 |
| 24 #include "xfa/fxbarcode/oned/BC_OneDimWriter.h" |
| 25 |
| 26 CBC_OneCode::CBC_OneCode() {} |
| 27 |
| 28 CBC_OneCode::~CBC_OneCode() {} |
| 29 |
| 30 FX_BOOL CBC_OneCode::CheckContentValidity(const CFX_WideStringC& contents) { |
| 31 if (m_pBCWriter) |
| 32 return ((CBC_OneDimWriter*)m_pBCWriter)->CheckContentValidity(contents); |
| 33 return FALSE; |
| 34 } |
| 35 |
| 36 CFX_WideString CBC_OneCode::FilterContents(const CFX_WideStringC& contents) { |
| 37 CFX_WideString tmp; |
| 38 if (!m_pBCWriter) |
| 39 return tmp; |
| 40 return ((CBC_OneDimWriter*)m_pBCWriter)->FilterContents(contents); |
| 41 } |
| 42 |
| 43 void CBC_OneCode::SetPrintChecksum(FX_BOOL checksum) { |
| 44 if (m_pBCWriter) |
| 45 ((CBC_OneDimWriter*)m_pBCWriter)->SetPrintChecksum(checksum); |
| 46 } |
| 47 |
| 48 void CBC_OneCode::SetDataLength(int32_t length) { |
| 49 if (m_pBCWriter) |
| 50 ((CBC_OneDimWriter*)m_pBCWriter)->SetDataLength(length); |
| 51 } |
| 52 |
| 53 void CBC_OneCode::SetCalChecksum(FX_BOOL calc) { |
| 54 if (m_pBCWriter) |
| 55 ((CBC_OneDimWriter*)m_pBCWriter)->SetCalcChecksum(calc); |
| 56 } |
| 57 |
| 58 FX_BOOL CBC_OneCode::SetFont(CFX_Font* cFont) { |
| 59 if (m_pBCWriter) |
| 60 return ((CBC_OneDimWriter*)m_pBCWriter)->SetFont(cFont); |
| 61 return FALSE; |
| 62 } |
| 63 |
| 64 void CBC_OneCode::SetFontSize(FX_FLOAT size) { |
| 65 if (m_pBCWriter) |
| 66 ((CBC_OneDimWriter*)m_pBCWriter)->SetFontSize(size); |
| 67 } |
| 68 |
| 69 void CBC_OneCode::SetFontStyle(int32_t style) { |
| 70 if (m_pBCWriter) |
| 71 ((CBC_OneDimWriter*)m_pBCWriter)->SetFontStyle(style); |
| 72 } |
| 73 |
| 74 void CBC_OneCode::SetFontColor(FX_ARGB color) { |
| 75 if (m_pBCWriter) |
| 76 ((CBC_OneDimWriter*)m_pBCWriter)->SetFontColor(color); |
| 77 } |
OLD | NEW |