blob: 4ad658cb87c7ef0d188f0fc9f0ee95c1f7e3757f [file] [log] [blame]
Dan Sinclaira98600a2016-03-21 15:15:56 -04001// 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 Sinclaire7786682017-03-29 15:18:41 -04007#ifndef FXBARCODE_CBC_QRCODE_H_
8#define FXBARCODE_CBC_QRCODE_H_
Dan Sinclaira98600a2016-03-21 15:15:56 -04009
Tom Sepez1e151c62021-11-22 23:46:09 +000010#include "core/fxcrt/widestring.h"
Dan Sinclaire7786682017-03-29 15:18:41 -040011#include "fxbarcode/cbc_codebase.h"
Dan Sinclaira98600a2016-03-21 15:15:56 -040012
Lei Zhang03d58932017-04-03 16:40:51 -070013class CBC_QRCodeWriter;
Tom Sepez1e7fd162021-07-27 20:44:31 +000014class CFX_Matrix;
15class CFX_RenderDevice;
Lei Zhang03d58932017-04-03 16:40:51 -070016
Tom Sepez55865452018-08-27 20:18:04 +000017class CBC_QRCode final : public CBC_CodeBase {
Dan Sinclaira98600a2016-03-21 15:15:56 -040018 public:
19 CBC_QRCode();
thestigfbe14b92016-05-02 13:31:10 -070020 ~CBC_QRCode() override;
Dan Sinclaira98600a2016-03-21 15:15:56 -040021
thestigfbe14b92016-05-02 13:31:10 -070022 // CBC_CodeBase:
Tom Sepez1ab27572018-12-14 20:31:31 +000023 bool Encode(WideStringView contents) override;
tsepezd19e9122016-11-02 15:43:18 -070024 bool RenderDevice(CFX_RenderDevice* device,
Tom Sepezc052ab02021-04-14 16:59:48 +000025 const CFX_Matrix& matrix) override;
weili29b8ad02016-06-14 18:20:04 -070026 BC_TYPE GetType() override;
Lei Zhang03d58932017-04-03 16:40:51 -070027
28 private:
Lei Zhang1badb852017-04-20 15:58:56 -070029 CBC_QRCodeWriter* GetQRCodeWriter();
Dan Sinclaira98600a2016-03-21 15:15:56 -040030};
31
Dan Sinclaire7786682017-03-29 15:18:41 -040032#endif // FXBARCODE_CBC_QRCODE_H_