123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384 |
- #include <QtGui>
- #include <QTextEdit>
- #include <QtDebug>
- #include "fb2read.h"
- static QString Value(const QXmlAttributes &attributes, const QString &name)
- {
- int count = attributes.count();
- for (int i = 0; i < count; i++ ) {
- if (attributes.localName(i).compare(name, Qt::CaseInsensitive) == 0) {
- return attributes.value(i);
- }
- }
- return QString();
- }
- //---------------------------------------------------------------------------
- // Fb2Handler::RootHandler
- //---------------------------------------------------------------------------
- Fb2Handler::RootHandler::KeywordHash::KeywordHash()
- {
- insert("stylesheet", Style);
- insert("description", Descr);
- insert("body", Body);
- insert("binary", Binary);
- }
- Fb2Handler::RootHandler::Keyword Fb2Handler::RootHandler::toKeyword(const QString &name)
- {
- static KeywordHash map;
- KeywordHash::const_iterator i = map.find(name);
- return i == map.end() ? None : i.value();
- }
- bool Fb2Handler::RootHandler::doStart(const QString &name, const QXmlAttributes &attributes)
- {
- switch (toKeyword(name)) {
- case Descr : return m_owner.setHandler(new DescrHandler(this));
- case Body : return m_owner.setHandler(new BodyHandler(this));
- case Binary : return m_owner.setHandler(new BinaryHandler(this, attributes));
- }
- qCritical() << QObject::tr("Unknown XML tag: ") << name;
- return false;
- }
- //---------------------------------------------------------------------------
- // Fb2Handler::DescrHandler
- //---------------------------------------------------------------------------
- bool Fb2Handler::DescrHandler::doStart(const QString &name, const QXmlAttributes &attributes)
- {
- Q_UNUSED(name);
- Q_UNUSED(attributes);
- return true;
- }
- bool Fb2Handler::DescrHandler::doText(const QString &text)
- {
- Q_UNUSED(text);
- return true;
- }
- bool Fb2Handler::DescrHandler::doEnd(const QString &name, bool & exit)
- {
- exit = name == "description";
- return true;
- }
- //---------------------------------------------------------------------------
- // Fb2Handler::BodyHandler
- //---------------------------------------------------------------------------
- Fb2Handler::BodyHandler::KeywordHash::KeywordHash()
- {
- insert("body", Body);
- insert("image", Image);
- insert("p", Paragraph);
- insert("section", Section);
- insert("title", Title);
- }
- Fb2Handler::BodyHandler::Keyword Fb2Handler::BodyHandler::toKeyword(const QString &name)
- {
- static KeywordHash map;
- KeywordHash::const_iterator i = map.find(name);
- return i == map.end() ? None : i.value();
- }
- bool Fb2Handler::BodyHandler::doStart(const QString &name, const QXmlAttributes &attributes)
- {
- switch (toKeyword(name)) {
- case Image: {
- QString image = Value(attributes, "href");
- while (image.left(1) == "#") image.remove(0, 1);
- if (!image.isEmpty()) m_cursor.insertImage(image);
- } break;
- case Paragraph: {
- m_cursor.insertBlock();
- } break;
- case Section: {
- m_frames << m_cursor.currentFrame();
- QTextFrameFormat format;
- format.setBorder(1);
- format.setPadding(8);
- m_cursor.insertFrame(format);
- } break;
- }
- return true;
- }
- bool Fb2Handler::BodyHandler::doText(const QString &text)
- {
- m_cursor.insertText(text);
- return true;
- }
- bool Fb2Handler::BodyHandler::doEnd(const QString &name, bool & exit)
- {
- switch (toKeyword(name)) {
- case Body: {
- exit = true;
- }; break;
- case Section: {
- if (!m_frames.isEmpty()) {
- m_cursor.setPosition(m_frames.last()->lastPosition());
- m_frames.removeLast();
- }
- }; break;
- }
- return true;
- }
- //---------------------------------------------------------------------------
- // Fb2Handler::BinaryHandler
- //---------------------------------------------------------------------------
- Fb2Handler::BinaryHandler::BinaryHandler(ContentHandler * parent, const QXmlAttributes &attributes)
- : ContentHandler(parent), m_name(Value(attributes, "id"))
- {
- }
- bool Fb2Handler::BinaryHandler::doStart(const QString &name, const QXmlAttributes &attributes)
- {
- Q_UNUSED(name);
- Q_UNUSED(attributes);
- return false;
- }
- bool Fb2Handler::BinaryHandler::doText(const QString &text)
- {
- m_text += text;
- return true;
- }
- bool Fb2Handler::BinaryHandler::doEnd(const QString &name, bool & exit)
- {
- Q_UNUSED(name);
- QByteArray in; in.append(m_text);
- QImage img = QImage::fromData(QByteArray::fromBase64(in));
- if (!m_name.isEmpty()) m_owner.getDocument().addResource(QTextDocument::ImageResource, QUrl(m_name), img);
- exit = true;
- return true;
- }
- //---------------------------------------------------------------------------
- // Fb2Handler
- //---------------------------------------------------------------------------
- Fb2Handler::Fb2Handler(QTextDocument & document)
- : m_document(document)
- , m_cursor(&document)
- , m_handler(NULL)
- {
- m_cursor.beginEditBlock();
- document.clear();
- m_cursor.movePosition(QTextCursor::Start);
- }
- Fb2Handler::~Fb2Handler()
- {
- while (m_handler) m_handler = doDelete(m_handler);
- m_cursor.endEditBlock();
- }
- bool Fb2Handler::startElement(const QString & namespaceURI, const QString & localName, const QString &qName, const QXmlAttributes &attributes)
- {
- Q_UNUSED(namespaceURI);
- Q_UNUSED(localName);
- const QString name = qName.toLower();
- if (m_handler) return m_handler->doStart(name, attributes);
- if (name == "fictionbook") {
- m_handler = new RootHandler(*this);
- return true;
- } else {
- m_error = QObject::tr("The file is not an FB2 file.");
- return false;
- }
- }
- bool Fb2Handler::characters(const QString &str)
- {
- return m_handler && m_handler->doText(str);
- }
- Fb2Handler::ContentHandler * Fb2Handler::doDelete(Fb2Handler::ContentHandler * handler)
- {
- if (!handler) return NULL;
- ContentHandler * parent = handler->getParent();
- delete handler;
- return parent;
- }
- bool Fb2Handler::endElement(const QString & namespaceURI, const QString & localName, const QString &qName)
- {
- Q_UNUSED(namespaceURI);
- Q_UNUSED(localName);
- bool exit = false;
- bool ok = m_handler && m_handler->doEnd(qName.toLower(), exit);
- if (exit) m_handler = doDelete(m_handler);
- return ok;
- }
- bool Fb2Handler::fatalError(const QXmlParseException &exception)
- {
- qCritical() << QObject::tr("Parse error at line %1, column %2:\n%3")
- .arg(exception.lineNumber())
- .arg(exception.columnNumber())
- .arg(exception.message());
- return false;
- }
- QString Fb2Handler::errorString() const
- {
- return m_error;
- }
- /*
- QMessageBox::information(
- m_editor->window(),
- QObject::tr("fb2edit"),
- QObject::tr("%1=%2\n%1=%3")
- .arg(attributes.localName(i))
- .arg(attributes.value(i))
- .arg(image)
- );
- //! [2]
- QTextCursor cursor(editor->textCursor());
- cursor.movePosition(QTextCursor::Start);
- //! [2] //! [3]
- QTextFrame *topFrame = cursor.currentFrame();
- QTextFrameFormat topFrameFormat = topFrame->frameFormat();
- topFrameFormat.setPadding(16);
- topFrame->setFrameFormat(topFrameFormat);
- QTextCharFormat textFormat;
- QTextCharFormat boldFormat;
- boldFormat.setFontWeight(QFont::Bold);
- QTextFrameFormat referenceFrameFormat;
- referenceFrameFormat.setBorder(1);
- referenceFrameFormat.setPadding(8);
- referenceFrameFormat.setPosition(QTextFrameFormat::FloatRight);
- referenceFrameFormat.setWidth(QTextLength(QTextLength::PercentageLength, 40));
- cursor.insertFrame(referenceFrameFormat);
- cursor.insertText("A company", boldFormat);
- cursor.insertBlock();
- cursor.insertText("321 City Street");
- cursor.insertBlock();
- cursor.insertText("Industry Park");
- cursor.insertBlock();
- cursor.insertText("Another country");
- //! [3]
- //! [4]
- cursor.setPosition(topFrame->lastPosition());
- cursor.insertText(name, textFormat);
- QString line;
- foreach (line, address.split("\n")) {
- cursor.insertBlock();
- cursor.insertText(line);
- }
- //! [4] //! [5]
- cursor.insertBlock();
- cursor.insertBlock();
- QDate date = QDate::currentDate();
- cursor.insertText(tr("Date: %1").arg(date.toString("d MMMM yyyy")),
- textFormat);
- cursor.insertBlock();
- QTextFrameFormat bodyFrameFormat;
- bodyFrameFormat.setWidth(QTextLength(QTextLength::PercentageLength, 100));
- cursor.insertFrame(bodyFrameFormat);
- //! [5]
- //! [6]
- cursor.insertText(tr("I would like to place an order for the following "
- "items:"), textFormat);
- cursor.insertBlock();
- //! [6] //! [7]
- cursor.insertBlock();
- //! [7]
- //! [8]
- QTextTableFormat orderTableFormat;
- orderTableFormat.setAlignment(Qt::AlignHCenter);
- QTextTable *orderTable = cursor.insertTable(1, 2, orderTableFormat);
- QTextFrameFormat orderFrameFormat = cursor.currentFrame()->frameFormat();
- orderFrameFormat.setBorder(1);
- cursor.currentFrame()->setFrameFormat(orderFrameFormat);
- //! [8]
- //! [9]
- cursor = orderTable->cellAt(0, 0).firstCursorPosition();
- cursor.insertText(tr("Product"), boldFormat);
- cursor = orderTable->cellAt(0, 1).firstCursorPosition();
- cursor.insertText(tr("Quantity"), boldFormat);
- //! [9]
- //! [10]
- for (int i = 0; i < orderItems.count(); ++i) {
- QPair<QString,int> item = orderItems[i];
- int row = orderTable->rows();
- orderTable->insertRows(row, 1);
- cursor = orderTable->cellAt(row, 0).firstCursorPosition();
- cursor.insertText(item.first, textFormat);
- cursor = orderTable->cellAt(row, 1).firstCursorPosition();
- cursor.insertText(QString("%1").arg(item.second), textFormat);
- }
- //! [10]
- //! [11]
- cursor.setPosition(topFrame->lastPosition());
- cursor.insertBlock();
- //! [11] //! [12]
- cursor.insertText(tr("Please update my records to take account of the "
- "following privacy information:"));
- cursor.insertBlock();
- //! [12]
- //! [13]
- QTextTable *offersTable = cursor.insertTable(2, 2);
- cursor = offersTable->cellAt(0, 1).firstCursorPosition();
- cursor.insertText(tr("I want to receive more information about your "
- "company's products and special offers."), textFormat);
- cursor = offersTable->cellAt(1, 1).firstCursorPosition();
- cursor.insertText(tr("I do not want to receive any promotional information "
- "from your company."), textFormat);
- if (sendOffers)
- cursor = offersTable->cellAt(0, 0).firstCursorPosition();
- else
- cursor = offersTable->cellAt(1, 0).firstCursorPosition();
- cursor.insertText("X", boldFormat);
- //! [13]
- //! [14]
- cursor.setPosition(topFrame->lastPosition());
- cursor.insertBlock();
- cursor.insertText(tr("Sincerely,"), textFormat);
- cursor.insertBlock();
- cursor.insertBlock();
- cursor.insertBlock();
- cursor.insertText(name);
- printAction->setEnabled(true);
- }
- //! [14]
- */
|