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

220 lines
8.0 KiB
C++
Raw Normal View History

2011-03-03 18:29:20 +01:00
/* ============================================================
* QupZilla - WebKit based browser
2011-10-17 09:57:07 +02:00
* Copyright (C) 2010-2011 David Rosca
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 "bookmarkstoolbar.h"
#include "qupzilla.h"
#include "bookmarksmodel.h"
#include "iconprovider.h"
#include "historymodel.h"
#include "toolbutton.h"
2011-03-02 16:57:41 +01:00
2011-03-17 17:03:04 +01:00
BookmarksToolbar::BookmarksToolbar(QupZilla* mainClass, QWidget* parent) :
QWidget(parent)
2011-03-02 16:57:41 +01:00
,p_QupZilla(mainClass)
,m_bookmarksModel(mApp->bookmarksModel())
,m_historyModel(mApp->history())
2011-03-02 16:57:41 +01:00
{
setObjectName("bookmarksbar");
m_layout = new QHBoxLayout();
m_layout->setContentsMargins(9, 3, 9, 3);
m_layout->setSpacing(0);
setLayout(m_layout);
2011-03-02 16:57:41 +01:00
setContextMenuPolicy(Qt::CustomContextMenu);
2011-03-02 16:57:41 +01:00
connect(this, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(customContextMenuRequested(QPoint)));
connect(m_bookmarksModel, SIGNAL(bookmarkAdded(BookmarksModel::Bookmark)), this, SLOT(addBookmark(BookmarksModel::Bookmark)));
connect(m_bookmarksModel, SIGNAL(bookmarkDeleted(BookmarksModel::Bookmark)), this, SLOT(removeBookmark(BookmarksModel::Bookmark)));
connect(m_bookmarksModel, SIGNAL(bookmarkEdited(BookmarksModel::Bookmark,BookmarksModel::Bookmark)), this, SLOT(bookmarkEdited(BookmarksModel::Bookmark,BookmarksModel::Bookmark)));
// QTimer::singleShot(0, this, SLOT(refreshBookmarks()));
refreshBookmarks();
2011-03-02 16:57:41 +01:00
}
void BookmarksToolbar::customContextMenuRequested(const QPoint &pos)
{
Q_UNUSED(pos)
2011-03-02 16:57:41 +01:00
QMenu menu;
2011-04-09 00:22:50 +02:00
menu.addAction(tr("&Bookmark Current Page"), p_QupZilla, SLOT(bookmarkPage()));
menu.addAction(tr("Bookmark &All Tabs"), p_QupZilla, SLOT(bookmarkAllTabs()));
menu.addAction(IconProvider::fromTheme("user-bookmarks"), tr("&Organize Bookmarks"), p_QupZilla, SLOT(showBookmarksManager()));
2011-03-02 16:57:41 +01:00
menu.addSeparator();
2011-04-09 00:22:50 +02:00
menu.addAction(m_bookmarksModel->isShowingMostVisited() ? tr("Hide Most &Visited") : tr("Show Most &Visited"), this, SLOT(showMostVisited()));
menu.addAction(tr("&Hide Toolbar"), this, SLOT(hidePanel()));
2011-03-02 16:57:41 +01:00
//Prevent choosing first option with double rightclick
QPoint position = QCursor::pos();
QPoint p(position.x(), position.y()+1);
menu.exec(p);
}
void BookmarksToolbar::hidePanel()
2011-03-02 16:57:41 +01:00
{
p_QupZilla->showBookmarksToolbar();
2011-03-02 16:57:41 +01:00
}
void BookmarksToolbar::loadClickedBookmark()
2011-03-02 16:57:41 +01:00
{
ToolButton* button = qobject_cast<ToolButton*>(sender());
if (!button)
return;
p_QupZilla->loadAddress(button->data().toUrl());
}
void BookmarksToolbar::loadClickedBookmarkInNewTab()
{
ToolButton* button = qobject_cast<ToolButton*>(sender());
if (!button)
return;
p_QupZilla->tabWidget()->addView(button->data().toUrl());
}
void BookmarksToolbar::showMostVisited()
{
m_bookmarksModel->setShowingMostVisited(!m_bookmarksModel->isShowingMostVisited());
m_mostVis->setVisible(!m_mostVis->isVisible());
2011-03-02 16:57:41 +01:00
}
void BookmarksToolbar::addBookmark(const BookmarksModel::Bookmark &bookmark)
2011-03-02 16:57:41 +01:00
{
if (bookmark.folder != "bookmarksToolbar")
return;
QString title = bookmark.title;
if (title.length()>15) {
title.truncate(13);
title+="..";
}
2011-03-02 16:57:41 +01:00
ToolButton* button = new ToolButton(this);
button->setText(title);
button->setData(bookmark.url);
button->setIcon(bookmark.icon);
button->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
button->setToolTip(bookmark.url.toEncoded());
button->setAutoRaise(true);
button->setWhatsThis(bookmark.title);
connect(button, SIGNAL(clicked()), this, SLOT(loadClickedBookmark()));
connect(button, SIGNAL(middleMouseClicked()), this, SLOT(loadClickedBookmarkInNewTab()));
m_layout->insertWidget(m_layout->count() - 2, button);
}
void BookmarksToolbar::removeBookmark(const BookmarksModel::Bookmark &bookmark)
{
for (int i = 0; i < m_layout->count(); i++) {
ToolButton* button = qobject_cast<ToolButton*>(m_layout->itemAt(i)->widget());
if (!button)
continue;
if (button->data().toUrl() == bookmark.url) {
delete button;
return;
}
}
}
void BookmarksToolbar::bookmarkEdited(const BookmarksModel::Bookmark &before, const BookmarksModel::Bookmark &after)
{
if (before.folder == "bookmarksToolbar" && after.folder != "bookmarksToolbar") //Editing from toolbar folder to other folder -> Remove bookmark
removeBookmark(before);
else if (before.folder != "bookmarksToolbar" && after.folder == "bookmarksToolbar") //Editing from other folder to toolbar folder -> Add bookmark
addBookmark(after);
else { //Editing bookmark already in toolbar
for (int i = 0; i < m_layout->count(); i++) {
ToolButton* button = qobject_cast<ToolButton*>(m_layout->itemAt(i)->widget());
if (!button)
continue;
if (button->data().toUrl() == before.url && button->whatsThis() == before.title) {
QString title = after.title;
if (title.length()>15) {
title.truncate(13);
title+="..";
}
button->setText(title);
button->setData(after.url);
button->setIcon(after.icon);
button->setToolTip(after.url.toEncoded());
button->setWhatsThis(after.title);
}
}
}
}
void BookmarksToolbar::refreshBookmarks()
{
2011-03-02 16:57:41 +01:00
QSqlQuery query;
query.exec("SELECT title, url, icon FROM bookmarks WHERE folder='bookmarksToolbar'");
2011-03-02 16:57:41 +01:00
while(query.next()) {
QString title = query.value(0).toString();
QUrl url = query.value(1).toUrl();
QIcon icon = IconProvider::iconFromBase64(query.value(2).toByteArray());
QString title_ = title;
2011-03-02 16:57:41 +01:00
if (title.length()>15) {
title.truncate(13);
title+="..";
}
ToolButton* button = new ToolButton(this);
button->setText(title);
button->setData(url);
button->setIcon(icon);
2011-03-02 16:57:41 +01:00
button->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
button->setToolTip(url.toEncoded());
button->setWhatsThis(title_);
button->setAutoRaise(true);
connect(button, SIGNAL(clicked()), this, SLOT(loadClickedBookmark()));
connect(button, SIGNAL(middleMouseClicked()), this, SLOT(loadClickedBookmarkInNewTab()));
m_layout->addWidget(button);
2011-03-02 16:57:41 +01:00
}
m_mostVis = new ToolButton(this);
m_mostVis->setPopupMode(QToolButton::InstantPopup);
m_mostVis->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
m_mostVis->setIcon(style()->standardIcon(QStyle::SP_DirIcon));
m_mostVis->setText(tr("Most visited"));
m_mostVis->setToolTip(tr("Sites you visited the most"));
2011-03-02 16:57:41 +01:00
m_menuMostVisited = new QMenu();
m_mostVis->setMenu(m_menuMostVisited);
2011-03-02 16:57:41 +01:00
connect(m_menuMostVisited, SIGNAL(aboutToShow()), this, SLOT(refreshMostVisited()));
m_layout->addWidget(m_mostVis);
m_layout->addStretch();
m_mostVis->setVisible(m_bookmarksModel->isShowingMostVisited());
2011-03-02 16:57:41 +01:00
}
void BookmarksToolbar::refreshMostVisited()
{
m_menuMostVisited->clear();
QList<HistoryModel::HistoryEntry> mostList = m_historyModel->mostVisited(10);
foreach (HistoryModel::HistoryEntry entry, mostList) {
if (entry.title.length()>40) {
entry.title.truncate(40);
entry.title+="..";
2011-03-02 16:57:41 +01:00
}
m_menuMostVisited->addAction(_iconForUrl(entry.url), entry.title, p_QupZilla, SLOT(loadActionUrl()))->setData(entry.url);
2011-03-02 16:57:41 +01:00
}
}