Fix forward navigation control on Linux.
[dorian] / model / opshandler.h
index b13c17d..1d961c8 100644 (file)
@@ -1,31 +1,16 @@
 #ifndef OPSHANDLER_H
 #define OPSHANDLER_H
 
-#include <QXmlContentHandler>
-
+#include "xmlhandler.h"
 #include "book.h"
 #include "trace.h"
 
 /** XML content handler for OPS format. */
-class OpsHandler: public QXmlContentHandler
+class OpsHandler: public XmlHandler
 {
 public:
-    OpsHandler(Book &b): book(b), partCount(0) {}
-    bool endDocument() {return true;}
-    bool endPrefixMapping(const QString &) {return true;}
-    QString errorString() const {return QString();}
-    bool ignorableWhitespace(const QString &) {return true;}
-    bool processingInstruction(const QString &, const QString &) {
-        return true;
-    }
-    void setDocumentLocator(QXmlLocator *) {}
-    bool skippedEntity(const QString &) {return true;}
-    bool startDocument() {return true;}
-    bool startPrefixMapping(const QString &, const QString &) {return true;}
-
-    bool characters(const QString &ch) {
-        currentText += ch;
-        return true;
+    OpsHandler(Book &b): book(b), partCount(0) {
+        book.creators.clear();
     }
 
     bool endElement(const QString &namespaceUri, const QString &name,
@@ -52,23 +37,19 @@ public:
 
     bool startElement(const QString &namespaceUri, const QString &name,
                       const QString &qName, const QXmlAttributes &attrs) {
-        Trace t("OpsHandler::startElement " + name);
         (void)namespaceUri;
         (void)qName;
         currentText = "";
 
         if (name == "item") {
             Book::ContentItem item;
-            item.href = book.rootPath() + "/" + attrs.value("href");
+            item.href = attrs.value("href");
             item.name = QString("Part %1").arg(partCount + 1);
             item.size = 0;
             QString key = attrs.value("id");
             book.content[key] = item;
             partCount++;
-            qDebug() << "name:"<< item.name << "\nhref:" << attrs.value("href")
-                    << "id:" << key;
         } else if (name == "itemref") {
-            qDebug() << "id:" << attrs.value("idref");
             book.parts.append(attrs.value("idref"));
         }
         return true;
@@ -76,7 +57,6 @@ public:
 
 private:
     Book &book;
-    QString currentText;
     int partCount;
 };