173 lines
4.1 KiB
C++
Raw Normal View History

/***************************************************************************
* Copyright 2011 Marco Martin <mart@kde.org> *
* Copyright 2011 Artur Duque de Souza <asouza@kde.org> *
* Copyright 2013 Sebastian Kügler <sebas@kde.org> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . *
***************************************************************************/
#include "tooltip.h"
#include "tooltipdialog.h"
#include <QQmlEngine>
#include <QQuickItem>
#include <QDebug>
#include "framesvgitem.h"
#include <kwindoweffects.h>
ToolTip::ToolTip(QQuickItem *parent)
: QQuickItem(parent)
{
m_showTimer = new QTimer(this);
m_showTimer->setSingleShot(true);
connect(m_showTimer, &QTimer::timeout, [=]() {
2014-01-08 18:13:07 +01:00
showToolTip();
});
2014-01-08 18:13:07 +01:00
setAcceptHoverEvents(true);
2014-01-08 18:13:07 +01:00
setFiltersChildMouseEvents(true);
}
2013-04-04 22:14:56 +02:00
ToolTip::~ToolTip()
{
}
2013-04-04 22:14:56 +02:00
QQuickItem *ToolTip::mainItem() const
{
return m_mainItem.data();
}
2013-04-04 22:14:56 +02:00
void ToolTip::setMainItem(QQuickItem *mainItem)
{
if (m_mainItem.data() != mainItem) {
m_mainItem = mainItem;
emit mainItemChanged();
}
}
2014-01-08 18:13:07 +01:00
void ToolTip::showToolTip()
{
ToolTipDialog *dlg = ToolTipDialog::instance();
2014-01-08 18:13:07 +01:00
if (!mainItem()) {
setMainItem(dlg->loadDefaultItem());
}
2014-01-08 18:13:07 +01:00
if (dlg->mainItem()) {
dlg->mainItem()->setVisible(false);
}
2014-01-08 18:13:07 +01:00
if (mainItem()) {
mainItem()->setProperty("toolTip", QVariant::fromValue(this));
mainItem()->setVisible(true);
}
2014-01-08 18:13:07 +01:00
dlg->setMainItem(mainItem());
dlg->setVisible(true);
dlg->setVisualParent(this);
}
QString ToolTip::mainText() const
{
return m_mainText;
}
void ToolTip::setMainText(const QString &mainText)
{
if (mainText == m_mainText) {
return;
}
m_mainText = mainText;
emit mainTextChanged();
}
QString ToolTip::subText() const
{
return m_subText;
}
void ToolTip::setSubText(const QString &subText)
{
if (subText == m_subText) {
return;
}
m_subText = subText;
emit subTextChanged();
}
QVariant ToolTip::icon() const
{
if (m_icon.isValid()) {
return m_icon;
} else {
return QString();
}
}
void ToolTip::setIcon(const QVariant &icon)
{
if (icon == m_icon) {
return;
}
m_icon = icon;
emit iconChanged();
}
QVariant ToolTip::image() const
{
if (m_image.isValid()) {
return m_image;
} else {
return QString();
}
}
void ToolTip::setImage(const QVariant &image)
{
if (image == m_image) {
return;
}
m_image = image;
emit imageChanged();
}
void ToolTip::hoverEnterEvent(QHoverEvent *event)
{
if (ToolTipDialog::instance()->isVisible()) {
2014-01-08 18:13:07 +01:00
//FIXME: showToolTip needs to be renamed in sync or something like that
showToolTip();
} else {
m_showTimer->start(500);
}
}
void ToolTip::hoverLeaveEvent(QHoverEvent *event)
{
m_showTimer->stop();
2014-01-08 18:13:07 +01:00
}
2014-01-08 18:13:07 +01:00
bool ToolTip::childMouseEventFilter(QQuickItem *item, QEvent *event)
{
return QQuickItem::childMouseEventFilter(item, event);
}
2014-01-08 18:13:07 +01:00