Plugin for soft-proofing

This commit is contained in:
Jakub Melka
2020-12-25 19:01:08 +01:00
parent 05db7a1d30
commit 468a492e19
18 changed files with 881 additions and 9 deletions

View File

@ -23,6 +23,7 @@ namespace pdf
PDFPlugin::PDFPlugin(QObject* parent) :
QObject(parent),
m_widget(nullptr),
m_cmsManager(nullptr),
m_document(nullptr)
{
@ -33,6 +34,11 @@ void PDFPlugin::setWidget(PDFWidget* widget)
m_widget = widget;
}
void PDFPlugin::setCMSManager(PDFCMSManager* manager)
{
m_cmsManager = manager;
}
void PDFPlugin::setDocument(const PDFModifiedDocument& document)
{
m_document = document;