How can I load a style sheet (.qss style resource) globally with Qt?
I am trying to make things a bit more efficient than:
middleIntText -> setStyleSheet("QLineEdit { border: 1px solid gray;
border-radius: 5px;padding: 0 8px;
selection-background-color:darkgray;
height:40px;font-size:15px;}");
I thought the following would work at loading QLineEdit the one time for all QLineEdit widgets:
qss file:
QLineEdit { border: 1px solid gray;
border-radius: 5px;
padding: 0 8px;
selection-background-color:darkgray;
height:40px;
font-size:15px;}
cpp file:
QApplication a(argc, argv);
QFile stylesheet("formStyle.qss");
stylesheet.open(QFile::ReadOnly);
QString setSheet = QLatin1String(stylesheet.readAll());
a.setStyleSheet(setSheet);
Perhaps this is right and I am doing something else wrong?
You called QStyle * QApplication::setStyle ( const QString & style ) which requests a QStyle object for style from the QStyleFactory.
Instead, you should call void QApplication::setStyleSheet ( const QString & sheet ) which sets the application style sheet.
The above attempt is correct syntax but there are reasons it may not work.
Possible problems:
Source file(.qss) is not being retrieved
Incorrect top widget being chosen to apply cascade.
Syntax of the .qss (CSS) code.
Reason I had to ask my question above is I had two of these three issues. I first had to point to the files correct location and second I had to apply directly to QWidget.
QFile stylesheet("G:/Applications/Projects/ProspectTracker/formStyle.qss");
stylesheet.open(QFile::ReadOnly);
QString setSheet = QLatin1String(stylesheet.readAll());
QWidget::setStyleSheet(setSheet);
@Bill Thank for your assistance. He pointed out that I had posted .setStyle
and not .setStyleSheet
. The sample code above no longer reflects this but if I didn't change that nothing I did would have worked.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With