diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-06-24 01:50:16 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-06-24 01:50:16 (GMT) |
commit | b8fba323c817a00df3c3639eb172104cf68d259d (patch) | |
tree | 437edb5e7c0672636f2bcc7fa3af59665b99d0d6 /src/declarative/fx/qfxwebview.h | |
parent | c1283b68d5b02afb5f225d455ae057753b91a5b9 (diff) | |
parent | 124f5714e8e6ec1945d536e622b51304f2b32dd7 (diff) | |
download | Qt-b8fba323c817a00df3c3639eb172104cf68d259d.zip Qt-b8fba323c817a00df3c3639eb172104cf68d259d.tar.gz Qt-b8fba323c817a00df3c3639eb172104cf68d259d.tar.bz2 |
Merge branch 'kinetic-declarativeui' into kinetic-declarativeui-gv
Conflicts:
src/declarative/canvas/qsimplecanvasitem.cpp
src/declarative/canvas/qsimplecanvasitem_p.h
src/declarative/fx/qfxwebview.cpp
Diffstat (limited to 'src/declarative/fx/qfxwebview.h')
-rw-r--r-- | src/declarative/fx/qfxwebview.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/declarative/fx/qfxwebview.h b/src/declarative/fx/qfxwebview.h index 85c17d7..897b6cc 100644 --- a/src/declarative/fx/qfxwebview.h +++ b/src/declarative/fx/qfxwebview.h @@ -81,6 +81,7 @@ class Q_DECLARATIVE_EXPORT QFxWebView : public QFxPaintedItem Q_PROPERTY(QString title READ title NOTIFY titleChanged) Q_PROPERTY(QPixmap icon READ icon NOTIFY iconChanged) Q_PROPERTY(qreal textSizeMultiplier READ textSizeMultiplier WRITE setTextSizeMultiplier DESIGNABLE false) + Q_PROPERTY(qreal zoomFactor READ zoomFactor WRITE setZoomFactor NOTIFY zoomFactorChanged) Q_PROPERTY(QString status READ status NOTIFY statusChanged) Q_PROPERTY(int mouseX READ mouseX) @@ -95,8 +96,6 @@ class Q_DECLARATIVE_EXPORT QFxWebView : public QFxPaintedItem Q_PROPERTY(bool interactive READ interactive WRITE setInteractive NOTIFY interactiveChanged) - Q_PROPERTY(int cacheSize READ cacheSize WRITE setCacheSize) - Q_PROPERTY(QObject* reload READ reloadAction) Q_PROPERTY(QObject* back READ backAction) Q_PROPERTY(QObject* forward READ forwardAction) @@ -118,12 +117,12 @@ public: qreal textSizeMultiplier() const; void setTextSizeMultiplier(qreal); + qreal zoomFactor() const; + void setZoomFactor(qreal); + bool interactive() const; void setInteractive(bool); - int cacheSize() const; - void setCacheSize(int pixels); - int mouseX() const; int mouseY() const; @@ -169,6 +168,7 @@ Q_SIGNALS: void titleChanged(const QString&); void iconChanged(); void statusChanged(); + void zoomFactorChanged(); void loadStarted(); void loadFinished(); |