mirror of
https://github.com/JakubMelka/PDF4QT.git
synced 2025-06-05 21:59:17 +02:00
Issue #118: Move compiler and draw space controller
This commit is contained in:
@ -17,7 +17,6 @@
|
||||
|
||||
#include "pdfform.h"
|
||||
#include "pdfdocument.h"
|
||||
#include "pdfdrawspacecontroller.h"
|
||||
#include "pdfdocumentbuilder.h"
|
||||
#include "pdfpainterutils.h"
|
||||
#include "pdfdbgheap.h"
|
||||
@ -912,6 +911,19 @@ bool PDFFormManager::isEditorDrawEnabled(const PDFObjectReference& reference) co
|
||||
return false;
|
||||
}
|
||||
|
||||
bool PDFFormManager::isEditorDrawEnabled(const PDFFormField* formField) const
|
||||
{
|
||||
Q_UNUSED(formField);
|
||||
return false;
|
||||
}
|
||||
|
||||
void PDFFormManager::drawFormField(const PDFFormField* formField, AnnotationDrawParameters& parameters, bool edit) const
|
||||
{
|
||||
Q_UNUSED(formField);
|
||||
Q_UNUSED(parameters);
|
||||
Q_UNUSED(edit);
|
||||
}
|
||||
|
||||
void PDFFormManager::updateFieldValues()
|
||||
{
|
||||
if (m_document)
|
||||
|
Reference in New Issue
Block a user