2018-12-27 16:01:51 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
Created on 2018年12月27日
|
|
|
|
@author: Irony
|
2021-07-13 14:52:26 +08:00
|
|
|
@site: https://pyqt.site , https://github.com/PyQt5
|
2018-12-27 16:01:51 +08:00
|
|
|
@email: 892768447@qq.com
|
|
|
|
@file: TestTabWidget
|
|
|
|
@description:
|
|
|
|
"""
|
|
|
|
from PyQt5.QtWidgets import QTabWidget, QLabel, QWidget, QGridLayout
|
|
|
|
|
|
|
|
from Lib.TabBarStyle import TabBarStyle
|
|
|
|
|
|
|
|
|
|
|
|
class TabWidget(QTabWidget):
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(TabWidget, self).__init__(*args, **kwargs)
|
|
|
|
for i in range(10):
|
|
|
|
self.addTab(QLabel('Tab' + str(i)), str(i))
|
|
|
|
|
|
|
|
|
|
|
|
class Window(QWidget):
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(Window, self).__init__(*args, **kwargs)
|
|
|
|
layout = QGridLayout(self)
|
|
|
|
|
|
|
|
layout.addWidget(TabWidget(self, tabPosition=TabWidget.North), 0, 1)
|
|
|
|
layout.addWidget(TabWidget(self, tabPosition=TabWidget.South), 2, 1)
|
|
|
|
layout.addWidget(TabWidget(self, tabPosition=TabWidget.West), 1, 0)
|
|
|
|
layout.addWidget(TabWidget(self, tabPosition=TabWidget.East), 1, 2)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
import sys
|
|
|
|
from PyQt5.QtWidgets import QApplication
|
2021-07-13 14:52:26 +08:00
|
|
|
|
2018-12-27 16:01:51 +08:00
|
|
|
app = QApplication(sys.argv)
|
|
|
|
app.setStyle(TabBarStyle())
|
|
|
|
w = Window()
|
|
|
|
w.show()
|
|
|
|
sys.exit(app.exec_())
|