Home | History | Annotate | Download | only in Api

Lines Matching full:qgraphicswebview

22 #include "qgraphicswebview.h"
55 QGraphicsWebViewPrivate(QGraphicsWebView* parent)
75 QGraphicsWebView* q;
156 \class QGraphicsWebView
157 \brief The QGraphicsWebView class allows Web content to be added to a GraphicsView.
170 for this item, making it simple to adapt existing code to use QGraphicsWebView instead
186 \fn void QGraphicsWebView::titleChanged(const QString &title)
194 \fn void QGraphicsWebView::urlChanged(const QUrl &url)
202 \fn void QGraphicsWebView::iconChanged()
213 \fn void QGraphicsWebView::loadStarted()
221 \fn void QGraphicsWebView::loadFinished(bool ok)
230 Constructs an empty QGraphicsWebView with parent \a parent.
234 QGraphicsWebView::QGraphicsWebView(QGraphicsItem* parent)
252 QGraphicsWebView::~QGraphicsWebView()
262 QWebPage* QGraphicsWebView::page() const
265 QGraphicsWebView* that = const_cast<QGraphicsWebView*>(this);
282 void QGraphicsWebView::paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget*)
307 bool QGraphicsWebView::sceneEvent(QEvent* event)
325 QVariant QGraphicsWebView::itemChange(GraphicsItemChange change, const QVariant& value)
328 // Differently from QWebView, it is interesting to QGraphicsWebView to handle
350 QSizeF QGraphicsWebView::sizeHint(Qt::SizeHint which, const QSizeF& constraint) const
359 QVariant QGraphicsWebView::inputMethodQuery(Qt::InputMethodQuery query) const
367 \property QGraphicsWebView::renderHints
388 QPainter::RenderHints QGraphicsWebView::renderHints() const
399 void QGraphicsWebView::setRenderHints(QPainter::RenderHints hints)
414 void QGraphicsWebView::setRenderHint(QPainter::RenderHint hint, bool enabled)
427 bool QGraphicsWebView::event(QEvent* event)
496 void QGraphicsWebView::setPage(QWebPage* page)
545 \property QGraphicsWebView::url
555 void QGraphicsWebView::setUrl(const QUrl &url)
560 QUrl QGraphicsWebView::url() const
569 \property QGraphicsWebView::title
576 QString QGraphicsWebView::title() const
585 \property QGraphicsWebView::icon
592 QIcon QGraphicsWebView::icon() const
601 \property QGraphicsWebView::zoomFactor
605 void QGraphicsWebView::setZoomFactor(qreal factor)
613 qreal QGraphicsWebView::zoomFactor() const
620 void QGraphicsWebView::updateGeometry()
636 void QGraphicsWebView::setGeometry(const QRectF& rect)
657 void QGraphicsWebView::stop()
669 void QGraphicsWebView::back()
681 void QGraphicsWebView::forward()
692 void QGraphicsWebView::reload()
705 void QGraphicsWebView::load(const QUrl& url)
711 \fn void QGraphicsWebView::load(const QNetworkRequest &request, QNetworkAccessManager::Operation operation, const QByteArray &body)
722 void QGraphicsWebView::load(const QNetworkRequest& request,
750 void QGraphicsWebView::setHtml(const QString& html, const QUrl& baseUrl)
766 void QGraphicsWebView::setContent(const QByteArray& data, const QString& mimeType, const QUrl& baseUrl)
778 QWebHistory* QGraphicsWebView::history() const
784 \property QGraphicsWebView::modified
792 bool QGraphicsWebView::isModified() const
808 QWebSettings* QGraphicsWebView::settings() const
816 QAction *QGraphicsWebView::pageAction(QWebPage::WebAction action) const
832 void QGraphicsWebView::triggerPageAction(QWebPage::WebAction action, bool checked)
853 bool QGraphicsWebView::findText(const QString &subString, QWebPage::FindFlags options)
861 \property QGraphicsWebView::resizesToContents
862 \brief whether the size of the QGraphicsWebView and its viewport changes to match the contents size
865 If this property is set, the QGraphicsWebView will automatically change its
875 void QGraphicsWebView::setResizesToContents(bool enabled)
884 bool QGraphicsWebView::resizesToContents() const
890 \property QGraphicsWebView::tiledBackingStoreFrozen
896 a smooth animation that changes the scale of the QGraphicsWebView.
899 state of the document. If the QGraphicsWebView scale was changed, the backing store is also
907 bool QGraphicsWebView::isTiledBackingStoreFrozen() const
919 void QGraphicsWebView::setTiledBackingStoreFrozen(bool frozen)
933 void QGraphicsWebView::hoverMoveEvent(QGraphicsSceneHoverEvent* ev)
950 void QGraphicsWebView::hoverLeaveEvent(QGraphicsSceneHoverEvent* ev)
957 void QGraphicsWebView::mouseMoveEvent(QGraphicsSceneMouseEvent* ev)
971 void QGraphicsWebView::mousePressEvent(QGraphicsSceneMouseEvent* ev)
985 void QGraphicsWebView::mouseReleaseEvent(QGraphicsSceneMouseEvent* ev)
999 void QGraphicsWebView::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* ev)
1013 void QGraphicsWebView::keyPressEvent(QKeyEvent* ev)
1024 void QGraphicsWebView::keyReleaseEvent(QKeyEvent* ev)
1035 void QGraphicsWebView::focusInEvent(QFocusEvent* ev)
1045 void QGraphicsWebView::focusOutEvent(QFocusEvent* ev)
1055 bool QGraphicsWebView::focusNextPrevChild(bool next)
1065 void QGraphicsWebView::dragEnterEvent(QGraphicsSceneDragDropEvent* ev)
1077 void QGraphicsWebView::dragLeaveEvent(QGraphicsSceneDragDropEvent* ev)
1095 void QGraphicsWebView::dragMoveEvent(QGraphicsSceneDragDropEvent* ev)
1113 void QGraphicsWebView::dropEvent(QGraphicsSceneDragDropEvent* ev)
1132 void QGraphicsWebView::contextMenuEvent(QGraphicsSceneContextMenuEvent* ev)
1145 void QGraphicsWebView::wheelEvent(QGraphicsSceneWheelEvent* ev)
1160 void QGraphicsWebView::inputMethodEvent(QInputMethodEvent* ev)
1170 \fn void QGraphicsWebView::statusBarMessage(const QString& text)
1176 \fn void QGraphicsWebView::loadProgress(int progress)
1190 \fn void QGraphicsWebView::linkClicked(const QUrl &url)