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_QRCODE_H_ |
| 8 | #define FXBARCODE_CBC_QRCODE_H_ |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 9 | |
Tom Sepez | 1e151c6 | 2021-11-22 23:46:09 +0000 | [diff] [blame] | 10 | #include "core/fxcrt/widestring.h" |
Dan Sinclair | e778668 | 2017-03-29 15:18:41 -0400 | [diff] [blame] | 11 | #include "fxbarcode/cbc_codebase.h" |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 12 | |
Lei Zhang | 03d5893 | 2017-04-03 16:40:51 -0700 | [diff] [blame] | 13 | class CBC_QRCodeWriter; |
Tom Sepez | 1e7fd16 | 2021-07-27 20:44:31 +0000 | [diff] [blame] | 14 | class CFX_Matrix; |
| 15 | class CFX_RenderDevice; |
Lei Zhang | 03d5893 | 2017-04-03 16:40:51 -0700 | [diff] [blame] | 16 | |
Tom Sepez | 5586545 | 2018-08-27 20:18:04 +0000 | [diff] [blame] | 17 | class CBC_QRCode final : public CBC_CodeBase { |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 18 | public: |
| 19 | CBC_QRCode(); |
thestig | fbe14b9 | 2016-05-02 13:31:10 -0700 | [diff] [blame] | 20 | ~CBC_QRCode() override; |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 21 | |
thestig | fbe14b9 | 2016-05-02 13:31:10 -0700 | [diff] [blame] | 22 | // CBC_CodeBase: |
Tom Sepez | 1ab2757 | 2018-12-14 20:31:31 +0000 | [diff] [blame] | 23 | bool Encode(WideStringView contents) override; |
tsepez | d19e912 | 2016-11-02 15:43:18 -0700 | [diff] [blame] | 24 | bool RenderDevice(CFX_RenderDevice* device, |
Tom Sepez | c052ab0 | 2021-04-14 16:59:48 +0000 | [diff] [blame] | 25 | const CFX_Matrix& matrix) override; |
weili | 29b8ad0 | 2016-06-14 18:20:04 -0700 | [diff] [blame] | 26 | BC_TYPE GetType() override; |
Lei Zhang | 03d5893 | 2017-04-03 16:40:51 -0700 | [diff] [blame] | 27 | |
| 28 | private: |
Lei Zhang | 1badb85 | 2017-04-20 15:58:56 -0700 | [diff] [blame] | 29 | CBC_QRCodeWriter* GetQRCodeWriter(); |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 30 | }; |
| 31 | |
Dan Sinclair | e778668 | 2017-03-29 15:18:41 -0400 | [diff] [blame] | 32 | #endif // FXBARCODE_CBC_QRCODE_H_ |