Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
cbc_code128.h
Go to the documentation of this file.
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
14class CBC_OnedCode128Writer;
15class CFX_Matrix;
16
17class 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_
BC_TYPE
Definition BC_Library.h:25
BC_TYPE GetType() override
bool RenderDevice(CFX_RenderDevice *device, const CFX_Matrix &matrix) override
bool Encode(WideStringView contents) override
CBC_Code128(BC_TYPE type)
~CBC_Code128() override
bool CheckContentValidity(WideStringView contents) override
WideString & operator+=(wchar_t ch)