1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143
|
/*
Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies)
Copyright (C) 2009 Girish Ramakrishnan <girish@forwardbias.in>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "qgraphicswebview.h"
#if !defined(QT_NO_GRAPHICSVIEW)
#include "PageClientQt.h"
#include "qwebframe.h"
#include "qwebframe_p.h"
#include "qwebpage.h"
#include "qwebpage_p.h"
#include <qapplication.h>
#include <qgraphicsscene.h>
#include <qgraphicssceneevent.h>
#include <qgraphicsview.h>
#include <qmetaobject.h>
#include <qpixmapcache.h>
#include <qscrollbar.h>
#include <qsharedpointer.h>
#include <qstyleoption.h>
#include <qtimer.h>
#if defined(Q_WS_X11)
#include <QX11Info>
#endif
using namespace WebCore;
class QGraphicsWebViewPrivate {
public:
QGraphicsWebViewPrivate(QGraphicsWebView* parent)
: q(parent)
, page(0)
, resizesToContents(false)
, renderHints(QPainter::TextAntialiasing | QPainter::SmoothPixmapTransform)
{ }
virtual ~QGraphicsWebViewPrivate();
void updateResizesToContentsForPage();
void detachCurrentPage();
void _q_doLoadFinished(bool success);
void _q_contentsSizeChanged(const QSize&);
void _q_scaleChanged();
void _q_pageDestroyed();
QGraphicsWebView* q;
QWebPage* page;
bool resizesToContents;
QPainter::RenderHints renderHints;
QGraphicsItemOverlay* overlay() const
{
if (!page || !page->d->client)
return 0;
return pageClient()->overlay;
}
PageClientQGraphicsWidget* pageClient() const
{
return static_cast<WebCore::PageClientQGraphicsWidget*> (page->d->client.data());
}
};
QGraphicsWebViewPrivate::~QGraphicsWebViewPrivate()
{
detachCurrentPage();
}
void QGraphicsWebViewPrivate::_q_doLoadFinished(bool success)
{
// If the page had no title, still make sure it gets the signal
if (q->title().isEmpty())
emit q->urlChanged(q->url());
emit q->loadFinished(success);
}
void QGraphicsWebViewPrivate::_q_pageDestroyed()
{
page = 0;
q->setPage(0);
}
void QGraphicsWebViewPrivate::updateResizesToContentsForPage()
{
ASSERT(page);
pageClient()->viewResizesToContents = resizesToContents;
if (resizesToContents) {
// resizes to contents mode requires preferred contents size to be set
if (!page->preferredContentsSize().isValid())
page->setPreferredContentsSize(QSize(960, 800));
QObject::connect(page->mainFrame(), SIGNAL(contentsSizeChanged(QSize)),
q, SLOT(_q_contentsSizeChanged(const QSize&)), Qt::UniqueConnection);
} else {
QObject::disconnect(page->mainFrame(), SIGNAL(contentsSizeChanged(QSize)),
q, SLOT(_q_contentsSizeChanged(const QSize&)));
}
page->d->mainFrameAdapter()->setPaintsEntireContents(resizesToContents);
page->d->mainFrameAdapter()->setDelegatesScrolling(resizesToContents);
}
void QGraphicsWebViewPrivate::_q_contentsSizeChanged(const QSize& size)
{
if (!resizesToContents)
return;
q->setGeometry(QRectF(q->geometry().topLeft(), size));
}
void QGraphicsWebViewPrivate::_q_scaleChanged()
{
#if USE(TILED_BACKING_STORE)
if (!page)
return;
page->d->mainFrameAdapter()->setTiledBackingStoreContentsScale(q->scale());
#endif
}
/*!
\class QGraphicsWebView
\brief The QGraphicsWebView class allows Web content to be added to a GraphicsView.
\inmodule QtWebKit
\since 4.6
An instance of this class renders Web content from a URL or supplied as data, using
features of the Qt WebKit module.
If the width and height of the item are not set, they will default to 800 and 600,
respectively. If the Web page contents is larger than that, scrollbars will be shown
if not disabled explicitly.
\section1 Browser Features
Many of the functions, signals and properties provided by QWebView are also available
for this item, making it simple to adapt existing code to use QGraphicsWebView instead
of QWebView.
The item uses a QWebPage object to perform the rendering of Web content, and this can
be obtained with the page() function, enabling the document itself to be accessed and
modified.
As with QWebView, the item records the browsing history using a QWebHistory object,
accessible using the history() function. The QWebSettings object that defines the
configuration of the browser can be obtained with the settings() function, enabling
features like plugin support to be customized for each item.
\sa QWebView, QGraphicsTextItem
*/
/*!
\fn void QGraphicsWebView::loadStarted()
This signal is emitted when a new load of the page is started.
\sa loadProgress(), loadFinished()
*/
/*!
\fn void QGraphicsWebView::loadFinished(bool ok)
This signal is emitted when a load of the page is finished.
\a ok will indicate whether the load was successful or any error occurred.
\sa loadStarted()
*/
/*!
Constructs an empty QGraphicsWebView with parent \a parent.
\sa load()
*/
QGraphicsWebView::QGraphicsWebView(QGraphicsItem* parent)
: QGraphicsWidget(parent)
, d(new QGraphicsWebViewPrivate(this))
{
setFlag(QGraphicsItem::ItemUsesExtendedStyleOption, true);
setAcceptDrops(true);
setAcceptHoverEvents(true);
setAcceptTouchEvents(true);
setFocusPolicy(Qt::StrongFocus);
setFlag(QGraphicsItem::ItemClipsChildrenToShape, true);
#if USE(TILED_BACKING_STORE)
QObject::connect(this, SIGNAL(scaleChanged()), this, SLOT(_q_scaleChanged()));
#endif
}
/*!
Destroys the item.
*/
QGraphicsWebView::~QGraphicsWebView()
{
delete d;
}
/*!
Returns a pointer to the underlying web page.
\sa setPage()
*/
QWebPage* QGraphicsWebView::page() const
{
if (!d->page) {
QGraphicsWebView* that = const_cast<QGraphicsWebView*>(this);
QWebPage* page = new QWebPage(that);
// Default to not having a background, in the case
// the page doesn't provide one.
QPalette palette = QApplication::palette();
palette.setBrush(QPalette::Base, QColor::fromRgbF(0, 0, 0, 0));
page->setPalette(palette);
that->setPage(page);
}
return d->page;
}
/*! \reimp
*/
void QGraphicsWebView::paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget*)
{
QPainter::RenderHints oldHints = painter->renderHints();
painter->setRenderHints(oldHints | d->renderHints);
#if USE(TILED_BACKING_STORE)
// QWebFrame::render is a public API, bypass it for tiled rendering so behavior does not need to change.
if (page()->mainFrame()->d->renderFromTiledBackingStore(painter, option->exposedRect.toAlignedRect())) {
painter->setRenderHints(oldHints);
return;
}
#endif
page()->mainFrame()->render(painter, QWebFrame::AllLayers, option->exposedRect.toRect());
painter->setRenderHints(oldHints);
}
/*! \reimp
*/
bool QGraphicsWebView::sceneEvent(QEvent* event)
{
// Re-implemented in order to allows fixing event-related bugs in patch releases.
if (d->page && (event->type() == QEvent::TouchBegin
|| event->type() == QEvent::TouchEnd
|| event->type() == QEvent::TouchUpdate
|| event->type() == QEvent::TouchCancel)) {
if (d->page->event(event))
return true;
}
return QGraphicsWidget::sceneEvent(event);
}
/*! \reimp
*/
QVariant QGraphicsWebView::itemChange(GraphicsItemChange change, const QVariant& value)
{
switch (change) {
// Differently from QWebView, it is interesting to QGraphicsWebView to handle
// post mouse cursor change notifications. Reason: 'ItemCursorChange' is sent
// as the first action in QGraphicsItem::setCursor implementation, and at that
// item widget's cursor has not been effectively changed yet.
// After cursor is properly set (at 'ItemCursorHasChanged' emission time), we
// fire 'CursorChange'.
case ItemCursorChange:
return value;
case ItemCursorHasChanged: {
QEvent event(QEvent::CursorChange);
QApplication::sendEvent(this, &event);
return value;
}
default:
break;
}
return QGraphicsWidget::itemChange(change, value);
}
/*! \reimp
*/
QSizeF QGraphicsWebView::sizeHint(Qt::SizeHint which, const QSizeF& constraint) const
{
if (which == Qt::PreferredSize)
return QSizeF(800, 600); // ###
return QGraphicsWidget::sizeHint(which, constraint);
}
/*! \reimp
*/
QVariant QGraphicsWebView::inputMethodQuery(Qt::InputMethodQuery query) const
{
if (d->page)
return d->page->inputMethodQuery(query);
return QVariant();
}
/*!
\property QGraphicsWebView::renderHints
\since 4.8
\brief the default render hints for the view
These hints are used to initialize QPainter before painting the Web page.
QPainter::TextAntialiasing and QPainter::SmoothPixmapTransform are enabled by default and will be
used to render the item in addition of what has been set on the painter given by QGraphicsScene.
\sa QPainter::renderHints()
*/
/*!
\since 4.8
Returns the render hints used by the view to render content.
\sa QPainter::renderHints()
*/
QPainter::RenderHints QGraphicsWebView::renderHints() const
{
return d->renderHints;
}
/*!
\since 4.8
Sets the render hints used by the view to the specified \a hints.
\sa QPainter::setRenderHints()
*/
void QGraphicsWebView::setRenderHints(QPainter::RenderHints hints)
{
if (hints == d->renderHints)
return;
d->renderHints = hints;
update();
}
/*!
\since 4.8
If \a enabled is true, enables the specified render \a hint; otherwise
disables it.
\sa renderHints, QPainter::renderHints()
*/
void QGraphicsWebView::setRenderHint(QPainter::RenderHint hint, bool enabled)
{
QPainter::RenderHints oldHints = d->renderHints;
if (enabled)
d->renderHints |= hint;
else
d->renderHints &= ~hint;
if (oldHints != d->renderHints)
update();
}
/*! \reimp
*/
bool QGraphicsWebView::event(QEvent* event)
{
// Re-implemented in order to allows fixing event-related bugs in patch releases.
if (d->page) {
if (event->type() == QEvent::PaletteChange)
d->page->setPalette(palette());
#ifndef QT_NO_CONTEXTMENU
if (event->type() == QEvent::GraphicsSceneContextMenu) {
if (!isEnabled())
return false;
QGraphicsSceneContextMenuEvent* ev = static_cast<QGraphicsSceneContextMenuEvent*>(event);
QContextMenuEvent fakeEvent(QContextMenuEvent::Reason(ev->reason()), ev->pos().toPoint());
if (d->page->swallowContextMenuEvent(&fakeEvent)) {
event->accept();
return true;
}
d->page->updatePositionDependentActions(fakeEvent.pos());
} else
#endif // QT_NO_CONTEXTMENU
{
#ifndef QT_NO_CURSOR
if (event->type() == QEvent::CursorChange) {
// An unsetCursor will set the cursor to Qt::ArrowCursor.
// Thus this cursor change might be a QWidget::unsetCursor()
// If this is not the case and it came from WebCore, the
// QWebPageClient already has set its cursor internally
// to Qt::ArrowCursor, so updating the cursor is always
// right, as it falls back to the last cursor set by
// WebCore.
// FIXME: Add a QEvent::CursorUnset or similar to Qt.
if (cursor().shape() == Qt::ArrowCursor)
d->page->d->client->resetCursor();
}
#endif
if (event->type() == QEvent::Show
|| event->type() == QEvent::Hide)
d->page->event(event);
}
}
return QGraphicsWidget::event(event);
}
void QGraphicsWebViewPrivate::detachCurrentPage()
{
if (!page)
return;
page->d->view = 0;
page->d->client.reset();
// if the page was created by us, we own it and need to
// destroy it as well.
if (page->parent() == q)
delete page;
else
page->disconnect(q);
page = 0;
}
/*!
Makes \a page the new web page of the web graphicsitem.
The parent QObject of the provided page remains the owner
of the object. If the current document is a child of the web
view, it will be deleted.
\sa page()
*/
void QGraphicsWebView::setPage(QWebPage* page)
{
if (d->page == page)
return;
d->detachCurrentPage();
d->page = page;
if (!d->page)
return;
d->page->d->client.reset(new PageClientQGraphicsWidget(this, page));
if (d->overlay())
d->overlay()->prepareGraphicsItemGeometryChange();
QSize size = geometry().size().toSize();
page->setViewportSize(size);
if (d->resizesToContents)
d->updateResizesToContentsForPage();
QWebFrame* mainFrame = d->page->mainFrame();
connect(mainFrame, SIGNAL(titleChanged(QString)),
this, SIGNAL(titleChanged(QString)));
connect(mainFrame, SIGNAL(iconChanged()),
this, SIGNAL(iconChanged()));
connect(mainFrame, SIGNAL(urlChanged(QUrl)),
this, SIGNAL(urlChanged(QUrl)));
connect(d->page, SIGNAL(loadStarted()),
this, SIGNAL(loadStarted()));
connect(d->page, SIGNAL(loadProgress(int)),
this, SIGNAL(loadProgress(int)));
connect(d->page, SIGNAL(loadFinished(bool)),
this, SLOT(_q_doLoadFinished(bool)));
connect(d->page, SIGNAL(statusBarMessage(QString)),
this, SIGNAL(statusBarMessage(QString)));
connect(d->page, SIGNAL(linkClicked(QUrl)),
this, SIGNAL(linkClicked(QUrl)));
connect(d->page, SIGNAL(destroyed()),
this, SLOT(_q_pageDestroyed()));
#if !defined(QT_NO_IM) && (defined(Q_WS_X11) || defined(Q_WS_QWS))
connect(d->page, SIGNAL(microFocusChanged()),
this, SLOT(updateMicroFocus()));
#endif
}
/*!
\property QGraphicsWebView::url
\brief the url of the web page currently viewed
Setting this property clears the view and loads the URL.
By default, this property contains an empty, invalid URL.
\sa load()
*/
void QGraphicsWebView::setUrl(const QUrl &url)
{
page()->mainFrame()->setUrl(url);
}
QUrl QGraphicsWebView::url() const
{
if (d->page)
return d->page->mainFrame()->url();
return QUrl();
}
/*!
\property QGraphicsWebView::title
\brief the title of the web page currently viewed
By default, this property contains an empty string.
*/
QString QGraphicsWebView::title() const
{
if (d->page)
return d->page->mainFrame()->title();
return QString();
}
/*!
\property QGraphicsWebView::icon
\brief the icon associated with the web page currently viewed
By default, this property contains a null icon.
In order for icons to be loaded, you will need to set an icon database path
using QWebSettings::setIconDatabasePath().
\sa QWebSettings::iconForUrl(), QWebSettings::setIconDatabasePath()
*/
QIcon QGraphicsWebView::icon() const
{
if (d->page)
return d->page->mainFrame()->icon();
return QIcon();
}
/*!
\property QGraphicsWebView::zoomFactor
\brief the zoom factor for the view
*/
void QGraphicsWebView::setZoomFactor(qreal factor)
{
if (factor == page()->mainFrame()->zoomFactor())
return;
page()->mainFrame()->setZoomFactor(factor);
}
qreal QGraphicsWebView::zoomFactor() const
{
return page()->mainFrame()->zoomFactor();
}
/*! \reimp
*/
void QGraphicsWebView::updateGeometry()
{
if (d->overlay())
d->overlay()->prepareGraphicsItemGeometryChange();
QGraphicsWidget::updateGeometry();
if (!d->page)
return;
QSize size = geometry().size().toSize();
d->page->setViewportSize(size);
}
/*! \reimp
*/
void QGraphicsWebView::setGeometry(const QRectF& rect)
{
QGraphicsWidget::setGeometry(rect);
if (d->overlay())
d->overlay()->prepareGraphicsItemGeometryChange();
if (!d->page)
return;
// NOTE: call geometry() as setGeometry ensures that
// the geometry is within legal bounds (minimumSize, maximumSize)
QSize size = geometry().size().toSize();
d->page->setViewportSize(size);
}
/*!
Convenience slot that stops loading the document.
\sa reload(), loadFinished()
*/
void QGraphicsWebView::stop()
{
if (d->page)
d->page->triggerAction(QWebPage::Stop);
}
/*!
Convenience slot that loads the previous document in the list of documents
built by navigating links. Does nothing if there is no previous document.
\sa forward()
*/
void QGraphicsWebView::back()
{
if (d->page)
d->page->triggerAction(QWebPage::Back);
}
/*!
Convenience slot that loads the next document in the list of documents
built by navigating links. Does nothing if there is no next document.
\sa back()
*/
void QGraphicsWebView::forward()
{
if (d->page)
d->page->triggerAction(QWebPage::Forward);
}
/*!
Reloads the current document.
\sa stop(), loadStarted()
*/
void QGraphicsWebView::reload()
{
if (d->page)
d->page->triggerAction(QWebPage::Reload);
}
/*!
Loads the specified \a url and displays it.
\note The view remains the same until enough data has arrived to display the new \a url.
\sa setUrl(), url()
*/
void QGraphicsWebView::load(const QUrl& url)
{
page()->mainFrame()->load(url);
}
/*!
\fn void QGraphicsWebView::load(const QNetworkRequest &request, QNetworkAccessManager::Operation operation, const QByteArray &body)
Loads a network request, \a request, using the method specified in \a operation.
\a body is optional and is only used for POST operations.
\note The view remains the same until enough data has arrived to display the new url.
\sa url()
*/
void QGraphicsWebView::load(const QNetworkRequest& request, QNetworkAccessManager::Operation operation, const QByteArray& body)
{
page()->mainFrame()->load(request, operation, body);
}
/*!
Sets the content of the web view to the specified \a html.
External objects such as stylesheets or images referenced in the HTML
document are located relative to \a baseUrl.
The \a html is loaded immediately; external objects are loaded asynchronously.
When using this method, WebKit assumes that external resources such as
JavaScript programs or style sheets are encoded in UTF-8 unless otherwise
specified. For example, the encoding of an external script can be specified
through the charset attribute of the HTML script tag. Alternatively, the
encoding can also be specified by the web server.
This is a convenience function equivalent to setContent(html, "text/html", baseUrl).
\warning This function works only for HTML, for other mime types (i.e. XHTML, SVG)
setContent() should be used instead.
\sa load(), setContent(), QWebFrame::toHtml(), QWebFrame::setContent()
*/
void QGraphicsWebView::setHtml(const QString& html, const QUrl& baseUrl)
{
page()->mainFrame()->setHtml(html, baseUrl);
}
/*!
Sets the content of the web graphicsitem to the specified content \a data. If the \a mimeType argument
is empty it is currently assumed that the content is HTML but in future versions we may introduce
auto-detection.
External objects referenced in the content are located relative to \a baseUrl.
The \a data is loaded immediately; external objects are loaded asynchronously.
\sa load(), setHtml(), QWebFrame::toHtml()
*/
void QGraphicsWebView::setContent(const QByteArray& data, const QString& mimeType, const QUrl& baseUrl)
{
page()->mainFrame()->setContent(data, mimeType, baseUrl);
}
/*!
Returns a pointer to the view's history of navigated web pages.
It is equivalent to
\snippet webkitsnippets/qtwebkit_qwebview_snippet.cpp 0
*/
QWebHistory* QGraphicsWebView::history() const
{
return page()->history();
}
/*!
\property QGraphicsWebView::modified
\brief whether the document was modified by the user
Parts of HTML documents can be editable for example through the
\c{contenteditable} attribute on HTML elements.
By default, this property is false.
*/
bool QGraphicsWebView::isModified() const
{
if (d->page)
return d->page->isModified();
return false;
}
/*!
Returns a pointer to the view/page specific settings object.
It is equivalent to
\snippet webkitsnippets/qtwebkit_qwebview_snippet.cpp 1
\sa QWebSettings::globalSettings()
*/
QWebSettings* QGraphicsWebView::settings() const
{
return page()->settings();
}
/*!
Returns a pointer to a QAction that encapsulates the specified web action \a action.
*/
QAction *QGraphicsWebView::pageAction(QWebPage::WebAction action) const
{
#ifdef QT_NO_ACTION
Q_UNUSED(action)
return 0;
#else
return page()->action(action);
#endif
}
/*!
Triggers the specified \a action. If it is a checkable action the specified
\a checked state is assumed.
\sa pageAction()
*/
void QGraphicsWebView::triggerPageAction(QWebPage::WebAction action, bool checked)
{
page()->triggerAction(action, checked);
}
/*!
Finds the specified string, \a subString, in the page, using the given \a options.
If the HighlightAllOccurrences flag is passed, the function will highlight all occurrences
that exist in the page. All subsequent calls will extend the highlight, rather than
replace it, with occurrences of the new string.
If the HighlightAllOccurrences flag is not passed, the function will select an occurrence
and all subsequent calls will replace the current occurrence with the next one.
To clear the selection, just pass an empty string.
Returns true if \a subString was found; otherwise returns false.
\sa QWebPage::selectedText(), QWebPage::selectionChanged()
*/
bool QGraphicsWebView::findText(const QString &subString, QWebPage::FindFlags options)
{
if (d->page)
return d->page->findText(subString, options);
return false;
}
/*!
\property QGraphicsWebView::resizesToContents
\brief whether the size of the QGraphicsWebView and its viewport changes to match the contents size
\since 4.7
If this property is set, the QGraphicsWebView will automatically change its
size to match the size of the main frame contents. As a result the top level frame
will never have scrollbars. It will also make CSS fixed positioning to behave like absolute positioning
with elements positioned relative to the document instead of the viewport.
This property should be used in conjunction with the QWebPage::preferredContentsSize property.
If not explicitly set, the preferredContentsSize is automatically set to a reasonable value.
\sa QWebPage::setPreferredContentsSize()
*/
void QGraphicsWebView::setResizesToContents(bool enabled)
{
if (d->resizesToContents == enabled)
return;
d->resizesToContents = enabled;
if (d->page)
d->updateResizesToContentsForPage();
}
bool QGraphicsWebView::resizesToContents() const
{
return d->resizesToContents;
}
/*!
\property QGraphicsWebView::tiledBackingStoreFrozen
\brief whether the tiled backing store updates its contents
\since 4.7
If the tiled backing store is enabled using QWebSettings::TiledBackingStoreEnabled attribute, this property
can be used to disable backing store updates temporarily. This can be useful for example for running
a smooth animation that changes the scale of the QGraphicsWebView.
When the backing store is unfrozen, its contents will be automatically updated to match the current
state of the document. If the QGraphicsWebView scale was changed, the backing store is also
re-rendered using the new scale.
If the tiled backing store is not enabled, this property does nothing.
\sa QWebSettings::TiledBackingStoreEnabled
\sa QGraphicsObject::scale
*/
bool QGraphicsWebView::isTiledBackingStoreFrozen() const
{
#if USE(TILED_BACKING_STORE)
return page()->d->mainFrameAdapter()->tiledBackingStoreFrozen();
#else
return false;
#endif
}
void QGraphicsWebView::setTiledBackingStoreFrozen(bool frozen)
{
#if USE(TILED_BACKING_STORE)
page()->d->mainFrameAdapter()->setTiledBackingStoreFrozen(frozen);
#else
UNUSED_PARAM(frozen);
#endif
}
/*! \reimp
*/
void QGraphicsWebView::hoverMoveEvent(QGraphicsSceneHoverEvent* ev)
{
if (d->page) {
const bool accepted = ev->isAccepted();
QMouseEvent me = QMouseEvent(QEvent::MouseMove, ev->pos().toPoint(), Qt::NoButton, Qt::NoButton, Qt::NoModifier);
d->page->event(&me);
ev->setAccepted(accepted);
}
if (!ev->isAccepted())
QGraphicsItem::hoverMoveEvent(ev);
}
/*! \reimp
*/
void QGraphicsWebView::hoverLeaveEvent(QGraphicsSceneHoverEvent* ev)
{
Q_UNUSED(ev);
}
/*! \reimp
*/
void QGraphicsWebView::mouseMoveEvent(QGraphicsSceneMouseEvent* ev)
{
if (d->page) {
const bool accepted = ev->isAccepted();
d->page->event(ev);
ev->setAccepted(accepted);
}
if (!ev->isAccepted())
QGraphicsItem::mouseMoveEvent(ev);
}
/*! \reimp
*/
void QGraphicsWebView::mousePressEvent(QGraphicsSceneMouseEvent* ev)
{
if (d->page) {
const bool accepted = ev->isAccepted();
d->page->event(ev);
ev->setAccepted(accepted);
}
if (!ev->isAccepted())
QGraphicsItem::mousePressEvent(ev);
}
/*! \reimp
*/
void QGraphicsWebView::mouseReleaseEvent(QGraphicsSceneMouseEvent* ev)
{
if (d->page) {
const bool accepted = ev->isAccepted();
d->page->event(ev);
ev->setAccepted(accepted);
}
if (!ev->isAccepted())
QGraphicsItem::mouseReleaseEvent(ev);
}
/*! \reimp
*/
void QGraphicsWebView::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* ev)
{
if (d->page) {
const bool accepted = ev->isAccepted();
d->page->event(ev);
ev->setAccepted(accepted);
}
if (!ev->isAccepted())
QGraphicsItem::mouseDoubleClickEvent(ev);
}
/*! \reimp
*/
void QGraphicsWebView::keyPressEvent(QKeyEvent* ev)
{
if (d->page)
d->page->event(ev);
if (!ev->isAccepted())
QGraphicsItem::keyPressEvent(ev);
}
/*! \reimp
*/
void QGraphicsWebView::keyReleaseEvent(QKeyEvent* ev)
{
if (d->page)
d->page->event(ev);
if (!ev->isAccepted())
QGraphicsItem::keyReleaseEvent(ev);
}
/*! \reimp
*/
void QGraphicsWebView::focusInEvent(QFocusEvent* ev)
{
if (d->page)
d->page->event(ev);
else
QGraphicsItem::focusInEvent(ev);
}
/*! \reimp
*/
void QGraphicsWebView::focusOutEvent(QFocusEvent* ev)
{
if (d->page)
d->page->event(ev);
else
QGraphicsItem::focusOutEvent(ev);
}
/*! \reimp
*/
bool QGraphicsWebView::focusNextPrevChild(bool next)
{
if (d->page)
return d->page->focusNextPrevChild(next);
return QGraphicsWidget::focusNextPrevChild(next);
}
/*! \reimp
*/
void QGraphicsWebView::dragEnterEvent(QGraphicsSceneDragDropEvent* ev)
{
#ifndef QT_NO_DRAGANDDROP
if (d->page)
d->page->event(ev);
#else
Q_UNUSED(ev);
#endif
}
/*! \reimp
*/
void QGraphicsWebView::dragLeaveEvent(QGraphicsSceneDragDropEvent* ev)
{
#ifndef QT_NO_DRAGANDDROP
if (d->page) {
const bool accepted = ev->isAccepted();
d->page->event(ev);
ev->setAccepted(accepted);
}
if (!ev->isAccepted())
QGraphicsWidget::dragLeaveEvent(ev);
#else
Q_UNUSED(ev);
#endif
}
/*! \reimp
*/
void QGraphicsWebView::dragMoveEvent(QGraphicsSceneDragDropEvent* ev)
{
#ifndef QT_NO_DRAGANDDROP
if (d->page) {
const bool accepted = ev->isAccepted();
d->page->event(ev);
ev->setAccepted(accepted);
}
if (!ev->isAccepted())
QGraphicsWidget::dragMoveEvent(ev);
#else
Q_UNUSED(ev);
#endif
}
/*! \reimp
*/
void QGraphicsWebView::dropEvent(QGraphicsSceneDragDropEvent* ev)
{
#ifndef QT_NO_DRAGANDDROP
if (d->page) {
const bool accepted = ev->isAccepted();
d->page->event(ev);
ev->setAccepted(accepted);
}
if (!ev->isAccepted())
QGraphicsWidget::dropEvent(ev);
#else
Q_UNUSED(ev);
#endif
}
#ifndef QT_NO_CONTEXTMENU
/*! \reimp
*/
void QGraphicsWebView::contextMenuEvent(QGraphicsSceneContextMenuEvent* ev)
{
if (d->page) {
const bool accepted = ev->isAccepted();
d->page->event(ev);
ev->setAccepted(accepted);
}
}
#endif // QT_NO_CONTEXTMENU
#ifndef QT_NO_WHEELEVENT
/*! \reimp
*/
void QGraphicsWebView::wheelEvent(QGraphicsSceneWheelEvent* ev)
{
if (d->page) {
const bool accepted = ev->isAccepted();
d->page->event(ev);
ev->setAccepted(accepted);
}
if (!ev->isAccepted())
QGraphicsItem::wheelEvent(ev);
}
#endif // QT_NO_WHEELEVENT
/*! \reimp
*/
void QGraphicsWebView::inputMethodEvent(QInputMethodEvent* ev)
{
if (d->page)
d->page->event(ev);
if (!ev->isAccepted())
QGraphicsItem::inputMethodEvent(ev);
}
/*!
\fn void QGraphicsWebView::statusBarMessage(const QString& text)
This signal is emitted when the statusbar \a text is changed by the page.
*/
/*!
\fn void QGraphicsWebView::loadProgress(int progress)
This signal is emitted every time an element in the web page
completes loading and the overall loading progress advances.
This signal tracks the progress of all child frames.
The current value is provided by \a progress and scales from 0 to 100,
which is the default range of QProgressBar.
\sa loadStarted(), loadFinished()
*/
/*!
\fn void QGraphicsWebView::linkClicked(const QUrl &url)
This signal is emitted whenever the user clicks on a link and the page's linkDelegationPolicy
property is set to delegate the link handling for the specified \a url.
\sa QWebPage::linkDelegationPolicy()
*/
#endif // QT_NO_GRAPHICSVIEW
#include "moc_qgraphicswebview.cpp"
|