2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2015-07-08 13:14:03 +02:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2015-07-08 13:14:03 +02:00
|
|
|
|
|
|
|
|
#include <qmldebug/qdebugmessageclient.h>
|
|
|
|
|
#include <qmldebug/qmloutputparser.h>
|
|
|
|
|
|
2022-07-05 15:37:08 +02:00
|
|
|
namespace Debugger::Internal {
|
2015-07-08 13:14:03 +02:00
|
|
|
|
|
|
|
|
void appendDebugOutput(QtMsgType type, const QString &message, const QmlDebug::QDebugContextInfo &info);
|
2015-07-09 15:32:56 +02:00
|
|
|
|
2015-07-08 13:14:03 +02:00
|
|
|
void clearExceptionSelection();
|
2015-07-09 15:32:56 +02:00
|
|
|
QStringList highlightExceptionCode(int lineNumber, const QString &filePath, const QString &errorMessage);
|
2015-07-08 13:14:03 +02:00
|
|
|
|
2022-07-05 15:37:08 +02:00
|
|
|
} // Debugger::Internal
|