qwebframe.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:5k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /*
  2.     Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
  3.     Copyright (C) 2007 Staikos Computing Services Inc.
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Library General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2 of the License, or (at your option) any later version.
  8.     This library is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.     Library General Public License for more details.
  12.     You should have received a copy of the GNU Library General Public License
  13.     along with this library; see the file COPYING.LIB.  If not, write to
  14.     the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  15.     Boston, MA 02110-1301, USA.
  16. */
  17. #ifndef QWEBFRAME_H
  18. #define QWEBFRAME_H
  19. #include <QtCore/qobject.h>
  20. #include <QtCore/qurl.h>
  21. #include <QtCore/qvariant.h>
  22. #include <QtGui/qicon.h>
  23. #if QT_VERSION >= 0x040400
  24. #include <QtNetwork/qnetworkaccessmanager.h>
  25. #endif
  26. #include "qwebkitglobal.h"
  27. QT_BEGIN_NAMESPACE
  28. class QRect;
  29. class QPoint;
  30. class QPainter;
  31. class QPixmap;
  32. class QMouseEvent;
  33. class QWheelEvent;
  34. class QNetworkRequest;
  35. class QRegion;
  36. class QPrinter;
  37. QT_END_NAMESPACE
  38. class QWebNetworkRequest;
  39. class QWebFramePrivate;
  40. class QWebPage;
  41. class QWebHitTestResult;
  42. namespace WebCore {
  43.     class WidgetPrivate;
  44.     class FrameLoaderClientQt;
  45.     class ChromeClientQt;
  46. }
  47. class QWebFrameData;
  48. class QWebHitTestResultPrivate;
  49. class QWebFrame;
  50. class QWEBKIT_EXPORT QWebHitTestResult
  51. {
  52. public:
  53.     QWebHitTestResult();
  54.     QWebHitTestResult(const QWebHitTestResult &other);
  55.     QWebHitTestResult &operator=(const QWebHitTestResult &other);
  56.     ~QWebHitTestResult();
  57.     bool isNull() const;
  58.     QPoint pos() const;
  59.     QString title() const;
  60.     QString linkText() const;
  61.     QUrl linkUrl() const;
  62.     QUrl linkTitle() const;
  63.     QWebFrame *linkTargetFrame() const;
  64.     QString alternateText() const; // for img, area, input and applet
  65.     QUrl imageUrl() const;
  66.     QPixmap pixmap() const;
  67.     bool isContentEditable() const;
  68.     bool isContentSelected() const;
  69.     QWebFrame *frame() const;
  70. private:
  71.     QWebHitTestResult(QWebHitTestResultPrivate *priv);
  72.     QWebHitTestResultPrivate *d;
  73.     friend class QWebFrame;
  74.     friend class QWebPagePrivate;
  75.     friend class QWebPage;
  76. };
  77. class QWEBKIT_EXPORT QWebFrame : public QObject
  78. {
  79.     Q_OBJECT
  80.     Q_PROPERTY(qreal textSizeMultiplier READ textSizeMultiplier WRITE setTextSizeMultiplier)
  81.     Q_PROPERTY(QString title READ title)
  82.     Q_PROPERTY(QUrl url READ url WRITE setUrl)
  83.     Q_PROPERTY(QIcon icon READ icon)
  84.     Q_PROPERTY(QSize contentsSize READ contentsSize)
  85. private:
  86.     QWebFrame(QWebPage *parent, QWebFrameData *frameData);
  87.     QWebFrame(QWebFrame *parent, QWebFrameData *frameData);
  88.     ~QWebFrame();
  89. public:
  90.     QWebPage *page() const;
  91.     void load(const QUrl &url);
  92. #if QT_VERSION < 0x040400
  93.     void load(const QWebNetworkRequest &request);
  94. #else
  95.     void load(const QNetworkRequest &request,
  96.               QNetworkAccessManager::Operation operation = QNetworkAccessManager::GetOperation,
  97.               const QByteArray &body = QByteArray());
  98. #endif
  99.     void setHtml(const QString &html, const QUrl &baseUrl = QUrl());
  100.     void setContent(const QByteArray &data, const QString &mimeType = QString(), const QUrl &baseUrl = QUrl());
  101.     void addToJavaScriptWindowObject(const QString &name, QObject *object);
  102.     QString toHtml() const;
  103.     QString toPlainText() const;
  104.     QString renderTreeDump() const;
  105.     QString title() const;
  106.     void setUrl(const QUrl &url);
  107.     QUrl url() const;
  108.     QIcon icon() const;
  109.     QString frameName() const;
  110.     QWebFrame *parentFrame() const;
  111.     QList<QWebFrame*> childFrames() const;
  112.     Qt::ScrollBarPolicy scrollBarPolicy(Qt::Orientation orientation) const;
  113.     void setScrollBarPolicy(Qt::Orientation orientation, Qt::ScrollBarPolicy policy);
  114.     void setScrollBarValue(Qt::Orientation orientation, int value);
  115.     int scrollBarValue(Qt::Orientation orientation) const;
  116.     int scrollBarMinimum(Qt::Orientation orientation) const;
  117.     int scrollBarMaximum(Qt::Orientation orientation) const;
  118.     void render(QPainter *painter, const QRegion &clip);
  119.     void render(QPainter *painter);
  120.     void setTextSizeMultiplier(qreal factor);
  121.     qreal textSizeMultiplier() const;
  122.     QPoint pos() const;
  123.     QRect geometry() const;
  124.     QSize contentsSize() const;
  125.     QWebHitTestResult hitTestContent(const QPoint &pos) const;
  126.     virtual bool event(QEvent *);
  127. public Q_SLOTS:
  128.     QVariant evaluateJavaScript(const QString& scriptSource);
  129. #ifndef QT_NO_PRINTER
  130.     void print(QPrinter *printer) const;
  131. #endif
  132. Q_SIGNALS:
  133.     void javaScriptWindowObjectCleared();
  134.     void provisionalLoad();
  135.     void titleChanged(const QString &title);
  136.     void urlChanged(const QUrl &url);
  137.     void initialLayoutCompleted();
  138.     void iconChanged();
  139. private:
  140.     friend class QWebPage;
  141.     friend class QWebPagePrivate;
  142.     friend class QWebFramePrivate;
  143.     friend class WebCore::WidgetPrivate;
  144.     friend class WebCore::FrameLoaderClientQt;
  145.     friend class WebCore::ChromeClientQt;
  146.     QWebFramePrivate *d;
  147. };
  148. #endif