Qt global style sheet loading?

匆匆过客 提交于 2019-12-21 09:32:22

问题


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?


回答1:


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.




回答2:


The above attempt is correct syntax but there are reasons it may not work.

Possible problems:

  1. Source file(.qss) is not being retrieved

  2. Incorrect top widget being chosen to apply cascade.

  3. 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.



来源:https://stackoverflow.com/questions/11681943/qt-global-style-sheet-loading

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!