1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-23 02:32:10 +02:00
falkonOfficial/src/lib/webview/webview.h

195 lines
5.6 KiB
C
Raw Normal View History

2011-03-03 18:29:20 +01:00
/* ============================================================
* QupZilla - WebKit based browser
* Copyright (C) 2010-2013 David Rosca <nowrep@gmail.com>
2011-03-03 18:29:20 +01:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* ============================================================ */
2011-03-02 16:57:41 +01:00
#ifndef WEBVIEW_H
#define WEBVIEW_H
#include <QWebView>
#include <QWebElement>
#include "qz_namespace.h"
class WebPage;
class QT_QUPZILLA_EXPORT WebView : public QWebView
2011-03-02 16:57:41 +01:00
{
Q_OBJECT
public:
explicit WebView(QWidget* parent = 0);
2011-03-02 16:57:41 +01:00
QIcon icon() const;
2011-03-02 16:57:41 +01:00
QString title() const;
QUrl url() const;
WebPage* page() const;
void setPage(QWebPage* page);
void load(const QNetworkRequest &request,
QNetworkAccessManager::Operation operation = QNetworkAccessManager::GetOperation,
const QByteArray &body = QByteArray());
bool loadingError() const;
bool isLoading() const;
int loadingProgress() const;
void fakeLoadingProgress(int progress);
2011-03-02 16:57:41 +01:00
bool hasRss() const;
QWebElement activeElement() const;
void addNotification(QWidget* notif);
bool eventFilter(QObject* obj, QEvent* event);
virtual QWidget* overlayForJsAlert() = 0;
2012-03-05 13:16:34 +01:00
virtual void disconnectObjects();
2011-03-02 16:57:41 +01:00
static bool isUrlValid(const QUrl &url);
static QUrl guessUrlFromString(const QString &string);
signals:
void viewportResized(QSize);
void showNotification(QWidget*);
2012-04-03 20:23:15 +02:00
void privacyChanged(bool);
void rssChanged(bool);
2011-03-02 16:57:41 +01:00
public slots:
void zoomIn();
void zoomOut();
void zoomReset();
void load(const QUrl &url);
void reload();
void back();
void forward();
void editDelete();
2011-03-02 16:57:41 +01:00
void selectAll();
void printPage(QWebFrame* frame = 0);
2012-04-01 18:57:42 +02:00
void sendPageByMail();
void savePageAs();
2011-03-02 16:57:41 +01:00
void openUrlInNewTab(const QUrl &url, Qz::NewTabPositionFlag position);
virtual void closeView() = 0;
virtual void openNewTab() { }
virtual void loadInNewTab(const QNetworkRequest &req, QNetworkAccessManager::Operation op,
const QByteArray &data, Qz::NewTabPositionFlag position) = 0;
2011-03-02 16:57:41 +01:00
protected slots:
void slotLoadStarted();
void slotLoadProgress(int progress);
void slotLoadFinished();
void slotIconChanged();
void slotUrlChanged(const QUrl &url);
// Context menu slots
2011-03-02 16:57:41 +01:00
void openUrlInNewWindow();
void sendLinkByMail();
void copyLinkToClipboard();
void downloadUrlToDisk();
void copyImageToClipboard();
void openActionUrl();
void showSource(QWebFrame* frame = 0, const QString &selectedHtml = QString());
2011-03-02 16:57:41 +01:00
void showSiteInfo();
void searchSelectedText();
void searchSelectedTextInBackgroundTab();
void bookmarkLink();
void showSourceOfSelection();
void openUrlInSelectedTab();
void openUrlInBackgroundTab();
// To support user's option whether to open in selected or background tab
void userDefinedOpenUrlInNewTab(const QUrl &url = QUrl(), bool invert = false);
void userDefinedOpenUrlInBgTab(const QUrl &url = QUrl());
void createSearchEngine();
// Clicked frame actions
void loadClickedFrame();
void loadClickedFrameInNewTab(bool invert = false);
void loadClickedFrameInBgTab();
void reloadClickedFrame();
void printClickedFrame();
void clickedFrameZoomIn();
void clickedFrameZoomOut();
void clickedFrameZoomReset();
void showClickedFrameSource();
protected:
2011-03-17 17:03:04 +01:00
void wheelEvent(QWheelEvent* event);
void mousePressEvent(QMouseEvent* event);
void mouseReleaseEvent(QMouseEvent* event);
void mouseMoveEvent(QMouseEvent* event);
void keyPressEvent(QKeyEvent* event);
void keyReleaseEvent(QKeyEvent* event);
void resizeEvent(QResizeEvent* event);
void setZoom(int zoom);
2011-03-02 16:57:41 +01:00
void applyZoom();
QUrl lastUrl();
2011-03-02 16:57:41 +01:00
bool isMediaElement(const QWebElement &element);
void checkForForm(QMenu* menu, const QWebElement &element);
void createContextMenu(QMenu* menu, const QWebHitTestResult &hitTest, const QPoint &pos);
void createPageContextMenu(QMenu* menu, const QPoint &pos);
void createLinkContextMenu(QMenu* menu, const QWebHitTestResult &hitTest);
void createImageContextMenu(QMenu* menu, const QWebHitTestResult &hitTest);
void createSelectedTextContextMenu(QMenu* menu, const QWebHitTestResult &hitTest);
void createMediaContextMenu(QMenu* menu, const QWebHitTestResult &hitTest);
void createSpellCheckContextMenu(QMenu* menu);
private slots:
void pauseMedia();
void muteMedia();
void frameStateChanged();
void emitChangedUrl();
void checkRss();
2014-01-04 22:37:18 +01:00
void addSpeedDial();
void configureSpeedDial();
private:
2011-03-02 16:57:41 +01:00
QList<int> m_zoomLevels;
int m_currentZoom;
2011-03-02 16:57:41 +01:00
QIcon m_siteIcon;
QUrl m_siteIconUrl;
bool m_isLoading;
int m_progress;
QUrl m_aboutToLoadUrl;
QUrl m_lastUrl;
QWebElement m_clickedElement;
QWebFrame* m_clickedFrame;
QUrl m_clickedUrl;
WebPage* m_page;
QAction* m_actionReload;
QAction* m_actionStop;
bool m_actionsInitialized;
bool m_disableTouchMocking;
bool m_isReloading;
bool m_hasRss;
bool m_rssChecked;
2011-03-02 16:57:41 +01:00
};
#endif // WEBVIEW_H