Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Toutes les fonctions  ·  Vues d'ensemble  · 

QWebFrame Class Reference

The QWebFrame class represents a frame in a web page. More...

 #include <QWebFrame>

Inherits: QObject.

This class was introduced in Qt 4.4.

Public Types

enum RenderLayer { ContentsLayer, ScrollBarLayer, PanIconLayer, AllLayers }

Properties

  • 1 property inherited from QObject

Public Functions

void addToJavaScriptWindowObject ( const QString & name, QObject * object )
void addToJavaScriptWindowObject ( const QString & name, QObject * object, QScriptEngine::ValueOwnership own )
QUrl baseUrl () const
QList<QWebFrame *> childFrames () const
QSize contentsSize () const
QWebElement documentElement () const
QWebElementCollection findAllElements ( const QString & selectorQuery ) const
QWebElement findFirstElement ( const QString & selectorQuery ) const
QString frameName () const
QRect geometry () const
bool hasFocus () const
QWebHitTestResult hitTestContent ( const QPoint & pos ) const
QIcon icon () const
void load ( const QUrl & url )
void load ( const QNetworkRequest & req, QNetworkAccessManager::Operation operation = QNetworkAccessManager::GetOperation, const QByteArray & body = QByteArray() )
QMultiMap<QString, QString> metaData () const
QWebPage * page () const
QWebFrame * parentFrame () const
QPoint pos () const
void render ( QPainter * painter )
void render ( QPainter * painter, const QRegion & clip )
void render ( QPainter * painter, RenderLayer layer, const QRegion & clip = QRegion() )
QString renderTreeDump () const
QUrl requestedUrl () const
void scroll ( int dx, int dy )
QRect scrollBarGeometry ( Qt::Orientation orientation ) const
int scrollBarMaximum ( Qt::Orientation orientation ) const
int scrollBarMinimum ( Qt::Orientation orientation ) const
Qt::ScrollBarPolicy scrollBarPolicy ( Qt::Orientation orientation ) const
int scrollBarValue ( Qt::Orientation orientation ) const
QPoint scrollPosition () const
void scrollToAnchor ( const QString & anchor )
QWebSecurityOrigin securityOrigin () const
void setContent ( const QByteArray & data, const QString & mimeType = QString(), const QUrl & baseUrl = QUrl() )
void setFocus ()
void setHtml ( const QString & html, const QUrl & baseUrl = QUrl() )
void setScrollBarPolicy ( Qt::Orientation orientation, Qt::ScrollBarPolicy policy )
void setScrollBarValue ( Qt::Orientation orientation, int value )
void setScrollPosition ( const QPoint & pos )
void setTextSizeMultiplier ( qreal factor )
void setUrl ( const QUrl & url )
void setZoomFactor ( qreal factor )
qreal textSizeMultiplier () const
QString title () const
QString toHtml () const
QString toPlainText () const
QUrl url () const
qreal zoomFactor () const

Reimplemented Public Functions

virtual bool event ( QEvent * e )
  • 29 public functions inherited from QObject

Public Slots

QVariant evaluateJavaScript ( const QString & scriptSource )
void print ( QPrinter * printer ) const
  • 1 public slot inherited from QObject

Signals

void contentsSizeChanged ( const QSize & size )
void iconChanged ()
void initialLayoutCompleted ()
void javaScriptWindowObjectCleared ()
void loadFinished ( bool ok )
void loadStarted ()
void pageChanged ()
void titleChanged ( const QString & title )
void urlChanged ( const QUrl & url )

Additional Inherited Members

  • 5 static public members inherited from QObject
  • 7 protected functions inherited from QObject

Detailed Description

The QWebFrame class represents a frame in a web page.

QWebFrame represents a frame inside a web page. Each QWebPage object contains at least one frame, the main frame, obtained using QWebPage::mainFrame(). Additional frames will be created for HTML <frame> or <iframe> elements.

A frame can be loaded using load() or setUrl(). Alternatively, if you have the HTML content readily available, you can use setHtml() instead.

The page() function returns a pointer to the web page object. See Elements of QWebView for an explanation of how web frames are related to a web page and web view.

The QWebFrame class also offers methods to retrieve both the URL currently loaded by the frame (see url()) as well as the URL originally requested to be loaded (see requestedUrl()). These methods make possible the retrieval of the URL before and after a DNS resolution or a redirection occurs during the load process. The requestedUrl() also matches to the URL added to the frame history (QWebHistory) if load is successful.

The title of an HTML frame can be accessed with the title() property. Additionally, a frame may also specify an icon, which can be accessed using the icon() property. If the title or the icon changes, the corresponding titleChanged() and iconChanged() signals will be emitted. The zoomFactor() property can be used to change the overall size of the content displayed in the frame.

