Rev 14481 | Rev 19590 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
14472 | fschmid | 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 | * Copyright (C) 2009 by Jain Basil Aliyas * |
||
9 | * mail@jainbasil.net * |
||
10 | * * |
||
11 | * This program is free software; you can redistribute it and/or modify * |
||
12 | * it under the terms of the GNU General Public License as published by * |
||
13 | * the Free Software Foundation; either version 2 of the License, or * |
||
14 | * (at your option) any later version. * |
||
15 | * * |
||
16 | * This program is distributed in the hope that it will be useful, * |
||
17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * |
||
18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * |
||
19 | * GNU General Public License for more details. * |
||
20 | * * |
||
21 | * You should have received a copy of the GNU General Public License * |
||
22 | * along with this program; if not, write to the * |
||
23 | * Free Software Foundation, Inc., * |
||
18122 | mrdocs | 24 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * |
14472 | fschmid | 25 | ***************************************************************************/ |
26 | |||
27 | #ifndef XTGIM_H |
||
28 | #define XTGIM_H |
||
29 | |||
30 | #include "pluginapi.h" |
||
31 | #include "pageitem.h" |
||
14481 | jghali | 32 | |
33 | #include <QByteArray> |
||
34 | #include <QList> |
||
14472 | fschmid | 35 | #include <QString> |
14481 | jghali | 36 | #include "textwriter.h" |
14472 | fschmid | 37 | |
14481 | jghali | 38 | class StyleManager; |
14472 | fschmid | 39 | |
40 | extern "C" PLUGIN_API void GetText2(QString filename, QString encoding, bool textOnly, PageItem *textItem); |
||
41 | extern "C" PLUGIN_API QString FileFormatName(); |
||
42 | extern "C" PLUGIN_API QStringList FileExtensions(); |
||
43 | |||
14481 | jghali | 44 | class XtgIm |
14472 | fschmid | 45 | { |
46 | private: |
||
47 | QString encoding; |
||
48 | QString filename; |
||
49 | QString in_Buffer; |
||
50 | QByteArray buffer; |
||
51 | PageItem *textFrame; |
||
52 | TextWriter *writer; |
||
53 | void loadFiletoArray(); |
||
54 | QString toUnicode(const QByteArray& rawText); |
||
55 | StyleManager *StyleMan; |
||
56 | public: |
||
57 | XtgIm(QString fileName,QString enc,PageItem *textItem,bool textOnly); |
||
58 | ~XtgIm(); |
||
59 | }; |
||
60 | #endif /* XTGIM_H */ |