Scribus
Open source desktop publishing at your fingertips
scimgdataloader_pgf.h
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_PGF_H
8 #define SCIMGDATALOADER_PGF_H
9 
10 #include "scimgdataloader.h"
11 
13 {
14 protected:
15 
16  void initSupportedFormatList();
17 
18 public:
19  ScImgDataLoader_PGF(void);
20 
21  virtual bool preloadAlphaChannel(const QString& fn, int page, int res, bool& hasAlpha);
22  virtual void loadEmbeddedProfile(const QString& fn, int page = 0);
23  virtual bool loadPicture(const QString& fn, int page, int res, bool thumbnail);
24 };
25 
26 #endif
Definition: scimgdataloader.h:19
Definition: scimgdataloader_pgf.h:12