2015-06-28 14:22:35 +03:00
|
|
|
/*
|
2016-10-08 19:57:54 +03:00
|
|
|
* Copyright (C) 2015-2016 Jolla Ltd.
|
2015-06-28 14:22:35 +03:00
|
|
|
* Contact: Slava Monich <slava.monich@jolla.com>
|
|
|
|
*
|
|
|
|
* You may use this file under the terms of the BSD license as follows:
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
2016-10-08 19:57:54 +03:00
|
|
|
* * Neither the name of Jolla Ltd nor the names of its contributors
|
2015-06-28 14:22:35 +03:00
|
|
|
* may be used to endorse or promote products derived from this
|
|
|
|
* software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "BooksPageWidget.h"
|
2016-10-09 12:01:05 +03:00
|
|
|
#include "BooksImageProvider.h"
|
2015-06-28 14:22:35 +03:00
|
|
|
#include "BooksTextStyle.h"
|
|
|
|
#include "BooksDefs.h"
|
|
|
|
|
2016-10-08 14:56:14 +03:00
|
|
|
#include "bookmodel/FBTextKind.h"
|
|
|
|
#include "ZLStringUtil.h"
|
|
|
|
|
2015-06-28 14:22:35 +03:00
|
|
|
#include "HarbourDebug.h"
|
|
|
|
|
|
|
|
#include <QPainter>
|
|
|
|
|
|
|
|
// ==========================================================================
|
|
|
|
// BooksPageWidget::Data
|
|
|
|
// ==========================================================================
|
|
|
|
|
|
|
|
class BooksPageWidget::Data {
|
|
|
|
public:
|
|
|
|
Data(shared_ptr<ZLTextModel> aModel, int aWidth, int aHeight) :
|
|
|
|
iModel(aModel), iPaintContext(aWidth, aHeight) {}
|
|
|
|
|
|
|
|
bool paint(QPainter* aPainter);
|
|
|
|
|
|
|
|
public:
|
2015-07-11 01:35:13 +03:00
|
|
|
shared_ptr<BooksTextView> iView;
|
2015-06-28 14:22:35 +03:00
|
|
|
shared_ptr<ZLTextModel> iModel;
|
|
|
|
BooksPaintContext iPaintContext;
|
|
|
|
};
|
|
|
|
|
|
|
|
bool BooksPageWidget::Data::paint(QPainter* aPainter)
|
|
|
|
{
|
|
|
|
if (!iView.isNull()) {
|
|
|
|
iPaintContext.beginPaint(aPainter);
|
|
|
|
iView->paint();
|
|
|
|
iPaintContext.endPaint();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ==========================================================================
|
|
|
|
// BooksPageWidget::ResetTask
|
|
|
|
// ==========================================================================
|
|
|
|
|
|
|
|
class BooksPageWidget::ResetTask : public BooksTask
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ResetTask(shared_ptr<ZLTextModel> aModel,
|
|
|
|
shared_ptr<ZLTextStyle> aTextStyle, int aWidth, int aHeight,
|
|
|
|
const BooksMargins& aMargins, const BooksPos& aPosition);
|
|
|
|
~ResetTask();
|
|
|
|
|
|
|
|
void performTask();
|
|
|
|
|
|
|
|
public:
|
|
|
|
BooksPageWidget::Data* iData;
|
|
|
|
shared_ptr<ZLTextStyle> iTextStyle;
|
|
|
|
BooksMargins iMargins;
|
|
|
|
BooksPos iPosition;
|
|
|
|
};
|
|
|
|
|
|
|
|
BooksPageWidget::ResetTask::ResetTask(shared_ptr<ZLTextModel> aModel,
|
|
|
|
shared_ptr<ZLTextStyle> aTextStyle, int aWidth, int aHeight,
|
|
|
|
const BooksMargins& aMargins, const BooksPos& aPosition) :
|
|
|
|
iData(new BooksPageWidget::Data(aModel, aWidth, aHeight)),
|
|
|
|
iTextStyle(aTextStyle),
|
|
|
|
iMargins(aMargins),
|
|
|
|
iPosition(aPosition)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
BooksPageWidget::ResetTask::~ResetTask()
|
|
|
|
{
|
|
|
|
delete iData;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BooksPageWidget::ResetTask::performTask()
|
|
|
|
{
|
|
|
|
if (!isCanceled()) {
|
|
|
|
BooksTextView* view = new BooksTextView(iData->iPaintContext,
|
|
|
|
iTextStyle, iMargins);
|
|
|
|
if (!isCanceled()) {
|
|
|
|
view->setModel(iData->iModel);
|
|
|
|
if (!isCanceled()) {
|
|
|
|
view->gotoPosition(iPosition);
|
|
|
|
if (!isCanceled()) {
|
|
|
|
iData->iView = view;
|
|
|
|
} else {
|
|
|
|
delete view;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ==========================================================================
|
|
|
|
// BooksPageWidget::RenderTask
|
|
|
|
// ==========================================================================
|
|
|
|
|
|
|
|
class BooksPageWidget::RenderTask : public BooksTask {
|
|
|
|
public:
|
|
|
|
RenderTask(shared_ptr<BooksPageWidget::Data> aData, int aWidth, int aHeight) :
|
|
|
|
iData(aData), iWidth(aWidth), iHeight(aHeight), iImage(NULL) {}
|
|
|
|
|
|
|
|
void performTask();
|
|
|
|
|
|
|
|
public:
|
|
|
|
shared_ptr<BooksPageWidget::Data> iData;
|
|
|
|
int iWidth;
|
|
|
|
int iHeight;
|
|
|
|
shared_ptr<QImage> iImage;
|
|
|
|
};
|
|
|
|
|
|
|
|
void BooksPageWidget::RenderTask::performTask()
|
|
|
|
{
|
|
|
|
if (!isCanceled() && !iData.isNull() && !iData->iView.isNull() &&
|
|
|
|
iWidth > 0 && iHeight > 0) {
|
|
|
|
iImage = new QImage(iWidth, iHeight, QImage::Format_RGB32);
|
|
|
|
if (!isCanceled()) {
|
|
|
|
QPainter painter(&*iImage);
|
|
|
|
iData->paint(&painter);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-08 14:56:14 +03:00
|
|
|
// ==========================================================================
|
|
|
|
// BooksPageWidget::LongPressTask
|
|
|
|
// ==========================================================================
|
|
|
|
|
|
|
|
class BooksPageWidget::LongPressTask : public BooksTask {
|
|
|
|
public:
|
|
|
|
LongPressTask(shared_ptr<BooksPageWidget::Data> aData, int aX, int aY) :
|
2016-10-08 19:57:54 +03:00
|
|
|
iData(aData), iX(aX), iY(aY), iKind(REGULAR) {}
|
2016-10-08 14:56:14 +03:00
|
|
|
|
|
|
|
void performTask();
|
|
|
|
|
|
|
|
public:
|
|
|
|
shared_ptr<BooksPageWidget::Data> iData;
|
|
|
|
int iX;
|
|
|
|
int iY;
|
2016-10-08 19:57:54 +03:00
|
|
|
QRect iRect;
|
2016-10-08 14:56:14 +03:00
|
|
|
ZLTextKind iKind;
|
2016-10-08 19:57:54 +03:00
|
|
|
std::string iLink;
|
2016-10-08 14:56:14 +03:00
|
|
|
std::string iLinkType;
|
2016-10-08 19:57:54 +03:00
|
|
|
std::string iImageId;
|
|
|
|
shared_ptr<ZLImageData> iImageData;
|
2016-10-08 14:56:14 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
void BooksPageWidget::LongPressTask::performTask()
|
|
|
|
{
|
|
|
|
if (!isCanceled()) {
|
2016-10-08 23:36:28 +03:00
|
|
|
const BooksTextView& view = *iData->iView;
|
|
|
|
const ZLTextArea& area = view.textArea();
|
2016-10-08 14:56:14 +03:00
|
|
|
const ZLTextElementRectangle* rect = area.elementByCoordinates(iX, iY);
|
2016-10-08 19:57:54 +03:00
|
|
|
if (rect && !isCanceled()) {
|
|
|
|
iRect.setLeft(rect->XStart);
|
|
|
|
iRect.setRight(rect->XEnd);
|
|
|
|
iRect.setTop(rect->YStart);
|
|
|
|
iRect.setBottom(rect->YEnd);
|
2016-10-08 23:36:28 +03:00
|
|
|
iRect.translate(view.leftMargin(), view.topMargin());
|
2016-10-08 19:57:54 +03:00
|
|
|
if (rect->Kind == ZLTextElement::WORD_ELEMENT) {
|
|
|
|
ZLTextWordCursor cursor = area.startCursor();
|
|
|
|
cursor.moveToParagraph(rect->ParagraphIndex);
|
|
|
|
cursor.moveToParagraphStart();
|
|
|
|
for (int i=0; i<rect->ElementIndex && !isCanceled(); i++) {
|
|
|
|
const ZLTextElement& element = cursor.element();
|
|
|
|
if (element.kind() == ZLTextElement::CONTROL_ELEMENT) {
|
|
|
|
const ZLTextControlEntry& controlEntry =
|
|
|
|
((const ZLTextControlElement&)element).entry();
|
|
|
|
if (controlEntry.isHyperlink()) {
|
|
|
|
const ZLTextHyperlinkControlEntry& hyperLinkEntry =
|
|
|
|
((const ZLTextHyperlinkControlEntry&)controlEntry);
|
|
|
|
iKind = hyperLinkEntry.kind();
|
|
|
|
iLink = hyperLinkEntry.label();
|
|
|
|
iLinkType = hyperLinkEntry.hyperlinkType();
|
|
|
|
HDEBUG("link" << iLink.c_str());
|
|
|
|
return;
|
|
|
|
}
|
2016-10-08 14:56:14 +03:00
|
|
|
}
|
2016-10-08 19:57:54 +03:00
|
|
|
cursor.nextWord();
|
|
|
|
}
|
|
|
|
} else if (rect->Kind == ZLTextElement::IMAGE_ELEMENT) {
|
|
|
|
ZLTextWordCursor cursor = area.startCursor();
|
|
|
|
cursor.moveToParagraph(rect->ParagraphIndex);
|
|
|
|
cursor.moveTo(rect->ElementIndex, 0);
|
|
|
|
const ZLTextElement& element = cursor.element();
|
|
|
|
HASSERT(element.kind() == ZLTextElement::IMAGE_ELEMENT);
|
|
|
|
if (element.kind() == ZLTextElement::IMAGE_ELEMENT) {
|
|
|
|
const ZLTextImageElement& imageElement =
|
|
|
|
(const ZLTextImageElement&)element;
|
|
|
|
iKind = IMAGE;
|
|
|
|
iImageId = imageElement.id();
|
|
|
|
iImageData = imageElement.image();
|
|
|
|
HDEBUG("image element" << iImageId.c_str() <<
|
|
|
|
iImageData->width() << iImageData->height());
|
2016-10-08 14:56:14 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-28 14:22:35 +03:00
|
|
|
// ==========================================================================
|
|
|
|
// BooksPageWidget
|
|
|
|
// ==========================================================================
|
|
|
|
|
|
|
|
BooksPageWidget::BooksPageWidget(QQuickItem* aParent) :
|
|
|
|
QQuickPaintedItem(aParent),
|
2015-12-12 11:36:22 +03:00
|
|
|
iTaskQueue(BooksTaskQueue::defaultQueue()),
|
2015-06-28 14:22:35 +03:00
|
|
|
iTextStyle(BooksTextStyle::defaults()),
|
|
|
|
iResizeTimer(new QTimer(this)),
|
|
|
|
iModel(NULL),
|
|
|
|
iSettings(NULL),
|
|
|
|
iResetTask(NULL),
|
|
|
|
iRenderTask(NULL),
|
2016-10-08 14:56:14 +03:00
|
|
|
iLongPressTask(NULL),
|
2015-06-28 14:22:35 +03:00
|
|
|
iEmpty(false),
|
|
|
|
iPage(-1)
|
|
|
|
{
|
|
|
|
setFlag(ItemHasContents, true);
|
2015-07-11 01:35:13 +03:00
|
|
|
setFillColor(qtColor(BooksTextView::DEFAULT_BACKGROUND));
|
2015-06-28 14:22:35 +03:00
|
|
|
iResizeTimer->setSingleShot(true);
|
|
|
|
iResizeTimer->setInterval(0);
|
|
|
|
connect(iResizeTimer, SIGNAL(timeout()), SLOT(onResizeTimeout()));
|
|
|
|
connect(this, SIGNAL(widthChanged()), SLOT(onWidthChanged()));
|
|
|
|
connect(this, SIGNAL(heightChanged()), SLOT(onHeightChanged()));
|
|
|
|
}
|
|
|
|
|
|
|
|
BooksPageWidget::~BooksPageWidget()
|
|
|
|
{
|
|
|
|
HDEBUG("page" << iPage);
|
|
|
|
if (iResetTask) iResetTask->release(this);
|
|
|
|
if (iRenderTask) iRenderTask->release(this);
|
2016-10-08 14:56:14 +03:00
|
|
|
if (iLongPressTask) iLongPressTask->release(this);
|
2015-06-28 14:22:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void BooksPageWidget::setModel(BooksBookModel* aModel)
|
|
|
|
{
|
|
|
|
if (iModel != aModel) {
|
2015-12-13 14:46:53 +03:00
|
|
|
if (iModel) iModel->disconnect(this);
|
2015-06-28 14:22:35 +03:00
|
|
|
iModel = aModel;
|
|
|
|
if (iModel) {
|
|
|
|
#if HARBOUR_DEBUG
|
|
|
|
if (iPage >= 0) {
|
|
|
|
HDEBUG(iModel->title() << iPage);
|
|
|
|
} else {
|
|
|
|
HDEBUG(iModel->title());
|
|
|
|
}
|
|
|
|
#endif // HARBOUR_DEBUG
|
2015-12-13 14:46:53 +03:00
|
|
|
iTextStyle = iModel->textStyle();
|
2015-06-28 14:22:35 +03:00
|
|
|
iPageMark = iModel->pageMark(iPage);
|
|
|
|
connect(iModel, SIGNAL(bookModelChanged()),
|
|
|
|
SLOT(onBookModelChanged()));
|
|
|
|
connect(iModel, SIGNAL(destroyed()),
|
|
|
|
SLOT(onBookModelDestroyed()));
|
|
|
|
connect(iModel, SIGNAL(pageMarksChanged()),
|
|
|
|
SLOT(onBookModelPageMarksChanged()));
|
|
|
|
connect(iModel, SIGNAL(loadingChanged()),
|
|
|
|
SLOT(onBookModelLoadingChanged()));
|
2015-12-13 14:46:53 +03:00
|
|
|
connect(iModel, SIGNAL(textStyleChanged()),
|
|
|
|
SLOT(onTextStyleChanged()));
|
2015-06-28 14:22:35 +03:00
|
|
|
} else {
|
|
|
|
iPageMark.invalidate();
|
2015-12-13 14:46:53 +03:00
|
|
|
iTextStyle = BooksTextStyle::defaults();
|
2015-06-28 14:22:35 +03:00
|
|
|
}
|
|
|
|
resetView();
|
|
|
|
Q_EMIT modelChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BooksPageWidget::setSettings(BooksSettings* aSettings)
|
|
|
|
{
|
|
|
|
if (iSettings != aSettings) {
|
2015-07-11 01:35:13 +03:00
|
|
|
const bool colorsWereInverted = invertColors();
|
2015-06-28 14:22:35 +03:00
|
|
|
shared_ptr<ZLTextStyle> oldTextStyle(iTextStyle);
|
|
|
|
if (iSettings) iSettings->disconnect(this);
|
|
|
|
iSettings = aSettings;
|
|
|
|
if (iSettings) {
|
2015-07-11 01:35:13 +03:00
|
|
|
connect(iSettings,
|
|
|
|
SIGNAL(invertColorsChanged()),
|
|
|
|
SLOT(onInvertColorsChanged()));
|
2015-06-28 14:22:35 +03:00
|
|
|
} else {
|
|
|
|
iTextStyle = BooksTextStyle::defaults();
|
|
|
|
}
|
2015-07-11 01:35:13 +03:00
|
|
|
const bool colorsAreInverted = invertColors();
|
|
|
|
if (colorsWereInverted != colorsAreInverted) {
|
|
|
|
setFillColor(qtColor(colorsAreInverted ?
|
|
|
|
BooksTextView::INVERTED_BACKGROUND :
|
|
|
|
BooksTextView::DEFAULT_BACKGROUND));
|
|
|
|
}
|
2015-06-28 14:22:35 +03:00
|
|
|
if (!BooksTextStyle::equalLayout(oldTextStyle, iTextStyle)) {
|
|
|
|
resetView();
|
2015-07-11 01:35:13 +03:00
|
|
|
} else if (colorsWereInverted != colorsAreInverted) {
|
|
|
|
if (!iData.isNull() && !iData->iView.isNull()) {
|
|
|
|
iData->iView->setInvertColors(colorsAreInverted);
|
|
|
|
scheduleRepaint();
|
|
|
|
} else {
|
|
|
|
update();
|
|
|
|
}
|
2015-06-28 14:22:35 +03:00
|
|
|
}
|
|
|
|
Q_EMIT settingsChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BooksPageWidget::onTextStyleChanged()
|
|
|
|
{
|
|
|
|
HDEBUG(iPage);
|
2015-12-13 14:46:53 +03:00
|
|
|
HASSERT(sender() == iModel);
|
|
|
|
iTextStyle = iModel->textStyle();
|
2015-06-28 14:22:35 +03:00
|
|
|
resetView();
|
|
|
|
}
|
|
|
|
|
2015-07-11 01:35:13 +03:00
|
|
|
void BooksPageWidget::onInvertColorsChanged()
|
|
|
|
{
|
|
|
|
HDEBUG(iPage);
|
|
|
|
HASSERT(sender() == iSettings);
|
|
|
|
if (!iData.isNull() && !iData->iView.isNull()) {
|
|
|
|
iData->iView->setInvertColors(iSettings->invertColors());
|
|
|
|
scheduleRepaint();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-28 14:22:35 +03:00
|
|
|
void BooksPageWidget::onBookModelChanged()
|
|
|
|
{
|
|
|
|
HDEBUG(iModel->title());
|
|
|
|
BooksLoadingSignalBlocker block(this);
|
|
|
|
iPageMark = iModel->pageMark(iPage);
|
|
|
|
resetView();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BooksPageWidget::onBookModelDestroyed()
|
|
|
|
{
|
|
|
|
HDEBUG("model destroyed");
|
|
|
|
HASSERT(iModel == sender());
|
|
|
|
BooksLoadingSignalBlocker block(this);
|
|
|
|
iModel = NULL;
|
|
|
|
Q_EMIT modelChanged();
|
|
|
|
resetView();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BooksPageWidget::onBookModelPageMarksChanged()
|
|
|
|
{
|
|
|
|
const BooksPos pos = iModel->pageMark(iPage);
|
|
|
|
if (iPageMark != pos) {
|
|
|
|
BooksLoadingSignalBlocker block(this);
|
|
|
|
iPageMark = pos;
|
|
|
|
HDEBUG("page" << iPage);
|
|
|
|
resetView();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BooksPageWidget::onBookModelLoadingChanged()
|
|
|
|
{
|
|
|
|
BooksLoadingSignalBlocker block(this);
|
|
|
|
if (!iModel->loading()) {
|
|
|
|
HDEBUG("page" << iPage);
|
|
|
|
const BooksPos pos = iModel->pageMark(iPage);
|
|
|
|
if (iPageMark != pos) {
|
|
|
|
iPageMark = pos;
|
|
|
|
resetView();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BooksPageWidget::setPage(int aPage)
|
|
|
|
{
|
|
|
|
if (iPage != aPage) {
|
|
|
|
BooksLoadingSignalBlocker block(this);
|
|
|
|
iPage = aPage;
|
|
|
|
HDEBUG(iPage);
|
|
|
|
const BooksPos pos = iModel->pageMark(iPage);
|
|
|
|
if (iPageMark != pos) {
|
|
|
|
iPageMark = pos;
|
|
|
|
resetView();
|
|
|
|
}
|
|
|
|
resetView();
|
|
|
|
Q_EMIT pageChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BooksPageWidget::setLeftMargin(int aMargin)
|
|
|
|
{
|
|
|
|
if (iMargins.iLeft != aMargin) {
|
|
|
|
iMargins.iLeft = aMargin;
|
|
|
|
HDEBUG(aMargin);
|
|
|
|
resetView();
|
|
|
|
Q_EMIT leftMarginChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BooksPageWidget::setRightMargin(int aMargin)
|
|
|
|
{
|
|
|
|
if (iMargins.iRight != aMargin) {
|
|
|
|
iMargins.iRight = aMargin;
|
|
|
|
HDEBUG(aMargin);
|
|
|
|
resetView();
|
|
|
|
Q_EMIT rightMarginChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BooksPageWidget::setTopMargin(int aMargin)
|
|
|
|
{
|
|
|
|
if (iMargins.iTop != aMargin) {
|
|
|
|
iMargins.iTop = aMargin;
|
|
|
|
HDEBUG(aMargin);
|
|
|
|
resetView();
|
|
|
|
Q_EMIT topMarginChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BooksPageWidget::setBottomMargin(int aMargin)
|
|
|
|
{
|
|
|
|
if (iMargins.iBottom != aMargin) {
|
|
|
|
iMargins.iBottom = aMargin;
|
|
|
|
HDEBUG(aMargin);
|
|
|
|
resetView();
|
|
|
|
Q_EMIT bottomMarginChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BooksPageWidget::paint(QPainter* aPainter)
|
|
|
|
{
|
|
|
|
if (!iImage.isNull()) {
|
|
|
|
HDEBUG("page" << iPage);
|
|
|
|
aPainter->drawImage(0, 0, *iImage);
|
|
|
|
iEmpty = false;
|
2015-07-06 22:16:29 +03:00
|
|
|
} else if (iPage >= 0 && iPageMark.valid() && !iData.isNull()) {
|
2015-07-03 17:24:20 +03:00
|
|
|
if (!iRenderTask) {
|
2015-06-28 14:22:35 +03:00
|
|
|
HDEBUG("page" << iPage << "(scheduled)");
|
|
|
|
scheduleRepaint();
|
|
|
|
} else {
|
|
|
|
HDEBUG("page" << iPage << "(not yet ready)");
|
|
|
|
}
|
|
|
|
iEmpty = true;
|
|
|
|
} else {
|
|
|
|
HDEBUG("page" << iPage << "(empty)");
|
|
|
|
iEmpty = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BooksPageWidget::loading() const
|
|
|
|
{
|
2015-07-03 17:24:59 +03:00
|
|
|
return iPage >= 0 && (iResetTask || iRenderTask);
|
2015-06-28 14:22:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void BooksPageWidget::resetView()
|
|
|
|
{
|
|
|
|
BooksLoadingSignalBlocker block(this);
|
|
|
|
if (iResetTask) {
|
|
|
|
iResetTask->release(this);
|
|
|
|
iResetTask = NULL;
|
|
|
|
}
|
|
|
|
iData.reset();
|
|
|
|
if (iPage >= 0 && iPageMark.valid() &&
|
|
|
|
width() > 0 && height() > 0 && iModel) {
|
|
|
|
shared_ptr<ZLTextModel> textModel = iModel->bookTextModel();
|
|
|
|
if (!textModel.isNull()) {
|
|
|
|
iResetTask = new ResetTask(textModel, iTextStyle,
|
|
|
|
width(), height(), iMargins, iPageMark);
|
|
|
|
iTaskQueue->submit(iResetTask, this, SLOT(onResetTaskDone()));
|
|
|
|
cancelRepaint();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!iResetTask && !iEmpty) {
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BooksPageWidget::cancelRepaint()
|
|
|
|
{
|
|
|
|
BooksLoadingSignalBlocker block(this);
|
|
|
|
if (iRenderTask) {
|
|
|
|
iRenderTask->release(this);
|
|
|
|
iRenderTask = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BooksPageWidget::scheduleRepaint()
|
|
|
|
{
|
|
|
|
BooksLoadingSignalBlocker block(this);
|
|
|
|
cancelRepaint();
|
2015-07-11 01:35:13 +03:00
|
|
|
const int w = width();
|
|
|
|
const int h = height();
|
|
|
|
if (w > 0 && h > 0 && !iData.isNull() && !iData->iView.isNull()) {
|
|
|
|
iData->iView->setInvertColors(invertColors());
|
|
|
|
iRenderTask = new RenderTask(iData, w, h);
|
2015-06-28 14:22:35 +03:00
|
|
|
iTaskQueue->submit(iRenderTask, this, SLOT(onRenderTaskDone()));
|
|
|
|
} else {
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BooksPageWidget::onResetTaskDone()
|
|
|
|
{
|
|
|
|
BooksLoadingSignalBlocker block(this);
|
|
|
|
HASSERT(sender() == iResetTask);
|
|
|
|
iData = iResetTask->iData;
|
|
|
|
iResetTask->iData = NULL;
|
|
|
|
iResetTask->release(this);
|
|
|
|
iResetTask = NULL;
|
2015-07-03 17:24:20 +03:00
|
|
|
scheduleRepaint();
|
2015-06-28 14:22:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void BooksPageWidget::onRenderTaskDone()
|
|
|
|
{
|
|
|
|
BooksLoadingSignalBlocker block(this);
|
|
|
|
HASSERT(sender() == iRenderTask);
|
|
|
|
iImage = iRenderTask->iImage;
|
|
|
|
iRenderTask->release(this);
|
|
|
|
iRenderTask = NULL;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2016-10-08 14:56:14 +03:00
|
|
|
void BooksPageWidget::onLongPressTaskDone()
|
|
|
|
{
|
|
|
|
HASSERT(sender() == iLongPressTask);
|
2016-10-08 19:57:54 +03:00
|
|
|
HDEBUG(iLongPressTask->iKind);
|
|
|
|
|
|
|
|
if (iLongPressTask->iKind == EXTERNAL_HYPERLINK) {
|
|
|
|
static const std::string HTTP("http://");
|
|
|
|
static const std::string HTTPS("https://");
|
|
|
|
if (ZLStringUtil::stringStartsWith(iLongPressTask->iLink, HTTP) ||
|
|
|
|
ZLStringUtil::stringStartsWith(iLongPressTask->iLink, HTTPS)) {
|
|
|
|
QString url(QString::fromStdString(iLongPressTask->iLink));
|
|
|
|
Q_EMIT browserLinkPressed(url);
|
|
|
|
}
|
|
|
|
} else if (iLongPressTask->iKind == IMAGE) {
|
2016-10-09 12:01:05 +03:00
|
|
|
// Make sure that the book path is mixed into the image id to handle
|
|
|
|
// the case of different books having images with identical ids
|
|
|
|
QString id = QString::fromStdString(iLongPressTask->iImageId);
|
|
|
|
QString path;
|
|
|
|
if (iModel) {
|
|
|
|
BooksBook* book = iModel->book();
|
|
|
|
if (book) {
|
|
|
|
path = book->path();
|
|
|
|
if (!path.isEmpty()) {
|
|
|
|
if (!id.contains(path)) {
|
|
|
|
QString old = id;
|
|
|
|
id = path + ":" + old;
|
|
|
|
HDEBUG(old << "-> " << id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
static const QString IMAGE_URL("image://%1/%2");
|
|
|
|
QString url = IMAGE_URL.arg(BooksImageProvider::PROVIDER_ID, id);
|
2016-10-08 19:57:54 +03:00
|
|
|
BooksImageProvider::instance()->addImage(iModel, id,
|
|
|
|
iLongPressTask->iImageData);
|
|
|
|
Q_EMIT imagePressed(url, iLongPressTask->iRect);
|
2016-10-08 14:56:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
iLongPressTask->release(this);
|
|
|
|
iLongPressTask = NULL;
|
|
|
|
}
|
|
|
|
|
2015-06-28 14:22:35 +03:00
|
|
|
void BooksPageWidget::updateSize()
|
|
|
|
{
|
2015-07-03 17:24:20 +03:00
|
|
|
HDEBUG("page" << iPage << QSize(width(), height()));
|
|
|
|
iImage.reset();
|
2015-06-28 14:22:35 +03:00
|
|
|
resetView();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BooksPageWidget::onWidthChanged()
|
|
|
|
{
|
2015-06-28 14:49:54 +03:00
|
|
|
HDEBUG((int)width());
|
2015-06-28 14:22:35 +03:00
|
|
|
// Width change will probably be followed by height change
|
|
|
|
iResizeTimer->start();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BooksPageWidget::onHeightChanged()
|
|
|
|
{
|
2015-06-28 14:49:54 +03:00
|
|
|
HDEBUG((int)height());
|
2015-06-28 14:22:35 +03:00
|
|
|
if (iResizeTimer->isActive()) {
|
|
|
|
// Height is usually changed after width, repaint right away
|
|
|
|
iResizeTimer->stop();
|
|
|
|
updateSize();
|
|
|
|
} else {
|
|
|
|
iResizeTimer->start();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BooksPageWidget::onResizeTimeout()
|
|
|
|
{
|
|
|
|
// This can only happen if only width or height has changed. Normally,
|
|
|
|
// width change is followed by height change and view is reset from the
|
|
|
|
// setHeight() method
|
|
|
|
updateSize();
|
|
|
|
}
|
2016-10-08 14:56:14 +03:00
|
|
|
|
|
|
|
void BooksPageWidget::handleLongPress(int aX, int aY)
|
|
|
|
{
|
|
|
|
HDEBUG(aX << aY);
|
|
|
|
if (!iResetTask && !iRenderTask && !iData.isNull()) {
|
|
|
|
if (iLongPressTask) iLongPressTask->release(this);
|
|
|
|
iLongPressTask = new LongPressTask(iData, aX, aY);
|
|
|
|
iTaskQueue->submit(iLongPressTask, this, SLOT(onLongPressTaskDone()));
|
|
|
|
}
|
|
|
|
}
|