forked from qt-creator/qt-creator
The tool tip never has focus, so it cannot become the IContext that is checked for context help. So, integrate the help id into Utils::ToolTip and check the tool tip first when checking for context help. As a side effect the [F1] button and help id for the tool tip is now also available for use outside of the text editors. Task-number: QTCREATORBUG-5345 Change-Id: Id975703caf161d1183c247e8ad8bb693b90fd306 Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com> Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
275 lines
7.6 KiB
C++
275 lines
7.6 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
** Contact: http://www.qt.io/licensing
|
|
**
|
|
** This file is part of Qt Creator.
|
|
**
|
|
** 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 The Qt Company. For licensing terms and
|
|
** conditions see http://www.qt.io/terms-conditions. For further information
|
|
** use the contact form at http://www.qt.io/contact-us.
|
|
**
|
|
** 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, The Qt Company gives you certain additional
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "tips.h"
|
|
#include "tooltip.h"
|
|
#include "reuse.h"
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
#include <QRect>
|
|
#include <QColor>
|
|
#include <QPainter>
|
|
#include <QPen>
|
|
#include <QPixmap>
|
|
#include <QStyle>
|
|
#include <QFontMetrics>
|
|
#include <QTextDocument>
|
|
#include <QStylePainter>
|
|
#include <QStyleOptionFrame>
|
|
#include <QResizeEvent>
|
|
#include <QPaintEvent>
|
|
#include <QVBoxLayout>
|
|
|
|
namespace Utils {
|
|
namespace Internal {
|
|
|
|
QTipLabel::QTipLabel(QWidget *parent) :
|
|
QLabel(parent, Qt::ToolTip | Qt::BypassGraphicsProxyWidget)
|
|
{}
|
|
|
|
void QTipLabel::setHelpId(const QString &id)
|
|
{
|
|
m_helpId = id;
|
|
update();
|
|
}
|
|
|
|
QString QTipLabel::helpId() const
|
|
{
|
|
return m_helpId;
|
|
}
|
|
|
|
|
|
ColorTip::ColorTip(QWidget *parent)
|
|
: QTipLabel(parent)
|
|
{
|
|
resize(40, 40);
|
|
}
|
|
|
|
void ColorTip::setContent(const QVariant &content)
|
|
{
|
|
m_color = content.value<QColor>();
|
|
|
|
const int size = 10;
|
|
m_tilePixmap = QPixmap(size * 2, size * 2);
|
|
m_tilePixmap.fill(Qt::white);
|
|
QPainter tilePainter(&m_tilePixmap);
|
|
QColor col(220, 220, 220);
|
|
tilePainter.fillRect(0, 0, size, size, col);
|
|
tilePainter.fillRect(size, size, size, size, col);
|
|
}
|
|
|
|
void ColorTip::configure(const QPoint &pos, QWidget *w)
|
|
{
|
|
Q_UNUSED(pos)
|
|
Q_UNUSED(w)
|
|
|
|
update();
|
|
}
|
|
|
|
bool ColorTip::canHandleContentReplacement(int typeId) const
|
|
{
|
|
return typeId == ToolTip::ColorContent;
|
|
}
|
|
|
|
bool ColorTip::equals(int typeId, const QVariant &other, const QString &otherHelpId) const
|
|
{
|
|
return typeId == ToolTip::ColorContent && otherHelpId == helpId() && other == m_color;
|
|
}
|
|
|
|
void ColorTip::paintEvent(QPaintEvent *event)
|
|
{
|
|
QTipLabel::paintEvent(event);
|
|
|
|
QPen pen;
|
|
pen.setWidth(1);
|
|
if (m_color.value() > 100)
|
|
pen.setColor(m_color.darker());
|
|
else
|
|
pen.setColor(m_color.lighter());
|
|
|
|
QPainter painter(this);
|
|
painter.setPen(pen);
|
|
painter.setBrush(m_color);
|
|
QRect r(0, 0, rect().width() - 1, rect().height() - 1);
|
|
painter.drawTiledPixmap(r, m_tilePixmap);
|
|
painter.drawRect(r);
|
|
}
|
|
|
|
TextTip::TextTip(QWidget *parent) : QTipLabel(parent)
|
|
{
|
|
setForegroundRole(QPalette::ToolTipText);
|
|
setBackgroundRole(QPalette::ToolTipBase);
|
|
ensurePolished();
|
|
setMargin(1 + style()->pixelMetric(QStyle::PM_ToolTipLabelFrameWidth, 0, this));
|
|
setFrameStyle(QFrame::NoFrame);
|
|
setAlignment(Qt::AlignLeft);
|
|
setIndent(1);
|
|
setWindowOpacity(style()->styleHint(QStyle::SH_ToolTipLabel_Opacity, 0, this) / 255.0);
|
|
}
|
|
|
|
void TextTip::setContent(const QVariant &content)
|
|
{
|
|
m_text = content.toString();
|
|
}
|
|
|
|
void TextTip::configure(const QPoint &pos, QWidget *w)
|
|
{
|
|
if (helpId().isEmpty())
|
|
setText(m_text);
|
|
else
|
|
setText(QString::fromLatin1("<table><tr><td valign=middle>%1</td><td> "
|
|
"<img src=\":/utils/tooltip/images/f1.png\"></td>"
|
|
"</tr></table>").arg(m_text));
|
|
|
|
// Make it look good with the default ToolTip font on Mac, which has a small descent.
|
|
QFontMetrics fm(font());
|
|
int extraHeight = 0;
|
|
if (fm.descent() == 2 && fm.ascent() >= 11)
|
|
++extraHeight;
|
|
|
|
// Try to find a nice width without unnecessary wrapping.
|
|
setWordWrap(false);
|
|
int tipWidth = sizeHint().width();
|
|
const int screenWidth = screenGeometry(pos, w).width();
|
|
const int maxDesiredWidth = int(screenWidth * .5);
|
|
if (tipWidth > maxDesiredWidth) {
|
|
setWordWrap(true);
|
|
tipWidth = sizeHint().width();
|
|
// If the width is still too large (maybe due to some extremely long word which prevents
|
|
// wrapping), the tip is truncated according to the screen.
|
|
if (tipWidth > screenWidth)
|
|
tipWidth = screenWidth - 10;
|
|
}
|
|
|
|
resize(tipWidth, heightForWidth(tipWidth) + extraHeight);
|
|
}
|
|
|
|
bool TextTip::canHandleContentReplacement(int typeId) const
|
|
{
|
|
return typeId == ToolTip::TextContent;
|
|
}
|
|
|
|
int TextTip::showTime() const
|
|
{
|
|
return 10000 + 40 * qMax(0, m_text.size() - 100);
|
|
}
|
|
|
|
bool TextTip::equals(int typeId, const QVariant &other, const QString &otherHelpId) const
|
|
{
|
|
return typeId == ToolTip::TextContent && otherHelpId == helpId() && other.toString() == m_text;
|
|
}
|
|
|
|
void TextTip::paintEvent(QPaintEvent *event)
|
|
{
|
|
QStylePainter p(this);
|
|
QStyleOptionFrame opt;
|
|
opt.init(this);
|
|
p.drawPrimitive(QStyle::PE_PanelTipLabel, opt);
|
|
p.end();
|
|
|
|
QLabel::paintEvent(event);
|
|
}
|
|
|
|
void TextTip::resizeEvent(QResizeEvent *event)
|
|
{
|
|
QStyleHintReturnMask frameMask;
|
|
QStyleOption option;
|
|
option.init(this);
|
|
if (style()->styleHint(QStyle::SH_ToolTip_Mask, &option, this, &frameMask))
|
|
setMask(frameMask.region);
|
|
|
|
QLabel::resizeEvent(event);
|
|
}
|
|
|
|
WidgetTip::WidgetTip(QWidget *parent) :
|
|
QTipLabel(parent), m_layout(new QVBoxLayout)
|
|
{
|
|
m_layout->setContentsMargins(0, 0, 0, 0);
|
|
setLayout(m_layout);
|
|
}
|
|
|
|
void WidgetTip::setContent(const QVariant &content)
|
|
{
|
|
m_widget = content.value<QWidget *>();
|
|
}
|
|
|
|
void WidgetTip::configure(const QPoint &pos, QWidget *)
|
|
{
|
|
QTC_ASSERT(m_widget && m_layout->count() == 0, return);
|
|
|
|
move(pos);
|
|
m_layout->addWidget(m_widget);
|
|
m_layout->setSizeConstraint(QLayout::SetFixedSize);
|
|
adjustSize();
|
|
}
|
|
|
|
void WidgetTip::pinToolTipWidget(QWidget *parent)
|
|
{
|
|
QTC_ASSERT(m_layout->count(), return);
|
|
|
|
// Pin the content widget: Rip the widget out of the layout
|
|
// and re-show as a tooltip, with delete on close.
|
|
const QPoint screenPos = mapToGlobal(QPoint(0, 0));
|
|
// Remove widget from layout
|
|
if (!m_layout->count())
|
|
return;
|
|
|
|
QLayoutItem *item = m_layout->takeAt(0);
|
|
QWidget *widget = item->widget();
|
|
delete item;
|
|
if (!widget)
|
|
return;
|
|
|
|
widget->setParent(parent, Qt::Tool|Qt::FramelessWindowHint);
|
|
widget->move(screenPos);
|
|
widget->show();
|
|
widget->setAttribute(Qt::WA_DeleteOnClose);
|
|
}
|
|
|
|
bool WidgetTip::canHandleContentReplacement(int typeId) const
|
|
{
|
|
// Always create a new widget.
|
|
Q_UNUSED(typeId);
|
|
return false;
|
|
}
|
|
|
|
bool WidgetTip::equals(int typeId, const QVariant &other, const QString &otherHelpId) const
|
|
{
|
|
return typeId == ToolTip::WidgetContent && otherHelpId == helpId()
|
|
&& other.value<QWidget *>() == m_widget;
|
|
}
|
|
|
|
// need to include it here to force it to be inside the namespaces
|
|
#include "moc_tips.cpp"
|
|
|
|
} // namespace Internal
|
|
} // namespace Utils
|