System tray icon without widgets

I am wondering if there is a way to implement the taskbar icon + menu functionality without a widget module?

+7
source share
1 answer

Qt 5.8 introduces the QML type SystemTrayIcon in the experimental module of the Qt Labs platform, as part of the Qt Quick Controls 2 offer. It uses the built-in implementation directly from the abstraction layer of the Qt platform, where available, and Qt Widgets as a reserve on other platforms.

+10
source

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


All Articles