1 /*******************************************************************************
2 * Copyright (C) 2008 by Konstantin Heil <konst.heil@stud.uni-heidelberg.de> *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
18 *******************************************************************************/
20 #ifndef TOOLTIPMANAGER_H
21 #define TOOLTIPMANAGER_H
28 class DolphinFileMetaDataWidget
;
34 * @brief Manages the tooltips for an item view.
36 * When hovering an item, a tooltip is shown after
37 * a short timeout. The tooltip is hidden again when the
38 * viewport is hovered or the item view has been left.
40 class ToolTipManager
: public QObject
45 explicit ToolTipManager(QWidget
* parent
);
46 ~ToolTipManager() override
;
49 * Triggers the showing of the tooltip for the item \p item
50 * where the item has the maximum boundaries of \p itemRect.
51 * The tooltip manager takes care that the tooltip is shown
52 * slightly delayed and with a proper \p transientParent.
54 void showToolTip(const KFileItem
& item
, const QRectF
& itemRect
, QWindow
*transientParent
);
57 * Hides the currently shown tooltip.
63 * Is emitted when the user clicks a tag or a link
64 * in the metadata widget.
66 void urlActivated(const QUrl
& url
);
69 void startContentRetrieval();
70 void setPreviewPix(const KFileItem
& item
, const QPixmap
& pix
);
72 void slotMetaDataRequestFinished();
76 /// Timeout from requesting a tooltip until the tooltip
78 QTimer
* m_showToolTipTimer
;
80 /// Timeout from requesting a tooltip until the retrieving of
81 /// the tooltip content like preview and meta data gets started.
82 QTimer
* m_contentRetrievalTimer
;
84 /// Transient parent of the tooltip, mandatory on Wayland.
85 QWindow
* m_transientParent
;
87 DolphinFileMetaDataWidget
* m_fileMetaDataWidget
;
88 QScopedPointer
<KToolTipWidget
> m_tooltipWidget
;
90 bool m_toolTipRequested
;
91 bool m_metaDataRequested
;
92 bool m_appliedWaitCursor
;