#include <prnmks.h>
Inheritance diagram for LoadPrintMarks:
Public Member Functions | |
virtual | ~LoadPrintMarks () |
Protected Member Functions | |
virtual BOOL | OnLoadDocument (Document *pKernelDoc) |
Decode all print marks in this loaded document. | |
Private Member Functions | |
CC_DECLARE_MEMDUMP (LoadPrintMarks) |
Definition at line 138 of file prnmks.h.
|
Definition at line 143 of file prnmks.h.
|
|
|
|
Decode all print marks in this loaded document.
Reimplemented from LoadDirect. Definition at line 1897 of file prnmks.cpp. 01898 { 01899 // Get a pointer to the marks manager 01900 PrintMarksMan* pPrintMarksMan = GetApplication()->GetMarksManager(); 01901 if (pPrintMarksMan==NULL) 01902 return FALSE; 01903 01904 // ok do the conversion of all colours. 01905 pPrintMarksMan->ConvertAllDocColours(pKernelDoc); 01906 01907 // ok we now have a loaded document, lets scan of the all the layers we need. 01908 // should we respond to an error from here? 01909 pPrintMarksMan->PMMCache.DecodeCachedLayers(pKernelDoc); 01910 01911 // All is well we hope. 01912 return TRUE; 01913 }
|