blob: 0d107861e1fc197d5f7754a5525f38e59800393b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <coreplugin/helpmanager.h>
QT_BEGIN_NAMESPACE
class QUrl;
QT_END_NAMESPACE
namespace Help::Internal {
class HelpWidget;
class HelpViewer;
void showLinksInCurrentViewer(const QMultiMap<QString, QUrl> &links,
const QString &key);
HelpViewer *createHelpViewer();
HelpWidget *modeHelpWidget();
} // Help::Internal
|