/* SPDX-FileCopyrightText: 2010 Valery Kharitonov SPDX-License-Identifier: GPL-2.0-or-later */ #include "kshelplabel.h" #include "Options.h" #include #include #include KSHelpLabel::KSHelpLabel(const QString &text, const QString &anchor, QWidget *parent) : QLabel(parent), m_anchor(anchor) { setText(text); updateText(); connect(this, SIGNAL(linkActivated(QString)), SLOT(slotShowDefinition(QString))); } KSHelpLabel::KSHelpLabel(QWidget *parent) : QLabel(parent) { connect(this, SIGNAL(linkActivated(QString)), SLOT(slotShowDefinition(QString))); } void KSHelpLabel::setAnchor(const QString &anchor) { m_anchor = anchor; updateText(); } void KSHelpLabel::updateText() { //TODO This function probably needs to be removed since the theme setting stakes care already of link colors /* QString linkcolor = (Options::darkAppColors() ? "red" : "blue"); // In night colors mode, use red links because blue links are black through a red filter. QLabel::setText("" + text() + ""); */ QLabel::setText("" + text() + ""); } void KSHelpLabel::slotShowDefinition(const QString &term) { #ifdef Q_OS_MACOS // This is because KHelpClient doesn't seem to be working right on MacOS QDesktopServices::openUrl(QUrl("https://docs.kde.org/trunk5/en/kstars/kstars/index.html")); #else KHelpClient::invokeHelp(term); #endif } void KSHelpLabel::setText(const QString &txt) { m_cleanText = txt; updateText(); }