File indexing completed on 2024-12-15 03:45:03

0001 /*
0002     SPDX-FileCopyrightText: 2017 Volker Krause <vkrause@kde.org>
0003 
0004     SPDX-License-Identifier: MIT
0005 */
0006 
0007 #ifndef KUSERFEEDBACK_CONSOLE_HELPCONTROLLER_H
0008 #define KUSERFEEDBACK_CONSOLE_HELPCONTROLLER_H
0009 
0010 class QString;
0011 
0012 namespace KUserFeedback {
0013 namespace Console {
0014 
0015 /*! Controls the Assistant-based help browser. */
0016 namespace HelpController
0017 {
0018 
0019 /*! Returns @c true if Assistant and our help collection are found. */
0020 bool isAvailable();
0021 
0022 /*! Open start page of the help collection. */
0023 void openContents();
0024 
0025 /*! Opens the specified page of the help collection. */
0026 void openPage(const QString &page);
0027 
0028 }
0029 
0030 }}
0031 
0032 #endif // KUSERFEEDBACK_CONSOLE_HELPCONTROLLER_H