File: bookmarkowner.h

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 (38 lines) | stat: -rw-r--r-- 705 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
/*
    SPDX-FileCopyrightText: 2016 Pino Toscano <pino@kde.org>

    SPDX-License-Identifier: GPL-2.0-or-later
*/

#ifndef KHC_BOOKMARKOWNER_H
#define KHC_BOOKMARKOWNER_H

#include <KBookmarkOwner>
#include <QObject>

namespace KHC
{

class View;

class BookmarkOwner : public QObject, public KBookmarkOwner
{
    Q_OBJECT
public:
    explicit BookmarkOwner(View *view, QObject *parent = nullptr);
    ~BookmarkOwner() override;

    QString currentTitle() const override;
    QUrl currentUrl() const override;
    void openBookmark(const KBookmark &bm, Qt::MouseButtons mb, Qt::KeyboardModifiers km) override;

Q_SIGNALS:
    void openUrl(const QUrl &url);

private:
    View *const mView;
};

}

#endif