mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 17:42:10 +01:00
de3535b8db
- adding my email <nowrep@gmail.com> to copyright
98 lines
3.4 KiB
C++
98 lines
3.4 KiB
C++
/* ============================================================
|
|
* QupZilla - WebKit based browser
|
|
* Copyright (C) 2010-2011 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/>.
|
|
* ============================================================ */
|
|
#include "webtab.h"
|
|
#include "qupzilla.h"
|
|
#include "webview.h"
|
|
#include "webpage.h"
|
|
#include "tabbar.h"
|
|
#include "locationbar.h"
|
|
|
|
WebTab::WebTab(QupZilla* mainClass, LocationBar* locationBar)
|
|
: QWidget()
|
|
, p_QupZilla(mainClass)
|
|
, m_locationBar(locationBar)
|
|
, m_pinned(false)
|
|
, m_inspectorVisible(false)
|
|
{
|
|
m_layout = new QVBoxLayout(this);
|
|
m_layout->setContentsMargins(0, 0, 0, 0);
|
|
m_layout->setSpacing(0);
|
|
|
|
m_view = new WebView(p_QupZilla, this);
|
|
m_view.data()->setLocationBar(locationBar);
|
|
m_layout->addWidget(m_view.data());
|
|
|
|
setLayout(m_layout);
|
|
setAutoFillBackground(true); // We don't want this transparent
|
|
|
|
connect(m_view.data(), SIGNAL(showNotification(QWidget*)), this, SLOT(showNotification(QWidget*)));
|
|
connect(m_view.data(), SIGNAL(iconChanged()), m_locationBar.data(), SLOT(siteIconChanged()));
|
|
connect(m_view.data(), SIGNAL(loadStarted()), m_locationBar.data(), SLOT(clearIcon()));
|
|
connect(m_view.data(), SIGNAL(loadFinished(bool)), m_locationBar.data(), SLOT(siteIconChanged()));
|
|
connect(m_view.data(), SIGNAL(showUrl(QUrl)), m_locationBar.data(), SLOT(showUrl(QUrl)));
|
|
connect(m_view.data(), SIGNAL(rssChanged(bool)), m_locationBar.data(), SLOT(showRSSIcon(bool)));
|
|
connect(m_view.data()->webPage(), SIGNAL(privacyChanged(bool)), m_locationBar.data(), SLOT(setPrivacy(bool)));
|
|
connect(m_locationBar.data(), SIGNAL(loadUrl(QUrl)), m_view.data(), SLOT(load(QUrl)));
|
|
}
|
|
|
|
void WebTab::showNotification(QWidget* notif)
|
|
{
|
|
if (m_layout->count() > 1) {
|
|
delete m_layout->itemAt(0)->widget();
|
|
}
|
|
|
|
m_layout->insertWidget(0, notif);
|
|
notif->show();
|
|
}
|
|
|
|
int WebTab::tabIndex()
|
|
{
|
|
return m_view.data()->tabIndex();
|
|
}
|
|
|
|
void WebTab::pinTab(int index)
|
|
{
|
|
TabWidget* tabWidget = p_QupZilla->tabWidget();
|
|
if (!tabWidget) {
|
|
return;
|
|
}
|
|
|
|
if (m_pinned) { //Unpin tab
|
|
m_pinned = false;
|
|
tabWidget->setTabText(index, m_view.data()->title());
|
|
tabWidget->getTabBar()->updateCloseButton(index);
|
|
}
|
|
else { // Pin tab
|
|
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
|
|
tabWidget->setCurrentIndex(0); // <<-- are moving current tab
|
|
tabWidget->getTabBar()->updateCloseButton(0);
|
|
}
|
|
}
|
|
|
|
WebTab::~WebTab()
|
|
{
|
|
if (m_locationBar.data()) {
|
|
delete m_locationBar.data();
|
|
}
|
|
|
|
m_view.data()->deleteLater();
|
|
}
|