summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWarwick Allison <warwick.allison@nokia.com>2009-05-01 05:20:09 (GMT)
committerWarwick Allison <warwick.allison@nokia.com>2009-05-01 05:20:09 (GMT)
commitbcb550f0a6138254878cb960cc48a0c0f593c724 (patch)
treeffc8d0b048fa8a3690adc78c436ce7f3a05966b9
parentaca378e1ead8ba762649d8a4c6d6e92c98754c42 (diff)
downloadQt-bcb550f0a6138254878cb960cc48a0c0f593c724.zip
Qt-bcb550f0a6138254878cb960cc48a0c0f593c724.tar.gz
Qt-bcb550f0a6138254878cb960cc48a0c0f593c724.tar.bz2
Remove userStyleSheetUrl.
Doc Only supports localfiles, not resolved against document URL if relative.
-rw-r--r--src/declarative/fx/qfxwebview.cpp38
1 files changed, 23 insertions, 15 deletions
diff --git a/src/declarative/fx/qfxwebview.cpp b/src/declarative/fx/qfxwebview.cpp
index 84e3bc2..dac8ced 100644
--- a/src/declarative/fx/qfxwebview.cpp
+++ b/src/declarative/fx/qfxwebview.cpp
@@ -106,8 +106,6 @@ class QFxWebSettings : public QObject {
Q_PROPERTY(bool offlineWebApplicationCacheEnabled READ offlineWebApplicationCacheEnabled WRITE setOfflineWebApplicationCacheEnabled)
Q_PROPERTY(bool localStorageDatabaseEnabled READ localStorageDatabaseEnabled WRITE setLocalStorageDatabaseEnabled)
- Q_PROPERTY(QString userStyleSheetUrl READ userStyleSheetUrl WRITE setUserStyleSheetUrl)
-
public:
QFxWebSettings() {}
@@ -140,9 +138,6 @@ public:
bool localStorageDatabaseEnabled() const { return s->testAttribute(QWebSettings::LocalStorageDatabaseEnabled); }
void setLocalStorageDatabaseEnabled(bool on) { s->setAttribute(QWebSettings::LocalStorageDatabaseEnabled, on); }
- QString userStyleSheetUrl() const { return s->userStyleSheetUrl().toString(); }
- void setUserStyleSheetUrl(const QString& url) { s->setUserStyleSheetUrl(url); }
-
QWebSettings *s;
};
@@ -225,7 +220,7 @@ public:
Due to WebKit limitations, the height may be more than necessary
if the idealHeight is changed after the content is loaded.
- \code
+ \qml
WebView {
url: "http://www.nokia.com"
width: 490
@@ -233,7 +228,7 @@ public:
scale: 0.5
smooth: true
}
- \endcode
+ \endqml
\image webview.png
@@ -955,21 +950,34 @@ QWebPage *QFxWebView::page() const
return d->page;
}
+
// The QObject interface to settings().
/*!
- \qmlproperty QWebSettings WebView::settings
-
- This property gives access to the settings controlling the web view.
+ \qmlproperty bool WebView::settings::autoLoadImages
+ \qmlproperty bool WebView::settings::javascriptEnabled
+ \qmlproperty bool WebView::settings::javaEnabled
+ \qmlproperty bool WebView::settings::pluginsEnabled
+ \qmlproperty bool WebView::settings::privateBrowsingEnabled
+ \qmlproperty bool WebView::settings::javascriptCanOpenWindows
+ \qmlproperty bool WebView::settings::javascriptCanAccessClipboard
+ \qmlproperty bool WebView::settings::developerExtrasEnabled
+ \qmlproperty bool WebView::settings::linksIncludedInFocusChain
+ \qmlproperty bool WebView::settings::zoomTextOnly
+ \qmlproperty bool WebView::settings::printElementBackgrounds
+ \qmlproperty bool WebView::settings::offlineStorageDatabaseEnabled
+ \qmlproperty bool WebView::settings::offlineWebApplicationCacheEnabled
+ \qmlproperty bool WebView::settings::localStorageDatabaseEnabled
+
+ These properties give access to the settings controlling the web view.
See QWebSettings for the list of sub-properties.
- \code
+ \qml
WebView {
settings.pluginsEnabled: true
- settings.userStyleSheetUrl: "mystyle.css"
...
}
- \endcode
+ \endqml
*/
QObject *QFxWebView::settingsObject() const
{
@@ -1026,11 +1034,11 @@ QString QFxWebView::html() const
The html property can be set as a string.
- \code
+ \qml
WebView {
html: "<p>This is <b>HTML</b>."
}
- \endcode
+ \endqml
*/
void QFxWebView::setHtml(const QString &html, const QUrl &baseUrl)
{