1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-23 02:32:10 +02:00
falkonOfficial/src/lib/webview/tabbedwebview.h
nowrep dd84a84bc0 New option to show loading progress in address bar.
- enable it in Preferences -> Tabs -> Address Bar
- patch by Franz Fellner

closes #236
2012-08-24 20:53:53 +02:00

109 lines
2.6 KiB
C++

/* ============================================================
* QupZilla - WebKit based browser
* Copyright (C) 2010-2012 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 "qz_namespace.h"
#include "webview.h"
class QLabel;
class QHostInfo;
class QupZilla;
class TabWidget;
class WebPage;
class WebTab;
class Menu;
class QT_QUPZILLA_EXPORT TabbedWebView : public WebView
{
Q_OBJECT
public:
explicit TabbedWebView(QupZilla* mainClass, WebTab* webTab);
~TabbedWebView();
void setWebPage(WebPage* pag);
WebTab* webTab() const;
TabWidget* tabWidget() const;
QString getIp() const;
int tabIndex() const;
bool hasRss() { return m_hasRss; }
QWidget* overlayForJsAlert();
void disconnectObjects();
signals:
void wantsCloseTab(int);
void ipChanged(QString);
void rssChanged(bool);
void changed();
public slots:
void titleChanged();
void stop();
void showIcon();
void slotLoadStarted();
void loadProgress(int prog);
void userLoadAction(const QUrl &url);
void closeView();
void openUrlInNewTab(const QUrl &urla, Qz::NewTabPositionFlag position);
void openNewTab();
private slots:
void trackMouse(bool state) { m_mouseTrack = state; }
void slotLoadFinished();
void urlChanged(const QUrl &url);
void linkHovered(const QString &link, const QString &title, const QString &content);
void getFocus(const QUrl &urla);
void setIp(const QHostInfo &info);
void checkRss();
void slotIconChanged();
void inspectElement();
private:
void contextMenuEvent(QContextMenuEvent* event);
void mouseMoveEvent(QMouseEvent* event);
bool isCurrent();
QupZilla* p_QupZilla;
TabWidget* m_tabWidget;
QString m_currentIp;
WebTab* m_webTab;
Menu* m_menu;
bool m_mouseTrack;
static bool m_navigationVisible;
bool m_hasRss;
bool m_rssChecked;
};
#endif // TABBEDWEBVIEW_H