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

280 lines
9.1 KiB
C++
Raw Normal View History

2011-03-03 18:29:20 +01:00
/* ============================================================
* QupZilla - WebKit based browser
* Copyright (C) 2010-2011 nowrep
*
* 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 "locationbar.h"
#include "qupzilla.h"
#include "webview.h"
#include "rssmanager.h"
#include "mainapplication.h"
#include "locationcompleter.h"
#include "clickablelabel.h"
#include "siteinfowidget.h"
#include "rsswidget.h"
#include "webpage.h"
#include "bookmarkicon.h"
#include "progressbar.h"
2011-03-02 16:57:41 +01:00
2011-03-17 17:03:04 +01:00
LocationBar::LocationBar(QupZilla* mainClass, QWidget* parent)
2011-03-02 16:57:41 +01:00
: LineEdit(parent)
,m_selectAllOnDoubleClick(false)
,m_addComWithCtrl(false)
,m_addCountryWithAlt(false)
,p_QupZilla(mainClass)
{
m_siteIcon = new QToolButton(this);
m_siteIcon->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
m_siteIcon->setCursor(Qt::ArrowCursor);
m_siteIcon->setMaximumSize(35, 25);
m_siteIcon->setMinimumSize(35, 25);
m_siteIcon->setToolTip(tr("Show informations about this page"));
m_siteIcon->setStyleSheet("QToolButton{border-image: url(:/icons/locationbar/searchchoose.png); margin-left:2px;}");
2011-03-02 17:54:22 +01:00
m_siteIcon->setFocusPolicy(Qt::ClickFocus);
2011-03-02 16:57:41 +01:00
m_rssIcon = new ClickableLabel(this);
m_rssIcon->setPixmap(QPixmap(":/icons/menu/rss.png"));
m_rssIcon->setCursor(Qt::PointingHandCursor);
2011-03-02 16:57:41 +01:00
m_rssIcon->setToolTip(tr("Add RSS from this page..."));
m_rssIcon->setStyleSheet("margin-bottom:2px");
2011-03-02 17:54:22 +01:00
m_rssIcon->setFocusPolicy(Qt::ClickFocus);
2011-03-03 18:29:20 +01:00
m_rssIcon->setVisible(false);
2011-03-02 16:57:41 +01:00
m_goButton = new ClickableLabel(this);
m_goButton->setPixmap(QPixmap(":/icons/locationbar/gotoaddress.png"));
m_goButton->setCursor(Qt::PointingHandCursor);
m_goButton->setHidden(true);
m_goButton->setStyleSheet("margin-bottom:2px;");
m_bookmarkIcon = new BookmarkIcon(p_QupZilla);
2011-03-02 16:57:41 +01:00
ClickableLabel* down = new ClickableLabel(this);
down->setPixmap(QPixmap(":icons/locationbar/arrow-down.gif"));
down->setCursor(Qt::ArrowCursor);
addWidget(down, LineEdit::RightSide);
addWidget(m_bookmarkIcon, LineEdit::RightSide);
2011-03-02 16:57:41 +01:00
addWidget(m_goButton, LineEdit::RightSide);
addWidget(m_rssIcon, LineEdit::RightSide);
setPlaceholderText(tr("Enter URL address or search on Google.com"));
setWidgetSpacing(0);
this->setMinimumHeight(25);
this->setMaximumHeight(25);
loadSettings();
m_locationCompleter = new LocationCompleter();
setCompleter(m_locationCompleter);
2011-03-04 13:59:07 +01:00
// LocationPopup* com = new LocationPopup(this);
2011-03-02 16:57:41 +01:00
connect(this, SIGNAL(textEdited(QString)), this, SLOT(textEdit()));
connect(this, SIGNAL(textEdited(QString)), m_locationCompleter, SLOT(refreshCompleter(QString)));
connect(m_locationCompleter->popup(), SIGNAL(clicked(QModelIndex)), p_QupZilla, SLOT(urlEnter()));
connect(m_siteIcon, SIGNAL(clicked()), this, SLOT(showSiteInfo()));
2011-03-04 13:59:07 +01:00
// connect(down, SIGNAL(clicked(QPoint)), com, SLOT(show()));
2011-03-02 16:57:41 +01:00
connect(m_goButton, SIGNAL(clicked(QPoint)), p_QupZilla, SLOT(urlEnter()));
connect(m_rssIcon, SIGNAL(clicked(QPoint)), this, SLOT(rssIconClicked()));
2011-03-02 16:57:41 +01:00
setStyleSheet("QLineEdit { background: transparent; border-image: url(:/icons/locationbar/lineedit.png); border-width:4; color:black;}");
2011-03-05 11:16:23 +01:00
setLeftMargin(33);
// setLeftMargin(m_siteIcon->sizeHint().width()+1);
2011-03-02 16:57:41 +01:00
}
void LocationBar::loadSettings()
{
QSettings settings(p_QupZilla->activeProfil()+"settings.ini", QSettings::IniFormat);
settings.beginGroup("AddressBar");
m_selectAllOnDoubleClick = settings.value("SelectAllTextOnDoubleClick",true).toBool();
m_addComWithCtrl = settings.value("AddComDomainWithCtrlKey",false).toBool();
m_addCountryWithAlt = settings.value("AddCountryDomainWithAltKey",true).toBool();
}
void LocationBar::textEdit()
{
m_locationCompleter->popup()->setUpdatesEnabled(false);
showGoButton();
}
void LocationBar::showGoButton()
{
if (m_goButton->isVisible())
return;
m_rssIconVisible = m_rssIcon->isVisible();
m_bookmarkIcon->hide();
2011-03-02 16:57:41 +01:00
m_rssIcon->hide();
m_goButton->show();
}
void LocationBar::hideGoButton()
{
if (!m_goButton->isVisible())
return;
m_rssIcon->setVisible(m_rssIconVisible);
m_bookmarkIcon->show();
2011-03-02 16:57:41 +01:00
m_goButton->hide();
}
void LocationBar::showPopup()
{
//TODO: Fix to next version
return;
emit textEdited("");
m_locationCompleter->popup()->showNormal();
}
void LocationBar::showSiteInfo()
{
SiteInfoWidget* info = new SiteInfoWidget(p_QupZilla);
info->showAt(this);
}
void LocationBar::rssIconClicked()
{
QList<QPair<QString,QString> > _rss = p_QupZilla->weView()->getRss();
2011-03-03 15:24:23 +01:00
RSSWidget* rss = new RSSWidget(p_QupZilla->weView(), _rss, this);
rss->showAt(this);
}
2011-03-02 16:57:41 +01:00
void LocationBar::showUrl(const QUrl &url, bool empty)
{
if (url.isEmpty() && empty)
return;
if (url.toEncoded()!=text()) {
setText(url.toEncoded());
setCursorPosition(0);
}
WebView* view = p_QupZilla->weView();
setPrivacy(view->webPage()->sslCertificate().isValid());
if (view->isLoading()) {
2011-03-02 16:57:41 +01:00
p_QupZilla->ipLabel()->hide();
p_QupZilla->progressBar()->setVisible(true);
p_QupZilla->progressBar()->setValue(view->getLoading());
2011-03-02 16:57:41 +01:00
p_QupZilla->buttonStop()->setVisible(true);
p_QupZilla->buttonReload()->setVisible(false);
p_QupZilla->statusBar()->showMessage(tr("Loading..."));
}else{
p_QupZilla->progressBar()->setVisible(false);
p_QupZilla->buttonStop()->setVisible(false);
p_QupZilla->buttonReload()->setVisible(true);
p_QupZilla->statusBar()->showMessage(tr("Done"));
p_QupZilla->ipLabel()->show();
}
2011-03-02 16:57:41 +01:00
hideGoButton();
m_bookmarkIcon->checkBookmark(url);
m_rssIcon->setVisible(view->hasRss());
2011-03-03 18:29:20 +01:00
2011-03-02 16:57:41 +01:00
}
void LocationBar::siteIconChanged()
{
// const QPixmap* icon_ = 0;
QIcon icon_;
// if (!p_QupZilla->weView()->isLoading())
// icon_ = p_QupZilla->weView()->animationLoading( p_QupZilla->tabWidget()->currentIndex(), false)->pixmap();
icon_ = p_QupZilla->weView()->siteIcon();
2011-03-02 16:57:41 +01:00
if (icon_.isNull()) {
m_siteIcon->setIcon(QIcon(QIcon::fromTheme("text-plain").pixmap(16,16)));
2011-03-02 16:57:41 +01:00
} else {
// QIcon icon(*icon_);
m_siteIcon->setIcon(QIcon(icon_.pixmap(16,16)));
2011-03-02 16:57:41 +01:00
}
}
void LocationBar::setPrivacy(bool state)
{
if (state)
m_siteIcon->setStyleSheet("QToolButton{border-image: url(:/icons/locationbar/safeline.png); margin-left:2px;}");
else
m_siteIcon->setStyleSheet("QToolButton{border-image: url(:/icons/locationbar/searchchoose.png); margin-left:2px;}");
}
2011-03-17 17:03:04 +01:00
void LocationBar::focusOutEvent(QFocusEvent* e)
2011-03-02 16:57:41 +01:00
{
QLineEdit::focusOutEvent(e);
if (!selectedText().isEmpty() && e->reason() != Qt::TabFocusReason)
return;
setCursorPosition(0);
hideGoButton();
}
2011-03-17 17:03:04 +01:00
void LocationBar::dropEvent(QDropEvent* event)
2011-03-02 16:57:41 +01:00
{
if (event->mimeData()->hasUrls()) {
QUrl dropUrl = event->mimeData()->urls().at(0);
if (WebView::isUrlValid(dropUrl)) {
setText(dropUrl.toEncoded());
p_QupZilla->loadAddress(dropUrl);
QLineEdit::focusOutEvent(new QFocusEvent(QFocusEvent::FocusOut));
return;
}
}
if (event->mimeData()->hasText()) {
QUrl dropUrl = QUrl(event->mimeData()->text());
if (WebView::isUrlValid(dropUrl)) {
setText(dropUrl.toEncoded());
p_QupZilla->loadAddress(dropUrl);
QLineEdit::focusOutEvent(new QFocusEvent(QFocusEvent::FocusOut));
return;
}
}
QLineEdit::dropEvent(event);
}
2011-03-17 17:03:04 +01:00
void LocationBar::mouseDoubleClickEvent(QMouseEvent* event)
2011-03-02 16:57:41 +01:00
{
if (event->button() == Qt::LeftButton && m_selectAllOnDoubleClick)
selectAll();
else
QLineEdit::mouseDoubleClickEvent(event);
}
void LocationBar::keyPressEvent(QKeyEvent *event)
{
if (event->key() == Qt::Key_Escape) {
showUrl(p_QupZilla->weView()->url());
event->accept();
return;
}
QString localDomain = tr(".co.uk","Append domain name on ALT key = Should be different for every country");
if (event->key() == Qt::Key_Control && m_addComWithCtrl && !text().endsWith(".com")) //Disabled for a while
setText(text().append(".com"));
if (event->key() == Qt::Key_Alt && m_addCountryWithAlt && !text().endsWith(localDomain) && !text().endsWith("/"))
setText(text().append(localDomain));
QLineEdit::keyPressEvent(event);
}
LocationBar::~LocationBar()
{
delete m_bookmarkIcon;
2011-03-02 16:57:41 +01:00
delete m_goButton;
delete m_siteIcon;
delete m_rssIcon;
delete m_locationCompleter;
}