mirror of
https://github.com/JakubMelka/PDF4QT.git
synced 2025-06-05 21:59:17 +02:00
Widget painting
This commit is contained in:
@ -755,7 +755,7 @@ void PDFDocumentBuilder::updateAnnotationAppearanceStreams(PDFObjectReference an
|
||||
return;
|
||||
}
|
||||
|
||||
std::vector<PDFAppeareanceStreams::Key> keys = annotation->getDrawKeys();
|
||||
std::vector<PDFAppeareanceStreams::Key> keys = annotation->getDrawKeys(m_formManager);
|
||||
std::map<PDFAppeareanceStreams::Key, PDFObjectReference> appearanceStreams;
|
||||
|
||||
QRectF boundingRectangle;
|
||||
@ -1080,6 +1080,16 @@ std::vector<PDFObject> PDFDocumentBuilder::copyFrom(const std::vector<PDFObject>
|
||||
return result;
|
||||
}
|
||||
|
||||
const PDFFormManager* PDFDocumentBuilder::getFormManager() const
|
||||
{
|
||||
return m_formManager;
|
||||
}
|
||||
|
||||
void PDFDocumentBuilder::setFormManager(const PDFFormManager* formManager)
|
||||
{
|
||||
m_formManager = formManager;
|
||||
}
|
||||
|
||||
PDFContentStreamBuilder::PDFContentStreamBuilder(QSizeF size, CoordinateSystem coordinateSystem) :
|
||||
m_size(size),
|
||||
m_coordinateSystem(coordinateSystem),
|
||||
|
Reference in New Issue
Block a user