KIO::DndPopupMenuPlugin Class

Header: #include <DndPopupMenuPlugin>
CMake: find_package(KF6 REQUIRED COMPONENTS KIO)
target_link_libraries(mytarget PRIVATE KIOGui)

Public Functions

DndPopupMenuPlugin(QObject *parent)
virtual QList<QAction *> setup(const KFileItemListProperties &popupMenuInfo, const QUrl &destination) = 0

Detailed Description

@class KIO::DndPopupMenuPlugin dndpopupmenuplugin.h <KIO/DndPopupMenuPlugin>

Base class for drag and drop popup menus

This can be used for adding dynamic menu items to the normal copy/move/link here menu appearing in KIO-based file managers. In the setup method you may check the properties of the dropped files, and if applicable, append your own QAction that the user may trigger in the menu.

The plugin should have Json metadata and be installed into kf6/kio_dnd/.

@author Harald Hvaal <metellius@gmail.com> @since 5.6

Member Function Documentation

DndPopupMenuPlugin::DndPopupMenuPlugin(QObject *parent)

Constructor.

[pure virtual] QList<QAction *> DndPopupMenuPlugin::setup(const KFileItemListProperties &popupMenuInfo, const QUrl &destination)

Implement the setup method in the plugin in order to create actions in the given actionCollection and add it to the menu using menu->addAction(). The popup menu will be set as parent of the actions.

@param popupMenuInfo all the information about the source URLs being dropped @param destination the URL to where the file(s) were dropped @return a QList with the QActions that will be plugged into the menu.