Open In App
Related Articles

PyQt5 – Visibility status of Status Bar

Improve Article
Improve
Save Article
Save
Like Article
Like

Visibility status of status bar can be referred as if it is visible then it will return True, else False. We can check it by using isVisible method.

Syntax : class_object.status_bar_object.isVisible() Argument : It takes no parameter. Return : It return bool.

Note #1: If we don’t create an object of status bar this property will be false. Note #2: If this method is called inside the constructor, it will always return False, as before showing anything every visible status is False. Code : 

Python3




from PyQt5.QtCore import *
from PyQt5.QtGui import *
from PyQt5.QtWidgets import *
import sys
 
 
class Window(QMainWindow):
    def __init__(self):
        super().__init__()
 
        # set the title
        self.setWindowTitle("Python")
 
        # setting  the geometry of window
        self.setGeometry(60, 60, 600, 400)
 
        # setting status bar message
        self.statusBar().showMessage("This is status bar")
 
        # setting  border
        self.statusBar().setStyleSheet("border :3px solid black;")
 
        # setting tool tip for status bar
        self.statusBar().setToolTip("Hello ! from status bar")
 
        # creating a label widget
        self.label_1 = QLabel("status bar", self)
 
        # moving position
        self.label_1.move(100, 100)
 
        # setting up the border
        self.label_1.setStyleSheet("border :1px solid blue;")
 
        # resizing label
        self.label_1.adjustSize()
 
        # show all the widgets
        self.show()
 
 
# create pyqt5 app
App = QApplication(sys.argv)
 
# create the instance of our Window
window = Window()
 
# getting visibility status
t = window.statusBar().isVisible()
 
# printing value of t
print(t)
 
# start the app
sys.exit(App.exec())


Output :

True


Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 06 Jan, 2023
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials