2011-03-03 18:29:20 +01:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2013-02-08 12:10:12 +01:00
|
|
|
* Copyright (C) 2010-2013 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 "bookmarkswidget.h"
|
|
|
|
#include "ui_bookmarkswidget.h"
|
|
|
|
#include "bookmarksmodel.h"
|
|
|
|
#include "mainapplication.h"
|
2012-02-05 16:00:23 +01:00
|
|
|
#include "pluginproxy.h"
|
|
|
|
#include "speeddial.h"
|
|
|
|
#include "webview.h"
|
2012-08-22 14:48:27 +02:00
|
|
|
#include "qupzilla.h"
|
2013-01-09 13:59:37 +01:00
|
|
|
#include "bookmarkstree.h"
|
|
|
|
#include "browsinglibrary.h"
|
2013-02-04 12:11:27 +01:00
|
|
|
#include "bookmarksmanager.h"
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2012-02-29 18:33:50 +01:00
|
|
|
#include <QToolTip>
|
|
|
|
#include <QSqlQuery>
|
2012-09-10 09:34:05 +02:00
|
|
|
#include <QTimer>
|
2012-02-29 18:33:50 +01:00
|
|
|
|
2012-09-28 18:44:45 +02:00
|
|
|
#define HIDE_DELAY 270
|
|
|
|
|
2012-08-23 15:37:43 +02:00
|
|
|
BookmarksWidget::BookmarksWidget(QupZilla* mainClass, WebView* view, QWidget* parent)
|
2012-09-15 17:39:54 +02:00
|
|
|
: LocationBarPopup(parent)
|
2011-11-06 17:01:23 +01:00
|
|
|
, ui(new Ui::BookmarksWidget)
|
2012-08-22 14:48:27 +02:00
|
|
|
, p_QupZilla(mainClass)
|
2012-02-05 16:00:23 +01:00
|
|
|
, m_url(view->url())
|
|
|
|
, m_view(view)
|
|
|
|
, m_bookmarksModel(mApp->bookmarksModel())
|
|
|
|
, m_speedDial(mApp->plugins()->speedDial())
|
2012-09-11 10:47:59 +02:00
|
|
|
, m_edited(false)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2013-01-09 13:59:37 +01:00
|
|
|
m_bookmarksTree = new BookmarksTree(this);
|
|
|
|
m_bookmarksTree->setViewType(BookmarksTree::ComboFolderView);
|
|
|
|
m_bookmarksTree->header()->hide();
|
|
|
|
m_bookmarksTree->setColumnCount(1);
|
|
|
|
ui->folder->setModel(m_bookmarksTree->model());
|
|
|
|
ui->folder->setView(m_bookmarksTree);
|
2012-08-22 14:48:27 +02:00
|
|
|
|
|
|
|
// The locationbar's direction is direction of its text,
|
|
|
|
// it dynamically changes and so, it's not good choice for this widget.
|
|
|
|
setLayoutDirection(QApplication::layoutDirection());
|
2012-09-10 15:11:24 +02:00
|
|
|
|
2012-09-11 10:47:59 +02:00
|
|
|
connect(ui->speeddialButton, SIGNAL(clicked(QPoint)), this, SLOT(toggleSpeedDial()));
|
2012-02-05 16:00:23 +01:00
|
|
|
|
2013-02-08 12:10:12 +01:00
|
|
|
const SpeedDial::Page page = m_speedDial->pageForUrl(m_url);
|
2012-09-11 10:47:59 +02:00
|
|
|
ui->speeddialButton->setText(page.url.isEmpty() ?
|
|
|
|
tr("Add to Speed Dial") :
|
|
|
|
tr("Remove from Speed Dial"));
|
2012-09-10 15:11:24 +02:00
|
|
|
|
2012-09-10 09:34:05 +02:00
|
|
|
loadBookmark();
|
2013-01-09 13:59:37 +01:00
|
|
|
|
|
|
|
connect(ui->folder, SIGNAL(activated(int)), this, SLOT(comboItemActive(int)));
|
2013-01-16 14:52:50 +01:00
|
|
|
connect(m_bookmarksTree, SIGNAL(requestNewFolder(QWidget*, QString*, bool, QString, WebView*)),
|
2013-02-04 12:11:27 +01:00
|
|
|
mApp->browsingLibrary()->bookmarksManager(), SLOT(addFolder(QWidget*, QString*, bool, QString, WebView*)));
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void BookmarksWidget::loadBookmark()
|
|
|
|
{
|
2012-09-10 09:34:05 +02:00
|
|
|
// Bookmark folders
|
2013-01-09 13:59:37 +01:00
|
|
|
m_bookmarksTree->refreshTree();
|
2012-09-10 15:11:24 +02:00
|
|
|
|
2012-09-11 10:47:59 +02:00
|
|
|
m_bookmarkId = m_bookmarksModel->bookmarkId(m_url);
|
|
|
|
|
2012-09-10 09:34:05 +02:00
|
|
|
if (m_bookmarkId > 0) {
|
2012-02-05 16:00:23 +01:00
|
|
|
BookmarksModel::Bookmark bookmark = m_bookmarksModel->getBookmark(m_bookmarkId);
|
|
|
|
ui->name->setText(bookmark.title);
|
2013-01-09 13:59:37 +01:00
|
|
|
|
|
|
|
int index = ui->folder->findData(bookmark.folder);
|
|
|
|
// QComboBox::findData() returns index related to the item's parent
|
|
|
|
if (index == -1) { // subfolder
|
|
|
|
QModelIndex rootIndex = ui->folder->rootModelIndex();
|
2013-01-16 14:52:50 +01:00
|
|
|
ui->folder->setRootModelIndex(ui->folder->model()->index(ui->folder->findText(_bookmarksToolbar), 0));
|
2013-01-09 13:59:37 +01:00
|
|
|
// subfolder's name and its stored data are the same
|
|
|
|
index = ui->folder->findText(bookmark.folder);
|
|
|
|
ui->folder->setCurrentIndex(index);
|
|
|
|
ui->folder->setRootModelIndex(rootIndex);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ui->folder->setCurrentIndex(index);
|
|
|
|
}
|
|
|
|
|
2012-09-11 10:47:59 +02:00
|
|
|
ui->saveRemove->setText(tr("Remove"));
|
|
|
|
connect(ui->name, SIGNAL(textEdited(QString)), SLOT(bookmarkEdited()));
|
|
|
|
connect(ui->folder, SIGNAL(currentIndexChanged(int)), SLOT(bookmarkEdited()));
|
2012-09-10 15:11:24 +02:00
|
|
|
}
|
|
|
|
else {
|
2012-09-10 09:34:05 +02:00
|
|
|
ui->name->setText(m_view->title());
|
|
|
|
ui->folder->setCurrentIndex(0);
|
2012-02-05 16:00:23 +01:00
|
|
|
}
|
2012-09-10 15:11:24 +02:00
|
|
|
|
2012-09-10 09:34:05 +02:00
|
|
|
ui->name->setCursorPosition(0);
|
|
|
|
}
|
|
|
|
|
2012-02-05 16:00:23 +01:00
|
|
|
void BookmarksWidget::toggleSpeedDial()
|
|
|
|
{
|
2013-02-08 12:10:12 +01:00
|
|
|
const SpeedDial::Page page = m_speedDial->pageForUrl(m_url);
|
2012-02-05 16:00:23 +01:00
|
|
|
|
|
|
|
if (page.url.isEmpty()) {
|
|
|
|
m_speedDial->addPage(m_url, m_view->title());
|
|
|
|
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_speedDial->removePage(page);
|
2012-09-11 10:47:59 +02:00
|
|
|
}
|
2012-09-28 18:44:45 +02:00
|
|
|
QTimer::singleShot(HIDE_DELAY, this, SLOT(close()));
|
2012-09-11 10:47:59 +02:00
|
|
|
}
|
2012-02-05 16:00:23 +01:00
|
|
|
|
2012-09-11 10:47:59 +02:00
|
|
|
void BookmarksWidget::bookmarkEdited()
|
|
|
|
{
|
|
|
|
if (m_edited) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_edited = true;
|
|
|
|
ui->saveRemove->setText(tr("Save"));
|
|
|
|
}
|
|
|
|
|
2013-01-09 13:59:37 +01:00
|
|
|
void BookmarksWidget::comboItemActive(int index)
|
|
|
|
{
|
|
|
|
m_bookmarksTree->activeItemChange(index, ui->folder, ui->name->text(), m_view);
|
|
|
|
}
|
|
|
|
|
2012-09-11 10:47:59 +02:00
|
|
|
void BookmarksWidget::on_saveRemove_clicked(bool)
|
|
|
|
{
|
|
|
|
if (m_bookmarkId > 0) {
|
|
|
|
if (m_edited) {
|
2013-01-09 13:59:37 +01:00
|
|
|
m_bookmarksModel->editBookmark(m_bookmarkId, ui->name->text(), QUrl(), BookmarksModel::fromTranslatedFolder(ui->folder->currentText()));
|
2012-09-11 10:47:59 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_bookmarksModel->removeBookmark(m_url);
|
|
|
|
emit bookmarkDeleted();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2013-01-09 13:59:37 +01:00
|
|
|
m_bookmarksModel->saveBookmark(m_url, ui->name->text(), m_view->icon(), BookmarksModel::fromTranslatedFolder(ui->folder->currentText()));
|
2012-02-05 16:00:23 +01:00
|
|
|
}
|
2012-09-28 18:44:45 +02:00
|
|
|
QTimer::singleShot(HIDE_DELAY, this, SLOT(close()));
|
2012-02-05 16:00:23 +01:00
|
|
|
}
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
BookmarksWidget::~BookmarksWidget()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
2012-09-11 10:47:59 +02:00
|
|
|
|