2011-03-03 18:29:20 +01:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2012-01-01 15:29:55 +01:00
|
|
|
* Copyright (C) 2010-2012 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"
|
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-08-23 15:37:43 +02:00
|
|
|
BookmarksWidget::BookmarksWidget(QupZilla* mainClass, WebView* view, QWidget* parent)
|
2011-12-12 21:14:43 +01:00
|
|
|
: QMenu(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())
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
setAttribute(Qt::WA_DeleteOnClose);
|
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 09:34:05 +02:00
|
|
|
|
|
|
|
m_bookmarkId = m_bookmarksModel->bookmarkId(m_url);
|
|
|
|
|
|
|
|
if (m_bookmarkId > 0) {
|
|
|
|
connect(ui->saveRemove, SIGNAL(clicked()), this, SLOT(removeBookmark()));
|
|
|
|
ui->saveRemove->setText(tr("Remove"));
|
|
|
|
} else {
|
|
|
|
connect(ui->saveRemove, SIGNAL(clicked()), this, SLOT(saveBookmark()));
|
|
|
|
}
|
2012-02-05 16:00:23 +01:00
|
|
|
connect(ui->speeddialButton, SIGNAL(clicked()), this, SLOT(toggleSpeedDial()));
|
|
|
|
|
|
|
|
const SpeedDial::Page &page = m_speedDial->pageForUrl(m_url);
|
2012-02-06 21:53:31 +01:00
|
|
|
ui->speeddialButton->setText(page.url.isEmpty() ? tr("Add to Speed Dial") : tr("Remove from Speed Dial"));
|
2011-12-27 17:49:51 +01:00
|
|
|
|
2012-01-07 10:26:52 +01:00
|
|
|
#ifndef KDE
|
2011-12-27 17:49:51 +01:00
|
|
|
// Use light color for QLabels even with Ubuntu Ambiance theme
|
|
|
|
QPalette pal = palette();
|
|
|
|
pal.setColor(QPalette::WindowText, QToolTip::palette().color(QPalette::ToolTipText));
|
|
|
|
ui->label_2->setPalette(pal);
|
|
|
|
ui->label_3->setPalette(pal);
|
2012-01-07 10:26:52 +01:00
|
|
|
#endif
|
2012-09-10 09:34:05 +02:00
|
|
|
|
|
|
|
loadBookmark();
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void BookmarksWidget::loadBookmark()
|
|
|
|
{
|
2012-09-10 09:34:05 +02:00
|
|
|
// Bookmark folders
|
|
|
|
ui->folder->addItem(QIcon(":/icons/other/unsortedbookmarks.png"), _bookmarksUnsorted, "unsorted");
|
|
|
|
ui->folder->addItem(style()->standardIcon(QStyle::SP_DirOpenIcon), _bookmarksMenu, "bookmarksMenu");
|
|
|
|
ui->folder->addItem(style()->standardIcon(QStyle::SP_DirOpenIcon), _bookmarksToolbar, "bookmarksToolbar");
|
|
|
|
QSqlQuery query;
|
|
|
|
query.exec("SELECT name FROM folders");
|
|
|
|
while (query.next()) {
|
|
|
|
ui->folder->addItem(style()->standardIcon(QStyle::SP_DirIcon), query.value(0).toString(), query.value(0).toString());
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
ui->folder->setCurrentIndex(ui->folder->findData(bookmark.folder));
|
2012-09-10 09:34:05 +02:00
|
|
|
|
|
|
|
ui->name->setEnabled(false);
|
|
|
|
ui->folder->setEnabled(false);
|
|
|
|
} else {
|
|
|
|
ui->name->setText(m_view->title());
|
|
|
|
ui->folder->setCurrentIndex(0);
|
2012-02-05 16:00:23 +01:00
|
|
|
}
|
2012-09-10 09:34:05 +02:00
|
|
|
|
|
|
|
ui->name->setCursorPosition(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
const int hideDelay = 270;
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void BookmarksWidget::removeBookmark()
|
|
|
|
{
|
2012-02-05 16:00:23 +01:00
|
|
|
m_bookmarksModel->removeBookmark(m_url);
|
2011-03-02 16:57:41 +01:00
|
|
|
emit bookmarkDeleted();
|
2012-09-10 09:34:05 +02:00
|
|
|
QTimer::singleShot(hideDelay, this, SLOT(close()));
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void BookmarksWidget::saveBookmark()
|
|
|
|
{
|
2012-09-10 09:34:05 +02:00
|
|
|
// m_bookmarksModel->editBookmark(m_bookmarkId, ui->name->text(), QUrl(), ui->folder->itemData(ui->folder->currentIndex()).toString());
|
|
|
|
m_bookmarksModel->saveBookmark(m_view, ui->folder->currentText());
|
|
|
|
QTimer::singleShot(hideDelay, this, SLOT(close()));
|
2012-02-05 16:00:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void BookmarksWidget::toggleSpeedDial()
|
|
|
|
{
|
|
|
|
const SpeedDial::Page &page = m_speedDial->pageForUrl(m_url);
|
|
|
|
|
|
|
|
if (page.url.isEmpty()) {
|
|
|
|
m_speedDial->addPage(m_url, m_view->title());
|
|
|
|
ui->speeddialButton->setText(tr("Remove from Speed Dial"));
|
|
|
|
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_speedDial->removePage(page);
|
2012-02-06 21:53:31 +01:00
|
|
|
ui->speeddialButton->setText(tr("Add to Speed Dial"));
|
2012-02-05 16:00:23 +01:00
|
|
|
|
|
|
|
}
|
2012-09-10 09:34:05 +02:00
|
|
|
QTimer::singleShot(hideDelay, this, SLOT(close()));
|
2012-02-05 16:00:23 +01:00
|
|
|
}
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
void BookmarksWidget::showAt(QWidget* _parent)
|
|
|
|
{
|
2012-05-06 20:29:14 +02:00
|
|
|
layout()->invalidate();
|
|
|
|
layout()->activate();
|
2012-04-17 15:11:26 +02:00
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
QPoint p = _parent->mapToGlobal(QPoint(0, 0));
|
2011-11-06 17:01:23 +01:00
|
|
|
move((p.x() + _parent->width()) - width(), p.y() + _parent->height());
|
2012-05-06 20:29:14 +02:00
|
|
|
|
|
|
|
show();
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
BookmarksWidget::~BookmarksWidget()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|