QWebFrame objects are created and controlled by the web page. You can connect to the web page's frameCreated() signal to be notified when a new frame is created.

There are multiple ways to programmatically examine the contents of a frame. The hitTestContent() function can be used to find elements by coordinate. For access to the underlying DOM tree, there is documentElement(), findAllElements() and findFirstElement().

A QWebFrame can be printed onto a QPrinter using the print() function. This function is marked as a slot and can be conveniently connected to QPrintPreviewDialog's paintRequested() signal.

See also QWebPage.

Member Type Documentation

enum QWebFrame::RenderLayer

This enum describes the layers available for rendering using render(). The layers can be OR-ed together from the following list:

ConstantValueDescription
QWebFrame::ContentsLayer0x10The web content of the frame
QWebFrame::ScrollBarLayer0x20The scrollbars of the frame
QWebFrame::PanIconLayer0x40The icon used when panning the frame
QWebFrame::AllLayers0xffIncludes all the above layers

Property Documentation

baseUrl : const QUrl

This property holds the base URL of the frame, can be used to resolve relative URLs.

This property was introduced in Qt 4.6.

Access functions:

QUrl baseUrl () const

contentsSize : const QSize

This property holds the size of the contents in this frame.

Access functions:

QSize contentsSize () const

See also contentsSizeChanged().

focus : const bool

Returns true if this frame has keyboard input focus; otherwise, returns false.

This property was introduced in Qt 4.6.

Access functions:

bool hasFocus () const

icon : const QIcon

This property holds the icon associated with this frame.

Access functions:

QIcon icon () const

See also iconChanged() and QWebSettings::iconForUrl().

requestedUrl : const QUrl

The URL requested to loaded by the frame currently viewed. The URL may differ from the one returned by url() if a DNS resolution or a redirection occurs.

This property was introduced in Qt 4.6.

Access functions:

QUrl requestedUrl () const

See also url() and setUrl().

scrollPosition : QPoint

This property holds the position the frame is currently scrolled to.

This property was introduced in Qt 4.5.

Access functions:

QPoint scrollPosition () const
void setScrollPosition ( const QPoint & pos )

title : const QString

This property holds the title of the frame as defined by the HTML <title> element.

Access functions:

QString title () const

See also titleChanged().

url : QUrl

This property holds the url of the frame currently viewed.

Setting this property clears the view and loads the URL.

By default, this property contains an empty, invalid URL.

Access functions:

QUrl url () const
void setUrl ( const QUrl & url )

See also urlChanged().

zoomFactor : qreal

This property holds the zoom factor for the frame.

This property was introduced in Qt 4.5.

Access functions:

qreal zoomFactor () const
void setZoomFactor ( qreal factor )

Member Function Documentation

void QWebFrame::addToJavaScriptWindowObject ( const QString & name, QObject * object )

Make object available under name from within the frame's JavaScript context. The object will be inserted as a child of the frame's window object.

Qt properties will be exposed as JavaScript properties and slots as JavaScript methods.

If you want to ensure that your QObjects remain accessible after loading a new URL, you should add them in a slot connected to the javaScriptWindowObjectCleared() signal.

If Javascript is not enabled for this page, then this method does nothing.

The object will never be explicitly deleted by QtWebKit.

void QWebFrame::addToJavaScriptWindowObject ( const QString & name, QObject * object, QScriptEngine::ValueOwnership own )

This is an overloaded function.

Make object available under name from within the frame's JavaScript context. The object will be inserted as a child of the frame's window object.

Qt properties will be exposed as JavaScript properties and slots as JavaScript methods.

If you want to ensure that your QObjects remain accessible after loading a new URL, you should add them in a slot connected to the javaScriptWindowObjectCleared() signal.

If Javascript is not enabled for this page, then this method does nothing.

The ownership of object is specified using own.

QList<QWebFrame *> QWebFrame::childFrames () const

Returns a list of all frames that are direct children of this frame.

See also parentFrame().

void QWebFrame::contentsSizeChanged ( const QSize & size ) [signal]

This signal is emitted when the frame's contents size changes to size.

This function was introduced in Qt 4.6.

See also contentsSize().

QWebElement QWebFrame::documentElement () const

Returns the document element of this frame.

The document element provides access to the entire structured content of the frame.

This function was introduced in Qt 4.6.

QVariant QWebFrame::evaluateJavaScript ( const QString & scriptSource ) [slot]

Evaluates the JavaScript defined by scriptSource using this frame as context and returns the result of the last executed statement.

See also addToJavaScriptWindowObject() and javaScriptWindowObjectCleared().

bool QWebFrame::event ( QEvent * e ) [virtual]

Reimplemented from QObject::event().

