Files
qt-creator/src/plugins/texteditor/basehoverhandler.cpp

151 lines
4.4 KiB
C++
Raw Normal View History

/****************************************************************************
2010-08-03 15:42:14 +02:00
**
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
2010-08-03 15:42:14 +02:00
**
** This file is part of Qt Creator.
2010-08-03 15:42:14 +02:00
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia. For licensing terms and
** conditions see http://www.qt.io/licensing. For further information
** use the contact form at http://www.qt.io/contact-us.
2010-08-03 15:42:14 +02:00
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 or version 3 as published by the Free
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
** following information to ensure the GNU Lesser General Public License
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Digia gives you certain additional
** rights. These rights are described in the Digia Qt LGPL Exception
2010-12-17 16:01:08 +01:00
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
****************************************************************************/
2010-08-03 15:42:14 +02:00
#include "basehoverhandler.h"
#include "texteditor.h"
2010-08-03 15:42:14 +02:00
#include <coreplugin/icore.h>
#include <utils/tooltip/tooltip.h>
#include <utils/tooltip/tipcontents.h>
2010-08-03 15:42:14 +02:00
#include <QPoint>
2010-08-03 15:42:14 +02:00
using namespace Core;
namespace TextEditor {
BaseHoverHandler::BaseHoverHandler() : m_diagnosticTooltip(false)
2010-08-03 15:42:14 +02:00
{
}
2010-09-24 20:17:40 +02:00
BaseHoverHandler::~BaseHoverHandler()
{}
void BaseHoverHandler::showToolTip(TextEditorWidget *widget, const QPoint &point, int pos)
2010-08-03 15:42:14 +02:00
{
widget->setContextHelpId(QString());
2010-08-03 15:42:14 +02:00
process(widget, pos);
operateTooltip(widget, point);
2010-08-03 15:42:14 +02:00
}
QString BaseHoverHandler::contextHelpId(TextEditorWidget *widget, int pos)
2010-08-03 15:42:14 +02:00
{
// If the tooltip is visible and there is a help match, this match is used to update
// the help id. Otherwise, let the identification process happen.
if (!Utils::ToolTip::isVisible() || !lastHelpItemIdentified().isValid())
process(widget, pos);
2010-08-03 15:42:14 +02:00
if (lastHelpItemIdentified().isValid())
return lastHelpItemIdentified().helpId();
return QString();
2010-08-03 15:42:14 +02:00
}
void BaseHoverHandler::setToolTip(const QString &tooltip)
{
m_toolTip = tooltip;
}
2010-08-03 15:42:14 +02:00
const QString &BaseHoverHandler::toolTip() const
{
return m_toolTip;
}
2010-08-03 15:42:14 +02:00
void BaseHoverHandler::appendToolTip(const QString &extension)
{
m_toolTip.append(extension);
}
2010-08-03 15:42:14 +02:00
void BaseHoverHandler::addF1ToToolTip()
{
m_toolTip = QString::fromLatin1("<table><tr><td valign=middle>%1</td><td>&nbsp;&nbsp;"
"<img src=\":/texteditor/images/f1.png\"></td>"
"</tr></table>").arg(m_toolTip);
2010-08-03 15:42:14 +02:00
}
void BaseHoverHandler::setIsDiagnosticTooltip(bool isDiagnosticTooltip)
{
m_diagnosticTooltip = isDiagnosticTooltip;
}
bool BaseHoverHandler::isDiagnosticTooltip() const
{
return m_diagnosticTooltip;
}
void BaseHoverHandler::setLastHelpItemIdentified(const HelpItem &help)
{
m_lastHelpItemIdentified = help;
}
const HelpItem &BaseHoverHandler::lastHelpItemIdentified() const
{
return m_lastHelpItemIdentified;
}
void BaseHoverHandler::clear()
2010-08-03 15:42:14 +02:00
{
m_diagnosticTooltip = false;
2010-08-03 15:42:14 +02:00
m_toolTip.clear();
m_lastHelpItemIdentified = HelpItem();
2010-08-03 15:42:14 +02:00
}
void BaseHoverHandler::process(TextEditorWidget *widget, int pos)
2010-08-03 15:42:14 +02:00
{
clear();
identifyMatch(widget, pos);
decorateToolTip();
2010-08-03 15:42:14 +02:00
}
void BaseHoverHandler::decorateToolTip()
2010-08-03 15:42:14 +02:00
{
if (Qt::mightBeRichText(toolTip()))
setToolTip(toolTip().toHtmlEscaped());
if (!isDiagnosticTooltip() && lastHelpItemIdentified().isValid()) {
2010-08-31 13:40:13 +02:00
const QString &contents = lastHelpItemIdentified().extractContent(false);
if (!contents.isEmpty()) {
setToolTip(toolTip().toHtmlEscaped());
appendToolTip(contents);
addF1ToToolTip();
}
2010-08-03 15:42:14 +02:00
}
}
void BaseHoverHandler::operateTooltip(TextEditorWidget *editorWidget, const QPoint &point)
2010-08-03 15:42:14 +02:00
{
if (m_toolTip.isEmpty())
Utils::ToolTip::hide();
2010-08-03 15:42:14 +02:00
else
Utils::ToolTip::show(point, Utils::TextContent(m_toolTip), editorWidget);
2010-08-03 15:42:14 +02:00
}
} // namespace TextEditor