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

142 lines
3.9 KiB
C++
Raw Normal View History

2011-03-03 18:29:20 +01:00
/* ============================================================
* QupZilla - WebKit based browser
* Copyright (C) 2010-2012 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
#include "webtab.h"
#include "qupzilla.h"
#include "tabbedwebview.h"
#include "webpage.h"
2011-03-25 19:16:21 +01:00
#include "tabbar.h"
#include "tabwidget.h"
#include "locationbar.h"
2011-03-02 16:57:41 +01:00
#include <QVBoxLayout>
WebTab::WebTab(QupZilla* mainClass, LocationBar* locationBar)
: QWidget()
, p_QupZilla(mainClass)
, m_locationBar(locationBar)
, m_pinned(false)
, m_inspectorVisible(false)
2011-03-02 16:57:41 +01:00
{
m_layout = new QVBoxLayout(this);
m_layout->setContentsMargins(0, 0, 0, 0);
2011-03-02 16:57:41 +01:00
m_layout->setSpacing(0);
m_view = new TabbedWebView(p_QupZilla, this);
WebPage* page = new WebPage(p_QupZilla);
m_view->setWebPage(page);
m_layout->addWidget(m_view);
2011-03-02 16:57:41 +01:00
setLayout(m_layout);
setAutoFillBackground(true); // We don't want this transparent
2011-03-02 16:57:41 +01:00
connect(m_view, SIGNAL(showNotification(QWidget*)), this, SLOT(showNotification(QWidget*)));
connect(m_view, SIGNAL(iconChanged()), m_locationBar.data(), SLOT(siteIconChanged()));
connect(m_view, SIGNAL(loadStarted()), m_locationBar.data(), SLOT(clearIcon()));
connect(m_view, SIGNAL(loadFinished(bool)), m_locationBar.data(), SLOT(siteIconChanged()));
connect(m_view, SIGNAL(urlChanged(QUrl)), m_locationBar.data(), SLOT(showUrl(QUrl)));
connect(m_view, SIGNAL(rssChanged(bool)), m_locationBar.data(), SLOT(showRSSIcon(bool)));
connect(m_view->webPage(), SIGNAL(privacyChanged(bool)), m_locationBar.data(), SLOT(setPrivacy(bool)));
connect(m_locationBar.data(), SIGNAL(loadUrl(QUrl)), m_view, SLOT(load(QUrl)));
2011-03-02 16:57:41 +01:00
}
TabbedWebView* WebTab::view()
{
return m_view;
}
bool WebTab::isPinned()
{
return m_pinned;
}
void WebTab::setPinned(bool state)
{
m_pinned = state;
}
void WebTab::setLocationBar(LocationBar* bar)
{
m_locationBar = bar;
}
LocationBar* WebTab::locationBar()
{
return m_locationBar.data();
}
bool WebTab::inspectorVisible()
{
return m_inspectorVisible;
}
void WebTab::setInspectorVisible(bool v)
{
m_inspectorVisible = v;
}
2011-03-17 17:03:04 +01:00
void WebTab::showNotification(QWidget* notif)
2011-03-02 16:57:41 +01:00
{
if (m_layout->count() > 1) {
2011-03-02 16:57:41 +01:00
delete m_layout->itemAt(0)->widget();
}
2011-03-02 16:57:41 +01:00
m_layout->insertWidget(0, notif);
notif->show();
2011-03-02 16:57:41 +01:00
}
2011-03-25 19:16:21 +01:00
int WebTab::tabIndex()
{
return m_view->tabIndex();
2011-03-25 19:16:21 +01:00
}
void WebTab::pinTab(int index)
{
TabWidget* tabWidget = p_QupZilla->tabWidget();
if (!tabWidget) {
2011-03-25 19:16:21 +01:00
return;
}
2011-03-25 19:16:21 +01:00
if (m_pinned) { //Unpin tab
m_pinned = false;
tabWidget->setTabText(index, m_view->title());
2011-03-25 19:16:21 +01:00
tabWidget->getTabBar()->updateCloseButton(index);
}
else { // Pin tab
2011-03-25 19:16:21 +01:00
m_pinned = true;
tabWidget->setCurrentIndex(0); // <<-- those 2 lines fixes
tabWidget->getTabBar()->moveTab(index, 0); // | weird behavior with bad
tabWidget->setTabText(0, ""); // | tabwidget update if we
2011-03-25 19:16:21 +01:00
tabWidget->setCurrentIndex(0); // <<-- are moving current tab
tabWidget->getTabBar()->updateCloseButton(0);
}
}
void WebTab::disconnectObjects()
{
disconnect(this);
disconnect(m_locationBar.data());
disconnect(m_view);
}
2011-03-02 16:57:41 +01:00
WebTab::~WebTab()
{
if (m_locationBar) {
delete m_locationBar.data();
}
2011-03-02 16:57:41 +01:00
}