|
|
@ -49,7 +49,7 @@ UBGraphicsWidgetItem::UBGraphicsWidgetItem(const QUrl &pWidgetUrl, QGraphicsItem |
|
|
|
, mInitialLoadDone(false) |
|
|
|
, mInitialLoadDone(false) |
|
|
|
, mIsFreezable(true) |
|
|
|
, mIsFreezable(true) |
|
|
|
, mIsResizable(false)
|
|
|
|
, mIsResizable(false)
|
|
|
|
, mLoadIsErronous(false)
|
|
|
|
, mLoadIsErronous(false) |
|
|
|
, mCanBeContent(0) |
|
|
|
, mCanBeContent(0) |
|
|
|
, mCanBeTool(0) |
|
|
|
, mCanBeTool(0) |
|
|
|
, mWidgetUrl(pWidgetUrl) |
|
|
|
, mWidgetUrl(pWidgetUrl) |
|
|
@ -113,6 +113,7 @@ void UBGraphicsWidgetItem::initialize() |
|
|
|
connect(page()->mainFrame(), SIGNAL(javaScriptWindowObjectCleared()), this, SLOT(javaScriptWindowObjectCleared())); |
|
|
|
connect(page()->mainFrame(), SIGNAL(javaScriptWindowObjectCleared()), this, SLOT(javaScriptWindowObjectCleared())); |
|
|
|
connect(page(), SIGNAL(geometryChangeRequested(const QRect&)), this, SLOT(geometryChangeRequested(const QRect&))); |
|
|
|
connect(page(), SIGNAL(geometryChangeRequested(const QRect&)), this, SLOT(geometryChangeRequested(const QRect&))); |
|
|
|
connect(this, SIGNAL(loadFinished(bool)), this, SLOT(mainFrameLoadFinished (bool))); |
|
|
|
connect(this, SIGNAL(loadFinished(bool)), this, SLOT(mainFrameLoadFinished (bool))); |
|
|
|
|
|
|
|
connect(page()->mainFrame(), SIGNAL(initialLayoutCompleted()), this, SLOT(initialLayoutCompleted())); |
|
|
|
connect(page(), SIGNAL(linkClicked(const QUrl&)), this, SLOT(onLinkClicked(const QUrl&))); |
|
|
|
connect(page(), SIGNAL(linkClicked(const QUrl&)), this, SLOT(onLinkClicked(const QUrl&))); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -121,6 +122,11 @@ void UBGraphicsWidgetItem::onLinkClicked(const QUrl& url) |
|
|
|
UBApplication::webController->loadUrl(url); |
|
|
|
UBApplication::webController->loadUrl(url); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void UBGraphicsWidgetItem::initialLayoutCompleted() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
mInitialLoadDone = true; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
QUrl UBGraphicsWidgetItem::mainHtml() |
|
|
|
QUrl UBGraphicsWidgetItem::mainHtml() |
|
|
|
{ |
|
|
|
{ |
|
|
|
return mMainHtmlUrl; |
|
|
|
return mMainHtmlUrl; |
|
|
@ -564,40 +570,33 @@ void UBGraphicsWidgetItem::injectInlineJavaScript() |
|
|
|
void UBGraphicsWidgetItem::paint( QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) |
|
|
|
void UBGraphicsWidgetItem::paint( QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) |
|
|
|
{ |
|
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
if (scene() && scene()->renderingContext() != UBGraphicsScene::Screen) |
|
|
|
if (scene() && scene()->renderingContext() != UBGraphicsScene::Screen) { |
|
|
|
{ |
|
|
|
|
|
|
|
painter->drawPixmap(0, 0, snapshot()); |
|
|
|
painter->drawPixmap(0, 0, snapshot()); |
|
|
|
} |
|
|
|
} |
|
|
|
else |
|
|
|
else { |
|
|
|
{ |
|
|
|
QGraphicsWebView::paint(painter, option, widget); |
|
|
|
if (!mInitialLoadDone || mLoadIsErronous)
|
|
|
|
} |
|
|
|
{ |
|
|
|
|
|
|
|
QString message; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (mInitialLoadDone && mLoadIsErronous) |
|
|
|
if (!mInitialLoadDone) { |
|
|
|
message = tr("Cannot load content"); |
|
|
|
QString message; |
|
|
|
else |
|
|
|
|
|
|
|
message = tr("Loading ..."); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
painter->setFont(QFont("Arial", 12)); |
|
|
|
message = tr("Loading ..."); |
|
|
|
|
|
|
|
|
|
|
|
QFontMetrics fm = painter->fontMetrics(); |
|
|
|
painter->setFont(QFont("Arial", 12)); |
|
|
|
QRect txtBoundingRect = fm.boundingRect(message); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
txtBoundingRect.moveCenter(rect().center().toPoint()); |
|
|
|
QFontMetrics fm = painter->fontMetrics(); |
|
|
|
txtBoundingRect.adjust(-10, -5, 10, 5); |
|
|
|
QRect txtBoundingRect = fm.boundingRect(message); |
|
|
|
|
|
|
|
|
|
|
|
painter->setPen(Qt::NoPen); |
|
|
|
txtBoundingRect.moveCenter(rect().center().toPoint()); |
|
|
|
painter->setBrush(UBSettings::paletteColor); |
|
|
|
txtBoundingRect.adjust(-10, -5, 10, 5); |
|
|
|
painter->drawRoundedRect(txtBoundingRect, 3, 3); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
painter->setPen(Qt::white); |
|
|
|
painter->setPen(Qt::NoPen); |
|
|
|
painter->drawText(rect(), Qt::AlignCenter, message); |
|
|
|
painter->setBrush(UBSettings::paletteColor); |
|
|
|
} |
|
|
|
painter->drawRoundedRect(txtBoundingRect, 3, 3); |
|
|
|
else |
|
|
|
|
|
|
|
QGraphicsWebView::paint(painter, option, widget); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
painter->setPen(Qt::white); |
|
|
|
|
|
|
|
painter->drawText(rect(), Qt::AlignCenter, message); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void UBGraphicsWidgetItem::geometryChangeRequested(const QRect& geom) |
|
|
|
void UBGraphicsWidgetItem::geometryChangeRequested(const QRect& geom) |
|
|
@ -618,7 +617,6 @@ void UBGraphicsWidgetItem::javaScriptWindowObjectCleared() |
|
|
|
|
|
|
|
|
|
|
|
void UBGraphicsWidgetItem::mainFrameLoadFinished (bool ok) |
|
|
|
void UBGraphicsWidgetItem::mainFrameLoadFinished (bool ok) |
|
|
|
{ |
|
|
|
{ |
|
|
|
mInitialLoadDone = true; |
|
|
|
|
|
|
|
mLoadIsErronous = !ok; |
|
|
|
mLoadIsErronous = !ok; |
|
|
|
update(boundingRect()); |
|
|
|
update(boundingRect()); |
|
|
|
takeSnapshot(); |
|
|
|
takeSnapshot(); |
|
|
|