Questions tagged [qstatusbar]

The QStatusBar class provides a horizontal bar suitable for presenting status information.

The QStatusBar class provides a horizontal bar suitable for presenting status information. Each status indicator falls into one of three categories:

  • Temporary - briefly occupies most of the status bar. Used to explain tool tip texts or menu entries, for example.
  • Normal - occupies part of the status bar and may be hidden by temporary messages. Used to display the page and line number in a word processor, for example.
  • Permanent - is never hidden. Used for important mode indications, for example, some applications put a Caps Lock indicator in the status bar.

    QStatusBar can display all three types of indicators.

Typically, a request for the status bar functionality occurs in relation to a QMainWindow object. The related functions are

  • showMessage()
  • clearMessage()
  • currentMessage()
35 questions
0
votes
1 answer

How to show status of file loading in QT

I am loading a csv file using QFileDialog and displaying it on a qtableview . This loading process takes a lot of time. How do I indicate to the user that he has to wait till the file is getting loaded using qstatusbar or qprogressbar?
annie
  • 143
  • 1
  • 1
  • 11
0
votes
0 answers

Bootstrap status bar design

I'm currently working on a form that has multiple sections. Each section has multiple questions. The number of section ranges from 5-10 and the number of questions in each sections varies as well. All this determines based on the answers from first…
0
votes
1 answer

PyQt How can I prevent hovering over a QMenu from clearing the Qstatusbar?

I am using the QStatusBar to print information for how many items are in a list. This works well, however when I hover over any of the QMenu icons it clears all data from the QStatus, leaving it blank. I'm working in windows, and I believe that it's…
Adam Sirrelle
  • 357
  • 8
  • 18
0
votes
0 answers

Modify QStatusBar in QMainWindow without deleting it

I'm confronted to a big problem actually, I had a QTabWidget that contains multiple QWidget-herited object named tab and I would like to change the QStatusBar in function of the QTabWidget index but the QMainwindow delete the QStatusBar (which is in…
CheshireChild
  • 148
  • 1
  • 8
0
votes
1 answer

In QT gui, how do you change the color of specified text in a QStatusBar?

I have a QStatusBar. I have two displays in it... Longitude and Latitude. There is a specified acceptable range for each indicator where I want the text color to be green, and then red for when it falls out of range. Not sure how to go about this…
jdl
  • 6,151
  • 19
  • 83
  • 132
1 2
3