/usr/include/nepomuk2/filemetadatawidget.h is in libnepomukwidgets-dev 4:4.13.1-1.
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 | /*
<one line to give the library's name and an idea of what it does.>
Copyright (C) 2012 Vishesh Handa <me@vhanda.in>
Adapated from KFileMetadataWidget
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 Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef _NEPOMUK2_FILE_METADATAWIDGET_H
#define _NEPOMUK2_FILE_METADATAWIDGET_H
#include <QWidget>
#include <KFileItem>
#include <KUrl>
#include "nepomukwidgets_export.h"
namespace Nepomuk2 {
class NEPOMUKWIDGETS_EXPORT FileMetaDataWidget : public QWidget
{
Q_OBJECT
Q_PROPERTY(bool readOnly READ isReadOnly WRITE setReadOnly)
public:
explicit FileMetaDataWidget(QWidget* parent = 0);
virtual ~FileMetaDataWidget();
/**
* 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);
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 // _NEPOMUK2_FILE_METADATAWIDGET_H
|