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 | |
dsinclair | a52ab74 | 2016-09-29 13:59:29 -0700 | [diff] [blame] | 10 | #include "core/fxcrt/fx_string.h" |
| 11 | #include "core/fxcrt/fx_system.h" |
Dan Sinclair | e778668 | 2017-03-29 15:18:41 -0400 | [diff] [blame^] | 12 | #include "fxbarcode/cbc_codebase.h" |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 13 | |
| 14 | class CFX_DIBitmap; |
| 15 | class CFX_Font; |
| 16 | class CFX_RenderDevice; |
| 17 | |
| 18 | class CBC_OneCode : public CBC_CodeBase { |
| 19 | public: |
dsinclair | a261534 | 2016-06-16 12:29:07 -0700 | [diff] [blame] | 20 | explicit CBC_OneCode(CBC_Writer* pWriter); |
thestig | fbe14b9 | 2016-05-02 13:31:10 -0700 | [diff] [blame] | 21 | ~CBC_OneCode() override; |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 22 | |
tsepez | d19e912 | 2016-11-02 15:43:18 -0700 | [diff] [blame] | 23 | virtual bool CheckContentValidity(const CFX_WideStringC& contents); |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 24 | virtual CFX_WideString FilterContents(const CFX_WideStringC& contents); |
| 25 | |
tsepez | d19e912 | 2016-11-02 15:43:18 -0700 | [diff] [blame] | 26 | virtual void SetPrintChecksum(bool checksum); |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 27 | virtual void SetDataLength(int32_t length); |
tsepez | d19e912 | 2016-11-02 15:43:18 -0700 | [diff] [blame] | 28 | virtual void SetCalChecksum(bool calc); |
| 29 | virtual bool SetFont(CFX_Font* cFont); |
Dan Sinclair | 05df075 | 2017-03-14 14:43:42 -0400 | [diff] [blame] | 30 | virtual void SetFontSize(float size); |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 31 | virtual void SetFontStyle(int32_t style); |
| 32 | virtual void SetFontColor(FX_ARGB color); |
| 33 | }; |
| 34 | |
Dan Sinclair | e778668 | 2017-03-29 15:18:41 -0400 | [diff] [blame^] | 35 | #endif // FXBARCODE_CBC_ONECODE_H_ |