K. Moon | 832a694 | 2022-10-31 20:11:31 +0000 | [diff] [blame] | 1 | // Copyright 2016 The PDFium Authors |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 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 | |
Dan Sinclair | e778668 | 2017-03-29 15:18:41 -0400 | [diff] [blame] | 7 | #ifndef FXBARCODE_CBC_ONECODE_H_ |
| 8 | #define FXBARCODE_CBC_ONECODE_H_ |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 9 | |
Tom Sepez | 1e7fd16 | 2021-07-27 20:44:31 +0000 | [diff] [blame] | 10 | #include <stdint.h> |
| 11 | |
Tom Sepez | ea23e0a | 2017-05-01 14:24:19 -0700 | [diff] [blame] | 12 | #include <memory> |
| 13 | |
Tom Sepez | 1e7fd16 | 2021-07-27 20:44:31 +0000 | [diff] [blame] | 14 | #include "core/fxge/dib/fx_dib.h" |
Dan Sinclair | e778668 | 2017-03-29 15:18:41 -0400 | [diff] [blame] | 15 | #include "fxbarcode/cbc_codebase.h" |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 16 | |
Lei Zhang | 1badb85 | 2017-04-20 15:58:56 -0700 | [diff] [blame] | 17 | class CBC_OneDimWriter; |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 18 | class CFX_Font; |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 19 | |
| 20 | class CBC_OneCode : public CBC_CodeBase { |
| 21 | public: |
Tom Sepez | ea23e0a | 2017-05-01 14:24:19 -0700 | [diff] [blame] | 22 | explicit CBC_OneCode(std::unique_ptr<CBC_Writer> pWriter); |
thestig | fbe14b9 | 2016-05-02 13:31:10 -0700 | [diff] [blame] | 23 | ~CBC_OneCode() override; |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 24 | |
Lei Zhang | 93ea6d4 | 2018-12-03 20:16:08 +0000 | [diff] [blame] | 25 | void SetPrintChecksum(bool checksum); |
| 26 | void SetDataLength(int32_t length); |
| 27 | void SetCalChecksum(bool calc); |
| 28 | bool SetFont(CFX_Font* cFont); |
| 29 | void SetFontSize(float size); |
| 30 | void SetFontStyle(int32_t style); |
| 31 | void SetFontColor(FX_ARGB color); |
Lei Zhang | 1badb85 | 2017-04-20 15:58:56 -0700 | [diff] [blame] | 32 | |
| 33 | private: |
| 34 | CBC_OneDimWriter* GetOneDimWriter(); |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 35 | }; |
| 36 | |
Dan Sinclair | e778668 | 2017-03-29 15:18:41 -0400 | [diff] [blame] | 37 | #endif // FXBARCODE_CBC_ONECODE_H_ |