File indexing completed on 2024-04-28 17:06:32

0001 /*
0002     SPDX-FileCopyrightText: 2004 Jonas Bähr <jonas.baehr@web.de>
0003     SPDX-FileCopyrightText: 2004-2022 Krusader Krew <https://krusader.org>
0004 
0005     SPDX-License-Identifier: GPL-2.0-or-later
0006 */
0007 
0008 #ifndef USERACTIONPOPUPMENU_H
0009 #define USERACTIONPOPUPMENU_H
0010 
0011 #include <KWidgetsAddons/KActionMenu>
0012 
0013 class QUrl;
0014 
0015 class UserActionPopupMenu : public KActionMenu
0016 {
0017 public:
0018     explicit UserActionPopupMenu(const QUrl &currentURL, QWidget *parent = nullptr);
0019 };
0020 
0021 #endif // USERACTIONPOPUPMENU_H