qwebview.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 QWEBVIEW_H
  18. #define QWEBVIEW_H
  19. #include "qwebkitglobal.h"
  20. #include "qwebpage.h"
  21. #include <QtGui/qwidget.h>
  22. #include <QtGui/qicon.h>
  23. #include <QtCore/qurl.h>
  24. #if QT_VERSION >= 0x040400
  25. #include <QtNetwork/qnetworkaccessmanager.h>
  26. #endif
  27. QT_BEGIN_NAMESPACE
  28. class QNetworkRequest;
  29. class QPrinter;
  30. QT_END_NAMESPACE
  31. class QWebPage;
  32. class QWebViewPrivate;
  33. class QWebNetworkRequest;
  34. class QWEBKIT_EXPORT QWebView : public QWidget
  35. {
  36.     Q_OBJECT
  37.     Q_PROPERTY(QString title READ title)
  38.     Q_PROPERTY(QUrl url READ url WRITE setUrl)
  39.     Q_PROPERTY(QIcon icon READ icon)
  40.     Q_PROPERTY(QString selectedText READ selectedText)
  41.     Q_PROPERTY(bool modified READ isModified)
  42.     //Q_PROPERTY(Qt::TextInteractionFlags textInteractionFlags READ textInteractionFlags WRITE setTextInteractionFlags)
  43.     Q_PROPERTY(qreal textSizeMultiplier READ textSizeMultiplier WRITE setTextSizeMultiplier)
  44. public:
  45.     explicit QWebView(QWidget *parent = 0);
  46.     virtual ~QWebView();
  47.     QWebPage *page() const;
  48.     void setPage(QWebPage *page);
  49.     void load(const QUrl &url);
  50. #if QT_VERSION < 0x040400 && !defined(qdoc)
  51.     void load(const QWebNetworkRequest &request);
  52. #else
  53.     void load(const QNetworkRequest &request,
  54.               QNetworkAccessManager::Operation operation = QNetworkAccessManager::GetOperation,
  55.               const QByteArray &body = QByteArray());
  56. #endif
  57.     void setHtml(const QString &html, const QUrl &baseUrl = QUrl());
  58.     void setContent(const QByteArray &data, const QString &mimeType = QString(), const QUrl &baseUrl = QUrl());
  59.     QWebHistory *history() const;
  60.     QWebSettings *settings() const;
  61.     QString title() const;
  62.     void setUrl(const QUrl &url);
  63.     QUrl url() const;
  64.     QIcon icon() const;
  65.     QString selectedText() const;
  66.     QAction *pageAction(QWebPage::WebAction action) const;
  67.     void triggerPageAction(QWebPage::WebAction action, bool checked = false);
  68.     bool isModified() const;
  69.     /*
  70.     Qt::TextInteractionFlags textInteractionFlags() const;
  71.     void setTextInteractionFlags(Qt::TextInteractionFlags flags);
  72.     void setTextInteractionFlag(Qt::TextInteractionFlag flag);
  73.     */
  74.     QVariant inputMethodQuery(Qt::InputMethodQuery property) const;
  75.     QSize sizeHint() const;
  76.     void setTextSizeMultiplier(qreal factor);
  77.     qreal textSizeMultiplier() const;
  78.     bool findText(const QString &subString, QWebPage::FindFlags options = 0);
  79.     virtual bool event(QEvent *);
  80. public Q_SLOTS:
  81.     void stop();
  82.     void back();
  83.     void forward();
  84.     void reload();
  85.     void print(QPrinter *printer) const;
  86. Q_SIGNALS:
  87.     void loadStarted();
  88.     void loadProgress(int progress);
  89.     void loadFinished(bool);
  90.     void titleChanged(const QString& title);
  91.     void statusBarMessage(const QString& text);
  92.     void linkClicked(const QUrl &url);
  93.     void selectionChanged();
  94.     void iconChanged();
  95.     void urlChanged(const QUrl &url);
  96. protected:
  97.     void resizeEvent(QResizeEvent *e);
  98.     void paintEvent(QPaintEvent *ev);
  99.     virtual QWebView *createWindow(QWebPage::WebWindowType type);
  100.     virtual void changeEvent(QEvent*);
  101.     virtual void mouseMoveEvent(QMouseEvent*);
  102.     virtual void mousePressEvent(QMouseEvent*);
  103.     virtual void mouseDoubleClickEvent(QMouseEvent*);
  104.     virtual void mouseReleaseEvent(QMouseEvent*);
  105. #ifndef QT_NO_CONTEXTMENU
  106.     virtual void contextMenuEvent(QContextMenuEvent*);
  107. #endif
  108. #ifndef QT_NO_WHEELEVENT
  109.     virtual void wheelEvent(QWheelEvent*);
  110. #endif
  111.     virtual void keyPressEvent(QKeyEvent*);
  112.     virtual void keyReleaseEvent(QKeyEvent*);
  113.     virtual void dragEnterEvent(QDragEnterEvent *);
  114.     virtual void dragLeaveEvent(QDragLeaveEvent *);
  115.     virtual void dragMoveEvent(QDragMoveEvent *);
  116.     virtual void dropEvent(QDropEvent *);
  117.     virtual void focusInEvent(QFocusEvent*);
  118.     virtual void focusOutEvent(QFocusEvent*);
  119.     virtual void inputMethodEvent(QInputMethodEvent*);
  120.     virtual bool focusNextPrevChild(bool next);
  121. private:
  122.     friend class QWebPage;
  123.     QWebViewPrivate *d;
  124. };
  125. #endif // QWEBVIEW_H