Application wide "system theme"?
Unsolved
QML and Qt Quick
-
@Rouleaux Qt Quick Controls 2 introduced a new styling API. Qt 5.7 comes with 3 predefined styles (Default, Material, Universal).
-
import QtQuick import QtQuick.Controls import QtQuick.Controls.Universal // Imports Windows 10 theme. ApplicationWindow { visible: true Universal.theme: Universal.System // Uses Windows 10 theme.
This only really works on Windows, though. Without this, I've found that it adheres correctly to the system theme of KDE Plasma.
Perhaps mark as solved?