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

Side by Side Diff: xfa/fxbarcode/qrcode/BC_QRCodeWriter.cpp

Issue 2467203003: Remove FX_BOOL from xfa. (Closed)
Patch Set: Created 4 years, 1 month 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/fxbarcode/qrcode/BC_QRCodeWriter.h ('k') | xfa/fxbarcode/qrcode/BC_QRCoder.h » ('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 // Original code is licensed as follows: 6 // Original code is licensed as follows:
7 /* 7 /*
8 * Copyright 2008 ZXing authors 8 * Copyright 2008 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 13 matching lines...) Expand all
24 #include "xfa/fxbarcode/common/BC_CommonByteMatrix.h" 24 #include "xfa/fxbarcode/common/BC_CommonByteMatrix.h"
25 #include "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256.h" 25 #include "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256.h"
26 #include "xfa/fxbarcode/qrcode/BC_QRCodeWriter.h" 26 #include "xfa/fxbarcode/qrcode/BC_QRCodeWriter.h"
27 #include "xfa/fxbarcode/qrcode/BC_QRCoder.h" 27 #include "xfa/fxbarcode/qrcode/BC_QRCoder.h"
28 #include "xfa/fxbarcode/qrcode/BC_QRCoderEncoder.h" 28 #include "xfa/fxbarcode/qrcode/BC_QRCoderEncoder.h"
29 #include "xfa/fxbarcode/qrcode/BC_QRCoderErrorCorrectionLevel.h" 29 #include "xfa/fxbarcode/qrcode/BC_QRCoderErrorCorrectionLevel.h"
30 #include "xfa/fxbarcode/qrcode/BC_QRCoderMode.h" 30 #include "xfa/fxbarcode/qrcode/BC_QRCoderMode.h"
31 #include "xfa/fxbarcode/qrcode/BC_QRCoderVersion.h" 31 #include "xfa/fxbarcode/qrcode/BC_QRCoderVersion.h"
32 32
33 CBC_QRCodeWriter::CBC_QRCodeWriter() { 33 CBC_QRCodeWriter::CBC_QRCodeWriter() {
34 m_bFixedSize = TRUE; 34 m_bFixedSize = true;
35 m_iCorrectLevel = 1; 35 m_iCorrectLevel = 1;
36 m_iVersion = 0; 36 m_iVersion = 0;
37 } 37 }
38 38
39 CBC_QRCodeWriter::~CBC_QRCodeWriter() {} 39 CBC_QRCodeWriter::~CBC_QRCodeWriter() {}
40 40
41 void CBC_QRCodeWriter::ReleaseAll() { 41 void CBC_QRCodeWriter::ReleaseAll() {
42 delete CBC_ReedSolomonGF256::QRCodeField; 42 delete CBC_ReedSolomonGF256::QRCodeField;
43 CBC_ReedSolomonGF256::QRCodeField = nullptr; 43 CBC_ReedSolomonGF256::QRCodeField = nullptr;
44 delete CBC_ReedSolomonGF256::DataMatrixField; 44 delete CBC_ReedSolomonGF256::DataMatrixField;
45 CBC_ReedSolomonGF256::DataMatrixField = nullptr; 45 CBC_ReedSolomonGF256::DataMatrixField = nullptr;
46 CBC_QRCoderMode::Destroy(); 46 CBC_QRCoderMode::Destroy();
47 CBC_QRCoderErrorCorrectionLevel::Destroy(); 47 CBC_QRCoderErrorCorrectionLevel::Destroy();
48 CBC_QRCoderVersion::Destroy(); 48 CBC_QRCoderVersion::Destroy();
49 } 49 }
50 50
51 FX_BOOL CBC_QRCodeWriter::SetVersion(int32_t version) { 51 bool CBC_QRCodeWriter::SetVersion(int32_t version) {
52 if (version < 0 || version > 40) { 52 if (version < 0 || version > 40) {
53 return FALSE; 53 return false;
54 } 54 }
55 m_iVersion = version; 55 m_iVersion = version;
56 return TRUE; 56 return true;
57 } 57 }
58 58
59 FX_BOOL CBC_QRCodeWriter::SetErrorCorrectionLevel(int32_t level) { 59 bool CBC_QRCodeWriter::SetErrorCorrectionLevel(int32_t level) {
60 if (level < 0 || level > 3) { 60 if (level < 0 || level > 3) {
61 return FALSE; 61 return false;
62 } 62 }
63 m_iCorrectLevel = level; 63 m_iCorrectLevel = level;
64 return TRUE; 64 return true;
65 } 65 }
66 66
67 uint8_t* CBC_QRCodeWriter::Encode(const CFX_WideString& contents, 67 uint8_t* CBC_QRCodeWriter::Encode(const CFX_WideString& contents,
68 int32_t ecLevel, 68 int32_t ecLevel,
69 int32_t& outWidth, 69 int32_t& outWidth,
70 int32_t& outHeight, 70 int32_t& outHeight,
71 int32_t& e) { 71 int32_t& e) {
72 CBC_QRCoderErrorCorrectionLevel* ec = nullptr; 72 CBC_QRCoderErrorCorrectionLevel* ec = nullptr;
73 switch (ecLevel) { 73 switch (ecLevel) {
74 case 0: 74 case 0:
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 return nullptr; 112 return nullptr;
113 } 113 }
114 114
115 uint8_t* CBC_QRCodeWriter::Encode(const CFX_ByteString& contents, 115 uint8_t* CBC_QRCodeWriter::Encode(const CFX_ByteString& contents,
116 BCFORMAT format, 116 BCFORMAT format,
117 int32_t& outWidth, 117 int32_t& outWidth,
118 int32_t& outHeight, 118 int32_t& outHeight,
119 int32_t& e) { 119 int32_t& e) {
120 return nullptr; 120 return nullptr;
121 } 121 }
OLDNEW
« no previous file with comments | « xfa/fxbarcode/qrcode/BC_QRCodeWriter.h ('k') | xfa/fxbarcode/qrcode/BC_QRCoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698