22 lines
466 B
C++
22 lines
466 B
C++
#include "previewresultpdf.h"
|
|
|
|
PreviewResultPdf::PreviewResultPdf(const PreviewResult &o)
|
|
{
|
|
this->documentPath = o.getDocumentPath();
|
|
this->page = o.getPage();
|
|
}
|
|
|
|
QWidget *PreviewResultPdf::createPreviewWidget()
|
|
{
|
|
ClickLabel *label = new ClickLabel();
|
|
label->setPixmap(QPixmap::fromImage(previewImage));
|
|
label->setToolTip(getDocumentPath());
|
|
return label;
|
|
}
|
|
|
|
bool PreviewResultPdf::hasPreview()
|
|
{
|
|
bool result = !this->previewImage.isNull();
|
|
return result;
|
|
}
|