1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
/*
SPDX-FileCopyrightText: 2016 Pino Toscano <pino@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "bookmarkowner.h"
#include "view.h"
using namespace KHC;
BookmarkOwner::BookmarkOwner(View *view, QObject *parent)
: QObject(parent)
, KBookmarkOwner()
, mView(view)
{
}
BookmarkOwner::~BookmarkOwner()
{
}
QString BookmarkOwner::currentTitle() const
{
return currentUrl().isValid() ? mView->title() : QString();
}
QUrl BookmarkOwner::currentUrl() const
{
const QUrl url = mView->url();
// khelpcenter: URLs are internal, hence to not bookmark
return url.scheme() == QLatin1String("khelpcenter") ? QUrl() : url;
}
void BookmarkOwner::openBookmark(const KBookmark &bm, Qt::MouseButtons /*mb*/, Qt::KeyboardModifiers /*km*/)
{
if (!bm.url().isValid()) {
return;
}
Q_EMIT openUrl(bm.url());
}
#include "moc_bookmarkowner.cpp"
|