How to change the style of Qt QStatusBar

106 Views Asked by At

I want the text shown by the QStatusBar.showMessage method starts 36 pixels off the left side of the bar. I have tried these 3 approaches from inside my MainWindow.cpp code:

statusBar()->setStyleSheet("QStatusBar { padding-left: 36px; }");
statusBar()->setContentsMargins(36, 0, 0, 0);
statusBar()->layout()->setContentsMargins(36, 0, 0, 0);

None of them do the job. Moreover, the showMessage method is not virtual, so I cannot override it. On the other hand, I want to alter the style without compromising the use of the original showMessage method (as it is used elsewhere in the application), so new methods are not welcome.

0

There are 0 best solutions below