xref: /aosp_15_r20/external/pdfium/fxbarcode/cbc_code128.h (revision 3ac0a46f773bac49fa9476ec2b1cf3f8da5ec3a4)
1 // Copyright 2016 The PDFium Authors
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 
7 #ifndef FXBARCODE_CBC_CODE128_H_
8 #define FXBARCODE_CBC_CODE128_H_
9 
10 #include "core/fxcrt/widestring.h"
11 #include "fxbarcode/BC_Library.h"
12 #include "fxbarcode/cbc_onecode.h"
13 
14 class CBC_OnedCode128Writer;
15 class CFX_Matrix;
16 
17 class CBC_Code128 final : public CBC_OneCode {
18  public:
19   explicit CBC_Code128(BC_TYPE type);
20   ~CBC_Code128() override;
21 
22   // CBC_OneCode:
23   BC_TYPE GetType() override;
24   bool Encode(WideStringView contents) override;
25   bool RenderDevice(CFX_RenderDevice* device,
26                     const CFX_Matrix& matrix) override;
27 
28  private:
29   CBC_OnedCode128Writer* GetOnedCode128Writer();
30 
31   WideString m_renderContents;
32 };
33 
34 #endif  // FXBARCODE_CBC_CODE128_H_
35