4 #ifndef EPUBEXPORTXHTML_H 5 #define EPUBEXPORTXHTML_H 10 #include <QDomElement> 15 class ScribusAPIDocumentItemImageWeb;
27 void initialize(QString language, QString title, QString styleUrl);
29 QDomDocument getQDomDocument() {
return xhtmlDocument; }
33 QDomDocument xhtmlDocument;
34 QDomElement xhtmlRoot;
35 QDomElement xhtmlBody;
37 QString getFixedXhtml(QString xhtml);
43 #endif // EPUBEXPORTXHTML_H void addContentText(QList< QDomElement > content)
Append the content one paragraph at a time.
Definition: epubexportXhtml.cpp:87
QString getString()
Get the Xhtml file as a string.
Definition: epubexportXhtml.cpp:124
void initialize(QString language, QString title, QString styleUrl)
create the xhtml document structure and give access to xhtmlBody where addText and addImage will add ...
Definition: epubexportXhtml.cpp:41
void addContentImage(ScribusAPIDocumentItemImageWeb image)
Definition: epubexportXhtml.cpp:99
collect the content of the Xhtml files that are to be added to the epub file.
Definition: epubexportXhtml.h:20