/usr/include/kfilemetadatawidget.h is in kdelibs5-dev 4:4.8.2-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | /*****************************************************************************
* Copyright (C) 2008 by Sebastian Trueg <trueg@kde.org> *
* Copyright (C) 2009-2010 by Peter Penz <peter.penz@gmx.at> *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Library General Public *
* License as published by the Free Software Foundation; either *
* version 2 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 *
* Library General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public License *
* along with this library; see the file COPYING.LIB. If not, write to *
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, *
* Boston, MA 02110-1301, USA. *
*****************************************************************************/
#ifndef KFILEMETADATAWIDGET_H
#define KFILEMETADATAWIDGET_H
#include <kio/kio_export.h>
#include <kfileitem.h>
#include <QList>
#include <QWidget>
class KUrl;
/**
* @brief Shows the meta data of one or more file items.
*
* Meta data like name, size, rating, comment, ... are
* shown as several rows containing a description and
* the meta data value. It is possible for the user
* to change specific meta data like rating, tags and
* comment. The changes are stored automatically by the
* meta data widget.
*
* @since 4.5
*/
class KIO_EXPORT KFileMetaDataWidget : public QWidget
{
Q_OBJECT
Q_PROPERTY(bool readOnly READ isReadOnly WRITE setReadOnly)
public:
explicit KFileMetaDataWidget(QWidget* parent = 0);
virtual ~KFileMetaDataWidget();
/**
* Sets the items for which the meta data should be shown.
* The signal metaDataRequestFinished() will be emitted,
* as soon as the meta data for the items has been received.
*/
void setItems(const KFileItemList& items);
KFileItemList items() const;
/**
* If set to true, data such as the comment, tag or rating cannot be
* changed by the user. Per default read-only is disabled.
*/
void setReadOnly(bool readOnly);
bool isReadOnly() const;
/** @see QWidget::sizeHint() */
virtual QSize sizeHint() const;
Q_SIGNALS:
/**
* Is emitted, if a meta data represents an URL that has
* been clicked by the user.
*/
void urlActivated(const KUrl& url);
/**
* Is emitted after the meta data has been received for the items
* set by KFileMetaDataWidget::setItems().
* @since 4.6
*/
void metaDataRequestFinished(const KFileItemList& items);
protected:
virtual bool event(QEvent* event);
private:
class Private;
Private* d;
Q_PRIVATE_SLOT(d, void slotLoadingFinished())
Q_PRIVATE_SLOT(d, void slotLinkActivated(QString))
Q_PRIVATE_SLOT(d, void slotDataChangeStarted())
Q_PRIVATE_SLOT(d, void slotDataChangeFinished())
};
#endif
|