2008-11-04 00:08:39 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2007 by Dan Meltzer <hydrogen@notyetimplemented.com>
|
|
|
|
* Copyright 2008 by Aaron Seigo <aseigo@kde.org>
|
|
|
|
* Copyright 2008 by Alexis Ménard <darktears31@gmail.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "tooltipmanager.h"
|
|
|
|
|
|
|
|
//Qt
|
2008-11-10 03:01:47 +01:00
|
|
|
#include <QCoreApplication>
|
2008-11-04 00:08:39 +01:00
|
|
|
#include <QLabel>
|
|
|
|
#include <QTimer>
|
|
|
|
#include <QGridLayout>
|
|
|
|
#include <QGraphicsView>
|
|
|
|
|
|
|
|
//KDE
|
2008-11-04 03:04:34 +01:00
|
|
|
#include <kwindowsystem.h>
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
//X11
|
|
|
|
#ifdef Q_WS_X11
|
|
|
|
#include <QtGui/QX11Info>
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <fixx11h.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//Plasma
|
2008-12-30 03:14:33 +01:00
|
|
|
#include "plasma/applet.h"
|
|
|
|
#include "plasma/containment.h"
|
|
|
|
#include "plasma/corona.h"
|
|
|
|
#include "plasma/framesvg.h"
|
|
|
|
#include "plasma/popupapplet.h"
|
|
|
|
#include "plasma/theme.h"
|
|
|
|
#include "plasma/view.h"
|
|
|
|
#include "plasma/private/tooltip_p.h"
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
|
|
|
class ToolTipManagerPrivate
|
|
|
|
{
|
|
|
|
public :
|
|
|
|
ToolTipManagerPrivate()
|
|
|
|
: currentWidget(0),
|
|
|
|
showTimer(0),
|
|
|
|
hideTimer(0),
|
|
|
|
tipWidget(new ToolTip(0)),
|
|
|
|
state(ToolTipManager::Activated),
|
|
|
|
isShown(false),
|
|
|
|
delayedHide(false)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
~ToolTipManagerPrivate()
|
|
|
|
{
|
2008-11-10 03:01:47 +01:00
|
|
|
if (!QCoreApplication::closingDown()) {
|
|
|
|
delete tipWidget;
|
|
|
|
}
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void showToolTip();
|
|
|
|
void resetShownState();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* called when a widget inside the tooltip manager is deleted
|
|
|
|
*/
|
|
|
|
void onWidgetDestroyed(QObject * object);
|
2009-01-09 02:15:39 +01:00
|
|
|
void removeWidget(QGraphicsWidget *w);
|
2008-11-04 00:08:39 +01:00
|
|
|
void clearTips();
|
|
|
|
void doDelayedHide();
|
|
|
|
|
|
|
|
QGraphicsWidget *currentWidget;
|
|
|
|
QTimer *showTimer;
|
|
|
|
QTimer *hideTimer;
|
|
|
|
QHash<QGraphicsWidget *, ToolTipContent> tooltips;
|
|
|
|
ToolTip *tipWidget;
|
|
|
|
ToolTipManager::State state;
|
|
|
|
bool isShown : 1;
|
|
|
|
bool delayedHide : 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
//TOOLTIP IMPLEMENTATION
|
|
|
|
class ToolTipManagerSingleton
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ToolTipManagerSingleton()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
ToolTipManager self;
|
|
|
|
};
|
|
|
|
K_GLOBAL_STATIC(ToolTipManagerSingleton, privateInstance)
|
|
|
|
|
|
|
|
ToolTipManager *ToolTipManager::self()
|
|
|
|
{
|
|
|
|
return &privateInstance->self;
|
|
|
|
}
|
|
|
|
|
|
|
|
ToolTipManager::ToolTipManager(QObject *parent)
|
|
|
|
: QObject(parent),
|
|
|
|
d(new ToolTipManagerPrivate)
|
|
|
|
{
|
|
|
|
d->showTimer = new QTimer(this);
|
|
|
|
d->showTimer->setSingleShot(true);
|
|
|
|
d->hideTimer = new QTimer(this);
|
|
|
|
d->hideTimer->setSingleShot(true);
|
|
|
|
|
|
|
|
connect(d->showTimer, SIGNAL(timeout()), SLOT(showToolTip()));
|
|
|
|
connect(d->hideTimer, SIGNAL(timeout()), SLOT(resetShownState()));
|
|
|
|
}
|
|
|
|
|
|
|
|
ToolTipManager::~ToolTipManager()
|
|
|
|
{
|
|
|
|
delete d;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToolTipManager::show(QGraphicsWidget *widget)
|
|
|
|
{
|
|
|
|
if (!d->tooltips.contains(widget)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
d->hideTimer->stop();
|
|
|
|
d->delayedHide = false;
|
|
|
|
d->showTimer->stop();
|
|
|
|
d->currentWidget = widget;
|
|
|
|
|
|
|
|
if (d->isShown) {
|
|
|
|
// small delay to prevent unnecessary showing when the mouse is moving quickly across items
|
|
|
|
// which can be too much for less powerful CPUs to keep up with
|
|
|
|
d->showTimer->start(200);
|
|
|
|
} else {
|
|
|
|
d->showTimer->start(700);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ToolTipManager::isVisible(QGraphicsWidget *widget) const
|
|
|
|
{
|
|
|
|
return d->currentWidget == widget && d->tipWidget->isVisible();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToolTipManagerPrivate::doDelayedHide()
|
|
|
|
{
|
|
|
|
showTimer->stop(); // stop the timer to show the tooltip
|
|
|
|
delayedHide = true;
|
|
|
|
hideTimer->start(250);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToolTipManager::hide(QGraphicsWidget *widget)
|
|
|
|
{
|
|
|
|
if (d->currentWidget != widget) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-12-01 01:49:36 +01:00
|
|
|
d->currentWidget = 0;
|
2008-11-04 00:08:39 +01:00
|
|
|
d->showTimer->stop(); // stop the timer to show the tooltip
|
|
|
|
d->delayedHide = false;
|
|
|
|
d->tipWidget->hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToolTipManager::registerWidget(QGraphicsWidget *widget)
|
|
|
|
{
|
|
|
|
if (d->state == Deactivated || d->tooltips.contains(widget)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//the tooltip is not registered we add it in our map of tooltips
|
|
|
|
d->tooltips.insert(widget, ToolTipContent());
|
|
|
|
widget->installEventFilter(this);
|
|
|
|
connect(widget, SIGNAL(destroyed(QObject*)), this, SLOT(onWidgetDestroyed(QObject*)));
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToolTipManager::unregisterWidget(QGraphicsWidget *widget)
|
|
|
|
{
|
|
|
|
if (!d->tooltips.contains(widget)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
widget->removeEventFilter(this);
|
2009-01-09 02:15:39 +01:00
|
|
|
d->removeWidget(widget);
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ToolTipManager::setContent(QGraphicsWidget *widget, const ToolTipContent &data)
|
|
|
|
{
|
|
|
|
if (d->state == Deactivated) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
registerWidget(widget);
|
|
|
|
d->tooltips[widget] = data;
|
|
|
|
|
|
|
|
if (d->currentWidget == widget) {
|
|
|
|
if (data.isEmpty()) {
|
|
|
|
hide(widget);
|
2008-12-26 21:43:53 +01:00
|
|
|
} else {
|
|
|
|
d->delayedHide = data.autohide();
|
|
|
|
if (d->delayedHide) {
|
|
|
|
//kDebug() << "starting authoide";
|
|
|
|
d->hideTimer->start(3000);
|
|
|
|
} else {
|
|
|
|
d->hideTimer->stop();
|
|
|
|
}
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
2008-11-11 00:30:19 +01:00
|
|
|
d->tipWidget->setContent(widget, data);
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToolTipManager::clearContent(QGraphicsWidget *widget)
|
|
|
|
{
|
|
|
|
setContent(widget, ToolTipContent());
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToolTipManager::setState(ToolTipManager::State state)
|
|
|
|
{
|
|
|
|
d->state = state;
|
|
|
|
|
|
|
|
switch (state) {
|
|
|
|
case Activated:
|
|
|
|
break;
|
|
|
|
case Deactivated:
|
|
|
|
d->clearTips();
|
|
|
|
//fallthrough
|
|
|
|
case Inhibited:
|
|
|
|
d->resetShownState();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ToolTipManager::State ToolTipManager::state() const
|
|
|
|
{
|
|
|
|
return d->state;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToolTipManagerPrivate::onWidgetDestroyed(QObject *object)
|
|
|
|
{
|
|
|
|
if (!object) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// we do a static_cast here since it really isn't a QGraphicsWidget by this
|
|
|
|
// point anymore since we are in the QObject dtor. we don't actually
|
|
|
|
// try and do anything with it, we just need the value of the pointer
|
|
|
|
// so this unsafe looking code is actually just fine.
|
|
|
|
//
|
|
|
|
// NOTE: DO NOT USE THE w VARIABLE FOR ANYTHING OTHER THAN COMPARING
|
|
|
|
// THE ADDRESS! ACTUALLY USING THE OBJECT WILL RESULT IN A CRASH!!!
|
|
|
|
QGraphicsWidget *w = static_cast<QGraphicsWidget*>(object);
|
2009-01-09 02:15:39 +01:00
|
|
|
removeWidget(w);
|
|
|
|
}
|
2008-11-04 00:08:39 +01:00
|
|
|
|
2009-01-09 02:15:39 +01:00
|
|
|
void ToolTipManagerPrivate::removeWidget(QGraphicsWidget *w)
|
|
|
|
{
|
|
|
|
// DO NOTE ACCESS w HERE!! IT MAY BE IN THE PROCESS OF DELETION!
|
2008-11-04 00:08:39 +01:00
|
|
|
if (currentWidget == w) {
|
|
|
|
currentWidget = 0;
|
|
|
|
showTimer->stop(); // stop the timer to show the tooltip
|
2008-12-01 01:49:36 +01:00
|
|
|
tipWidget->setContent(0, ToolTipContent());
|
|
|
|
tipWidget->hide();
|
2008-11-04 00:08:39 +01:00
|
|
|
delayedHide = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
tooltips.remove(w);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToolTipManagerPrivate::clearTips()
|
|
|
|
{
|
|
|
|
tooltips.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToolTipManagerPrivate::resetShownState()
|
|
|
|
{
|
|
|
|
if (currentWidget) {
|
|
|
|
if (!tipWidget->isVisible() || delayedHide) {
|
|
|
|
//One might have moused out and back in again
|
|
|
|
delayedHide = false;
|
|
|
|
isShown = false;
|
|
|
|
currentWidget = 0;
|
2008-12-01 01:49:36 +01:00
|
|
|
tipWidget->hide();
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToolTipManagerPrivate::showToolTip()
|
|
|
|
{
|
|
|
|
if (state != ToolTipManager::Activated ||
|
|
|
|
!currentWidget ||
|
|
|
|
QApplication::activePopupWidget() ||
|
|
|
|
QApplication::activeModalWidget()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-12-30 03:14:33 +01:00
|
|
|
PopupApplet *popup = qobject_cast<PopupApplet*>(currentWidget);
|
|
|
|
if (popup && popup->isPopupShowing()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-12-30 03:04:35 +01:00
|
|
|
QMetaObject::invokeMethod(currentWidget, "toolTipAboutToShow");
|
2008-11-14 07:06:15 +01:00
|
|
|
QHash<QGraphicsWidget *, ToolTipContent>::const_iterator tooltip = tooltips.constFind(currentWidget);
|
|
|
|
|
2008-12-30 03:04:35 +01:00
|
|
|
if (tooltip == tooltips.constEnd() || tooltip.value().isEmpty()) {
|
2008-11-14 07:06:15 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-12-23 20:38:52 +01:00
|
|
|
Containment *c = dynamic_cast<Containment *>(currentWidget->topLevelItem());
|
2008-12-30 03:04:35 +01:00
|
|
|
//kDebug() << "about to show" << (QObject*)c;
|
2008-12-23 20:38:52 +01:00
|
|
|
if (c) {
|
2008-12-26 21:38:59 +01:00
|
|
|
tipWidget->setDirection(Plasma::locationToDirection(c->location()));
|
2008-12-23 20:38:52 +01:00
|
|
|
}
|
|
|
|
|
2008-11-14 07:06:15 +01:00
|
|
|
tipWidget->setContent(currentWidget, tooltip.value());
|
2008-12-30 03:04:35 +01:00
|
|
|
tipWidget->prepareShowing();
|
2008-11-04 00:08:39 +01:00
|
|
|
tipWidget->moveTo(ToolTipManager::self()->m_corona->popupPosition(currentWidget, tipWidget->size()));
|
|
|
|
tipWidget->show();
|
|
|
|
isShown = true; //ToolTip is visible
|
|
|
|
|
2008-11-14 07:06:15 +01:00
|
|
|
delayedHide = tooltip.value().autohide();
|
2008-11-04 00:08:39 +01:00
|
|
|
if (delayedHide) {
|
|
|
|
//kDebug() << "starting authoide";
|
|
|
|
hideTimer->start(3000);
|
2008-12-26 21:43:53 +01:00
|
|
|
} else {
|
|
|
|
hideTimer->stop();
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ToolTipManager::eventFilter(QObject *watched, QEvent *event)
|
|
|
|
{
|
|
|
|
QGraphicsWidget * widget = dynamic_cast<QGraphicsWidget *>(watched);
|
|
|
|
if (d->state != Activated || !widget) {
|
|
|
|
return QObject::eventFilter(watched, event);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (event->type()) {
|
|
|
|
case QEvent::GraphicsSceneHoverMove:
|
|
|
|
// If the tooltip isn't visible, run through showing the tooltip again
|
|
|
|
// so that it only becomes visible after a stationary hover
|
|
|
|
if (Plasma::ToolTipManager::self()->isVisible(widget)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't restart the show timer on a mouse move event if there hasn't
|
|
|
|
// been an enter event or the current widget has been cleared by a click
|
|
|
|
// or wheel event.
|
|
|
|
if (!d->currentWidget) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case QEvent::GraphicsSceneHoverEnter:
|
|
|
|
{
|
|
|
|
// Check that there is a tooltip to show
|
|
|
|
if (!d->tooltips.contains(widget)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the mouse is in the widget's area at the time that it is being
|
|
|
|
// created the widget can receive a hover event before it is fully
|
|
|
|
// initialized, in which case view() will return 0.
|
|
|
|
QGraphicsView *parentView = viewFor(widget);
|
|
|
|
if (parentView) {
|
|
|
|
show(widget);
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case QEvent::GraphicsSceneHoverLeave:
|
|
|
|
d->doDelayedHide();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case QEvent::GraphicsSceneMousePress:
|
|
|
|
case QEvent::GraphicsSceneWheel:
|
|
|
|
hide(widget);
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return QObject::eventFilter(watched, event);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // Plasma namespace
|
|
|
|
|
|
|
|
#include "tooltipmanager.moc"
|
|
|
|
|