2011-03-03 18:29:20 +01:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2011-12-15 18:34:48 +01:00
|
|
|
* Copyright (C) 2010-2011 David Rosca <nowrep@gmail.com>
|
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"
|
2011-04-25 20:56:45 +02:00
|
|
|
#include "iconprovider.h"
|
2011-05-06 20:05:49 +02:00
|
|
|
#include "historymodel.h"
|
2011-09-11 19:15:06 +02:00
|
|
|
#include "toolbutton.h"
|
2011-12-08 19:12:43 +01:00
|
|
|
#include "databasewriter.h"
|
2011-12-14 22:30:05 +01:00
|
|
|
#include "enhancedmenu.h"
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2011-10-28 17:52:42 +02:00
|
|
|
BookmarksToolbar::BookmarksToolbar(QupZilla* mainClass, QWidget* parent)
|
|
|
|
: QWidget(parent)
|
|
|
|
, p_QupZilla(mainClass)
|
|
|
|
, m_bookmarksModel(mApp->bookmarksModel())
|
|
|
|
, m_historyModel(mApp->history())
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
2011-09-11 19:15:06 +02: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
|
|
|
|
2011-12-17 14:26:34 +01:00
|
|
|
setAcceptDrops(true);
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
setContextMenuPolicy(Qt::CustomContextMenu);
|
2011-03-02 16:57:41 +01:00
|
|
|
connect(this, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(customContextMenuRequested(QPoint)));
|
2011-04-15 20:45:22 +02:00
|
|
|
|
|
|
|
connect(m_bookmarksModel, SIGNAL(bookmarkAdded(BookmarksModel::Bookmark)), this, SLOT(addBookmark(BookmarksModel::Bookmark)));
|
|
|
|
connect(m_bookmarksModel, SIGNAL(bookmarkDeleted(BookmarksModel::Bookmark)), this, SLOT(removeBookmark(BookmarksModel::Bookmark)));
|
2011-11-06 17:01:23 +01:00
|
|
|
connect(m_bookmarksModel, SIGNAL(bookmarkEdited(BookmarksModel::Bookmark, BookmarksModel::Bookmark)), this, SLOT(bookmarkEdited(BookmarksModel::Bookmark, BookmarksModel::Bookmark)));
|
2011-10-28 17:52:42 +02:00
|
|
|
connect(m_bookmarksModel, SIGNAL(subfolderAdded(QString)), this, SLOT(subfolderAdded(QString)));
|
|
|
|
connect(m_bookmarksModel, SIGNAL(folderDeleted(QString)), this, SLOT(folderDeleted(QString)));
|
2011-11-06 17:01:23 +01:00
|
|
|
connect(m_bookmarksModel, SIGNAL(folderRenamed(QString, QString)), this, SLOT(folderRenamed(QString, QString)));
|
2011-04-15 20:45:22 +02:00
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
// QTimer::singleShot(0, this, SLOT(refreshBookmarks()));
|
|
|
|
refreshBookmarks();
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void BookmarksToolbar::customContextMenuRequested(const QPoint &pos)
|
|
|
|
{
|
2011-09-11 19:15:06 +02:00
|
|
|
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()));
|
2011-09-30 21:44:18 +02:00
|
|
|
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();
|
2011-11-06 17:01:23 +01:00
|
|
|
QPoint p(position.x(), position.y() + 1);
|
2011-03-02 16:57:41 +01:00
|
|
|
menu.exec(p);
|
|
|
|
}
|
|
|
|
|
2011-10-28 17:52:42 +02:00
|
|
|
void BookmarksToolbar::showBookmarkContextMenu(const QPoint &pos)
|
|
|
|
{
|
|
|
|
Q_UNUSED(pos)
|
|
|
|
|
|
|
|
ToolButton* button = qobject_cast<ToolButton*>(sender());
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!button) {
|
2011-10-28 17:52:42 +02:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-10-28 17:52:42 +02:00
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
QVariant buttonPointer = qVariantFromValue((void*) button);
|
2011-10-28 17:52:42 +02:00
|
|
|
|
|
|
|
QMenu menu;
|
|
|
|
menu.addAction(IconProvider::fromTheme("go-next"), tr("Move right"), this, SLOT(moveRight()))->setData(buttonPointer);
|
|
|
|
menu.addAction(IconProvider::fromTheme("go-previous"), tr("Move left"), this, SLOT(moveLeft()))->setData(buttonPointer);
|
|
|
|
menu.addSeparator();
|
|
|
|
menu.addAction(IconProvider::fromTheme("list-remove"), tr("Remove bookmark"), this, SLOT(removeButton()))->setData(buttonPointer);
|
|
|
|
|
|
|
|
//Prevent choosing first option with double rightclick
|
|
|
|
QPoint position = QCursor::pos();
|
2011-11-06 17:01:23 +01:00
|
|
|
QPoint p(position.x(), position.y() + 1);
|
2011-10-28 17:52:42 +02:00
|
|
|
menu.exec(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BookmarksToolbar::moveRight()
|
|
|
|
{
|
|
|
|
QAction* act = qobject_cast<QAction*> (sender());
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!act) {
|
2011-10-28 17:52:42 +02:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-10-28 17:52:42 +02:00
|
|
|
|
|
|
|
ToolButton* button = (ToolButton*) act->data().value<void*>();
|
|
|
|
|
|
|
|
int index = m_layout->indexOf(button);
|
2011-11-06 17:01:23 +01:00
|
|
|
if (index == m_layout->count() - 1) {
|
2011-10-28 17:52:42 +02:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-10-28 17:52:42 +02:00
|
|
|
|
|
|
|
ToolButton* buttonRight = qobject_cast<ToolButton*> (m_layout->itemAt(index + 1)->widget());
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!buttonRight || buttonRight->menu()) {
|
2011-10-28 17:52:42 +02:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-10-28 17:52:42 +02:00
|
|
|
|
|
|
|
Bookmark bookmark = button->data().value<Bookmark>();
|
|
|
|
Bookmark bookmarkRight = buttonRight->data().value<Bookmark>();
|
|
|
|
|
|
|
|
QSqlQuery query;
|
|
|
|
query.prepare("UPDATE bookmarks SET toolbar_position=? WHERE id=?");
|
|
|
|
query.addBindValue(index + 1);
|
|
|
|
query.addBindValue(bookmark.id);
|
2011-12-08 19:12:43 +01:00
|
|
|
mApp->dbWriter()->executeQuery(query);
|
2011-10-28 17:52:42 +02:00
|
|
|
|
|
|
|
query.prepare("UPDATE bookmarks SET toolbar_position=? WHERE id=?");
|
|
|
|
query.addBindValue(index);
|
|
|
|
query.addBindValue(bookmarkRight.id);
|
2011-12-08 19:12:43 +01:00
|
|
|
mApp->dbWriter()->executeQuery(query);
|
2011-10-28 17:52:42 +02:00
|
|
|
|
|
|
|
QWidget* w = m_layout->takeAt(index)->widget();
|
|
|
|
m_layout->insertWidget(index + 1, w);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BookmarksToolbar::moveLeft()
|
|
|
|
{
|
|
|
|
QAction* act = qobject_cast<QAction*> (sender());
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!act) {
|
2011-10-28 17:52:42 +02:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-10-28 17:52:42 +02:00
|
|
|
|
|
|
|
ToolButton* button = (ToolButton*) act->data().value<void*>();
|
|
|
|
|
|
|
|
int index = m_layout->indexOf(button);
|
2011-11-06 17:01:23 +01:00
|
|
|
if (index == 0) {
|
2011-10-28 17:52:42 +02:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-10-28 17:52:42 +02:00
|
|
|
|
|
|
|
ToolButton* buttonLeft = qobject_cast<ToolButton*> (m_layout->itemAt(index - 1)->widget());
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!buttonLeft) {
|
2011-10-28 17:52:42 +02:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-10-28 17:52:42 +02:00
|
|
|
|
|
|
|
Bookmark bookmark = button->data().value<Bookmark>();
|
|
|
|
Bookmark bookmarkLeft = buttonLeft->data().value<Bookmark>();
|
|
|
|
|
|
|
|
QSqlQuery query;
|
|
|
|
query.prepare("UPDATE bookmarks SET toolbar_position=? WHERE id=?");
|
|
|
|
query.addBindValue(index - 1);
|
|
|
|
query.addBindValue(bookmark.id);
|
2011-12-08 19:12:43 +01:00
|
|
|
mApp->dbWriter()->executeQuery(query);
|
2011-10-28 17:52:42 +02:00
|
|
|
|
|
|
|
query.prepare("UPDATE bookmarks SET toolbar_position=? WHERE id=?");
|
|
|
|
query.addBindValue(index);
|
|
|
|
query.addBindValue(bookmarkLeft.id);
|
2011-12-08 19:12:43 +01:00
|
|
|
mApp->dbWriter()->executeQuery(query);
|
2011-10-28 17:52:42 +02:00
|
|
|
|
|
|
|
QWidget* w = m_layout->takeAt(index)->widget();
|
|
|
|
m_layout->insertWidget(index - 1, w);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BookmarksToolbar::removeButton()
|
|
|
|
{
|
|
|
|
QAction* act = qobject_cast<QAction*> (sender());
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!act) {
|
2011-10-28 17:52:42 +02:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-10-28 17:52:42 +02:00
|
|
|
|
|
|
|
ToolButton* button = (ToolButton*) act->data().value<void*>();
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!button) {
|
2011-10-28 17:52:42 +02:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-10-28 17:52:42 +02:00
|
|
|
|
|
|
|
Bookmark bookmark = button->data().value<Bookmark>();
|
|
|
|
m_bookmarksModel->removeBookmark(bookmark.id);
|
|
|
|
}
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
void BookmarksToolbar::hidePanel()
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
2011-09-11 19:15:06 +02:00
|
|
|
p_QupZilla->showBookmarksToolbar();
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
void BookmarksToolbar::loadClickedBookmark()
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
2011-09-11 19:15:06 +02:00
|
|
|
ToolButton* button = qobject_cast<ToolButton*>(sender());
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!button) {
|
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
|
|
|
|
2011-10-28 17:52:42 +02:00
|
|
|
Bookmark bookmark = button->data().value<Bookmark>();
|
|
|
|
|
|
|
|
p_QupZilla->loadAddress(bookmark.url);
|
2011-09-11 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
2011-10-18 21:07:58 +02:00
|
|
|
void BookmarksToolbar::loadClickedBookmarkInNewTab()
|
|
|
|
{
|
|
|
|
ToolButton* button = qobject_cast<ToolButton*>(sender());
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!button) {
|
2011-10-18 21:07:58 +02:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-10-18 21:07:58 +02:00
|
|
|
|
2011-10-28 17:52:42 +02:00
|
|
|
Bookmark bookmark = button->data().value<Bookmark>();
|
|
|
|
|
2011-12-20 18:58:42 +01:00
|
|
|
p_QupZilla->tabWidget()->addView(bookmark.url, bookmark.title);
|
2011-10-18 21:07:58 +02:00
|
|
|
}
|
|
|
|
|
2011-12-19 21:30:26 +01:00
|
|
|
void BookmarksToolbar::loadFolderBookmarksInTabs()
|
|
|
|
{
|
|
|
|
ToolButton* b = qobject_cast<ToolButton*>(sender());
|
|
|
|
if (!b) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString folder = b->text();
|
|
|
|
if (folder.isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (Bookmark b, m_bookmarksModel->folderBookmarks(folder)) {
|
2011-12-20 18:58:42 +01:00
|
|
|
p_QupZilla->tabWidget()->addView(b.url, b.title, TabWidget::NewNotSelectedTab);
|
2011-12-19 21:30:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
void BookmarksToolbar::showMostVisited()
|
|
|
|
{
|
|
|
|
m_bookmarksModel->setShowingMostVisited(!m_bookmarksModel->isShowingMostVisited());
|
2011-10-17 14:19:49 +02:00
|
|
|
m_mostVis->setVisible(!m_mostVis->isVisible());
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2011-10-28 17:52:42 +02:00
|
|
|
int BookmarksToolbar::indexOfLastBookmark()
|
|
|
|
{
|
|
|
|
for (int i = m_layout->count() - 1; i >= 0; i--) {
|
|
|
|
ToolButton* button = qobject_cast<ToolButton*>(m_layout->itemAt(i)->widget());
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!button) {
|
2011-10-28 17:52:42 +02:00
|
|
|
continue;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-10-28 17:52:42 +02:00
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!button->menu()) {
|
2011-10-28 17:52:42 +02:00
|
|
|
return i + 1;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-10-28 17:52:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BookmarksToolbar::subfolderAdded(const QString &name)
|
|
|
|
{
|
|
|
|
ToolButton* b = new ToolButton(this);
|
|
|
|
b->setPopupMode(QToolButton::InstantPopup);
|
|
|
|
b->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
|
|
|
|
b->setIcon(style()->standardIcon(QStyle::SP_DirIcon));
|
|
|
|
b->setText(name);
|
2011-12-19 21:30:26 +01:00
|
|
|
connect(b, SIGNAL(middleMouseClicked()), this, SLOT(loadFolderBookmarksInTabs()));
|
2011-10-28 17:52:42 +02:00
|
|
|
|
2011-12-11 17:51:03 +01:00
|
|
|
Menu* menu = new Menu(name);
|
2011-10-28 17:52:42 +02:00
|
|
|
b->setMenu(menu);
|
|
|
|
connect(menu, SIGNAL(aboutToShow()), this, SLOT(aboutToShowFolderMenu()));
|
|
|
|
|
|
|
|
m_layout->insertWidget(m_layout->count() - 2, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BookmarksToolbar::folderDeleted(const QString &name)
|
|
|
|
{
|
|
|
|
int index = indexOfLastBookmark();
|
|
|
|
|
|
|
|
for (int i = index; i < m_layout->count(); i++) {
|
|
|
|
ToolButton* button = qobject_cast<ToolButton*>(m_layout->itemAt(i)->widget());
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!button) {
|
2011-10-28 17:52:42 +02:00
|
|
|
continue;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-10-28 17:52:42 +02:00
|
|
|
|
|
|
|
if (button->text() == name) {
|
|
|
|
delete button;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BookmarksToolbar::folderRenamed(const QString &before, const QString &after)
|
|
|
|
{
|
|
|
|
int index = indexOfLastBookmark();
|
|
|
|
|
|
|
|
for (int i = index; i < m_layout->count(); i++) {
|
|
|
|
ToolButton* button = qobject_cast<ToolButton*>(m_layout->itemAt(i)->widget());
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!button) {
|
2011-10-28 17:52:42 +02:00
|
|
|
continue;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-10-28 17:52:42 +02:00
|
|
|
|
|
|
|
if (button->text() == before) {
|
|
|
|
button->setText(after);
|
|
|
|
button->menu()->setTitle(after);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-15 20:45:22 +02:00
|
|
|
void BookmarksToolbar::addBookmark(const BookmarksModel::Bookmark &bookmark)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
2011-11-06 17:01:23 +01:00
|
|
|
if (bookmark.folder != "bookmarksToolbar") {
|
2011-04-15 20:45:22 +02:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-04-15 20:45:22 +02:00
|
|
|
QString title = bookmark.title;
|
2011-11-06 17:01:23 +01:00
|
|
|
if (title.length() > 15) {
|
2011-04-15 20:45:22 +02:00
|
|
|
title.truncate(13);
|
2011-11-06 17:01:23 +01:00
|
|
|
title += "..";
|
2011-04-15 20:45:22 +02:00
|
|
|
}
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2011-10-28 17:52:42 +02:00
|
|
|
QVariant v;
|
|
|
|
v.setValue<Bookmark>(bookmark);
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
ToolButton* button = new ToolButton(this);
|
|
|
|
button->setText(title);
|
2011-10-28 17:52:42 +02:00
|
|
|
button->setData(v);
|
2011-09-11 19:15:06 +02:00
|
|
|
button->setIcon(bookmark.icon);
|
2011-04-15 20:45:22 +02:00
|
|
|
button->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
|
|
|
|
button->setToolTip(bookmark.url.toEncoded());
|
2011-09-11 19:15:06 +02:00
|
|
|
button->setAutoRaise(true);
|
2011-04-15 20:45:22 +02:00
|
|
|
button->setWhatsThis(bookmark.title);
|
2011-10-28 17:52:42 +02:00
|
|
|
button->setContextMenuPolicy(Qt::CustomContextMenu);
|
2011-04-15 20:45:22 +02:00
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
connect(button, SIGNAL(clicked()), this, SLOT(loadClickedBookmark()));
|
2011-10-18 21:07:58 +02:00
|
|
|
connect(button, SIGNAL(middleMouseClicked()), this, SLOT(loadClickedBookmarkInNewTab()));
|
2011-12-07 15:17:21 +01:00
|
|
|
connect(button, SIGNAL(controlClicked()), this, SLOT(loadClickedBookmarkInNewTab()));
|
2011-10-28 17:52:42 +02:00
|
|
|
connect(button, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(showBookmarkContextMenu(QPoint)));
|
|
|
|
|
|
|
|
int indexForBookmark = indexOfLastBookmark();
|
|
|
|
m_layout->insertWidget(indexForBookmark, button);
|
|
|
|
|
|
|
|
QSqlQuery query;
|
|
|
|
query.prepare("UPDATE bookmarks SET toolbar_position=? WHERE id=?");
|
|
|
|
query.addBindValue(indexForBookmark);
|
|
|
|
query.addBindValue(bookmark.id);
|
2011-12-08 19:12:43 +01:00
|
|
|
mApp->dbWriter()->executeQuery(query);
|
2011-04-15 20:45:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void BookmarksToolbar::removeBookmark(const BookmarksModel::Bookmark &bookmark)
|
|
|
|
{
|
2011-09-11 19:15:06 +02:00
|
|
|
for (int i = 0; i < m_layout->count(); i++) {
|
|
|
|
ToolButton* button = qobject_cast<ToolButton*>(m_layout->itemAt(i)->widget());
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!button) {
|
2011-04-15 20:45:22 +02:00
|
|
|
continue;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-04-15 20:45:22 +02:00
|
|
|
|
2011-10-28 17:52:42 +02:00
|
|
|
Bookmark book = button->data().value<Bookmark>();
|
|
|
|
|
|
|
|
if (book == bookmark) {
|
2011-04-15 20:45:22 +02:00
|
|
|
delete button;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BookmarksToolbar::bookmarkEdited(const BookmarksModel::Bookmark &before, const BookmarksModel::Bookmark &after)
|
|
|
|
{
|
2011-11-06 17:01:23 +01:00
|
|
|
if (before.folder == "bookmarksToolbar" && after.folder != "bookmarksToolbar") { //Editing from toolbar folder to other folder -> Remove bookmark
|
2011-04-15 20:45:22 +02:00
|
|
|
removeBookmark(before);
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
|
|
|
else if (before.folder != "bookmarksToolbar" && after.folder == "bookmarksToolbar") { //Editing from other folder to toolbar folder -> Add bookmark
|
2011-04-15 20:45:22 +02:00
|
|
|
addBookmark(after);
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
|
|
|
else { //Editing bookmark already in toolbar
|
2011-09-11 19:15:06 +02:00
|
|
|
for (int i = 0; i < m_layout->count(); i++) {
|
|
|
|
ToolButton* button = qobject_cast<ToolButton*>(m_layout->itemAt(i)->widget());
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!button) {
|
2011-04-15 20:45:22 +02:00
|
|
|
continue;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-04-15 20:45:22 +02:00
|
|
|
|
2011-10-28 17:52:42 +02:00
|
|
|
Bookmark book = button->data().value<Bookmark>();
|
|
|
|
|
|
|
|
if (book == before) {
|
2011-04-15 20:45:22 +02:00
|
|
|
QString title = after.title;
|
2011-11-06 17:01:23 +01:00
|
|
|
if (title.length() > 15) {
|
2011-04-15 20:45:22 +02:00
|
|
|
title.truncate(13);
|
2011-11-06 17:01:23 +01:00
|
|
|
title += "..";
|
2011-04-15 20:45:22 +02:00
|
|
|
}
|
|
|
|
|
2011-10-28 17:52:42 +02:00
|
|
|
QVariant v;
|
|
|
|
v.setValue<Bookmark>(after);
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
button->setText(title);
|
2011-10-28 17:52:42 +02:00
|
|
|
button->setData(v);
|
2011-09-11 19:15:06 +02:00
|
|
|
button->setIcon(after.icon);
|
2011-04-15 20:45:22 +02:00
|
|
|
button->setToolTip(after.url.toEncoded());
|
|
|
|
button->setWhatsThis(after.title);
|
2011-10-28 17:52:42 +02:00
|
|
|
return;
|
2011-04-15 20:45:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BookmarksToolbar::refreshBookmarks()
|
|
|
|
{
|
2011-03-02 16:57:41 +01:00
|
|
|
QSqlQuery query;
|
2011-10-28 17:52:42 +02:00
|
|
|
query.exec("SELECT id, title, url, icon FROM bookmarks WHERE folder='bookmarksToolbar' ORDER BY toolbar_position");
|
2011-11-06 17:01:23 +01:00
|
|
|
while (query.next()) {
|
2011-10-28 17:52:42 +02:00
|
|
|
Bookmark bookmark;
|
|
|
|
bookmark.id = query.value(0).toInt();
|
|
|
|
bookmark.title = query.value(1).toString();
|
|
|
|
bookmark.url = query.value(2).toUrl();
|
|
|
|
bookmark.icon = IconProvider::iconFromBase64(query.value(3).toByteArray());
|
|
|
|
bookmark.folder = "bookmarksToolbar";
|
|
|
|
QString title = bookmark.title;
|
2011-11-06 17:01:23 +01:00
|
|
|
if (title.length() > 15) {
|
2011-03-02 16:57:41 +01:00
|
|
|
title.truncate(13);
|
2011-11-06 17:01:23 +01:00
|
|
|
title += "..";
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2011-10-28 17:52:42 +02:00
|
|
|
QVariant v;
|
|
|
|
v.setValue<Bookmark>(bookmark);
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
ToolButton* button = new ToolButton(this);
|
|
|
|
button->setText(title);
|
2011-10-28 17:52:42 +02:00
|
|
|
button->setData(v);
|
|
|
|
button->setIcon(bookmark.icon);
|
2011-03-02 16:57:41 +01:00
|
|
|
button->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
|
2011-10-28 17:52:42 +02:00
|
|
|
button->setToolTip(bookmark.url.toEncoded());
|
|
|
|
button->setWhatsThis(bookmark.title);
|
2011-09-11 19:15:06 +02:00
|
|
|
button->setAutoRaise(true);
|
2011-10-28 17:52:42 +02:00
|
|
|
button->setContextMenuPolicy(Qt::CustomContextMenu);
|
2011-09-11 19:15:06 +02:00
|
|
|
|
|
|
|
connect(button, SIGNAL(clicked()), this, SLOT(loadClickedBookmark()));
|
2011-10-18 21:07:58 +02:00
|
|
|
connect(button, SIGNAL(middleMouseClicked()), this, SLOT(loadClickedBookmarkInNewTab()));
|
2011-12-07 15:17:21 +01:00
|
|
|
connect(button, SIGNAL(controlClicked()), this, SLOT(loadClickedBookmarkInNewTab()));
|
2011-10-28 17:52:42 +02:00
|
|
|
connect(button, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(showBookmarkContextMenu(QPoint)));
|
2011-09-11 19:15:06 +02:00
|
|
|
m_layout->addWidget(button);
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2011-10-28 17:52:42 +02:00
|
|
|
query.exec("SELECT name FROM folders WHERE subfolder='yes'");
|
2011-11-06 17:01:23 +01:00
|
|
|
while (query.next()) {
|
2011-10-28 17:52:42 +02:00
|
|
|
ToolButton* b = new ToolButton(this);
|
|
|
|
b->setPopupMode(QToolButton::InstantPopup);
|
|
|
|
b->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
|
|
|
|
b->setIcon(style()->standardIcon(QStyle::SP_DirIcon));
|
|
|
|
b->setText(query.value(0).toString());
|
2011-12-19 21:30:26 +01:00
|
|
|
connect(b, SIGNAL(middleMouseClicked()), this, SLOT(loadFolderBookmarksInTabs()));
|
2011-10-28 17:52:42 +02:00
|
|
|
|
2011-12-11 17:51:03 +01:00
|
|
|
Menu* menu = new Menu(query.value(0).toString());
|
2011-10-28 17:52:42 +02:00
|
|
|
b->setMenu(menu);
|
|
|
|
connect(menu, SIGNAL(aboutToShow()), this, SLOT(aboutToShowFolderMenu()));
|
|
|
|
|
|
|
|
m_layout->addWidget(b);
|
|
|
|
}
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
m_mostVis = new ToolButton(this);
|
2011-04-15 20:45:22 +02:00
|
|
|
m_mostVis->setPopupMode(QToolButton::InstantPopup);
|
|
|
|
m_mostVis->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
|
|
|
|
m_mostVis->setIcon(style()->standardIcon(QStyle::SP_DirIcon));
|
|
|
|
m_mostVis->setText(tr("Most visited"));
|
2011-10-21 23:26:34 +02:00
|
|
|
m_mostVis->setToolTip(tr("Sites you visited the most"));
|
2011-04-15 20:45:22 +02:00
|
|
|
|
2011-12-11 17:51:03 +01:00
|
|
|
m_menuMostVisited = new Menu();
|
2011-04-15 20:45:22 +02:00
|
|
|
m_mostVis->setMenu(m_menuMostVisited);
|
2011-03-02 16:57:41 +01:00
|
|
|
connect(m_menuMostVisited, SIGNAL(aboutToShow()), this, SLOT(refreshMostVisited()));
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
m_layout->addWidget(m_mostVis);
|
|
|
|
m_layout->addStretch();
|
2011-10-17 14:19:49 +02:00
|
|
|
|
|
|
|
m_mostVis->setVisible(m_bookmarksModel->isShowingMostVisited());
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2011-10-28 17:52:42 +02:00
|
|
|
void BookmarksToolbar::aboutToShowFolderMenu()
|
|
|
|
{
|
|
|
|
QMenu* menu = qobject_cast<QMenu*> (sender());
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!menu) {
|
2011-10-28 17:52:42 +02:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-10-28 17:52:42 +02:00
|
|
|
|
|
|
|
menu->clear();
|
|
|
|
QString folder = menu->title();
|
|
|
|
|
2011-12-19 21:30:26 +01:00
|
|
|
foreach (Bookmark b, m_bookmarksModel->folderBookmarks(folder)) {
|
|
|
|
if (b.title.length() > 40) {
|
|
|
|
b.title.truncate(40);
|
|
|
|
b.title += "..";
|
2011-10-28 17:52:42 +02:00
|
|
|
}
|
2011-12-11 17:51:03 +01:00
|
|
|
|
2011-12-19 21:30:26 +01:00
|
|
|
Action* act = new Action(b.icon, b.title);
|
|
|
|
act->setData(b.url);
|
2011-12-12 21:14:43 +01:00
|
|
|
connect(act, SIGNAL(triggered()), p_QupZilla, SLOT(loadActionUrl()));
|
2011-12-16 20:17:17 +01:00
|
|
|
connect(act, SIGNAL(middleClicked()), p_QupZilla, SLOT(loadActionUrlInNewNotSelectedTab()));
|
2011-12-11 17:51:03 +01:00
|
|
|
menu->addAction(act);
|
2011-10-28 17:52:42 +02:00
|
|
|
}
|
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
if (menu->isEmpty()) {
|
2011-10-28 17:52:42 +02:00
|
|
|
menu->addAction(tr("Empty"));
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-10-28 17:52:42 +02:00
|
|
|
}
|
|
|
|
|
2011-12-17 16:04:04 +01:00
|
|
|
void BookmarksToolbar::dragEnterEvent(QDragEnterEvent* e)
|
2011-12-17 14:26:34 +01:00
|
|
|
{
|
|
|
|
const QMimeData* mime = e->mimeData();
|
|
|
|
|
|
|
|
if (mime->hasUrls() || mime->hasText()) {
|
|
|
|
e->acceptProposedAction();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QWidget::dropEvent(e);
|
|
|
|
}
|
|
|
|
|
2011-12-17 16:04:04 +01:00
|
|
|
void BookmarksToolbar::dropEvent(QDropEvent* e)
|
2011-12-17 14:26:34 +01:00
|
|
|
{
|
|
|
|
const QMimeData* mime = e->mimeData();
|
|
|
|
|
|
|
|
if (!mime->hasUrls() || !mime->hasText()) {
|
|
|
|
QWidget::dropEvent(e);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString title = mime->text();
|
|
|
|
QUrl url = mime->urls().at(0);
|
|
|
|
QIcon icon = mime->imageData().value<QIcon>();
|
|
|
|
|
|
|
|
m_bookmarksModel->saveBookmark(url, title, icon, "bookmarksToolbar");
|
|
|
|
}
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
void BookmarksToolbar::refreshMostVisited()
|
|
|
|
{
|
|
|
|
m_menuMostVisited->clear();
|
|
|
|
|
2011-05-06 20:05:49 +02:00
|
|
|
QList<HistoryModel::HistoryEntry> mostList = m_historyModel->mostVisited(10);
|
2011-11-06 17:01:23 +01:00
|
|
|
foreach(HistoryModel::HistoryEntry entry, mostList) {
|
|
|
|
if (entry.title.length() > 40) {
|
2011-05-06 20:05:49 +02:00
|
|
|
entry.title.truncate(40);
|
2011-11-06 17:01:23 +01:00
|
|
|
entry.title += "..";
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
2011-12-11 17:51:03 +01:00
|
|
|
|
|
|
|
Action* act = new Action(_iconForUrl(entry.url), entry.title);
|
|
|
|
act->setData(entry.url);
|
2011-12-12 21:14:43 +01:00
|
|
|
connect(act, SIGNAL(triggered()), p_QupZilla, SLOT(loadActionUrl()));
|
2011-12-16 20:17:17 +01:00
|
|
|
connect(act, SIGNAL(middleClicked()), p_QupZilla, SLOT(loadActionUrlInNewNotSelectedTab()));
|
2011-12-11 17:51:03 +01:00
|
|
|
m_menuMostVisited->addAction(act);
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
2011-10-28 17:52:42 +02:00
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
if (m_menuMostVisited->isEmpty()) {
|
2011-10-28 17:52:42 +02:00
|
|
|
m_menuMostVisited->addAction(tr("Empty"));
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|