2014-07-02 13:30:37 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 2014 by Emmanuel Pescosta <emmanuelpescosta099@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 2 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, write to the *
|
|
|
|
* Free Software Foundation, Inc., *
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#include "dolphintabpage.h"
|
|
|
|
|
|
|
|
#include "dolphin_generalsettings.h"
|
2018-03-04 13:38:16 +00:00
|
|
|
#include "dolphinviewcontainer.h"
|
2014-07-02 13:30:37 +00:00
|
|
|
|
|
|
|
#include <QSplitter>
|
2014-10-18 13:00:17 +00:00
|
|
|
#include <QVBoxLayout>
|
2014-07-02 13:30:37 +00:00
|
|
|
|
2014-10-20 22:27:42 +00:00
|
|
|
DolphinTabPage::DolphinTabPage(const QUrl &primaryUrl, const QUrl &secondaryUrl, QWidget* parent) :
|
2014-07-02 13:30:37 +00:00
|
|
|
QWidget(parent),
|
|
|
|
m_primaryViewActive(true),
|
2017-05-22 17:35:29 +00:00
|
|
|
m_splitViewEnabled(false),
|
|
|
|
m_active(true)
|
2014-07-02 13:30:37 +00:00
|
|
|
{
|
|
|
|
QVBoxLayout* layout = new QVBoxLayout(this);
|
|
|
|
layout->setSpacing(0);
|
|
|
|
layout->setMargin(0);
|
|
|
|
|
|
|
|
m_splitter = new QSplitter(Qt::Horizontal, this);
|
|
|
|
m_splitter->setChildrenCollapsible(false);
|
|
|
|
layout->addWidget(m_splitter);
|
|
|
|
|
|
|
|
// Create a new primary view
|
|
|
|
m_primaryViewContainer = createViewContainer(primaryUrl);
|
2016-03-16 21:17:37 +00:00
|
|
|
connect(m_primaryViewContainer->view(), &DolphinView::urlChanged,
|
|
|
|
this, &DolphinTabPage::activeViewUrlChanged);
|
|
|
|
connect(m_primaryViewContainer->view(), &DolphinView::redirection,
|
|
|
|
this, &DolphinTabPage::slotViewUrlRedirection);
|
2014-07-02 13:30:37 +00:00
|
|
|
|
|
|
|
m_splitter->addWidget(m_primaryViewContainer);
|
|
|
|
m_primaryViewContainer->show();
|
|
|
|
|
|
|
|
if (secondaryUrl.isValid() || GeneralSettings::splitView()) {
|
|
|
|
// Provide a secondary view, if the given secondary url is valid or if the
|
|
|
|
// startup settings are set this way (use the url of the primary view).
|
|
|
|
m_splitViewEnabled = true;
|
2014-10-21 19:18:43 +00:00
|
|
|
const QUrl& url = secondaryUrl.isValid() ? secondaryUrl : primaryUrl;
|
2014-07-02 13:30:37 +00:00
|
|
|
m_secondaryViewContainer = createViewContainer(url);
|
|
|
|
m_splitter->addWidget(m_secondaryViewContainer);
|
|
|
|
m_secondaryViewContainer->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
m_primaryViewContainer->setActive(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DolphinTabPage::primaryViewActive() const
|
|
|
|
{
|
|
|
|
return m_primaryViewActive;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DolphinTabPage::splitViewEnabled() const
|
|
|
|
{
|
|
|
|
return m_splitViewEnabled;
|
|
|
|
}
|
|
|
|
|
2017-02-13 11:38:10 +00:00
|
|
|
void DolphinTabPage::setSplitViewEnabled(bool enabled, const QUrl &secondaryUrl)
|
2014-07-02 13:30:37 +00:00
|
|
|
{
|
|
|
|
if (m_splitViewEnabled != enabled) {
|
|
|
|
m_splitViewEnabled = enabled;
|
2016-09-27 05:07:08 +00:00
|
|
|
|
2014-07-02 13:30:37 +00:00
|
|
|
if (enabled) {
|
2016-11-02 16:19:11 +00:00
|
|
|
const QUrl& url = (secondaryUrl.isEmpty()) ? m_primaryViewContainer->url() : secondaryUrl;
|
2014-07-02 13:30:37 +00:00
|
|
|
m_secondaryViewContainer = createViewContainer(url);
|
2014-07-16 07:12:16 +00:00
|
|
|
|
|
|
|
const bool placesSelectorVisible = m_primaryViewContainer->urlNavigator()->isPlacesSelectorVisible();
|
|
|
|
m_secondaryViewContainer->urlNavigator()->setPlacesSelectorVisible(placesSelectorVisible);
|
|
|
|
|
2014-07-02 13:30:37 +00:00
|
|
|
m_splitter->addWidget(m_secondaryViewContainer);
|
|
|
|
m_secondaryViewContainer->show();
|
|
|
|
m_secondaryViewContainer->setActive(true);
|
|
|
|
} else {
|
|
|
|
// Close the view which is active.
|
|
|
|
DolphinViewContainer* view = activeViewContainer();
|
|
|
|
if (m_primaryViewActive) {
|
|
|
|
// If the primary view is active, we have to swap the pointers
|
|
|
|
// because the secondary view will be the new primary view.
|
|
|
|
qSwap(m_primaryViewContainer, m_secondaryViewContainer);
|
2018-04-25 10:35:29 +00:00
|
|
|
m_primaryViewActive = false;
|
2014-07-02 13:30:37 +00:00
|
|
|
}
|
|
|
|
m_primaryViewContainer->setActive(true);
|
|
|
|
view->close();
|
|
|
|
view->deleteLater();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DolphinViewContainer* DolphinTabPage::primaryViewContainer() const
|
|
|
|
{
|
|
|
|
return m_primaryViewContainer;
|
|
|
|
}
|
|
|
|
|
|
|
|
DolphinViewContainer* DolphinTabPage::secondaryViewContainer() const
|
|
|
|
{
|
|
|
|
return m_secondaryViewContainer;
|
|
|
|
}
|
|
|
|
|
|
|
|
DolphinViewContainer* DolphinTabPage::activeViewContainer() const
|
|
|
|
{
|
|
|
|
return m_primaryViewActive ? m_primaryViewContainer :
|
|
|
|
m_secondaryViewContainer;
|
|
|
|
}
|
|
|
|
|
|
|
|
KFileItemList DolphinTabPage::selectedItems() const
|
|
|
|
{
|
|
|
|
KFileItemList items = m_primaryViewContainer->view()->selectedItems();
|
|
|
|
if (m_splitViewEnabled) {
|
|
|
|
items += m_secondaryViewContainer->view()->selectedItems();
|
|
|
|
}
|
|
|
|
return items;
|
|
|
|
}
|
|
|
|
|
|
|
|
int DolphinTabPage::selectedItemsCount() const
|
|
|
|
{
|
|
|
|
int selectedItemsCount = m_primaryViewContainer->view()->selectedItemsCount();
|
|
|
|
if (m_splitViewEnabled) {
|
|
|
|
selectedItemsCount += m_secondaryViewContainer->view()->selectedItemsCount();
|
|
|
|
}
|
|
|
|
return selectedItemsCount;
|
|
|
|
}
|
|
|
|
|
2014-10-20 22:27:42 +00:00
|
|
|
void DolphinTabPage::markUrlsAsSelected(const QList<QUrl>& urls)
|
2014-07-02 13:30:37 +00:00
|
|
|
{
|
|
|
|
m_primaryViewContainer->view()->markUrlsAsSelected(urls);
|
|
|
|
if (m_splitViewEnabled) {
|
|
|
|
m_secondaryViewContainer->view()->markUrlsAsSelected(urls);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-20 22:27:42 +00:00
|
|
|
void DolphinTabPage::markUrlAsCurrent(const QUrl& url)
|
2014-07-02 13:30:37 +00:00
|
|
|
{
|
|
|
|
m_primaryViewContainer->view()->markUrlAsCurrent(url);
|
|
|
|
if (m_splitViewEnabled) {
|
|
|
|
m_secondaryViewContainer->view()->markUrlAsCurrent(url);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DolphinTabPage::setPlacesSelectorVisible(bool visible)
|
|
|
|
{
|
|
|
|
m_primaryViewContainer->urlNavigator()->setPlacesSelectorVisible(visible);
|
|
|
|
if (m_splitViewEnabled) {
|
|
|
|
m_secondaryViewContainer->urlNavigator()->setPlacesSelectorVisible(visible);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DolphinTabPage::refreshViews()
|
|
|
|
{
|
|
|
|
m_primaryViewContainer->readSettings();
|
|
|
|
if (m_splitViewEnabled) {
|
|
|
|
m_secondaryViewContainer->readSettings();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray DolphinTabPage::saveState() const
|
|
|
|
{
|
|
|
|
QByteArray state;
|
|
|
|
QDataStream stream(&state, QIODevice::WriteOnly);
|
|
|
|
|
2014-08-20 21:06:39 +00:00
|
|
|
stream << quint32(2); // Tab state version
|
|
|
|
|
2014-07-02 13:30:37 +00:00
|
|
|
stream << m_splitViewEnabled;
|
|
|
|
|
|
|
|
stream << m_primaryViewContainer->url();
|
|
|
|
stream << m_primaryViewContainer->urlNavigator()->isUrlEditable();
|
2014-08-20 21:06:39 +00:00
|
|
|
m_primaryViewContainer->view()->saveState(stream);
|
2014-07-02 13:30:37 +00:00
|
|
|
|
|
|
|
if (m_splitViewEnabled) {
|
|
|
|
stream << m_secondaryViewContainer->url();
|
|
|
|
stream << m_secondaryViewContainer->urlNavigator()->isUrlEditable();
|
2014-08-20 21:06:39 +00:00
|
|
|
m_secondaryViewContainer->view()->saveState(stream);
|
2014-07-02 13:30:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stream << m_primaryViewActive;
|
|
|
|
stream << m_splitter->saveState();
|
|
|
|
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DolphinTabPage::restoreState(const QByteArray& state)
|
|
|
|
{
|
2014-08-12 07:08:30 +00:00
|
|
|
if (state.isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-02 13:30:37 +00:00
|
|
|
QByteArray sd = state;
|
|
|
|
QDataStream stream(&sd, QIODevice::ReadOnly);
|
|
|
|
|
2014-08-20 21:06:39 +00:00
|
|
|
// Read the version number of the tab state and check if the version is supported.
|
|
|
|
quint32 version = 0;
|
|
|
|
stream >> version;
|
|
|
|
if (version != 2) {
|
|
|
|
// The version of the tab state isn't supported, we can't restore it.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isSplitViewEnabled = false;
|
|
|
|
stream >> isSplitViewEnabled;
|
|
|
|
setSplitViewEnabled(isSplitViewEnabled);
|
|
|
|
|
2014-10-21 19:18:43 +00:00
|
|
|
QUrl primaryUrl;
|
2014-08-20 21:06:39 +00:00
|
|
|
stream >> primaryUrl;
|
|
|
|
m_primaryViewContainer->setUrl(primaryUrl);
|
|
|
|
bool primaryUrlEditable;
|
|
|
|
stream >> primaryUrlEditable;
|
|
|
|
m_primaryViewContainer->urlNavigator()->setUrlEditable(primaryUrlEditable);
|
|
|
|
m_primaryViewContainer->view()->restoreState(stream);
|
|
|
|
|
|
|
|
if (isSplitViewEnabled) {
|
2014-10-21 19:18:43 +00:00
|
|
|
QUrl secondaryUrl;
|
2014-08-20 21:06:39 +00:00
|
|
|
stream >> secondaryUrl;
|
|
|
|
m_secondaryViewContainer->setUrl(secondaryUrl);
|
|
|
|
bool secondaryUrlEditable;
|
|
|
|
stream >> secondaryUrlEditable;
|
|
|
|
m_secondaryViewContainer->urlNavigator()->setUrlEditable(secondaryUrlEditable);
|
|
|
|
m_secondaryViewContainer->view()->restoreState(stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
stream >> m_primaryViewActive;
|
|
|
|
if (m_primaryViewActive) {
|
|
|
|
m_primaryViewContainer->setActive(true);
|
|
|
|
} else {
|
|
|
|
Q_ASSERT(m_splitViewEnabled);
|
|
|
|
m_secondaryViewContainer->setActive(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray splitterState;
|
|
|
|
stream >> splitterState;
|
|
|
|
m_splitter->restoreState(splitterState);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DolphinTabPage::restoreStateV1(const QByteArray& state)
|
|
|
|
{
|
|
|
|
if (state.isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray sd = state;
|
|
|
|
QDataStream stream(&sd, QIODevice::ReadOnly);
|
|
|
|
|
2014-07-02 13:30:37 +00:00
|
|
|
bool isSplitViewEnabled = false;
|
|
|
|
stream >> isSplitViewEnabled;
|
|
|
|
setSplitViewEnabled(isSplitViewEnabled);
|
|
|
|
|
2014-10-21 19:18:43 +00:00
|
|
|
QUrl primaryUrl;
|
2014-07-02 13:30:37 +00:00
|
|
|
stream >> primaryUrl;
|
|
|
|
m_primaryViewContainer->setUrl(primaryUrl);
|
|
|
|
bool primaryUrlEditable;
|
|
|
|
stream >> primaryUrlEditable;
|
|
|
|
m_primaryViewContainer->urlNavigator()->setUrlEditable(primaryUrlEditable);
|
|
|
|
|
|
|
|
if (isSplitViewEnabled) {
|
2014-10-21 19:18:43 +00:00
|
|
|
QUrl secondaryUrl;
|
2014-07-02 13:30:37 +00:00
|
|
|
stream >> secondaryUrl;
|
|
|
|
m_secondaryViewContainer->setUrl(secondaryUrl);
|
|
|
|
bool secondaryUrlEditable;
|
|
|
|
stream >> secondaryUrlEditable;
|
|
|
|
m_secondaryViewContainer->urlNavigator()->setUrlEditable(secondaryUrlEditable);
|
|
|
|
}
|
|
|
|
|
|
|
|
stream >> m_primaryViewActive;
|
|
|
|
if (m_primaryViewActive) {
|
|
|
|
m_primaryViewContainer->setActive(true);
|
|
|
|
} else {
|
|
|
|
Q_ASSERT(m_splitViewEnabled);
|
|
|
|
m_secondaryViewContainer->setActive(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray splitterState;
|
|
|
|
stream >> splitterState;
|
|
|
|
m_splitter->restoreState(splitterState);
|
|
|
|
}
|
|
|
|
|
2017-05-22 17:35:29 +00:00
|
|
|
void DolphinTabPage::setActive(bool active)
|
|
|
|
{
|
|
|
|
if (active) {
|
|
|
|
m_active = active;
|
|
|
|
} else {
|
|
|
|
// we should bypass changing active view in split mode
|
|
|
|
m_active = !m_splitViewEnabled;
|
|
|
|
}
|
|
|
|
// we want view to fire activated when goes from false to true
|
|
|
|
activeViewContainer()->setActive(active);
|
|
|
|
}
|
|
|
|
|
2014-07-02 13:30:37 +00:00
|
|
|
void DolphinTabPage::slotViewActivated()
|
|
|
|
{
|
|
|
|
const DolphinView* oldActiveView = activeViewContainer()->view();
|
|
|
|
|
|
|
|
// Set the view, which was active before, to inactive
|
2017-05-22 17:35:29 +00:00
|
|
|
// and update the active view type, if tab is active
|
|
|
|
if (m_active) {
|
|
|
|
if (m_splitViewEnabled) {
|
|
|
|
activeViewContainer()->setActive(false);
|
|
|
|
m_primaryViewActive = !m_primaryViewActive;
|
|
|
|
} else {
|
|
|
|
m_primaryViewActive = true;
|
|
|
|
}
|
2014-07-02 13:30:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const DolphinView* newActiveView = activeViewContainer()->view();
|
|
|
|
|
|
|
|
if (newActiveView != oldActiveView) {
|
2016-03-16 21:17:37 +00:00
|
|
|
disconnect(oldActiveView, &DolphinView::urlChanged,
|
|
|
|
this, &DolphinTabPage::activeViewUrlChanged);
|
|
|
|
disconnect(oldActiveView, &DolphinView::redirection,
|
|
|
|
this, &DolphinTabPage::slotViewUrlRedirection);
|
|
|
|
connect(newActiveView, &DolphinView::urlChanged,
|
|
|
|
this, &DolphinTabPage::activeViewUrlChanged);
|
|
|
|
connect(newActiveView, &DolphinView::redirection,
|
|
|
|
this, &DolphinTabPage::slotViewUrlRedirection);
|
2014-07-02 13:30:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
emit activeViewUrlChanged(activeViewContainer()->url());
|
2014-08-10 16:52:06 +00:00
|
|
|
emit activeViewChanged(activeViewContainer());
|
2014-07-02 13:30:37 +00:00
|
|
|
}
|
|
|
|
|
2014-10-21 19:18:43 +00:00
|
|
|
void DolphinTabPage::slotViewUrlRedirection(const QUrl& oldUrl, const QUrl& newUrl)
|
2014-08-13 20:06:28 +00:00
|
|
|
{
|
|
|
|
Q_UNUSED(oldUrl);
|
|
|
|
|
|
|
|
emit activeViewUrlChanged(newUrl);
|
|
|
|
}
|
|
|
|
|
2016-07-31 17:16:18 +00:00
|
|
|
void DolphinTabPage::switchActiveView()
|
|
|
|
{
|
|
|
|
if (!m_splitViewEnabled) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (m_primaryViewActive) {
|
|
|
|
m_secondaryViewContainer->setActive(true);
|
|
|
|
} else {
|
|
|
|
m_primaryViewContainer->setActive(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-21 19:18:43 +00:00
|
|
|
DolphinViewContainer* DolphinTabPage::createViewContainer(const QUrl& url) const
|
2014-07-02 13:30:37 +00:00
|
|
|
{
|
|
|
|
DolphinViewContainer* container = new DolphinViewContainer(url, m_splitter);
|
|
|
|
container->setActive(false);
|
|
|
|
|
|
|
|
const DolphinView* view = container->view();
|
2016-03-16 21:17:37 +00:00
|
|
|
connect(view, &DolphinView::activated,
|
|
|
|
this, &DolphinTabPage::slotViewActivated);
|
2014-07-02 13:30:37 +00:00
|
|
|
|
2016-07-31 17:16:18 +00:00
|
|
|
connect(view, &DolphinView::toggleActiveViewRequested,
|
|
|
|
this, &DolphinTabPage::switchActiveView);
|
|
|
|
|
2014-07-02 13:30:37 +00:00
|
|
|
return container;
|
|
|
|
}
|