/**************************************************************************** ** ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtWebView module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 3 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPLv3 included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 3 requirements ** will be met: https://www.gnu.org/licenses/lgpl.html. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 2.0 or later as published by the Free ** Software Foundation and appearing in the file LICENSE.GPL included in ** the packaging of this file. Please review the following information to ** ensure the GNU General Public License version 2.0 requirements will be ** met: http://www.gnu.org/licenses/gpl-2.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef QWEBVIEW_IOS_P_H #define QWEBVIEW_IOS_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include #include #include #include "qwebview_p_p.h" QT_BEGIN_NAMESPACE Q_FORWARD_DECLARE_OBJC_CLASS(UIWebView); Q_FORWARD_DECLARE_OBJC_CLASS(UIGestureRecognizer); class QIosWebViewPrivate : public QWebViewPrivate { Q_OBJECT public: explicit QIosWebViewPrivate(QObject *p = 0); ~QIosWebViewPrivate() Q_DECL_OVERRIDE; QUrl url() const Q_DECL_OVERRIDE; void setUrl(const QUrl &url) Q_DECL_OVERRIDE; bool canGoBack() const Q_DECL_OVERRIDE; bool canGoForward() const Q_DECL_OVERRIDE; QString title() const Q_DECL_OVERRIDE; int loadProgress() const Q_DECL_OVERRIDE; bool isLoading() const Q_DECL_OVERRIDE; void setParentView(QObject *view) Q_DECL_OVERRIDE; void setGeometry(const QRect &geometry) Q_DECL_OVERRIDE; void setVisibility(QWindow::Visibility visibility) Q_DECL_OVERRIDE; void setVisible(bool visible) Q_DECL_OVERRIDE; void setFocus(bool focus) Q_DECL_OVERRIDE; public Q_SLOTS: void goBack() Q_DECL_OVERRIDE; void goForward() Q_DECL_OVERRIDE; void reload() Q_DECL_OVERRIDE; void stop() Q_DECL_OVERRIDE; public: UIWebView *uiWebView; UIGestureRecognizer *m_recognizer; int requestFrameCount; }; QT_END_NAMESPACE #endif // QWEBVIEW_IOS_P_H