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
26 #include <kfileitem.h>
29 class DolphinSortFilterProxyModel
;
30 class QAbstractItemView
;
36 * @brief Manages the tooltips for an item view.
38 * When hovering an item, a tooltip is shown after
39 * a short timeout. The tooltip is hidden again when the
40 * viewport is hovered or the item view has been left.
42 class ToolTipManager
: public QObject
47 explicit ToolTipManager(QAbstractItemView
* parent
,
48 DolphinSortFilterProxyModel
* model
);
49 virtual ~ToolTipManager();
53 * Hides the currently shown tooltip. Invoking this method is
54 * only needed when the tooltip should be hidden although
60 virtual bool eventFilter(QObject
* watched
, QEvent
* event
);
63 void requestToolTip(const QModelIndex
& index
);
65 void prepareToolTip();
66 void startPreviewJob();
67 void setPreviewPix(const KFileItem
& item
, const QPixmap
& pix
);
68 void previewFailed(const KFileItem
& item
);
71 void showToolTip(KToolTipItem
* tip
);
73 QAbstractItemView
* m_view
;
74 DolphinModel
* m_dolphinModel
;
75 DolphinSortFilterProxyModel
* m_proxyModel
;
78 QTimer
* m_previewTimer
;
79 QTimer
* m_waitOnPreviewTimer
;
83 bool m_generatingPreview
;
86 KToolTipItem
* m_emptyRenderedKToolTipItem
;