Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 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 | |
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 | ea23e0a | 2017-05-01 14:24:19 -0700 | [diff] [blame] | 10 | #include <memory> |
| 11 | |
dsinclair | a52ab74 | 2016-09-29 13:59:29 -0700 | [diff] [blame] | 12 | #include "core/fxcrt/fx_string.h" |
| 13 | #include "core/fxcrt/fx_system.h" |
Dan Sinclair | e778668 | 2017-03-29 15:18:41 -0400 | [diff] [blame] | 14 | #include "fxbarcode/cbc_codebase.h" |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 15 | |
Lei Zhang | 1badb85 | 2017-04-20 15:58:56 -0700 | [diff] [blame] | 16 | class CBC_OneDimWriter; |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 17 | class CFX_Font; |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 18 | |
| 19 | class CBC_OneCode : public CBC_CodeBase { |
| 20 | public: |
Tom Sepez | ea23e0a | 2017-05-01 14:24:19 -0700 | [diff] [blame] | 21 | explicit CBC_OneCode(std::unique_ptr<CBC_Writer> pWriter); |
thestig | fbe14b9 | 2016-05-02 13:31:10 -0700 | [diff] [blame] | 22 | ~CBC_OneCode() override; |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 23 | |
Ryan Harrison | 275e260 | 2017-09-18 14:23:18 -0400 | [diff] [blame] | 24 | virtual bool CheckContentValidity(const WideStringView& contents); |
| 25 | virtual WideString FilterContents(const WideStringView& contents); |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 26 | |
tsepez | d19e912 | 2016-11-02 15:43:18 -0700 | [diff] [blame] | 27 | virtual void SetPrintChecksum(bool checksum); |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 28 | virtual void SetDataLength(int32_t length); |
tsepez | d19e912 | 2016-11-02 15:43:18 -0700 | [diff] [blame] | 29 | virtual void SetCalChecksum(bool calc); |
| 30 | virtual bool SetFont(CFX_Font* cFont); |
Dan Sinclair | 05df075 | 2017-03-14 14:43:42 -0400 | [diff] [blame] | 31 | virtual void SetFontSize(float size); |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 32 | virtual void SetFontStyle(int32_t style); |
| 33 | virtual void SetFontColor(FX_ARGB color); |
Lei Zhang | 1badb85 | 2017-04-20 15:58:56 -0700 | [diff] [blame] | 34 | |
| 35 | private: |
| 36 | CBC_OneDimWriter* GetOneDimWriter(); |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 37 | }; |
| 38 | |
Dan Sinclair | e778668 | 2017-03-29 15:18:41 -0400 | [diff] [blame] | 39 | #endif // FXBARCODE_CBC_ONECODE_H_ |