webpage.h 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies)
  3. * Copyright (C) 2009 Girish Ramakrishnan <girish@forwardbias.in>
  4. * Copyright (C) 2006 George Staikos <staikos@kde.org>
  5. * Copyright (C) 2006 Dirk Mueller <mueller@kde.org>
  6. * Copyright (C) 2006 Zack Rusin <zack@kde.org>
  7. * Copyright (C) 2006 Simon Hausmann <hausmann@kde.org>
  8. *
  9. * All rights reserved.
  10. *
  11. * Redistribution and use in source and binary forms, with or without
  12. * modification, are permitted provided that the following conditions
  13. * are met:
  14. * 1. Redistributions of source code must retain the above copyright
  15. * notice, this list of conditions and the following disclaimer.
  16. * 2. Redistributions in binary form must reproduce the above copyright
  17. * notice, this list of conditions and the following disclaimer in the
  18. * documentation and/or other materials provided with the distribution.
  19. *
  20. * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
  21. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  22. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  23. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
  24. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  25. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  26. * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  27. * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  28. * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  29. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  30. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. */
  32. #ifndef webpage_h
  33. #define webpage_h
  34. #include <qwebframe.h>
  35. #include <qwebpage.h>
  36. class WebPage : public QWebPage {
  37. Q_OBJECT
  38. public:
  39. WebPage(QObject* parent = 0);
  40. virtual QWebPage* createWindow(QWebPage::WebWindowType);
  41. virtual QObject* createPlugin(const QString&, const QUrl&, const QStringList&, const QStringList&);
  42. virtual bool supportsExtension(QWebPage::Extension extension) const;
  43. virtual bool extension(Extension extension, const ExtensionOption* option, ExtensionReturn* output);
  44. virtual bool acceptNavigationRequest(QWebFrame* frame, const QNetworkRequest& request, NavigationType type);
  45. QString userAgentForUrl(const QUrl& url) const;
  46. void setInterruptingJavaScriptEnabled(bool enabled) { m_interruptingJavaScriptEnabled = enabled; }
  47. virtual bool shouldInterruptJavaScript();
  48. public Q_SLOTS:
  49. void openUrlInDefaultBrowser(const QUrl& url = QUrl());
  50. void setUserAgent(const QString& ua) { m_userAgent = ua; }
  51. void authenticationRequired(QNetworkReply*, QAuthenticator*);
  52. void requestPermission(QWebFrame* frame, QWebPage::Feature feature);
  53. void featurePermissionRequestCanceled(QWebFrame* frame, QWebPage::Feature feature);
  54. private:
  55. void applyProxy();
  56. QString m_userAgent;
  57. bool m_interruptingJavaScriptEnabled;
  58. };
  59. #endif