Home | History | Annotate | Download | only in Api

Lines Matching defs:QWebView

23 #include "qwebview.h"
39 QWebViewPrivate(QWebView *view)
49 QWebView *view;
81 void setWidget(QWebView* widget)
196 QWebView* m_view;
207 \class QWebView
209 \brief The QWebView class provides a widget that is used to view and edit
215 QWebView is the main widget component of the QtWebKit web browsing module.
219 The image below shows QWebView previewed in \QD with a Nokia website.
221 \image qwebview-url.png
223 A web site can be loaded onto QWebView with the load() function. Like all
225 QWebView. The snippet below illustrates this:
227 \snippet webkitsnippets/simple/main.cpp Using QWebView
240 \l{Elements of QWebView} for an explanation of how the web page
260 QWebView maintains the state of the returned actions but allows
264 A QWebView can be printed onto a QPrinter using the print() function.
270 new windows, such as pop-up windows, you can subclass QWebView and
273 \section1 Elements of QWebView
275 QWebView consists of other objects such as QWebFrame and QWebPage. The
278 \image qwebview-diagram.png
280 \note It is possible to use QWebPage and QWebFrame, without using QWebView,
289 Constructs an empty QWebView with parent \a parent.
293 QWebView::QWebView(QWidget *parent)
319 QWebView::~QWebView()
341 QWebPage *QWebView::page() const
344 QWebView *that = const_cast<QWebView *>(this);
359 void QWebView::setPage(QWebPage* page)
413 void QWebView::load(const QUrl &url)
419 \fn void QWebView::load(const QNetworkRequest &request, QNetworkAccessManager::Operation operation, const QByteArray &body)
430 void QWebView::load(const QNetworkRequest &request,
453 void QWebView::setHtml(const QString &html, const QUrl &baseUrl)
469 void QWebView::setContent(const QByteArray &data, const QString &mimeType, const QUrl &baseUrl)
481 QWebHistory *QWebView::history() const
495 QWebSettings *QWebView::settings() const
501 \property QWebView::title
508 QString QWebView::title() const
516 \property QWebView::url
526 void QWebView::setUrl(const QUrl &url)
531 QUrl QWebView::url() const
539 \property QWebView::icon
546 QIcon QWebView::icon() const
554 \property QWebView::selectedText
561 QString QWebView::selectedText() const
571 QAction *QWebView::pageAction(QWebPage::WebAction action) const
587 void QWebView::triggerPageAction(QWebPage::WebAction action, bool checked)
593 \property QWebView::modified
601 bool QWebView::isModified() const
609 Qt::TextInteractionFlags QWebView::textInteractionFlags() const
617 \property QWebView::textInteractionFlags
624 void QWebView::setTextInteractionFlags(Qt::TextInteractionFlags flags)
634 QSize QWebView::sizeHint() const
640 \property QWebView::zoomFactor
645 void QWebView::setZoomFactor(qreal factor)
650 qreal QWebView::zoomFactor() const
656 \property QWebView::textSizeMultiplier
673 void QWebView::setTextSizeMultiplier(qreal factor)
681 qreal QWebView::textSizeMultiplier() const
687 \property QWebView::renderHints
707 QPainter::RenderHints QWebView::renderHints() const
718 void QWebView::setRenderHints(QPainter::RenderHints hints)
733 void QWebView::setRenderHint(QPainter::RenderHint hint, bool enabled)
761 bool QWebView::findText(const QString &subString, QWebPage::FindFlags options)
770 bool QWebView::event(QEvent *e)
820 void QWebView::print(QPrinter *printer) const
836 void QWebView::stop()
852 void QWebView::back()
868 void QWebView::forward()
879 void QWebView::reload()
887 void QWebView::resizeEvent(QResizeEvent *e)
895 void QWebView::paintEvent(QPaintEvent *ev)
926 QWebView *QWebView::createWindow(QWebPage::WebWindowType type)
934 void QWebView::mouseMoveEvent(QMouseEvent* ev)
945 void QWebView::mousePressEvent(QMouseEvent* ev)
956 void QWebView::mouseDoubleClickEvent(QMouseEvent* ev)
967 void QWebView::mouseReleaseEvent(QMouseEvent* ev)
979 void QWebView::contextMenuEvent(QContextMenuEvent* ev)
992 void QWebView::wheelEvent(QWheelEvent* ev)
1004 void QWebView::keyPressEvent(QKeyEvent* ev)
1014 void QWebView::keyReleaseEvent(QKeyEvent* ev)
1024 void QWebView::focusInEvent(QFocusEvent* ev)
1034 void QWebView::focusOutEvent(QFocusEvent* ev)
1044 void QWebView::dragEnterEvent(QDragEnterEvent* ev)
1054 void QWebView::dragLeaveEvent(QDragLeaveEvent* ev)
1064 void QWebView::dragMoveEvent(QDragMoveEvent* ev)
1074 void QWebView::dropEvent(QDropEvent* ev)
1084 bool QWebView::focusNextPrevChild(bool next)
1093 QVariant QWebView::inputMethodQuery(Qt::InputMethodQuery property) const
1102 void QWebView::inputMethodEvent(QInputMethodEvent *e)
1110 void QWebView::changeEvent(QEvent *e)
1118 \fn void QWebView::titleChanged(const QString &title)
1126 \fn void QWebView::urlChanged(const QUrl &url)
1134 \fn void QWebView::statusBarMessage(const QString& text)
1140 \fn void QWebView::iconChanged()
1151 \fn void QWebView::loadStarted()
1159 \fn void QWebView::loadFinished(bool ok)
1168 \fn void QWebView::selectionChanged()
1176 \fn void QWebView::loadProgress(int progress)
1190 \fn void QWebView::linkClicked(const QUrl &url)