QWebElementCollection QWebFrame::findAllElements ( const QString & selectorQuery ) const

Returns a new list of elements matching the given CSS selector selectorQuery. If there are no matching elements, an empty list is returned.

Standard CSS2 selector syntax is used for the query.

This function was introduced in Qt 4.6.

See also QWebElement::findAll().

QWebElement QWebFrame::findFirstElement ( const QString & selectorQuery ) const

Returns the first element in the frame's document that matches the given CSS selector selectorQuery. If there is no matching element, a null element is returned.

Standard CSS2 selector syntax is used for the query.

This function was introduced in Qt 4.6.

See also QWebElement::findFirst().

QString QWebFrame::frameName () const

The name of this frame as defined by the parent frame.

QRect QWebFrame::geometry () const

Return the geometry of the frame relative to it's parent frame.

QWebHitTestResult QWebFrame::hitTestContent ( const QPoint & pos ) const

Performs a hit test on the frame contents at the given position pos and returns the hit test result.

void QWebFrame::iconChanged () [signal]

This signal is emitted when the icon ("favicon") associated with the frame has been loaded.

See also icon().

void QWebFrame::initialLayoutCompleted () [signal]

This signal is emitted when the frame is laid out the first time. This is the first time you will see contents displayed on the frame.

Note: A frame can be laid out multiple times.

void QWebFrame::javaScriptWindowObjectCleared () [signal]

This signal is emitted whenever the global window object of the JavaScript environment is cleared, e.g., before starting a new load.

If you intend to add QObjects to a QWebFrame using addToJavaScriptWindowObject(), you should add them in a slot connected to this signal. This ensures that your objects remain accessible when loading new URLs.

void QWebFrame::load ( const QUrl & url )

Loads url into this frame.

Note: The view remains the same until enough data has arrived to display the new url.

See also setUrl(), setHtml(), and setContent().

void QWebFrame::load ( const QNetworkRequest & req, QNetworkAccessManager::Operation operation = QNetworkAccessManager::GetOperation, const QByteArray & body = QByteArray() )

Loads a network request, req, into this frame, using the method specified in operation.

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 content.

See also setUrl().

void QWebFrame::loadFinished ( bool ok ) [signal]

This signal is emitted when a load of this frame is finished. ok will indicate whether the load was successful or any error occurred.

This function was introduced in Qt 4.6.

See also loadStarted().

void QWebFrame::loadStarted () [signal]

This signal is emitted when a new load of this frame is started.

This function was introduced in Qt 4.6.

See also loadFinished().

QMultiMap<QString, QString> QWebFrame::metaData () const

Returns the meta data in this frame as a QMultiMap

The meta data consists of the name and content attributes of the of the <meta> tags in the HTML document.

For example:

 <html>
     <head>
         <meta name="description" content="This document is a tutorial about Qt development">
         <meta name="keywords" content="Qt, WebKit, Programming">
     </head>
     ...
 </html>

Given the above HTML code the metaData() function will return a map with two entries:

KeyValue
"description""This document is a tutorial about Qt development"
"keywords""Qt, WebKit, Programming"

This function returns a multi map to support multiple meta tags with the same attribute name.

This function was introduced in Qt 4.5.

QWebPage * QWebFrame::page () const

The web page that contains this frame.

void QWebFrame::pageChanged () [signal]

QWebFrame * QWebFrame::parentFrame () const

Returns the parent frame of this frame, or 0 if the frame is the web pages main frame.

This is equivalent to qobject_cast<QWebFrame*>(frame->parent()).

See also childFrames().

QPoint QWebFrame::pos () const

Returns the position of the frame relative to it's parent frame.

void QWebFrame::print ( QPrinter * printer ) const [slot]

Prints the frame to the given printer.

See also render().

void QWebFrame::render ( QPainter * painter )

Render the frame into painter.

void QWebFrame::render ( QPainter * painter, const QRegion & clip )

Render the frame into painter clipping to clip.

void QWebFrame::render ( QPainter * painter, RenderLayer layer, const QRegion & clip = QRegion() )

Render the layer of the frame using painter clipping to clip.

This function was introduced in Qt 4.6.

See also print().

QString QWebFrame::renderTreeDump () const

Returns a dump of the rendering tree. This is mainly useful for debugging html.

void QWebFrame::scroll ( int dx, int dy )

Scrolls the frame dx pixels to the right and dy pixels downward. Both dx and dy may be negative.

This function was introduced in Qt 4.5.

See also QWebFrame::scrollPosition.

QRect QWebFrame::scrollBarGeometry ( Qt::Orientation orientation ) const

Returns the geometry for the scrollbar with orientation orientation.

If the scrollbar does not exist an empty rect is returned.

This function was introduced in Qt 4.6.

