![]() |
wxIScan
|
Image handler to handle PDF files in a way e. g. the BMP or JPEG file handler does it. More...
#include <wxpoppler.h>
Public Member Functions | |
wxPDFHandler () | |
Standard constructor. | |
Private Attributes | |
int | m_nPageCount |
Number of pages contained in the PDF file. |
Image handler to handle PDF files in a way e. g. the BMP or JPEG file handler does it.
...
NOTE:
Only opening of PDF files is implemented, yet. But it is possible to implement saving, too, using wxPdfDocument.
Definition at line 176 of file wxpoppler.h.
wxPDFHandler::wxPDFHandler | ( | ) | [inline] |
Standard constructor.
Definition at line 180 of file wxpoppler.h.
References wxBITMAP_TYPE_PDF.
: m_nPageCount( 0 ) { m_name= wxT( "wxPDFHandler" ); m_extension= wxT( "pdf" ); m_type= (wxBitmapType)wxBITMAP_TYPE_PDF; m_mime= wxT( "application/pdf" ); }
int wxPDFHandler::m_nPageCount [private] |
Number of pages contained in the PDF file.
Definition at line 241 of file wxpoppler.h.