File: bookmarkowner.cpp

package info (click to toggle)
khelpcenter 4%3A25.04.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,176 kB
  • sloc: cpp: 6,271; xml: 394; python: 51; perl: 25; makefile: 5; sh: 3
file content (45 lines) | stat: -rw-r--r-- 903 bytes parent folder | download
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"