1/*
2 This file is part of the KDE project
3 SPDX-FileCopyrightText: 2025 Albert Astals Cid <aacid@kde.org>
4
5 SPDX-License-Identifier: LGPL-2.0-or-later
6*/
7
8#ifndef KBOOKMARKACTIONPRIVATE_H
9#define KBOOKMARKACTIONPRIVATE_H
10
11class KBookmarkActionPrivate
12{
13public:
14 KBookmarkActionPrivate(KBookmarkAction *a, KBookmarkOwner *const o) : q(a), owner(o) {}
15
16 static KBookmarkActionPrivate *get(KBookmarkAction *a) { return a->d; }
17
18
19 Qt::MouseButtons buttons = Qt::NoButton;
20 KBookmarkAction *const q;
21 KBookmarkOwner *const owner;
22};
23
24#endif
25

source code of kbookmarks/src/kbookmarkaction_p.h