Eneboo - Documentación para desarrolladores
|
The QFilePreview class provides file previewing in QFileDialog. Más...
#include <qfiledialog.h>
Métodos públicos | |
QFilePreview () | |
virtual void | previewUrl (const QUrl &url)=0 |
QFilePreview () | |
virtual void | previewUrl (const QUrl &url)=0 |
The QFilePreview class provides file previewing in QFileDialog.
This class is an abstract base class which is used to implement widgets that can display a preview of a file in a QFileDialog.
You must derive the preview widget from both QWidget and from this class. Then you must reimplement this class's previewUrl() function, which is called by the file dialog if the preview of a file (specified as a URL) should be shown.
See also QFileDialog::setPreviewMode(), QFileDialog::setContentsPreview(), QFileDialog::setInfoPreview(), QFileDialog::setInfoPreviewEnabled(), QFileDialog::setContentsPreviewEnabled().
For an example of a preview widget see qt/examples/qdir/qdir.cpp.
QFilePreview::QFilePreview | ( | ) |
Constructs the QFilePreview.
QFilePreview::QFilePreview | ( | ) |
void QFilePreview::previewUrl | ( | const QUrl & | url | ) | [pure virtual] |
This function is called by QFileDialog if a preview for the url should be shown. Reimplement this function to provide file previewing.
Implementado en FLPixmapView y PixmapView.
virtual void QFilePreview::previewUrl | ( | const QUrl & | url | ) | [pure virtual] |
Implementado en FLPixmapView y PixmapView.