mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 17:42:10 +01:00
67d6d380cd
Closes #735
109 lines
3.1 KiB
C++
109 lines
3.1 KiB
C++
/* ============================================================
|
|
* QupZilla - WebKit based browser
|
|
* Copyright (C) 2010-2013 David Rosca <nowrep@gmail.com>
|
|
*
|
|
* 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/>.
|
|
* ============================================================ */
|
|
#include "bookmarkicon.h"
|
|
#include "mainapplication.h"
|
|
#include "tabbedwebview.h"
|
|
#include "locationbar.h"
|
|
#include "bookmarksmodel.h"
|
|
#include "pluginproxy.h"
|
|
#include "speeddial.h"
|
|
|
|
#include <QStyle>
|
|
#include <QContextMenuEvent>
|
|
|
|
BookmarkIcon::BookmarkIcon(QWidget* parent)
|
|
: ClickableLabel(parent)
|
|
, m_bookmarksModel(0)
|
|
, m_speedDial(mApp->plugins()->speedDial())
|
|
{
|
|
setObjectName("locationbar-bookmarkicon");
|
|
setCursor(Qt::PointingHandCursor);
|
|
setToolTip(tr("Bookmark this Page"));
|
|
setFocusPolicy(Qt::ClickFocus);
|
|
|
|
m_bookmarksModel = mApp->bookmarksModel();
|
|
connect(m_bookmarksModel, SIGNAL(bookmarkAdded(BookmarksModel::Bookmark)), this, SLOT(bookmarkAdded(BookmarksModel::Bookmark)));
|
|
connect(m_bookmarksModel, SIGNAL(bookmarkDeleted(BookmarksModel::Bookmark)), this, SLOT(bookmarkDeleted(BookmarksModel::Bookmark)));
|
|
connect(m_speedDial, SIGNAL(pagesChanged()), this, SLOT(speedDialChanged()));
|
|
}
|
|
|
|
void BookmarkIcon::checkBookmark(const QUrl &url, bool forceCheck)
|
|
{
|
|
if (!forceCheck && m_lastUrl == url) {
|
|
return;
|
|
}
|
|
|
|
if (m_bookmarksModel->isBookmarked(url) || !m_speedDial->pageForUrl(url).url.isEmpty()) {
|
|
setBookmarkSaved();
|
|
}
|
|
else {
|
|
setBookmarkDisabled();
|
|
}
|
|
|
|
m_lastUrl = url;
|
|
}
|
|
|
|
void BookmarkIcon::bookmarkDeleted(const BookmarksModel::Bookmark &bookmark)
|
|
{
|
|
if (bookmark.url == m_lastUrl) {
|
|
checkBookmark(m_lastUrl, true);
|
|
}
|
|
}
|
|
|
|
void BookmarkIcon::bookmarkAdded(const BookmarksModel::Bookmark &bookmark)
|
|
{
|
|
if (bookmark.url == m_lastUrl) {
|
|
checkBookmark(m_lastUrl, true);
|
|
}
|
|
}
|
|
|
|
void BookmarkIcon::speedDialChanged()
|
|
{
|
|
checkBookmark(m_lastUrl, true);
|
|
}
|
|
|
|
void BookmarkIcon::setBookmarkSaved()
|
|
{
|
|
setProperty("bookmarked", QVariant(true));
|
|
style()->unpolish(this);
|
|
style()->polish(this);
|
|
setToolTip(tr("Edit this bookmark"));
|
|
}
|
|
|
|
void BookmarkIcon::setBookmarkDisabled()
|
|
{
|
|
setProperty("bookmarked", QVariant(false));
|
|
style()->unpolish(this);
|
|
style()->polish(this);
|
|
setToolTip(tr("Bookmark this Page"));
|
|
}
|
|
|
|
void BookmarkIcon::contextMenuEvent(QContextMenuEvent* ev)
|
|
{
|
|
// Prevent propagating to LocationBar
|
|
ev->accept();
|
|
}
|
|
|
|
void BookmarkIcon::mousePressEvent(QMouseEvent* ev)
|
|
{
|
|
ClickableLabel::mousePressEvent(ev);
|
|
|
|
// Prevent propagating to LocationBar
|
|
ev->accept();
|
|
}
|