mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-21 11:16:35 +01:00
6e6f934535
TabbedWebView::changed() is no longer used, connect to urlChanged directly
85 lines
2.3 KiB
C++
85 lines
2.3 KiB
C++
/* ============================================================
|
|
* QupZilla - WebKit based browser
|
|
* Copyright (C) 2010-2015 David Rosca <nowrep@gmail.com>
|
|
*
|
|
* 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/>.
|
|
* ============================================================ */
|
|
#ifndef TABBEDWEBVIEW_H
|
|
#define TABBEDWEBVIEW_H
|
|
|
|
#include "qzcommon.h"
|
|
#include "webview.h"
|
|
|
|
class QLabel;
|
|
class QHostInfo;
|
|
|
|
class BrowserWindow;
|
|
class TabWidget;
|
|
class WebPage;
|
|
class WebTab;
|
|
class Menu;
|
|
|
|
class QUPZILLA_EXPORT TabbedWebView : public WebView
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit TabbedWebView(WebTab* webTab);
|
|
|
|
void setWebPage(WebPage* page);
|
|
|
|
// BrowserWindow can be null!
|
|
BrowserWindow* browserWindow() const;
|
|
void setBrowserWindow(BrowserWindow* window);
|
|
|
|
WebTab* webTab() const;
|
|
|
|
QString getIp() const;
|
|
int tabIndex() const;
|
|
|
|
QWidget* overlayWidget() Q_DECL_OVERRIDE;
|
|
void closeView() Q_DECL_OVERRIDE;
|
|
void openNewTab(Qz::NewTabPositionFlags position) Q_DECL_OVERRIDE;
|
|
void loadInNewTab(const LoadRequest &req, Qz::NewTabPositionFlags position) Q_DECL_OVERRIDE;
|
|
|
|
signals:
|
|
void wantsCloseTab(int);
|
|
void ipChanged(QString);
|
|
|
|
public slots:
|
|
void setAsCurrentTab();
|
|
void userLoadAction(const LoadRequest &req);
|
|
|
|
private slots:
|
|
void slotLoadStarted();
|
|
void slotLoadFinished();
|
|
void slotLoadProgress(int prog);
|
|
void urlChanged(const QUrl &url);
|
|
void linkHovered(const QString &link);
|
|
void setIp(const QHostInfo &info);
|
|
|
|
void inspectElement();
|
|
|
|
private:
|
|
void contextMenuEvent(QContextMenuEvent* event);
|
|
void mouseMoveEvent(QMouseEvent* event);
|
|
|
|
BrowserWindow* m_window;
|
|
WebTab* m_webTab;
|
|
Menu* m_menu;
|
|
|
|
QString m_currentIp;
|
|
};
|
|
|
|
#endif // TABBEDWEBVIEW_H
|