File indexing completed on 2024-12-22 04:40:13
0001 /* 0002 SPDX-FileCopyrightText: 2020-2022 Mladen Milinkovic <max@smoothware.net> 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 #ifndef DEBUG_H 0007 #define DEBUG_H 0008 0009 #include <QVector> 0010 #include <QTextLayout> 0011 0012 namespace SubtitleComposer { 0013 0014 QString propertyName(QTextFormat::Property key); 0015 QString textFormatString(const QTextFormat &format); 0016 QString dumpFormatRanges(const QString &text, const QVector<QTextLayout::FormatRange> &ranges); 0017 0018 } 0019 0020 #endif // DEBUG_H