X-Git-Url: http://vcs.maemo.org/git/?a=blobdiff_plain;f=bookview.cpp;h=cd6ba22b0f0102e24d81b01559601ebf4df16238;hb=f43cb8ff468e9d6ea889cf9a7b7f7abf2523208d;hp=12626e8587a405c8fd14b0ebeca79eba874cdb96;hpb=3cbc168158c28a1ae9c30bdf2dc16504c9dab16c;p=dorian diff --git a/bookview.cpp b/bookview.cpp index 12626e8..cd6ba22 100644 --- a/bookview.cpp +++ b/bookview.cpp @@ -3,35 +3,50 @@ #include #include #include +#include + +#if defined(Q_WS_MAEMO_5) +# include +#elif defined(Q_OS_SYMBIAN) +# include "flickcharm.h" +#endif #include "book.h" #include "bookview.h" #include "library.h" -#include "selectionsuppressor.h" #include "settings.h" - -#ifdef Q_WS_MAC -# define ICON_PREFIX ":/icons/mac/" -#else -# define ICON_PREFIX ":/icons/" -#endif +#include "trace.h" +#include "progress.h" BookView::BookView(QWidget *parent): - QWebView(parent), contentIndex(0), mBook(0), restore(true), restorePos(0), - loadFinished(false) + QWebView(parent), contentIndex(-1), mBook(0), + restorePositionAfterLoad(false), positionAfterLoad(0), loaded(false), + contentsHeight(0) { + Trace t("BookView::BookView"); settings()->setAttribute(QWebSettings::AutoLoadImages, true); settings()->setAttribute(QWebSettings::JavascriptEnabled, true); + settings()->setAttribute(QWebSettings::JavaEnabled, false); settings()->setAttribute(QWebSettings::PluginsEnabled, false); + settings()->setAttribute(QWebSettings::PrivateBrowsingEnabled, true); + settings()->setAttribute(QWebSettings::JavascriptCanOpenWindows, false); + settings()->setAttribute(QWebSettings::JavascriptCanAccessClipboard, false); + settings()->setAttribute(QWebSettings::OfflineStorageDatabaseEnabled, false); + settings()->setAttribute(QWebSettings::OfflineWebApplicationCacheEnabled, + false); + settings()->setAttribute(QWebSettings::LocalStorageEnabled, false); settings()->setAttribute(QWebSettings::ZoomTextOnly, true); - settings()->setAttribute(QWebSettings::LocalContentCanAccessRemoteUrls, false); + settings()->setAttribute(QWebSettings::LocalContentCanAccessRemoteUrls, + false); + settings()->setDefaultTextEncoding("utf-8"); page()->setContentEditable(false); -#if defined(Q_WS_MAEMO_5) - (void)new SelectionSuppressor(this); +#if defined(Q_WS_MAEMO_5) || defined(Q_OS_SYMBIAN) + // Suppress unwanted text selections on Maemo and Symbian + installEventFilter(this); #endif QWebFrame *frame = page()->mainFrame(); -#if defined(Q_WS_MAEMO_5) +#if defined(Q_WS_MAEMO_5) || defined(Q_OS_SYMBIAN) frame->setScrollBarPolicy(Qt::Vertical, Qt::ScrollBarAlwaysOff); #endif frame->setScrollBarPolicy(Qt::Horizontal, Qt::ScrollBarAlwaysOff); @@ -39,6 +54,10 @@ BookView::BookView(QWidget *parent): bookmarkImage = QImage(":/icons/bookmark.png"); connect(this, SIGNAL(loadFinished(bool)), this, SLOT(onLoadFinished(bool))); + connect(frame, SIGNAL(javaScriptWindowObjectCleared()), + this, SLOT(addJavaScriptObjects())); + connect(frame, SIGNAL(contentsSizeChanged(const QSize &)), + this, SLOT(onContentsSizeChanged(const QSize &))); connect(Settings::instance(), SIGNAL(valueChanged(const QString &)), this, SLOT(onSettingsChanged(const QString &))); Settings *s = Settings::instance(); @@ -55,46 +74,67 @@ BookView::BookView(QWidget *parent): s->setValue("scheme", s->value("scheme", "default")); setBook(0); - extractIcons(); +#if defined(Q_WS_MAEMO_5) + scrollerMonitor = 0; + scroller = property("kineticScroller").value(); +#elif defined(Q_OS_SYMBIAN) + FlickCharm *charm = new FlickCharm(this); + charm->activateOn(this); +#endif } BookView::~BookView() { - removeIcons(); + Trace t("BookView::~BookView"); } void BookView::loadContent(int index) { + Trace t("BookView::loadContent"); if (!mBook) { return; } - if ((index < 0) || (index >= mBook->toc.size())) { + if ((index < 0) || (index >= mBook->parts.size())) { return; } - QString contentFile(mBook->content[mBook->toc[index]].href); - if (mBook->toc[index] == "error") { + QString contentFile(mBook->content[mBook->parts[index]].href); + if (mBook->parts[index] == "error") { setHtml(contentFile); } else { - loadFinished = false; - load(QUrl(contentFile)); + loaded = false; + emit partLoadStart(index); + QUrl u = QUrl::fromLocalFile(QDir(mBook->rootPath()). + absoluteFilePath(contentFile)); + qDebug() << "Loading" << u; + load(u); } contentIndex = index; } void BookView::setBook(Book *book) { - qDebug() << "Book::setBook" << (book? book->path(): ""); + Trace t("BookView::setBook"); + // Save position in current book setLastBookmark(); + + // Open new book, restore last position if (book != mBook) { mBook = book; if (book) { - book->open(); - goToBookmark(book->lastBookmark()); + contentIndex = -1; + if (book->open()) { + restoreLastBookmark(); + } else { + mBook = 0; + contentIndex = 0; + setHtml(tr("Failed to open book")); + } } else { + contentIndex = 0; setHtml(tr("No book")); } } @@ -107,65 +147,84 @@ Book *BookView::book() void BookView::goPrevious() { - loadContent(contentIndex - 1); + Trace t("BookView::goPrevious"); + if (mBook && (contentIndex > 0)) { + mBook->setLastBookmark(contentIndex - 1, 0); + loadContent(contentIndex - 1); + } } void BookView::goNext() { - loadContent(contentIndex + 1); + Trace t("BookView::goNext"); + if (mBook && (contentIndex < (mBook->parts.size() - 1))) { + mBook->setLastBookmark(contentIndex + 1, 0); + loadContent(contentIndex + 1); + } } void BookView::setLastBookmark() { - qDebug() << "BookView::setLastBookmark"; + Trace t("BookView::setLastBookmark"); if (mBook) { - int height = page()->mainFrame()->contentsSize().height(); + int height = contentsHeight; int pos = page()->mainFrame()->scrollPosition().y(); + qDebug() << QString("At %1 (%2%, height %3)"). + arg(pos).arg((qreal)pos / (qreal)height * 100).arg(height); mBook->setLastBookmark(contentIndex, (qreal)pos / (qreal)height); } } +void BookView::restoreLastBookmark() +{ + Trace t("BookView::restoreLastBookmark"); + if (mBook) { + goToBookmark(mBook->lastBookmark()); + } +} + void BookView::goToBookmark(const Book::Bookmark &bookmark) { + Trace t("BookView::goToBookmark"); if (mBook) { - restore = true; - restorePos = bookmark.pos; - loadContent(bookmark.chapter); + if (bookmark.part != contentIndex) { + qDebug () << "Loading new part" << bookmark.part; + mBook->setLastBookmark(bookmark.part, bookmark.pos); + restorePositionAfterLoad = true; + positionAfterLoad = bookmark.pos; + loadContent(bookmark.part); + } else { + goToPosition(bookmark.pos); + } } } void BookView::onLoadFinished(bool ok) { - qDebug() << "BookView::onLoadFinished" << ok; - loadFinished = true; - addNavigationBar(); - onSettingsChanged("scheme"); - emit chapterLoaded(contentIndex); - if (restore) { - restore = false; - if (ok && mBook) { - int height = page()->mainFrame()->contentsSize().height(); - int scrollPos = (qreal)height * restorePos; - page()->mainFrame()->setScrollPosition(QPoint(0, scrollPos)); - } + Trace t("BookView::onLoadFinished"); + if (!ok) { + qDebug() << "Not OK"; + return; } + loaded = true; + onSettingsChanged("scheme"); + emit partLoadEnd(contentIndex); + showProgress(); } void BookView::onSettingsChanged(const QString &key) { - qDebug() << "BookView::onSettingsChanged" << key; + Trace t("BookView::onSettingsChanged " + key); if (key == "zoom") { setZoomFactor(Settings::instance()->value(key).toFloat() / 100.); } else if (key == "font") { QString face = Settings::instance()->value("font").toString(); - qDebug() << "" << face; settings()->setFontFamily(QWebSettings::StandardFont, face); } else if (key == "scheme") { QWebFrame *frame = page()->mainFrame(); QString scheme = Settings::instance()->value("scheme").toString(); - qDebug() << "" << scheme; if ((scheme != "day") && (scheme != "night") && (scheme != "sand") && (scheme != "default")) { scheme = "default"; @@ -175,31 +234,26 @@ void BookView::onSettingsChanged(const QString &key) QString scriptText = script.readAll(); script.close(); QVariant ret = frame->evaluateJavaScript(scriptText); - qDebug() << "" << script.fileName() << ":" << scriptText; - qDebug() << "" << ret; } } void BookView::paintEvent(QPaintEvent *e) { QWebView::paintEvent(e); - if (!mBook) { + if (!mBook || !loaded) { return; } // Paint bookmarks - if (!loadFinished) { - return; - } QPoint scrollPos = page()->mainFrame()->scrollPosition(); QPixmap bookmarkPixmap = QPixmap::fromImage(bookmarkImage); QPainter painter(this); foreach (Book::Bookmark b, mBook->bookmarks()) { - if (b.chapter != contentIndex) { + if (b.part != contentIndex) { continue; } - int height = page()->mainFrame()->contentsSize().height(); - int bookmarkPos = (qreal)height * (qreal)b.pos; + int height = contentsHeight; + int bookmarkPos = (int)((qreal)height * (qreal)b.pos); painter.drawPixmap(2, bookmarkPos - scrollPos.y(), bookmarkPixmap); } } @@ -207,83 +261,197 @@ void BookView::paintEvent(QPaintEvent *e) void BookView::mousePressEvent(QMouseEvent *e) { QWebView::mousePressEvent(e); -#ifndef Q_WS_MAEMO_5 +#ifdef Q_WS_MAEMO_5 + // Start monitoring kinetic scroll + if (scrollerMonitor) { + killTimer(scrollerMonitor); + scrollerMonitor = 0; + } + if (scroller) { + scrollerMonitor = startTimer(500); + } +#else + // Handle mouse presses on the scroll bar QWebFrame *frame = page()->mainFrame(); if (frame->scrollBarGeometry(Qt::Vertical).contains(e->pos())) { e->accept(); return; } -#endif +#endif // Q_WS_MAEMO_5 e->ignore(); } -void BookView::addBookmark() +void BookView::wheelEvent(QWheelEvent *e) { - int y = page()->mainFrame()->scrollPosition().y(); - int height = page()->mainFrame()->contentsSize().height(); - qDebug() << "BookView::addBookMark" << ((qreal)y / (qreal)height); - mBook->addBookmark(contentIndex, (qreal)y / (qreal)height); - repaint(); + QWebView::wheelEvent(e); + showProgress(); } -void BookView::addNavigationBar() +void BookView::addBookmark(const QString ¬e) { + Trace t("BookView::addBookmark"); if (!mBook) { return; } + int y = page()->mainFrame()->scrollPosition().y(); + int height = page()->mainFrame()->contentsSize().height(); + qDebug() << ((qreal)y / (qreal)height); + mBook->addBookmark(contentIndex, (qreal)y / (qreal)height, note); + update(); +} - QString naviPrev = - "" - "" - ""; - QString naviNext = - "" - "" - ""; - if (contentIndex == 0) { - naviPrev = ""; +QString BookView::tmpPath() +{ + return QDir::tempPath() + "/dorian"; +} + +bool BookView::eventFilter(QObject *o, QEvent *e) +{ + if (e->type() != QEvent::Paint && e->type() != QEvent::MouseMove) { + if (e->type() == QEvent::Resize) { + qDebug() << "BookView::eventFilter QEvent::Resize to" + << page()->mainFrame()->contentsSize().height(); + } else if (e->type() == QEvent::Timer) { + qDebug() << "BookView::eventFilter" << "QEvent::Timer" + << ((QTimerEvent *)e)->timerId(); + } else { + qDebug() << "BookView::eventFilter" << Trace::event(e->type()); + } } - if (contentIndex >= mBook->toc.size() - 1) { - naviNext = ""; + + // Work around Qt bug that sometimes selects web view contents during swipe + switch (e->type()) { + case QEvent::MouseButtonPress: + emit suppressedMouseButtonPress(); + mousePressed = true; + break; + case QEvent::MouseButtonRelease: + showProgress(); + mousePressed = false; + break; + case QEvent::MouseMove: + if (mousePressed) { + return true; + } + break; + case QEvent::MouseButtonDblClick: + return true; + default: + break; } - QWebFrame *frame = page()->currentFrame(); - frame->addToJavaScriptWindowObject("bv", this); - QString headerScript = "document.body.innerHTML = '" + - naviPrev + naviNext + "
" + "' + document.body.innerHTML;"; - QString trailerScript = "document.body.innerHTML += '

