X-Git-Url: http://vcs.maemo.org/git/?a=blobdiff_plain;f=bookview.cpp;h=fcdfd4b97a63b50778e0aa292b6341ec55538852;hb=31f032720bce6147580056d3c9f3165a4be77798;hp=2eda697ef537e1a56ecdca4c4a1ce9fc3bac427e;hpb=6c49daaab5caa3213e7f943c3a47988b615105f3;p=dorian diff --git a/bookview.cpp b/bookview.cpp index 2eda697..fcdfd4b 100644 --- a/bookview.cpp +++ b/bookview.cpp @@ -1,13 +1,9 @@ -#include -#include -#include -#include #include -#include +#include +#include -#if defined(Q_WS_MAEMO_5) -# include -#elif defined(Q_OS_SYMBIAN) +#if defined(Q_OS_SYMBIAN) +# include "mediakeysobserver.h" # include "flickcharm.h" #endif @@ -17,13 +13,16 @@ #include "settings.h" #include "trace.h" #include "progress.h" +#include "progressdialog.h" +#include "platform.h" -BookView::BookView(QWidget *parent): - QWebView(parent), contentIndex(-1), mBook(0), - restorePositionAfterLoad(false), positionAfterLoad(0), loaded(false), - contentsHeight(0) +BookView::BookView(QWidget *parent): QWebView(parent), contentIndex(-1), + mBook(0), restorePositionAfterLoad(false), positionAfterLoad(0), + restoreFragmentAfterLoad(false), loaded(false), grabbingVolumeKeys(false) { - Trace t("BookView::BookView"); + TRACE; + + // Set up web view defaults settings()->setAttribute(QWebSettings::AutoLoadImages, true); settings()->setAttribute(QWebSettings::JavascriptEnabled, true); settings()->setAttribute(QWebSettings::JavaEnabled, false); @@ -31,7 +30,8 @@ BookView::BookView(QWidget *parent): settings()->setAttribute(QWebSettings::PrivateBrowsingEnabled, true); settings()->setAttribute(QWebSettings::JavascriptCanOpenWindows, false); settings()->setAttribute(QWebSettings::JavascriptCanAccessClipboard, false); - settings()->setAttribute(QWebSettings::OfflineStorageDatabaseEnabled, false); + settings()->setAttribute(QWebSettings::OfflineStorageDatabaseEnabled, + false); settings()->setAttribute(QWebSettings::OfflineWebApplicationCacheEnabled, false); settings()->setAttribute(QWebSettings::LocalStorageEnabled, false); @@ -40,57 +40,55 @@ BookView::BookView(QWidget *parent): false); settings()->setDefaultTextEncoding("utf-8"); page()->setContentEditable(false); - -#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) || defined(Q_OS_SYMBIAN) frame->setScrollBarPolicy(Qt::Vertical, Qt::ScrollBarAlwaysOff); #endif frame->setScrollBarPolicy(Qt::Horizontal, Qt::ScrollBarAlwaysOff); - - 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 &))); + + // Suppress unwanted text selections on Maemo and Symbian +#if defined(Q_WS_MAEMO_5) || defined(Q_OS_SYMBIAN) + installEventFilter(this); +#endif + + // Pre-load bookmark icon + bookmarkImage = QImage(":/icons/bookmark.png"); + + // Handle settings changes, force handling initial settings Settings *s = Settings::instance(); + connect(s, SIGNAL(valueChanged(const QString &)), + this, SLOT(onSettingsChanged(const QString &))); s->setValue("zoom", s->value("zoom", 160)); - s->setValue("font", s->value("font", -#if defined(Q_WS_MAEMO_5) || defined(Q_WS_X11) - "Serif" -#elif defined(Q_WS_MAC) - "Hoefler Text" -#else - "Times New Roman" -#endif - )); + s->setValue("font", s->value("font", Platform::defaultFont())); s->setValue("scheme", s->value("scheme", "default")); + s->setValue("usevolumekeys", s->value("usevolumekeys", false)); setBook(0); + // Enable kinetic scrolling #if defined(Q_WS_MAEMO_5) scrollerMonitor = 0; scroller = property("kineticScroller").value(); #elif defined(Q_OS_SYMBIAN) - FlickCharm *charm = new FlickCharm(this); + scrollerMonitor = 0; + charm = new FlickCharm(this); charm->activateOn(this); #endif -} -BookView::~BookView() -{ - Trace t("BookView::~BookView"); + // Observe media keys on Symbian +#ifdef Q_OS_SYMBIAN + MediaKeysObserver *observer = MediaKeysObserver::instance(); + connect(observer, SIGNAL(mediaKeyPressed(MediaKeysObserver::MediaKeys)), + this, SLOT(onMediaKeysPressed(MediaKeysObserver::MediaKeys))); +#endif } void BookView::loadContent(int index) { - Trace t("BookView::loadContent"); + TRACE; + if (!mBook) { return; } @@ -101,8 +99,7 @@ void BookView::loadContent(int index) QString contentFile(mBook->content[mBook->parts[index]].href); if (mBook->parts[index] == "error") { setHtml(contentFile); - } - else { + } else { loaded = false; emit partLoadStart(index); QUrl u = QUrl::fromLocalFile(QDir(mBook->rootPath()). @@ -115,7 +112,7 @@ void BookView::loadContent(int index) void BookView::setBook(Book *book) { - Trace t("BookView::setBook"); + TRACE; // Save position in current book setLastBookmark(); @@ -147,7 +144,7 @@ Book *BookView::book() void BookView::goPrevious() { - Trace t("BookView::goPrevious"); + TRACE; if (mBook && (contentIndex > 0)) { mBook->setLastBookmark(contentIndex - 1, 0); loadContent(contentIndex - 1); @@ -156,7 +153,7 @@ void BookView::goPrevious() void BookView::goNext() { - Trace t("BookView::goNext"); + TRACE; if (mBook && (contentIndex < (mBook->parts.size() - 1))) { mBook->setLastBookmark(contentIndex + 1, 0); loadContent(contentIndex + 1); @@ -165,10 +162,11 @@ void BookView::goNext() void BookView::setLastBookmark() { - Trace t("BookView::setLastBookmark"); + TRACE; if (mBook) { - int height = contentsHeight; - int pos = page()->mainFrame()->scrollPosition().y(); + QWebFrame *frame = page()->mainFrame(); + int height = frame->contentsSize().height(); + int pos = frame->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); @@ -177,7 +175,7 @@ void BookView::setLastBookmark() void BookView::restoreLastBookmark() { - Trace t("BookView::restoreLastBookmark"); + TRACE; if (mBook) { goToBookmark(mBook->lastBookmark()); } @@ -185,7 +183,7 @@ void BookView::restoreLastBookmark() void BookView::goToBookmark(const Book::Bookmark &bookmark) { - Trace t("BookView::goToBookmark"); + TRACE; if (mBook) { if (bookmark.part != contentIndex) { qDebug () << "Loading new part" << bookmark.part; @@ -199,27 +197,75 @@ void BookView::goToBookmark(const Book::Bookmark &bookmark) } } +void BookView::goToPart(int part, const QString &fragment) +{ + TRACE; + if (mBook) { + if (part != contentIndex) { + qDebug() << "Loading new part" << part; + restoreFragmentAfterLoad = true; + fragmentAfterLoad = fragment; + loadContent(part); + } else { + goToFragment(fragment); + showProgress(); + } + } +} + +void BookView::goToFragment(const QString &fragment) +{ + TRACE; + if (!fragment.isEmpty()) { + QVariant ret = page()->mainFrame()->evaluateJavaScript( + QString("window.location='") + fragment + "'"); + qDebug() << ret; + setLastBookmark(); + } +} + void BookView::onLoadFinished(bool ok) { - Trace t("BookView::onLoadFinished"); + TRACE; if (!ok) { qDebug() << "Not OK"; return; } loaded = true; onSettingsChanged("scheme"); + onSettingsChanged("zoom"); + onSettingsChanged("font"); + + QTimer::singleShot(210, this, SLOT(restoreAfterLoad())); +} + +void BookView::restoreAfterLoad() +{ + TRACE; + if (restoreFragmentAfterLoad) { + qDebug() << "Restorint to fragment" << fragmentAfterLoad; + goToFragment(fragmentAfterLoad); + restoreFragmentAfterLoad = false; + } else if (restorePositionAfterLoad) { + qDebug() << "Restoring to position" << positionAfterLoad; + goToPosition(positionAfterLoad); + restorePositionAfterLoad = false; + } + emit partLoadEnd(contentIndex); showProgress(); } void BookView::onSettingsChanged(const QString &key) { - Trace t("BookView::onSettingsChanged " + key); + TRACE; + qDebug() << key << Settings::instance()->value(key); + if (key == "zoom") { setZoomFactor(Settings::instance()->value(key).toFloat() / 100.); } else if (key == "font") { - QString face = Settings::instance()->value("font").toString(); + QString face = Settings::instance()->value(key).toString(); settings()->setFontFamily(QWebSettings::StandardFont, face); } else if (key == "scheme") { @@ -235,6 +281,9 @@ void BookView::onSettingsChanged(const QString &key) script.close(); QVariant ret = frame->evaluateJavaScript(scriptText); } + else if (key == "usevolumekeys") { + grabVolumeKeys(Settings::instance()->value(key).toBool()); + } } void BookView::paintEvent(QPaintEvent *e) @@ -245,7 +294,9 @@ void BookView::paintEvent(QPaintEvent *e) } // Paint bookmarks - QPoint scrollPos = page()->mainFrame()->scrollPosition(); + QWebFrame *frame = page()->mainFrame(); + int contentsHeight = frame->contentsSize().height(); + QPoint scrollPos = frame->scrollPosition(); QPixmap bookmarkPixmap = QPixmap::fromImage(bookmarkImage); QPainter painter(this); foreach (Book::Bookmark b, mBook->bookmarks()) { @@ -261,7 +312,7 @@ void BookView::paintEvent(QPaintEvent *e) void BookView::mousePressEvent(QMouseEvent *e) { QWebView::mousePressEvent(e); -#ifdef Q_WS_MAEMO_5 +#if defined(Q_WS_MAEMO_5) // Start monitoring kinetic scroll if (scrollerMonitor) { killTimer(scrollerMonitor); @@ -287,16 +338,16 @@ void BookView::wheelEvent(QWheelEvent *e) showProgress(); } -void BookView::addBookmark() +void BookView::addBookmark(const QString ¬e) { - Trace t("BookView::addBookmark"); + TRACE; 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); + mBook->addBookmark(contentIndex, (qreal)y / (qreal)height, note); update(); } @@ -307,6 +358,7 @@ QString BookView::tmpPath() bool BookView::eventFilter(QObject *o, QEvent *e) { +#if 0 if (e->type() != QEvent::Paint && e->type() != QEvent::MouseMove) { if (e->type() == QEvent::Resize) { qDebug() << "BookView::eventFilter QEvent::Resize to" @@ -318,6 +370,7 @@ bool BookView::eventFilter(QObject *o, QEvent *e) qDebug() << "BookView::eventFilter" << Trace::event(e->type()); } } +#endif // Work around Qt bug that sometimes selects web view contents during swipe switch (e->type()) { @@ -348,19 +401,11 @@ void BookView::addJavaScriptObjects() page()->mainFrame()->addToJavaScriptWindowObject("bv", this); } -void BookView::onContentsSizeChanged(const QSize &size) -{ - contentsHeight = size.height(); - if (restorePositionAfterLoad) { - qDebug() << "BookView::onContentSizeChanged: Time to restore"; - restorePositionAfterLoad = false; - goToPosition(positionAfterLoad); - } -} +#ifdef Q_WS_MAEMO_5 void BookView::leaveEvent(QEvent *e) { - Trace t("BookView::leaveEvent"); + TRACE; // Save current position, to be restored later setLastBookmark(); QWebView::leaveEvent(e); @@ -368,15 +413,18 @@ void BookView::leaveEvent(QEvent *e) void BookView::enterEvent(QEvent *e) { - Trace t("BookView::enterEvent"); + TRACE; // Restore position saved at Leave event. This seems to be required, // after temporarily switching from portrait to landscape and back restoreLastBookmark(); QWebView::enterEvent(e); } +#endif // Q_WS_MAEMO_5 + void BookView::goToPosition(qreal position) { + int contentsHeight = page()->mainFrame()->contentsSize().height(); int scrollPos = (int)((qreal)contentsHeight * position); page()->mainFrame()->setScrollPosition(QPoint(0, scrollPos)); // FIXME: update(); @@ -387,6 +435,7 @@ void BookView::goToPosition(qreal position) void BookView::showProgress() { if (mBook) { + int contentsHeight = page()->mainFrame()->contentsSize().height(); qreal pos = (qreal)(page()->mainFrame()->scrollPosition().y()) / (qreal)contentsHeight; emit progress(mBook->getProgress(contentIndex, pos)); @@ -395,7 +444,7 @@ void BookView::showProgress() void BookView::timerEvent(QTimerEvent *e) { -#ifdef Q_WS_MAEMO_5 +#if defined(Q_WS_MAEMO_5) if (e->timerId() == scrollerMonitor) { if (scroller && ((scroller->state() == QAbstractKineticScroller::AutoScrolling) || @@ -403,29 +452,13 @@ void BookView::timerEvent(QTimerEvent *e) showProgress(); } else { killTimer(scrollerMonitor); + scrollerMonitor = -1; } } #endif QWebView::timerEvent(e); } -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::goPreviousPage() { QWebFrame *frame = page()->mainFrame(); @@ -444,7 +477,7 @@ void BookView::goPreviousPage() void BookView::goNextPage() { - Trace t("BookView::goNextPage"); + TRACE; QWebFrame *frame = page()->mainFrame(); int pos = frame->scrollPosition().y(); frame->scroll(0, height()); @@ -455,3 +488,28 @@ void BookView::goNextPage() showProgress(); } } + +void BookView::grabVolumeKeys(bool grab) +{ + TRACE; + grabbingVolumeKeys = grab; +} + +#ifdef Q_OS_SYMBIAN + +void BookView::onMediaKeysPressed(MediaKeysObserver::MediaKeys key) +{ + TRACE; + qDebug() << "Key" << (int)key; + if (grabbingVolumeKeys) { + if (key == MediaKeysObserver::EVolIncKey) { + qDebug() << "Volume up"; + goPreviousPage(); + } else if (key == MediaKeysObserver::EVolDecKey){ + qDebug() << "Volume down"; + goNextPage(); + } + } +} + +#endif // Q_OS_SYMBIAN