1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-05 02:39:23 +02:00

do not skip text from ePub cover files

This commit is contained in:
Nikolay Pultsin 2013-08-10 03:06:10 +02:00
parent c9505c21f9
commit 1feb61a896
4 changed files with 61 additions and 40 deletions

View file

@ -65,6 +65,7 @@ public:
bool readFile(const ZLFile &file, const std::string &referenceName);
const std::string &fileAlias(const std::string &fileName) const;
const std::string normalizedReference(const std::string &reference) const;
void setMarkFirstImageAsCover();
private:
XHTMLTagAction *getAction(const std::string &tag);
@ -104,6 +105,7 @@ private:
READ_BODY
} myReadState;
int myBodyCounter;
bool myMarkNextImageAsCover;
friend class XHTMLTagAction;
friend class XHTMLTagStyleAction;
@ -113,6 +115,7 @@ private:
friend class XHTMLTagParagraphAction;
friend class XHTMLTagBodyAction;
friend class XHTMLTagRestartParagraphAction;
friend class XHTMLTagImageAction;
};
#endif /* __XHTMLREADER_H__ */