ACF $AcfVersion:0$
IHelpViewer.h
Go to the documentation of this file.
1// SPDX-License-Identifier: LGPL-2.1-or-later OR GPL-2.0-or-later OR GPL-3.0-or-later OR LicenseRef-ACF-Commercial
2#pragma once
3
4
5// Qt includes
6#include <QtCore/QString>
7
8// ACF includes
9#include <istd/IPolymorphic.h>
11
12
13namespace idoc
14{
15
16
44class IHelpViewer: virtual public IHelpInfoProvider
45{
46public:
55 virtual void ShowHelp(const QString& contextText, const istd::IPolymorphic* contextObjectPtr) = 0;
56};
57
58
59} // namespace idoc
60
61
62
63
Allow to show help document to specified object or text.
Allow to show help document to specified object or text.
Definition IHelpViewer.h:45
virtual void ShowHelp(const QString &contextText, const istd::IPolymorphic *contextObjectPtr)=0
Show some help information for specified context.
Base interface for all used interfaces and implementations.
Contains the system independent basic implementations of Document/View design pattern.