PyQT Qtabwidget隐藏并关闭某些选项卡

时间:2015-06-15 08:37:12

标签: python tabs pyqt

是否可以在Qtabwidget中隐藏和关闭某个标签?我有5个选项卡,其中两个是绘图并在使用我的软件时生成。首先,我想隐藏开头的两个图,然后我希望在生成之后使它们可以关闭。这可能吗?使用self.setTabsClosable(True)所有标签都可以关闭。

由于

import sys
from PyQt4 import QtGui

class QCustomTabWidget (QtGui.QTabWidget):
    def __init__ (self, parent = None):
        super(QCustomTabWidget, self).__init__(parent)
        self.setTabsClosable(True)
        self.tabCloseRequested.connect(self.closeTab)
        for i in range(1, 10):
            self.addTab(QtGui.QWidget(), 'Tab %d' % i)

    def closeTab (self, currentIndex):
        currentQWidget = self.widget(currentIndex)
        currentQWidget.deleteLater()
        self.removeTab(currentIndex)

myQApplication = QtGui.QApplication([])
myQCustomTabWidget = QCustomTabWidget()
myQCustomTabWidget.show()
sys.exit(myQApplication.exec_())

1 个答案:

答案 0 :(得分:3)

您可以删除不应关闭的标签的关闭按钮。这是通过setTabButton的{​​{1}}函数完成的,如下所示:

QTabBar

在这里,我们将第一个标签的按钮设置为QtGui.QTabWidget.tabBar().setTabButton(0, QtGui.QTabBar.RightSide,None)

使用相同的功能,您还可以在选项卡上创建自己的关闭按钮(并删除None