147 lines
4.8 KiB
Python
147 lines
4.8 KiB
Python
|
# coding: gb2312
|
|||
|
from PyQt5.QtCore import Qt, QSize
|
|||
|
from PyQt5.QtGui import QIcon
|
|||
|
from PyQt5.QtWidgets import *
|
|||
|
from BaseFrontend.based_widget import BasedWidget
|
|||
|
from LSZXPagesLibrary.consensus import PICK_UP_TYPE_TABLE, PICK_UP_TYPE_LIST
|
|||
|
from LSZXPagesLibrary.keyboard_layout import Keyboard
|
|||
|
|
|||
|
|
|||
|
class RunningPickUpPageWidgetDefine(BasedWidget):
|
|||
|
|
|||
|
def __init__(self):
|
|||
|
super().__init__()
|
|||
|
# <20><><EFBFBD><EFBFBD><EFBFBD>ؼ<EFBFBD><D8BC><EFBFBD><EFBFBD><EFBFBD>Ctrl+<2B><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ת<EFBFBD>༭<EFBFBD><E0BCAD>
|
|||
|
"""**<2A><><EFBFBD>ֶ<EFBFBD><D6B6><EFBFBD><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD>**<2A><><EFBFBD>ֶ<EFBFBD><D6B6><EFBFBD><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD>**<2A><><EFBFBD>ֶ<EFBFBD><D6B6><EFBFBD><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD>**<2A><><EFBFBD>ֶ<EFBFBD><D6B6><EFBFBD><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD>**<2A><><EFBFBD>ֶ<EFBFBD><D6B6><EFBFBD><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD>**<2A><><EFBFBD>ֶ<EFBFBD><D6B6><EFBFBD><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD>"""
|
|||
|
# <20>հؼ<D7BF>
|
|||
|
self.empty_box = self._init_empty_widget()
|
|||
|
# <20><><EFBFBD><EFBFBD><EFBFBD>ؼ<EFBFBD>
|
|||
|
self.title_label = self._init_title_widget()
|
|||
|
# <20>ؼҰ<D8BC>ť
|
|||
|
self.back_home_button = self._init_back_button_widget()
|
|||
|
# һ<><D2BB>ֱ<EFBFBD><D6B1>
|
|||
|
self.line_widget = self._init_line_widget()
|
|||
|
# <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
self.keyboard = Keyboard()
|
|||
|
self.keyboard_layout = self.keyboard.get_layout()
|
|||
|
# ȫѡ<C8AB><D1A1>ť
|
|||
|
self.select_button = self._init_select_button_widget()
|
|||
|
# ȡ<><C8A1>ȫѡ<C8AB><D1A1>ť
|
|||
|
self.cancel_select_button = self._init_cancel_select_button_widget()
|
|||
|
# <20><>һ<EFBFBD><D2BB><EFBFBD><EFBFBD>ť
|
|||
|
self.next_page_button = self._init_next_page_button_widget()
|
|||
|
# <20><>ʾ
|
|||
|
self.tips_label = self._init_tips_label()
|
|||
|
# logoͼ<6F><CDBC>
|
|||
|
self.logo_label = self._init_logo_label()
|
|||
|
|
|||
|
# <20><>ʼ<EFBFBD><CABC><EFBFBD>հؼ<D7BF>
|
|||
|
@staticmethod
|
|||
|
def _init_empty_widget():
|
|||
|
empty_widget = QFrame()
|
|||
|
empty_widget.setFrameShape(QFrame.Box)
|
|||
|
empty_widget.setLineWidth(0)
|
|||
|
return empty_widget
|
|||
|
|
|||
|
@staticmethod
|
|||
|
def _init_title_widget():
|
|||
|
title_label = QLabel("<ѵ<><D1B5><EFBFBD><EFBFBD><EFBFBD>ͱ<EFBFBD><CDB1><EFBFBD>>")
|
|||
|
title_label.setAlignment(Qt.AlignCenter)
|
|||
|
title_label.setStyleSheet(
|
|||
|
"font: 30px \"Microsoft YaHei UI\";"
|
|||
|
"letter-spacing: 4px"
|
|||
|
)
|
|||
|
return title_label
|
|||
|
|
|||
|
@staticmethod
|
|||
|
def _init_back_button_widget():
|
|||
|
back_home_button = QPushButton("<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ҳ")
|
|||
|
icon = QIcon("assets/home.png")
|
|||
|
back_home_button.setIconSize(QSize(32, 32))
|
|||
|
back_home_button.setIcon(icon)
|
|||
|
back_home_button.setStyleSheet(
|
|||
|
"font: 24px \"Microsoft YaHei UI\";"
|
|||
|
"border:none;"
|
|||
|
"color:#222222;"
|
|||
|
"letter-spacing: 10px;"
|
|||
|
"border-radius:4px;"
|
|||
|
"border:1px solid #222222"
|
|||
|
";height: 60%;"
|
|||
|
)
|
|||
|
return back_home_button
|
|||
|
|
|||
|
@staticmethod
|
|||
|
def _init_line_widget():
|
|||
|
line = QFrame()
|
|||
|
line.setFixedHeight(1) # <20><><EFBFBD>ø߶<C3B8>Ϊ 2 <20><><EFBFBD><EFBFBD>
|
|||
|
line.setStyleSheet("border:1px solid #000000")
|
|||
|
line.setFrameShape(QFrame.HLine) # <20><><EFBFBD><EFBFBD>Ϊˮƽ<CBAE><C6BD>
|
|||
|
return line
|
|||
|
|
|||
|
@staticmethod
|
|||
|
def _init_next_page_button_widget():
|
|||
|
next_page_button = QPushButton("<EFBFBD><EFBFBD>һ<EFBFBD><EFBFBD>")
|
|||
|
next_page_button.setStyleSheet(
|
|||
|
"font: 600 28px \"Microsoft YaHei UI\";"
|
|||
|
"border: none;"
|
|||
|
"color:#ffffff;"
|
|||
|
"letter-spacing: 10px;"
|
|||
|
"border-radius: 4px;"
|
|||
|
"height: 80%;"
|
|||
|
"background-color: #e6a23c;"
|
|||
|
)
|
|||
|
return next_page_button
|
|||
|
|
|||
|
@staticmethod
|
|||
|
def _init_select_button_widget():
|
|||
|
select_button = QPushButton("ȫѡ")
|
|||
|
select_button.setStyleSheet(
|
|||
|
"font: 28px \"Microsoft YaHei UI\";"
|
|||
|
"border: 1px solid #222222;"
|
|||
|
"color: #222222;"
|
|||
|
"letter-spacing: 4px;"
|
|||
|
"border-radius: 4px;"
|
|||
|
"height: 90%;"
|
|||
|
"background-color: #f4f4f5;"
|
|||
|
)
|
|||
|
return select_button
|
|||
|
|
|||
|
@staticmethod
|
|||
|
def _init_cancel_select_button_widget():
|
|||
|
cancel_select_button = QPushButton("ȡ<EFBFBD><EFBFBD>ȫѡ")
|
|||
|
cancel_select_button.setStyleSheet(
|
|||
|
"font: 28px \"Microsoft YaHei UI\";"
|
|||
|
"border: 1px solid #222222;"
|
|||
|
"color: #222222;"
|
|||
|
"letter-spacing: 4px;"
|
|||
|
"border-radius: 4px;"
|
|||
|
"height: 90%;"
|
|||
|
"background-color: #f4f4f5;"
|
|||
|
)
|
|||
|
return cancel_select_button
|
|||
|
|
|||
|
@staticmethod
|
|||
|
def _init_tips_label():
|
|||
|
tips_text_label = QLabel("ע<EFBFBD>⣺<EFBFBD><EFBFBD>ɫ<EFBFBD>߿<EFBFBD><EFBFBD><EFBFBD>ʾδ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ա<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɫ<EFBFBD>߿<EFBFBD><EFBFBD><EFBFBD>ʾ<EFBFBD>ѿ<EFBFBD><EFBFBD><EFBFBD>Ա<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɫ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʾ<EFBFBD><EFBFBD>ǰ<EFBFBD>μӿ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ա<EFBFBD><EFBFBD>")
|
|||
|
tips_text_label.setWordWrap(True)
|
|||
|
tips_text_label.setStyleSheet(
|
|||
|
"font: 20px \"Microsoft YaHei UI\";"
|
|||
|
"letter-spacing: 4px;"
|
|||
|
"padding:0 0 0 10"
|
|||
|
)
|
|||
|
return tips_text_label
|
|||
|
|
|||
|
@staticmethod
|
|||
|
def _init_logo_label():
|
|||
|
logo_img = QLabel()
|
|||
|
logo_img.setStyleSheet(
|
|||
|
"border-image: url(assets/logo.png);"
|
|||
|
"background-size: contain;"
|
|||
|
"background-repeat: no-repeat;"
|
|||
|
"background-position: center;"
|
|||
|
)
|
|||
|
logo_img.setAlignment(Qt.AlignCenter)
|
|||
|
logo_img.setScaledContents(True)
|
|||
|
logo_img.setContentsMargins(12, 6, 12, 6)
|
|||
|
return logo_img
|