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: 2003, 2008 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_CHARBYTEARRAYCOLUMNTEXTRENDERER_HPP 0010 #define KASTEN_CHARBYTEARRAYCOLUMNTEXTRENDERER_HPP 0011 0012 // lib 0013 #include "abstractbytearraycolumntextrenderer.hpp" 0014 // Qt 0015 #include <QChar> 0016 0017 namespace Okteta { 0018 class CharCodec; 0019 } 0020 0021 namespace Kasten { 0022 0023 class CharByteArrayColumnTextRenderer : public AbstractByteArrayColumnTextRenderer 0024 { 0025 public: 0026 CharByteArrayColumnTextRenderer(const Okteta::AbstractByteArrayModel* byteArrayModel, Okteta::Address offset, 0027 const Okteta::CoordRange& coordRange, 0028 int noOfBytesPerLine, int byteSpacingWidth, int noOfGroupedBytes, 0029 const QString& charCodecName, QChar substituteChar, QChar undefinedChar); 0030 0031 ~CharByteArrayColumnTextRenderer() override; 0032 0033 protected: // AbstractByteArrayColumnTextRenderer API 0034 void renderLine(QTextStream* stream, bool isSubline) const override; 0035 0036 private: 0037 const Okteta::CharCodec* mCharCodec; 0038 const QChar mSubstituteChar; 0039 const QChar mUndefinedChar; 0040 }; 0041 0042 } 0043 0044 #endif