You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
1.8 KiB
78 lines
1.8 KiB
/*
|
|
*
|
|
* This file is part of the KDE project.
|
|
* Copyright (C) 2001 Martin R. Jones <mjones@kde.org>
|
|
* 2001 Carsten Pfeiffer <pfeiffer@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.h>
|
|
|
|
#include <kurl.h>
|
|
#include <kpreviewwidgetbase.h>
|
|
|
|
class QCheckBox;
|
|
class QPushButton;
|
|
class QLabel;
|
|
class QTimer;
|
|
|
|
class KFileDialog;
|
|
class KFileItem;
|
|
namespace KIO { class Job; class PreviewJob; }
|
|
|
|
/**
|
|
* Image preview widget for the file dialog.
|
|
*/
|
|
class KIO_EXPORT KImageFilePreview : public KPreviewWidgetBase
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
KImageFilePreview(QWidget *parent);
|
|
~KImageFilePreview();
|
|
|
|
virtual QSize sizeHint() const;
|
|
|
|
public slots:
|
|
virtual void showPreview(const KURL &url);
|
|
virtual void clearPreview();
|
|
|
|
protected slots:
|
|
void showPreview();
|
|
void showPreview( const KURL& url, bool force );
|
|
|
|
void toggleAuto(bool);
|
|
virtual void gotPreview( const KFileItem*, const QPixmap& );
|
|
|
|
protected:
|
|
virtual void resizeEvent(QResizeEvent *e);
|
|
virtual KIO::PreviewJob * createJob( const KURL& url,
|
|
int w, int h );
|
|
|
|
private slots:
|
|
void slotResult( KIO::Job * );
|
|
virtual void slotFailed( const KFileItem* );
|
|
|
|
private:
|
|
bool autoMode;
|
|
KURL currentURL;
|
|
QTimer *timer;
|
|
QLabel *imageLabel;
|
|
QLabel *infoLabel;
|
|
QCheckBox *autoPreview;
|
|
QPushButton *previewButton;
|
|
KIO::PreviewJob *m_job;
|
|
protected:
|
|
virtual void virtual_hook( int id, void* data );
|
|
private:
|
|
class KImageFilePreviewPrivate;
|
|
KImageFilePreviewPrivate *d;
|
|
};
|
|
|
|
#endif // KIMAGEFILEPREVIEW_H
|