summaryrefslogtreecommitdiffstats
path: root/demos/embedded/anomaly/src/webview.h
diff options
context:
space:
mode:
authorQt Continuous Integration System <qt-info@nokia.com>2010-01-18 21:47:45 (GMT)
committerQt Continuous Integration System <qt-info@nokia.com>2010-01-18 21:47:45 (GMT)
commit3cb3c9a7922cd96744ff0e15790103dbb68b3bf9 (patch)
treeb47b77416ca10d4574f88557cd218e731fe980d5 /demos/embedded/anomaly/src/webview.h
parenta764519a658031ce2fb375b659ff889b5241357f (diff)
parent3214e477ccc3eae5c61b357696095f1f460fafbb (diff)
downloadQt-3cb3c9a7922cd96744ff0e15790103dbb68b3bf9.zip
Qt-3cb3c9a7922cd96744ff0e15790103dbb68b3bf9.tar.gz
Qt-3cb3c9a7922cd96744ff0e15790103dbb68b3bf9.tar.bz2
Merge branch '4.6' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into 4.6-integration
* '4.6' of scm.dev.nokia.troll.no:qt/oslo-staging-1: Add proper license headers to new files. tst_qnetworkreply: There were 2 unneeded QSignalSpy Extend qfile_vs_qnetworkaccessmanager benchmark Enhance QFileNetworkReply Fix QSslCertificate issues Change the prefered content size of the anomaly browser Avoid painting while loading in the anomaly demo browser QFile::readData: Simplify code If the file is open, there must be an engine. QFile: Fix a pre-mature pessimization don't assert when calling QtScript-wrapped method of deleted QObject
Diffstat (limited to 'demos/embedded/anomaly/src/webview.h')
-rw-r--r--demos/embedded/anomaly/src/webview.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/demos/embedded/anomaly/src/webview.h b/demos/embedded/anomaly/src/webview.h
new file mode 100644
index 0000000..ecd9f5a
--- /dev/null
+++ b/demos/embedded/anomaly/src/webview.h
@@ -0,0 +1,66 @@
+/****************************************************************************
+**
+** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the demos of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** No Commercial Usage
+** This file contains pre-release code and may not be distributed.
+** You may use this file in accordance with the terms and conditions
+** contained in the Technology Preview License Agreement accompanying
+** this package.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at qt-info@nokia.com.
+**
+**
+**
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef WEBVIEW_H
+#define WEBVIEW_H
+
+#include <QWebView>
+#include <QTime>
+
+class WebView : public QWebView
+{
+ Q_OBJECT
+public:
+ WebView(QWidget *parent = 0);
+
+protected:
+ void paintEvent(QPaintEvent *event);
+
+private slots:
+ void newPageLoading();
+ void pageLoaded(bool ok);
+
+private:
+ QTime loadingTime;
+ bool inLoading;
+};
+
+#endif // WEBVIEW_H