kdelibs/kio/kfile/kfilemetadatawidget.h
Ivailo Monev 7098b9d98e kio: remove unused and private KFileMetaDataWidget slots
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2023-07-30 04:46:07 +03:00

81 lines
2.9 KiB
C++

/*****************************************************************************
* 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, ... are shown as several
* rows containing a description and the meta data value.
*
* @since 4.5
*/
class KIO_EXPORT KFileMetaDataWidget : public QWidget
{
Q_OBJECT
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;
/** @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))
};
#endif