PyQt5 状态栏分隔符

问题描述 投票:0回答:1

如何将垂直

separators
添加到我的
statusbar

(Red arrows)
在此屏幕截图中。

如果我成功了,我如何显示所选的

Line
Column

(Blue arrows)
在同一张截图中。

适用于 Windows。

python python-3.x pyqt pyqt5 qstatusbar
1个回答
11
投票

void QStatusBar::addPermanentWidget(QWidget *widget, intstretch = 0)

将给定的小部件永久添加到此状态栏,如果它还不是此 QStatusBar 对象的子级,则重新调整该小部件的父级。拉伸参数用于在状态栏增大和缩小时计算给定小部件的合适尺寸。默认拉伸因子为 0,即为小部件提供最小的空间。

import sys
from PyQt5.QtWidgets import (QApplication, QMainWindow, QStatusBar, QLabel, 
                             QPushButton, QFrame)

class VLine(QFrame):
    # a simple VLine, like the one you get from designer
    def __init__(self):
        super(VLine, self).__init__()
        self.setFrameShape(self.VLine|self.Sunken)

class MainWindow(QMainWindow):
    def __init__(self):
        super().__init__()
        
        self.statusBar().showMessage("bla-bla bla")
        self.lbl1 = QLabel("Label: ")
        self.lbl1.setStyleSheet('border: 0; color:  blue;')
        self.lbl2 = QLabel("Data : ")
        self.lbl2.setStyleSheet('border: 0; color:  red;')
        ed = QPushButton('StatusBar text')

        self.statusBar().reformat()
        self.statusBar().setStyleSheet('border: 0; background-color: #FFF8DC;')
        self.statusBar().setStyleSheet("QStatusBar::item {border: none;}") 
        
        self.statusBar().addPermanentWidget(VLine())    # <---
        self.statusBar().addPermanentWidget(self.lbl1)
        self.statusBar().addPermanentWidget(VLine())    # <---
        self.statusBar().addPermanentWidget(self.lbl2)
        self.statusBar().addPermanentWidget(VLine())    # <---
        self.statusBar().addPermanentWidget(ed)
        self.statusBar().addPermanentWidget(VLine())    # <---
        
        self.lbl1.setText("Label: Hello")
        self.lbl2.setText("Data : 15-09-2019")

        ed.clicked.connect(lambda: self.statusBar().showMessage("Hello "))
        
        
if __name__ == '__main__':
    app = QApplication(sys.argv)
    window = MainWindow()
    window.show()
    sys.exit(app.exec_())

© www.soinside.com 2019 - 2024. All rights reserved.