KContextualHelpButton Class

An icon-only button for showing contextually relevant help or explanations. More...

Header: #include <KContextualHelpButton>
CMake: find_package(KF6 REQUIRED COMPONENTS WidgetsAddons)
target_link_libraries(mytarget PRIVATE KF6::WidgetsAddons)
Since: 6.2
Inherits: QToolButton

Public Functions

KContextualHelpButton(QWidget *parent = nullptr)
KContextualHelpButton(const QString &contextualHelpText, const QWidget *heightHintWidget, QWidget *parent)
QString contextualHelpText() const
const QWidget *heightHintWidget() const
void setContextualHelpText(const QString &contextualHelpText)
void setHeightHintWidget(const QWidget *heightHintWidget)

Signals

void contextualHelpTextChanged(const QString &newContextualHelpText)

Detailed Description

KContextualHelpButton allows hiding text of any length behind a small icon-only button. Hovering over the button with a mouse cursor or pressing the button will show the text. It can contain images and links. It is accessible by keyboard and to screen readers.

When to Use

Sometimes users require help or an explanation, even experts. This help should be readily available exactly where and when a user needs it. A KContextualHelpButton makes clear that inline help is available without really cluttering up the user interface. In that sense it is superior to setting tooltips which are completely invisible until invoked and therefore easy to miss. Especially for touch users the KContextualHelpButton is preferable.

When Not to Use

If the text is important for the user to understand and can be kept very short, place it inline below the control it affects. If there is no room to put this KContextualHelpButton, use QWidget::setToolTip() for shorter texts and QWidget::SetWhatsThis() for longer text or text that should contain hyperlinks. If your software is not already using the KXmlGui framework, consider using KToolTipHelper from KXmlGui to make the whatsThis() help more discoverable.

How to Use

The most simple way is creating it like any other button and then setting the help text:

auto contextualHelpButton = new KContextualHelpButton{this};
contextualHelpButton->setContextualHelpText(xi18nc("@info", "<para>A nicely formatted help text. Notice the 'para' tags at the side!</para>"));

The most common use of this component might be on settings pages which oftentimes use a QFormLayout. Here is an example on how to use it next to a QCheckBox. Unfortunately we need to make the KContextualHelpButton aware of the QCheckBox here or it will increase the height of the row in the QFormLayout which might look bad. The help text in this example contains an image and a working hyperlink:

auto formLayout = new QFormLayout(this);
auto checkBox = new QCheckBox(i18nc("@option:check", "Check this box"), this);
auto contextualHelpButton = new KContextualHelpButton{
     xi18nc("@info",
            "<para>A help text containing an icon <img src=':/icon.png'> and a <a href=\"http://www.kde.org\">link</a>.</para>"),
     checkBox,
     this};
auto rowLayout = new QHBoxLayout{this};
rowLayout->addWidget(checkBox);
rowLayout->addWidget(contextualHelpButton);
formLayout->addRow(i18nc("@title:group", "Row label:"), rowLayout);

This class is meant to be kept somewhat consistent with the QML equivalent which is also called ContextualHelpButton.

Member Function Documentation

[explicit] KContextualHelpButton::KContextualHelpButton(QWidget *parent = nullptr)

See also KContextualHelpButton::ContextualHelpButton().

[explicit] KContextualHelpButton::KContextualHelpButton(const QString &contextualHelpText, const QWidget *heightHintWidget, QWidget *parent)

contextualHelpText The text to show when hovering or clicking this button. Consider formatting this nicely using xi18nc().

heightHintWidget The KContextualHelpButton will report the heightHintWidget 's sizeHint().height() as its own sizeHint().height(). This is useful to make sure that adding this KContextualHelpButton to a layout will not increase the layout's total height.

parent The parent widget that gets ownership over the lifetime of this KContextualHelpButton.

QString KContextualHelpButton::contextualHelpText() const

Returns the help text which is shown when hovering or pressing this button.

Note: Getter function for property contextualHelpText.

See also setContextualHelpText().

const QWidget *KContextualHelpButton::heightHintWidget() const

See also setHeightHintWidget().

void KContextualHelpButton::setContextualHelpText(const QString &contextualHelpText)

Sets the text to show when hovering or pressing this button. Consider formatting the text nicely using xi18nc().

Note: Setter function for property contextualHelpText.

See also contextualHelpText().

void KContextualHelpButton::setHeightHintWidget(const QWidget *heightHintWidget)

The KContextualHelpButton will report the heightHintWidget 's sizeHint().height() as its own sizeHint().height(). This is useful to make sure that adding this KContextualHelpButton to a layout will not increase the layout's total height.

See also heightHintWidget().