File indexing completed on 2025-01-05 05:23:53

0001 /*
0002     This file is part of the Okteta Kasten module, made within the KDE community.
0003 
0004     SPDX-FileCopyrightText: 2023 Friedrich W. H. Kossebau <kossebau@kde.org>
0005 
0006     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0007 */
0008 
0009 #ifndef KASTEN_VALUEBYTEARRAYCOLUMNHTMLRENDERER_HPP
0010 #define KASTEN_VALUEBYTEARRAYCOLUMNHTMLRENDERER_HPP
0011 
0012 // lib
0013 #include "abstractbytearraycolumnhtmlrenderer.hpp"
0014 // Okteta core
0015 #include <Okteta/OktetaCore>
0016 // Std
0017 #include <memory>
0018 
0019 namespace Okteta {
0020 class ValueCodec;
0021 }
0022 
0023 namespace Kasten {
0024 
0025 class ValueByteArrayColumnHtmlRenderer : public AbstractByteArrayColumnHtmlRenderer
0026 {
0027 public:
0028     ValueByteArrayColumnHtmlRenderer(const Okteta::AbstractByteArrayModel* byteArrayModel, Okteta::Address offset,
0029                                      const Okteta::CoordRange& coordRange,
0030                                      int noOfBytesPerLine, int noOfGroupedBytes,
0031                                      Okteta::ValueCoding valueCoding);
0032 
0033     ~ValueByteArrayColumnHtmlRenderer() override;
0034 
0035 protected: // AbstractByteArrayColumnHtmlRenderer API
0036     void renderLine(QTextStream* stream, bool isSubline) const override;
0037 
0038 private:
0039     std::unique_ptr<Okteta::ValueCodec> const mValueCodec;
0040 };
0041 
0042 }
0043 
0044 #endif