int QWebFrame::scrollBarMaximum ( Qt::Orientation orientation ) const

Returns the maximum value for the scrollbar with orientation orientation, or 0 if no scrollbar is found for orientation.

See also scrollBarMinimum().

int QWebFrame::scrollBarMinimum ( Qt::Orientation orientation ) const

Returns the minimum value for the scrollbar with orientation orientation.

The minimum value is always 0.

See also scrollBarMaximum().

Qt::ScrollBarPolicy QWebFrame::scrollBarPolicy ( Qt::Orientation orientation ) const

Returns the scrollbar policy for the scrollbar defined by orientation.

See also setScrollBarPolicy().

int QWebFrame::scrollBarValue ( Qt::Orientation orientation ) const

Returns the current value for the scrollbar with orientation orientation, or 0 if no scrollbar is found for orientation.

See also setScrollBarValue(), scrollBarMinimum(), and scrollBarMaximum().

void QWebFrame::scrollToAnchor ( const QString & anchor )

Scrolls the frame to the given anchor name.

This function was introduced in Qt 4.7.

QWebSecurityOrigin QWebFrame::securityOrigin () const

Returns the frame's security origin.

This function was introduced in Qt 4.5.

void QWebFrame::setContent ( const QByteArray & data, const QString & mimeType = QString(), const QUrl & baseUrl = QUrl() )

Sets the content of this frame to the specified content data. If the 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 baseUrl.

The data is loaded immediately; external objects are loaded asynchronously.

Note: This method will not affect session or global history for the frame.

See also toHtml() and setHtml().

void QWebFrame::setFocus ()

Gives keyboard input focus to this frame.

This function was introduced in Qt 4.6.

See also hasFocus().

void QWebFrame::setHtml ( const QString & html, const QUrl & baseUrl = QUrl() )

Sets the content of this frame to html. baseUrl is optional and used to resolve relative URLs in the document, such as referenced images or stylesheets.

The html is loaded immediately; external objects are loaded asynchronously.

If a script in the html runs longer than the default script timeout (currently 10 seconds), for example due to being blocked by a modal JavaScript alert dialog, this method will return as soon as possible after the timeout and any subsequent html will be 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. It is also possible for the encoding to be specified by web server.

Note: This method will not affect session or global history for the frame.

See also toHtml() and setContent().

void QWebFrame::setScrollBarPolicy ( Qt::Orientation orientation, Qt::ScrollBarPolicy policy )

Sets the scrollbar policy for the scrollbar defined by orientation to policy.

See also scrollBarPolicy().

void QWebFrame::setScrollBarValue ( Qt::Orientation orientation, int value )

Sets the current value for the scrollbar with orientation orientation.

The scrollbar forces the value to be within the legal range: minimum <= value <= maximum.

Changing the value also updates the thumb position.

See also scrollBarValue(), scrollBarMinimum(), and scrollBarMaximum().

void QWebFrame::setTextSizeMultiplier ( qreal factor )

Sets the value of the multiplier used to scale the text in a Web frame to the factor specified.

See also textSizeMultiplier().

qreal QWebFrame::textSizeMultiplier () const

Returns the value of the multiplier used to scale the text in a Web frame.

See also setTextSizeMultiplier().

void QWebFrame::titleChanged ( const QString & title ) [signal]

This signal is emitted whenever the title of the frame changes. The title string specifies the new title.

See also title().

QString QWebFrame::toHtml () const

Returns the frame's content as HTML, enclosed in HTML and BODY tags.

See also setHtml() and toPlainText().

QString QWebFrame::toPlainText () const

Returns the content of this frame converted to plain text, completely stripped of all HTML formatting.

See also toHtml().

void QWebFrame::urlChanged ( const QUrl & url ) [signal]

This signal is emitted with the URL of the frame when the frame's title is received. The new URL is specified by url.

See also url().

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. Microsoft ouvre aux autres compilateurs C++ AMP, la spécification pour la conception d'applications parallèles C++ utilisant le GPU 22
  2. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  3. RIM : « 13 % des développeurs ont gagné plus de 100 000 $ sur l'AppWord », Qt et open-source au menu du BlackBerry DevCon Europe 0
  4. BlackBerry 10 : premières images du prochain OS de RIM qui devrait intégrer des widgets et des tuiles inspirées de Windows Phone 0
  5. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 10
  6. Adieu qmake, bienvenue qbs : Qt Building Suite, un outil déclaratif et extensible pour la compilation de projets Qt 17
  7. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
Page suivante

Le Qt Labs au hasard

Logo

La folie est de mettre en forme le même texte

Les Qt Labs sont les laboratoires des développeurs de Qt, où ils peuvent partager des impressions sur le framework, son utilisation, ce que pourrait être son futur. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 4.7
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web