Rev 10136 | Rev 10181 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
10124 | cbradney | 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 | |||
8 | //Added by Craig Bradney in July 2007 |
||
9 | //To be used for basic format detection and checking |
||
10 | //One central place for storing all our extensions we support, etc |
||
11 | |||
12 | #ifndef FORMAT_UTILS_H |
||
13 | #define FORMAT_UTILS_H |
||
14 | |||
15 | #include <QString> |
||
10137 | jghali | 16 | #include "scribusapi.h" |
10124 | cbradney | 17 | |
10137 | jghali | 18 | bool SCRIBUS_API extensionIndicatesPDF(const QString &ext); |
19 | bool SCRIBUS_API extensionIndicatesEPS(const QString &ext); |
||
20 | bool SCRIBUS_API extensionIndicatesEPSorPS(const QString &ext); |
||
21 | bool SCRIBUS_API extensionIndicatesTIFF(const QString &ext); |
||
22 | bool SCRIBUS_API extensionIndicatesPSD(const QString &ext); |
||
23 | bool SCRIBUS_API extensionIndicatesJPEG(const QString &ext); |
||
10124 | cbradney | 24 | |
25 | #endif |