2011-09-23 22:06:21 +02:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2011-10-17 09:57:07 +02:00
|
|
|
* Copyright (C) 2010-2011 David Rosca
|
2011-09-23 22:06:21 +02: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-09-11 19:15:06 +02:00
|
|
|
#include "navigationbar.h"
|
|
|
|
#include "toolbutton.h"
|
|
|
|
#include "qupzilla.h"
|
|
|
|
#include "iconprovider.h"
|
|
|
|
#include "websearchbar.h"
|
|
|
|
#include "reloadstopbutton.h"
|
2011-10-29 23:01:17 +02:00
|
|
|
#include "webhistorywrapper.h"
|
2011-12-12 18:07:07 +01:00
|
|
|
#include "menu.h"
|
2011-09-11 19:15:06 +02:00
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
NavigationBar::NavigationBar(QupZilla* mainClass, QWidget* parent)
|
2011-09-11 19:15:06 +02:00
|
|
|
: QWidget(parent)
|
|
|
|
, p_QupZilla(mainClass)
|
|
|
|
{
|
|
|
|
setObjectName("navigationbar");
|
|
|
|
m_layout = new QHBoxLayout(this);
|
|
|
|
m_layout->setContentsMargins(9, 3, 9, 3);
|
|
|
|
setLayout(m_layout);
|
|
|
|
|
2011-12-04 20:09:44 +01:00
|
|
|
m_buttonBack = new ToolButton(this);
|
2011-09-11 19:15:06 +02:00
|
|
|
m_buttonBack->setObjectName("navigation-button-back");
|
|
|
|
m_buttonBack->setToolTip(tr("Back"));
|
|
|
|
m_buttonBack->setToolButtonStyle(Qt::ToolButtonIconOnly);
|
|
|
|
m_buttonBack->setAutoRaise(true);
|
|
|
|
m_buttonBack->setEnabled(false);
|
|
|
|
|
2011-12-04 20:09:44 +01:00
|
|
|
m_buttonNext = new ToolButton(this);
|
2011-09-11 19:15:06 +02:00
|
|
|
m_buttonNext->setObjectName("navigation-button-next");
|
|
|
|
m_buttonNext->setToolTip(tr("Forward"));
|
|
|
|
m_buttonNext->setToolButtonStyle(Qt::ToolButtonIconOnly);
|
|
|
|
m_buttonNext->setAutoRaise(true);
|
|
|
|
m_buttonNext->setEnabled(false);
|
|
|
|
|
|
|
|
QHBoxLayout* backNextLayout = new QHBoxLayout();
|
|
|
|
backNextLayout->setSpacing(0);
|
|
|
|
backNextLayout->addWidget(m_buttonBack);
|
|
|
|
backNextLayout->addWidget(m_buttonNext);
|
|
|
|
|
2011-12-04 20:09:44 +01:00
|
|
|
m_reloadStop = new ReloadStopButton(this);
|
2011-09-11 19:15:06 +02:00
|
|
|
|
2011-12-04 20:09:44 +01:00
|
|
|
m_buttonHome = new ToolButton(this);
|
2011-09-11 19:15:06 +02:00
|
|
|
m_buttonHome->setObjectName("navigation-button-home");
|
|
|
|
m_buttonHome->setToolTip(tr("Home"));
|
|
|
|
m_buttonHome->setToolButtonStyle(Qt::ToolButtonIconOnly);
|
|
|
|
m_buttonHome->setAutoRaise(true);
|
|
|
|
|
2011-12-04 20:09:44 +01:00
|
|
|
m_buttonAddTab = new ToolButton(this);
|
2011-09-11 19:15:06 +02:00
|
|
|
m_buttonAddTab->setObjectName("navigation-button-addtab");
|
|
|
|
m_buttonAddTab->setToolTip(tr("New Tab"));
|
|
|
|
m_buttonAddTab->setToolButtonStyle(Qt::ToolButtonIconOnly);
|
|
|
|
m_buttonAddTab->setAutoRaise(true);
|
|
|
|
|
2011-12-12 18:07:07 +01:00
|
|
|
m_menuBack = new Menu(this);
|
2011-09-11 19:15:06 +02:00
|
|
|
m_buttonBack->setMenu(m_menuBack);
|
2011-12-12 18:07:07 +01:00
|
|
|
m_menuForward = new Menu(this);
|
2011-09-11 19:15:06 +02:00
|
|
|
m_buttonNext->setMenu(m_menuForward);
|
|
|
|
|
|
|
|
m_supMenu = new ToolButton(this);
|
|
|
|
m_supMenu->setObjectName("navigation-button-supermenu");
|
|
|
|
m_supMenu->setPopupMode(QToolButton::InstantPopup);
|
|
|
|
m_supMenu->setToolTip(tr("Main Menu"));
|
|
|
|
m_supMenu->setAutoRaise(true);
|
|
|
|
// m_supMenu->setVisible(false);
|
|
|
|
m_supMenu->setMenu(p_QupZilla->superMenu());
|
|
|
|
|
|
|
|
m_searchLine = new WebSearchBar(p_QupZilla);
|
|
|
|
|
|
|
|
m_navigationSplitter = new QSplitter(this);
|
|
|
|
m_navigationSplitter->addWidget(p_QupZilla->tabWidget()->locationBars());
|
|
|
|
m_navigationSplitter->addWidget(m_searchLine);
|
|
|
|
|
|
|
|
m_navigationSplitter->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Maximum);
|
|
|
|
m_navigationSplitter->setCollapsible(0, false);
|
|
|
|
|
|
|
|
m_exitFullscreen = new ToolButton();
|
|
|
|
m_exitFullscreen->setText(tr("Exit Fullscreen"));
|
|
|
|
m_exitFullscreen->setToolTip(tr("Exit Fullscreen"));
|
|
|
|
m_exitFullscreen->setAutoRaise(true);
|
|
|
|
m_exitFullscreen->setVisible(false);
|
|
|
|
|
|
|
|
m_layout->addLayout(backNextLayout);
|
|
|
|
m_layout->addWidget(m_reloadStop);
|
|
|
|
m_layout->addWidget(m_buttonHome);
|
|
|
|
m_layout->addWidget(m_buttonAddTab);
|
|
|
|
m_layout->addWidget(m_navigationSplitter);
|
|
|
|
m_layout->addWidget(m_supMenu);
|
|
|
|
m_layout->addWidget(m_exitFullscreen);
|
|
|
|
|
|
|
|
connect(m_menuBack, SIGNAL(aboutToShow()), this, SLOT(aboutToShowHistoryBackMenu()));
|
|
|
|
connect(m_menuForward, SIGNAL(aboutToShow()), this, SLOT(aboutToShowHistoryNextMenu()));
|
2011-10-29 23:01:17 +02:00
|
|
|
connect(m_buttonBack, SIGNAL(clicked()), this, SLOT(goBack()));
|
2011-12-12 18:30:08 +01:00
|
|
|
connect(m_buttonBack, SIGNAL(middleMouseClicked()), this, SLOT(goBackInNewTab()));
|
2011-10-29 23:01:17 +02:00
|
|
|
connect(m_buttonNext, SIGNAL(clicked()), this, SLOT(goForward()));
|
2011-12-12 18:30:08 +01:00
|
|
|
connect(m_buttonNext, SIGNAL(middleMouseClicked()), this, SLOT(goForwardInNewTab()));
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
connect(m_reloadStop->buttonStop(), SIGNAL(clicked()), p_QupZilla, SLOT(stop()));
|
|
|
|
connect(m_reloadStop->buttonReload(), SIGNAL(clicked()), p_QupZilla, SLOT(reload()));
|
|
|
|
connect(m_buttonHome, SIGNAL(clicked()), p_QupZilla, SLOT(goHome()));
|
2011-10-26 19:23:50 +02:00
|
|
|
connect(m_buttonHome, SIGNAL(middleMouseClicked()), p_QupZilla, SLOT(goHomeInNewTab()));
|
2011-12-07 15:17:21 +01:00
|
|
|
connect(m_buttonHome, SIGNAL(controlClicked()), p_QupZilla, SLOT(goHomeInNewTab()));
|
2011-09-11 19:15:06 +02:00
|
|
|
connect(m_buttonAddTab, SIGNAL(clicked()), p_QupZilla, SLOT(addTab()));
|
|
|
|
connect(m_exitFullscreen, SIGNAL(clicked(bool)), p_QupZilla, SLOT(fullScreen(bool)));
|
|
|
|
}
|
|
|
|
|
2011-10-17 09:57:07 +02:00
|
|
|
void NavigationBar::setSplitterSizes(int locationBar, int websearchBar)
|
|
|
|
{
|
|
|
|
QList<int> sizes;
|
|
|
|
|
|
|
|
if (locationBar == 0) {
|
|
|
|
int splitterWidth = m_navigationSplitter->width();
|
|
|
|
sizes << (int)((double)splitterWidth * .80) << (int)((double)splitterWidth * .20);
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
|
|
|
else {
|
2011-10-17 09:57:07 +02:00
|
|
|
sizes << locationBar << websearchBar;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_navigationSplitter->setSizes(sizes);
|
|
|
|
}
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
void NavigationBar::showReloadButton()
|
|
|
|
{
|
|
|
|
m_reloadStop->showReloadButton();
|
|
|
|
}
|
|
|
|
|
|
|
|
void NavigationBar::showStopButton()
|
|
|
|
{
|
|
|
|
m_reloadStop->showStopButton();
|
|
|
|
}
|
|
|
|
|
|
|
|
void NavigationBar::aboutToShowHistoryBackMenu()
|
|
|
|
{
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!m_menuBack || !p_QupZilla->weView()) {
|
2011-09-11 19:15:06 +02:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-09-11 19:15:06 +02:00
|
|
|
m_menuBack->clear();
|
|
|
|
QWebHistory* history = p_QupZilla->weView()->history();
|
2011-10-29 23:01:17 +02:00
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
int curindex = history->currentItemIndex();
|
|
|
|
int count = 0;
|
2011-10-29 23:01:17 +02:00
|
|
|
QUrl lastUrl = history->currentItem().url();
|
2011-09-11 19:15:06 +02:00
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
for (int i = curindex - 1; i >= 0; i--) {
|
2011-09-11 19:15:06 +02:00
|
|
|
QWebHistoryItem item = history->itemAt(i);
|
2011-10-29 23:01:17 +02:00
|
|
|
if (item.isValid() && lastUrl != item.url()) {
|
2011-09-11 19:15:06 +02:00
|
|
|
QString title = item.title();
|
|
|
|
if (title.length() > 40) {
|
|
|
|
title.truncate(40);
|
|
|
|
title += "..";
|
|
|
|
}
|
2011-12-12 18:07:07 +01:00
|
|
|
|
|
|
|
QIcon icon = item.icon();
|
|
|
|
if (icon.isNull()) {
|
|
|
|
icon = _iconForUrl(item.url());
|
|
|
|
}
|
|
|
|
|
|
|
|
Action* act = new Action(icon, title);
|
|
|
|
act->setData(i);
|
2011-12-12 21:14:43 +01:00
|
|
|
connect(act, SIGNAL(triggered()), this, SLOT(goAtHistoryIndex()));
|
|
|
|
connect(act, SIGNAL(middleClicked()), this, SLOT(goAtHistoryIndexInNewTab()));
|
2011-12-12 18:07:07 +01:00
|
|
|
m_menuBack->addAction(act);
|
|
|
|
|
2011-10-29 23:01:17 +02:00
|
|
|
lastUrl = item.url();
|
2011-09-11 19:15:06 +02:00
|
|
|
}
|
2011-10-29 23:01:17 +02:00
|
|
|
|
|
|
|
count++;
|
2011-11-06 17:01:23 +01:00
|
|
|
if (count == 20) {
|
2011-09-11 19:15:06 +02:00
|
|
|
break;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-09-11 19:15:06 +02:00
|
|
|
}
|
2011-10-29 23:01:17 +02:00
|
|
|
|
|
|
|
m_menuBack->addSeparator();
|
|
|
|
m_menuBack->addAction(tr("Clear history"), this, SLOT(clearHistory()));
|
2011-09-11 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void NavigationBar::aboutToShowHistoryNextMenu()
|
|
|
|
{
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!m_menuForward || !p_QupZilla->weView()) {
|
2011-09-11 19:15:06 +02:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-09-11 19:15:06 +02:00
|
|
|
m_menuForward->clear();
|
2011-10-29 23:01:17 +02:00
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
QWebHistory* history = p_QupZilla->weView()->history();
|
|
|
|
int curindex = history->currentItemIndex();
|
|
|
|
int count = 0;
|
2011-10-29 23:01:17 +02:00
|
|
|
QUrl lastUrl = history->currentItem().url();
|
2011-09-11 19:15:06 +02:00
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
for (int i = curindex + 1; i < history->count(); i++) {
|
2011-09-11 19:15:06 +02:00
|
|
|
QWebHistoryItem item = history->itemAt(i);
|
2011-10-29 23:01:17 +02:00
|
|
|
if (item.isValid() && lastUrl != item.url()) {
|
2011-09-11 19:15:06 +02:00
|
|
|
QString title = item.title();
|
|
|
|
if (title.length() > 40) {
|
|
|
|
title.truncate(40);
|
|
|
|
title += "..";
|
|
|
|
}
|
2011-12-12 18:07:07 +01:00
|
|
|
|
|
|
|
QIcon icon = item.icon();
|
|
|
|
if (icon.isNull()) {
|
|
|
|
icon = _iconForUrl(item.url());
|
|
|
|
}
|
|
|
|
|
|
|
|
Action* act = new Action(icon, title);
|
|
|
|
act->setData(i);
|
2011-12-12 21:14:43 +01:00
|
|
|
connect(act, SIGNAL(triggered()), this, SLOT(goAtHistoryIndex()));
|
|
|
|
connect(act, SIGNAL(middleClicked()), this, SLOT(goAtHistoryIndexInNewTab()));
|
2011-12-12 18:07:07 +01:00
|
|
|
m_menuForward->addAction(act);
|
|
|
|
|
2011-10-29 23:01:17 +02:00
|
|
|
lastUrl = item.url();
|
2011-09-11 19:15:06 +02:00
|
|
|
}
|
2011-10-29 23:01:17 +02:00
|
|
|
|
|
|
|
count++;
|
2011-11-06 17:01:23 +01:00
|
|
|
if (count == 20) {
|
2011-09-11 19:15:06 +02:00
|
|
|
break;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-09-11 19:15:06 +02:00
|
|
|
}
|
2011-10-29 23:01:17 +02:00
|
|
|
|
|
|
|
m_menuForward->addSeparator();
|
|
|
|
m_menuForward->addAction(tr("Clear history"), this, SLOT(clearHistory()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void NavigationBar::clearHistory()
|
|
|
|
{
|
|
|
|
QWebHistory* history = p_QupZilla->weView()->page()->history();
|
|
|
|
history->clear();
|
|
|
|
refreshHistory();
|
2011-09-11 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void NavigationBar::goAtHistoryIndex()
|
|
|
|
{
|
2011-12-12 18:07:07 +01:00
|
|
|
QWebHistory* history = p_QupZilla->weView()->page()->history();
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
if (QAction* action = qobject_cast<QAction*>(sender())) {
|
2011-12-12 18:07:07 +01:00
|
|
|
history->goToItem(history->itemAt(action->data().toInt()));
|
2011-09-11 19:15:06 +02:00
|
|
|
}
|
2011-10-29 23:01:17 +02:00
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
refreshHistory();
|
|
|
|
}
|
|
|
|
|
2011-12-12 18:30:08 +01:00
|
|
|
void NavigationBar::goAtHistoryIndexInNewTab(int index)
|
2011-12-12 18:07:07 +01:00
|
|
|
{
|
|
|
|
if (QAction* action = qobject_cast<QAction*>(sender())) {
|
2011-12-12 18:30:08 +01:00
|
|
|
index = action->data().toInt();
|
|
|
|
}
|
2011-12-12 18:07:07 +01:00
|
|
|
|
2011-12-12 18:30:08 +01:00
|
|
|
if (index == -1) {
|
|
|
|
return;
|
2011-12-12 18:07:07 +01:00
|
|
|
}
|
2011-12-12 18:30:08 +01:00
|
|
|
|
|
|
|
TabWidget* tabWidget = p_QupZilla->tabWidget();
|
|
|
|
tabWidget->duplicateTab(tabWidget->currentIndex());
|
|
|
|
|
|
|
|
int tabIndex = tabWidget->count() - 1;
|
|
|
|
QWebHistory* history = p_QupZilla->weView(tabIndex)->page()->history();
|
|
|
|
|
|
|
|
history->goToItem(history->itemAt(index));
|
2011-12-12 18:07:07 +01:00
|
|
|
}
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
void NavigationBar::refreshHistory()
|
|
|
|
{
|
2011-11-06 17:01:23 +01:00
|
|
|
if (mApp->isClosing() || p_QupZilla->isClosing()) {
|
2011-09-11 19:15:06 +02:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-09-11 19:15:06 +02:00
|
|
|
|
|
|
|
QWebHistory* history = p_QupZilla->weView()->page()->history();
|
2011-10-29 23:01:17 +02:00
|
|
|
m_buttonBack->setEnabled(WebHistoryWrapper::canGoBack(history));
|
|
|
|
m_buttonNext->setEnabled(WebHistoryWrapper::canGoForward(history));
|
|
|
|
}
|
|
|
|
|
|
|
|
void NavigationBar::goBack()
|
|
|
|
{
|
2011-12-12 18:30:08 +01:00
|
|
|
QWebHistory* history = p_QupZilla->weView()->page()->history();
|
|
|
|
WebHistoryWrapper::goBack(history);
|
|
|
|
}
|
|
|
|
|
|
|
|
void NavigationBar::goBackInNewTab()
|
|
|
|
{
|
|
|
|
QWebHistory* history = p_QupZilla->weView()->page()->history();
|
|
|
|
QList<QWebHistoryItem> backItems = WebHistoryWrapper::backItems(1, history);
|
|
|
|
|
|
|
|
if (backItems.isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int itemIndex = WebHistoryWrapper::indexOfItem(history->items(), backItems.at(0));
|
|
|
|
if (itemIndex == -1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
goAtHistoryIndexInNewTab(itemIndex);
|
2011-10-29 23:01:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void NavigationBar::goForward()
|
|
|
|
{
|
2011-12-12 18:30:08 +01:00
|
|
|
QWebHistory* history = p_QupZilla->weView()->page()->history();
|
|
|
|
WebHistoryWrapper::goForward(history);
|
|
|
|
}
|
|
|
|
|
|
|
|
void NavigationBar::goForwardInNewTab()
|
|
|
|
{
|
|
|
|
QWebHistory* history = p_QupZilla->weView()->page()->history();
|
|
|
|
QList<QWebHistoryItem> forwardItems = WebHistoryWrapper::forwardItems(1, history);
|
|
|
|
|
|
|
|
if (forwardItems.isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int itemIndex = WebHistoryWrapper::indexOfItem(history->items(), forwardItems.at(0));
|
|
|
|
if (itemIndex == -1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
goAtHistoryIndexInNewTab(itemIndex);
|
2011-09-11 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
NavigationBar::~NavigationBar()
|
|
|
|
{
|
|
|
|
delete m_searchLine;
|
|
|
|
}
|