" + - naviPrev + naviNext + "';"; + return QObject::eventFilter(o, e); +} - frame->evaluateJavaScript(headerScript); - frame->evaluateJavaScript(trailerScript); +void BookView::addJavaScriptObjects() +{ + page()->mainFrame()->addToJavaScriptWindowObject("bv", this); } -QString BookView::tmpPath() +void BookView::onContentsSizeChanged(const QSize &size) { - return QDir::tempPath() + "/dorian"; + contentsHeight = size.height(); + if (restorePositionAfterLoad) { + qDebug() << "BookView::onContentSizeChanged: Time to restore"; + restorePositionAfterLoad = false; + goToPosition(positionAfterLoad); + } +} + +void BookView::leaveEvent(QEvent *e) +{ + Trace t("BookView::leaveEvent"); + // Save current position, to be restored later + setLastBookmark(); + QWebView::leaveEvent(e); +} + +void BookView::enterEvent(QEvent *e) +{ + Trace t("BookView::enterEvent"); + // Restore position saved at Leave event. This seems to be required, + // after temporarily switching from portrait to landscape and back + restoreLastBookmark(); + QWebView::enterEvent(e); +} + +void BookView::goToPosition(qreal position) +{ + int scrollPos = (int)((qreal)contentsHeight * position); + page()->mainFrame()->setScrollPosition(QPoint(0, scrollPos)); + // FIXME: update(); + qDebug() << "BookView::goToPosition: To" << scrollPos << "(" + << (position * 100) << "%, height" << contentsHeight << ")"; } -void BookView::extractIcons() +void BookView::showProgress() { - qDebug() << "BookView::extractIcons: Extracting to" << tmpPath(); + if (mBook) { + qreal pos = (qreal)(page()->mainFrame()->scrollPosition().y()) / + (qreal)contentsHeight; + emit progress(mBook->getProgress(contentIndex, pos)); + } +} - QFile next(ICON_PREFIX + QString("/next.png")); - QFile prev(ICON_PREFIX + QString("/previous.png")); +void BookView::timerEvent(QTimerEvent *e) +{ +#ifdef Q_WS_MAEMO_5 + if (e->timerId() == scrollerMonitor) { + if (scroller && + ((scroller->state() == QAbstractKineticScroller::AutoScrolling) || + (scroller->state() == QAbstractKineticScroller::Pushing))) { + showProgress(); + } else { + killTimer(scrollerMonitor); + } + } +#endif + QWebView::timerEvent(e); +} - QDir().mkpath(tmpPath()); - next.copy(tmpPath() + "/next.png"); - prev.copy(tmpPath() + "/previous.png"); +void BookView::keyPressEvent(QKeyEvent* event) +{ + switch (event->key()) { + case Qt::Key_F7: + goNextPage(); + event->accept(); + break; + case Qt::Key_F8: + goPreviousPage(); + event->accept(); + break; + default: + ; + } + QWebView::keyPressEvent(event); } -void BookView::removeIcons() +void BookView::goPreviousPage() { - QFile(ICON_PREFIX + QString("/next.png")).remove(); - QFile(ICON_PREFIX + QString("/previous.png")).remove(); - QDir().rmpath(tmpPath()); + QWebFrame *frame = page()->mainFrame(); + int pos = frame->scrollPosition().y(); + frame->scroll(0, -height()); + if (pos == frame->scrollPosition().y()) { + if (contentIndex > 0) { + Book::Bookmark bookmark(contentIndex - 1, 1.0); + mBook->setLastBookmark(contentIndex - 1, 1.0); + goToBookmark(bookmark); + } + } else { + showProgress(); + } +} + +void BookView::goNextPage() +{ + Trace t("BookView::goNextPage"); + QWebFrame *frame = page()->mainFrame(); + int pos = frame->scrollPosition().y(); + frame->scroll(0, height()); + if (pos == frame->scrollPosition().y()) { + goNext(); + } else { + setLastBookmark(); + showProgress(); + } }