Standard colors in QtCreator (KDE)
-
wrote on 2 Aug 2016, 13:31 last edited by
I'm not sure we are discussing the same thing haha. I'd like for my Qt Application to fetch the systempalette of the OS, and apply that to my application.
-
wrote on 2 Aug 2016, 13:42 last edited by Vicky Sharma 8 Feb 2016, 13:42
@Rouleaux
I think there are some misunderstanding, it will be better if you post your code here so would be able to get that point on which this thread start and try to resolve too soon. -
I'm not sure we are discussing the same thing haha. I'd like for my Qt Application to fetch the systempalette of the OS, and apply that to my application.
wrote on 2 Aug 2016, 13:55 last edited by@Rouleaux Oh, I think I misunderstood your intentions completely. So your actually want all your controls to look natively?
-
wrote on 2 Aug 2016, 13:56 last edited by
@Vicky-Sharma Yes, sorry, that might clear things up.
import QtQuick 2.7 import QtQuick.Window 2.2 import QtQuick.Controls 2.0 Window { visible: true width: 640 height: 480 title: qsTr("Hello World") Button { id: button1 x: 8 y: 8 text: qsTr("Nicotine Base") } }
This is my QML. I'd like to know wether there is an option to provide the systemtheme (mine for example is BreezeDark), but then applicationwide. Now I have to apply
SystemPalette
to every single element, but I suppose there must be an easier way right? -
wrote on 2 Aug 2016, 14:00 last edited by
Ok, so for natively looking widgets you'll need
QT += widgets
in your *.pro fileQApplication
in main.cpp (notQGuiApplication
)- QtQuick.Controls 1 (not 2)
E.g.:
main.cpp
#include <QApplication> #include <QQmlApplicationEngine> int main(int argc, char *argv[]) { QApplication app(argc, argv); QQmlApplicationEngine engine(QUrl(QLatin1String("qrc:/main.qml"))); return app.exec(); }
main.qml
import QtQuick 2.7 import QtQuick.Controls 1.4 ApplicationWindow { visible: true width: 640 height: 480 title: qsTr("Hello World") Button { text: "Exit" anchors.centerIn: parent onClicked: Qt.quit() } }
-
@Rouleaux Oh, I think I misunderstood your intentions completely. So your actually want all your controls to look natively?
wrote on 2 Aug 2016, 14:06 last edited by Rouleaux 8 Feb 2016, 14:07@Wieland Shoot, I've just started using QtQuick.Controls 2.0..
-
wrote on 2 Aug 2016, 14:07 last edited by
@Rouleaux
unfortunately i don't have 5.7 but i checked on 5.6 and rewrite few thing, you may check too as well as "Wieland" is also post write one check and revert if any error.
import QtQuick 2.5
import QtQuick.Window 2.2
import QtQuick.Controls 1.4Window {
visible: true
width: 640
height: 480
title: qsTr("Hello World")Button { id: button1 x: 8 y: 8 text: qsTr("Nicotine Base") }
}
-
wrote on 2 Aug 2016, 14:09 last edited by
@Rouleaux I thought you were only complaining about the white button text, because, yes, it actually shouldn't use the system palette at all, unless you add support for native widgets as described above. sry! =)
-
wrote on 2 Aug 2016, 14:12 last edited by
@Rouleaux said:
Shoot, I've just started using QtQuick.Controls 2.0..
No native widgets with Controls 2. You need to supply a custom style then (see your other thread).
-
wrote on 2 Aug 2016, 14:25 last edited by
@Wieland I understand now. Thank you very much for your help!
22/22