]>
cloud.milkyroute.net Git - dolphin.git/blob - src/views/tooltips/filemetadatatooltip.h
1 /***************************************************************************
2 * Copyright (C) 2010 by Peter Penz <peter.penz19@gmail.com> *
3 * Copyright (C) 2008 by Fredrik Höglund <fredrik@kde.org> *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
19 ***************************************************************************/
21 #ifndef FILEMETADATATOOLTIP_H
22 #define FILEMETADATATOOLTIP_H
27 class KFileMetaDataWidget
;
31 * @brief Tooltip, that shows the meta information and a preview of one
34 class FileMetaDataToolTip
: public QWidget
39 FileMetaDataToolTip(QWidget
* parent
= 0);
40 virtual ~FileMetaDataToolTip();
42 void setPreview(const QPixmap
& pixmap
);
43 QPixmap
preview() const;
45 void setName(const QString
& name
);
49 * Sets the items for which the meta data should be shown.
50 * The signal metaDataRequestFinished() will be emitted,
51 * as soon as the meta data for the items has been received.
53 void setItems(const KFileItemList
& items
);
54 KFileItemList
items() const;
58 * Is emitted after the meta data has been received for the items
59 * set by FileMetaDataToolTip::setItems().
61 void metaDataRequestFinished(const KFileItemList
& items
);
64 virtual void paintEvent(QPaintEvent
* event
);
68 * Helper method for FileMetaDataToolTip::paintEvent() to adjust the painter path \p path
71 static void arc(QPainterPath
& path
,
73 qreal radius
, qreal angle
,
79 KFileMetaDataWidget
* m_fileMetaDataWidget
;