┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/tooltips/filemetadatatooltip.h
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2010-07-24 22:17:01 +0000
committerPeter Penz <[email protected]>2010-07-24 22:17:01 +0000
commit1cb5a202e4c861025d4eda5813848cdb7d5f350d (patch)
tree3f9696104b3c666f2a66c23c06b9427c759a012d /src/tooltips/filemetadatatooltip.h
parenta5cf21ff06aff44cde563eaceae3c6cef452ee48 (diff)
Sourcecode hierarchy cleanup: Move folders "tooltips" and "versioncontrol" into "views"
svn path=/trunk/KDE/kdebase/apps/; revision=1154151
Diffstat (limited to 'src/tooltips/filemetadatatooltip.h')
-rw-r--r--src/tooltips/filemetadatatooltip.h70
1 files changed, 0 insertions, 70 deletions
diff --git a/src/tooltips/filemetadatatooltip.h b/src/tooltips/filemetadatatooltip.h
deleted file mode 100644
index d5356cd23..000000000
--- a/src/tooltips/filemetadatatooltip.h
+++ /dev/null
@@ -1,70 +0,0 @@
-/***************************************************************************
- * Copyright (C) 2010 by Peter Penz <[email protected]> *
- * Copyright (C) 2008 by Fredrik Höglund <[email protected]> *
- * *
- * 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 *
- ***************************************************************************/
-
-#ifndef DOLPHINCONTROLLER_H
-#define DOLPHINCONTROLLER_H
-
-#include <QWidget>
-
-class KFileItemList;
-class KFileMetaDataWidget;
-class QLabel;
-
-/**
- * @brief Tooltip, that shows the meta information and a preview of one
- * or more files.
- */
-class FileMetaDataToolTip : public QWidget
-{
- Q_OBJECT
-
-public:
- FileMetaDataToolTip(QWidget* parent = 0);
- virtual ~FileMetaDataToolTip();
-
- void setPreview(const QPixmap& pixmap);
- const QPixmap* preview() const;
-
- void setName(const QString& name);
- QString name() const;
-
- void setItems(const KFileItemList& items);
- KFileItemList items() const;
-
-protected:
- virtual void paintEvent(QPaintEvent* event);
-
-private:
- /**
- * Helper method for FileMetaDataToolTip::paintEvent() to adjust the painter path \p path
- * by rounded corners.
- */
- static void arc(QPainterPath& path,
- qreal cx, qreal cy,
- qreal radius, qreal angle,
- qreal sweepLength);
-
-private:
- QLabel* m_preview;
- QLabel* m_name;
- KFileMetaDataWidget* m_fileMetaDataWidget;
-};
-
-#endif