python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to set text on status bar and enabled close button in QDockWidget in Qt?
I have a QDockWidget and QToolBar in it. I tried to set StatusBar for QdockWidget but it could not be set.
Every QDockWidget has default close button (top most right corner) but my DockWidget does not...
tushar
Votes: 0
Answers: 1
Remove and add widget from QStatusBar
I have an application with a status bar to which I would like to add/remove a permanent widget (because I need it on the right).
My idea is simple: I have a QLabel widget initially hidden and it will ...
drn_svq
Votes: 0
Answers: 0
PyQt5 - repeatedly update status-bar from a list of strings without blocking the gui
I can use QStatusBar to display a message by feeding it a single string, e.g.:
self.statusBar().showMessage("My message here, also show it for 1 sec", 1000)
In my event-loop, the above mess...
ivan199415
Votes: 0
Answers: 1