/usr/include/KF5/KIOFileWidgets/kimagefilepreview.h is in libkf5kio-dev 5.44.0-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 | /*
*
* This file is part of the KDE project.
* Copyright (C) 2001 Martin R. Jones <mjones@kde.org>
* 2001 Carsten Pfeiffer <pfeiffer@kde.org>
* 2008 Rafael Fernández López <ereslibre@kde.org>
*
* You can Freely distribute this program under the GNU Library General Public
* License. See the file "COPYING" for the exact licensing terms.
*/
#ifndef KIMAGEFILEPREVIEW_H
#define KIMAGEFILEPREVIEW_H
#include <QPixmap>
#include <QUrl>
#include <kpreviewwidgetbase.h>
class KFileItem;
class KJob;
namespace KIO
{
class PreviewJob;
}
/**
* @class KImageFilePreview kimagefilepreview.h <KImageFilePreview>
*
* Image preview widget for the file dialog.
*/
class KIOFILEWIDGETS_EXPORT KImageFilePreview : public KPreviewWidgetBase
{
Q_OBJECT
public:
/**
* Creates a new image file preview.
*
* @param parent The parent widget.
*/
explicit KImageFilePreview(QWidget *parent = nullptr);
/**
* Destroys the image file preview.
*/
~KImageFilePreview();
/**
* Returns the size hint for this widget.
*/
QSize sizeHint() const Q_DECL_OVERRIDE;
public Q_SLOTS:
/**
* Shows a preview for the given @p url.
*/
void showPreview(const QUrl &url) Q_DECL_OVERRIDE;
/**
* Clears the preview.
*/
void clearPreview() Q_DECL_OVERRIDE;
protected Q_SLOTS:
void showPreview();
void showPreview(const QUrl &url, bool force);
virtual void gotPreview(const KFileItem &, const QPixmap &);
protected:
void resizeEvent(QResizeEvent *event) Q_DECL_OVERRIDE;
virtual KIO::PreviewJob *createJob(const QUrl &url, int width, int height);
private:
class KImageFilePreviewPrivate;
KImageFilePreviewPrivate *const d;
Q_DISABLE_COPY(KImageFilePreview)
Q_PRIVATE_SLOT(d, void _k_slotResult(KJob *))
Q_PRIVATE_SLOT(d, void _k_slotFailed(const KFileItem &))
Q_PRIVATE_SLOT(d, void _k_slotStepAnimation(int frame))
Q_PRIVATE_SLOT(d, void _k_slotFinished())
};
#endif // KIMAGEFILEPREVIEW_H
|