Windows Shell context menu recreated with qt

Is there any way to request shell context menu entries (name and command) from qt? Only if the application runs on Windows, of course.

+3
source share
1 answer

This is very similar to this question , basically SHParseDisplayName + SHBindToParent to get IShellFolder and then call GetUIObjectOf to get IContextMenu . This is a “native” way of doing this, not sure if qt has any wrappers you can use.

+2
source

Source: https://habr.com/ru/post/1766659/


All Articles