forked from zhimingshenjun/DD_Monitor
-
Notifications
You must be signed in to change notification settings - Fork 2
/
LayoutPanel.py
66 lines (53 loc) · 1.98 KB
/
LayoutPanel.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
"""
选择布局方式的页面
"""
from PyQt5.QtWidgets import QLabel, QWidget, QGridLayout
from PyQt5.QtGui import QFont
from PyQt5.QtCore import Qt, pyqtSignal
from LayoutConfig import layoutList
class Label(QLabel):
"""序号标签。用于布局的编号"""
def __init__(self, text):
super(Label, self).__init__()
self.setText(text)
self.setFont(QFont('微软雅黑', 13, QFont.Bold))
self.setAlignment(Qt.AlignCenter)
self.setStyleSheet('background-color:#4682B4')
class LayoutWidget(QLabel):
"""布局表示
展示一种布局
"""
clicked = pyqtSignal(int)
def __init__(self, layout, number):
super(LayoutWidget, self).__init__()
self.number = number # 布局编号
mainLayout = QGridLayout(self)
for index, rect in enumerate(layout):
y, x, h, w = rect
mainLayout.addWidget(Label(str(index + 1)), y, x, h, w)
def mousePressEvent(self, QMouseEvent):
self.clicked.emit(self.number)
def enterEvent(self, QEvent):
self.setStyleSheet('background-color:#AFEEEE')
def leaveEvent(self, QEvent):
self.setStyleSheet('background-color:#00000000')
class LayoutSettingPanel(QWidget):
"""布局选择窗口"""
layoutConfig = pyqtSignal(list)
def __init__(self):
super(LayoutSettingPanel, self).__init__()
self.resize(1280, 720)
self.setWindowTitle('选择布局方式')
# 排列各种布局方式
mainLayout = QGridLayout(self)
mainLayout.setSpacing(15)
mainLayout.setContentsMargins(15, 15, 15, 15)
layoutWidgetList = []
for index, layout in enumerate(layoutList):
widget = LayoutWidget(layout, index)
widget.clicked.connect(self.sendLayout)
mainLayout.addWidget(widget, index // 4, index % 4)
layoutWidgetList.append(widget)
def sendLayout(self, number):
self.layoutConfig.emit(layoutList[number])
self.hide()