Jetbrains Toolbox like window
-
I want to make a simple application, and I feel like that type of window would fit the best. So basically the whole thing is a tray application, when you click it, it opens a 'fake window', when you click out of that window it closes. I'm calling it a fake window because it doesn't actually appear in the task manager as a 'real' one.
How would I achieve this, cross-platform, if possible?
-
I want to make a simple application, and I feel like that type of window would fit the best. So basically the whole thing is a tray application, when you click it, it opens a 'fake window', when you click out of that window it closes. I'm calling it a fake window because it doesn't actually appear in the task manager as a 'real' one.
How would I achieve this, cross-platform, if possible?
hi @diniamo
QML: has
https://doc.qt.io/qt-5/qml-qtquick-controls2-popup.html
for thisQWidgets
probably some kind of QDialog
https://doc.qt.io/qt-5/dialogs.html
or the more custom variant I just found :D
https://stackoverflow.com/questions/66908844/popup-widget-in-qt