summaryrefslogtreecommitdiffstats
path: root/Tools/QtTestBrowser/launcherwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/QtTestBrowser/launcherwindow.h')
-rw-r--r--Tools/QtTestBrowser/launcherwindow.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/Tools/QtTestBrowser/launcherwindow.h b/Tools/QtTestBrowser/launcherwindow.h
index 849b15d..e13858e 100644
--- a/Tools/QtTestBrowser/launcherwindow.h
+++ b/Tools/QtTestBrowser/launcherwindow.h
@@ -94,6 +94,10 @@ public:
, showFrameRate(false)
, resizesToContents(false)
, viewportUpdateMode(QGraphicsView::MinimalViewportUpdate)
+ , useLocalStorage(false)
+ , useOfflineStorageDatabase(false)
+ , useOfflineWebApplicationCache(false)
+ , offlineStorageDefaultQuotaSize(0)
#if defined(QT_CONFIGURED_WITH_OPENGL)
, useQGLWidgetViewport(false)
#endif
@@ -110,6 +114,10 @@ public:
bool showFrameRate;
bool resizesToContents;
QGraphicsView::ViewportUpdateMode viewportUpdateMode;
+ bool useLocalStorage;
+ bool useOfflineStorageDatabase;
+ bool useOfflineWebApplicationCache;
+ quint64 offlineStorageDefaultQuotaSize;
#if defined(QT_CONFIGURED_WITH_OPENGL)
bool useQGLWidgetViewport;
#endif
@@ -163,6 +171,12 @@ protected slots:
void toggleFrameFlattening(bool toggle);
void toggleInterruptingJavaScriptEnabled(bool enable);
void toggleJavascriptCanOpenWindows(bool enable);
+ void toggleAutoLoadImages(bool enable);
+ void togglePlugins(bool enable);
+ void toggleLocalStorage(bool toggle);
+ void toggleOfflineStorageDatabase(bool toggle);
+ void toggleOfflineWebApplicationCache(bool toggle);
+ void setOfflineStorageDefaultQuota();
#if defined(QT_CONFIGURED_WITH_OPENGL)
void toggleQGLWidgetViewport(bool enable);
@@ -206,6 +220,8 @@ private:
QPropertyAnimation* m_zoomAnimation;
QList<QTouchEvent::TouchPoint> m_touchPoints;
bool m_touchMocking;
+
+ QString m_inputUrl;
};
#endif