home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / include / scribus-ng / scimgdataloader_pdf.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-05-25  |  835 b   |  28 lines

  1. /*
  2. For general Scribus (>=1.3.2) copyright and licensing information please refer
  3. to the COPYING file provided with the program. Following this notice may exist
  4. a copyright and/or license notice that predates the release of Scribus 1.3.2
  5. for which a new license (GPL+exception) is in place.
  6. */
  7. #ifndef SCIMGDATALOADER_PDF_H
  8. #define SCIMGDATALOADER_PDF_H
  9.  
  10. #include "scimgdataloader.h"
  11.  
  12. class ScImgDataLoader_PDF : public ScImgDataLoader
  13. {
  14. protected:
  15.  
  16.     void initSupportedFormatList();
  17.  
  18. public:
  19.     ScImgDataLoader_PDF(void);
  20.  
  21. //    virtual void preloadAlphaChannel(const QString& fn, int res);
  22.     virtual bool preloadAlphaChannel(const QString& fn, int page, int res, bool& hasAlpha);
  23.     virtual void loadEmbeddedProfile(const QString& fn, int page = 0);
  24.     virtual bool loadPicture(const QString& fn, int page, int res, bool thumbnail);
  25. };
  26.  
  27. #endif
  28.