Scribus
Open source desktop publishing at your fingertips
htmlim.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 /***************************************************************************
8  * Copyright (C) 2004 by Riku Leino *
9  * tsoots@gmail.com *
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., *
24  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
25  ***************************************************************************/
26 
27 #ifndef HTMLIM_H
28 #define HTMLIM_H
29 
30 #include "gtwriter.h"
31 
32 #include "scconfig.h"
33 #include "pluginapi.h"
34 
35 extern "C" PLUGIN_API void GetText(QString filename, QString encoding, bool textOnly, gtWriter *writer);
36 
37 extern "C" PLUGIN_API QString FileFormatName();
38 
39 extern "C" PLUGIN_API QStringList FileExtensions();
40 
41 #include "htmlreader.h"
42 
43 class HTMLIm
44 {
45 public:
46  HTMLIm(QString fname, QString encoding, gtWriter *w, bool textOnly);
47  ~HTMLIm();
48 private:
49  QString encoding;
50  QString filename;
51  gtWriter *writer;
52  gtParagraphStyle *pstyle;
53 // int defaultFontSize;
54  void importText(bool textOnly);
55 };
56 
57 #endif // HTMLIM_H
Definition: gtwriter.h:38
Definition: gtparagraphstyle.h:51
Definition: htmlim.h:43