File indexing completed on 2024-05-12 04:01:32

0001 /*
0002     SPDX-FileCopyrightText: 2021 Volker Krause <vkrause@kde.org>
0003 
0004     SPDX-License-Identifier: MIT
0005 */
0006 
0007 #ifndef PRISON_PDF417BARCODE_H
0008 #define PRISON_PDF417BARCODE_H
0009 
0010 #include "abstractbarcode_p.h"
0011 
0012 namespace Prison
0013 {
0014 /** PDF417 barcode.
0015  *  @see https://en.wikipedia.org/wiki/PDF417
0016  *  @see ISO/IEC 15438
0017  */
0018 class Pdf417Barcode : public AbstractBarcodePrivate
0019 {
0020 public:
0021     explicit Pdf417Barcode();
0022 
0023 protected:
0024     QImage paintImage() override;
0025     QSizeF preferredSize(qreal devicePixelRatio) const override;
0026 };
0027 
0028 }
0029 
0030 #endif // PRISON_PDF417BARCODE_H