<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
在大學,有很多喜歡的課是需要搶的。但是,這個課的人數和座位都是有限的,今天這個教學教你如何搶到座位,有座位了還怕聽不到課嗎?趕緊學起來吧,真的很有用噢!
座位選擇框
Python 環境中需要安裝下列 python 包:
1.PySide2
2.datetime
3.json
4.argparse
選擇框內桌子數量,大小,樣式以及每個椅子位置都是可變的,例如我們可以將桌子顏色和是否圓角改變:
這主要依靠seatInf.json內的資訊,展示如下:
# { "tableNum": 6, "tablePos": [ [0.02,0.15], [0.35,0.15], [0.68,0.15], [0.02,0.65], [0.35,0.65], [0.68,0.65] ], "tableSize": [ [0.25,0.2], [0.25,0.2], [0.25,0.2], [0.25,0.2], [0.25,0.2], [0.25,0.2] ], "tableType": [ 0,1,2,0,0,0 ], "tableSS": [ "QLabel{background: rgb(245,245,245);color:rgb(92,92,92);border-radius:50px;border: 3px solid rgb(142,142,142)}", "QLabel{background: rgb(245,245,245);color:rgb(92,92,92);border: 3px solid rgb(142,142,142)}", "QLabel{background: rgb(221,217,195);color:rgb(92,92,92);border: 3px solid rgb(142,142,142)}" ], "tableId": [ "A","B","C","D","E","F" ], "chairNum": [ 6,6,6,6,6,6 ], "chairPos": [ [ [0.04,-0.08], [0.105,-0.08], [0.17,-0.08], [0.04,0.21], [0.105,0.21], [0.17,0.21] ], [ [0.04,-0.08], [0.105,-0.08], [0.17,-0.08], [0.04,0.21], [0.105,0.21], [0.17,0.21] ],[ [0.04,-0.08], [0.105,-0.08], [0.17,-0.08], [0.04,0.21], [0.105,0.21], [0.17,0.21] ],[ [0.04,-0.08], [0.105,-0.08], [0.17,-0.08], [0.04,0.21], [0.105,0.21], [0.17,0.21] ],[ [0.04,-0.08], [0.105,-0.08], [0.17,-0.08], [0.04,0.21], [0.105,0.21], [0.17,0.21] ],[ [0.04,-0.08], [0.105,-0.08], [0.17,-0.08], [0.04,0.21], [0.105,0.21], [0.17,0.21] ] ], "chairSize": [ 0.032,0.07 ], "chairSS_W": "background: rgb(242,242,242);border-radius:15px;border: 3px solid rgb(74,69,42)", "chairSS_K": "background: rgb(64,64,64);border-radius:15px;border: 3px solid rgb(74,69,42)", "chairSS_R": "background: rgb(149,55,43);border-radius:15px;border: 3px solid rgb(74,69,42)", "mapSize": [ 2,2 ] }
由於只是為了模擬過程,現申請表以及座位被佔情況分別儲存在orderList.json和occupied.json中:
# "[["A1", "A2", "A3", "A4", "A5", "A6", "B1", "B2", "B3", "B4", "B5", "B6", "C1", "C2", "C3", "C4", "C5", "C6", "D1", "D2", "D3", "D4", "D5", "D6", "E1", "E2", "E3", "E4", "E5", "E6", "F1", "F2", "F3", "F4", "F5", "F6"], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "1816000XXXX", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "temp", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""]]"
# "{"A1": false, "A2": false, "A3": false, "A4": false, "A5": false, "A6": false, "B1": false, "B2": false, "B3": false, "B4": false, "B5": false, "B6": false, "C1": false, "C2": false, "C3": false, "C4": true, "C5": false, "C6": false, "D1": false, "D2": false, "D3": false, "D4": false, "D5": false, "D6": false, "E1": false, "E2": false, "E3": false, "E4": false, "E5": false, "E6": false, "F1": false, "F2": false, "F3": false, "F4": false, "F5": false, "F6": false}"
我們使用命令列程式碼模擬刷卡過程,同時我們也設定了預約和申請暫離的命令列程式碼:
# Python slotCard_in.py -i="XXXXXXXXXXX" Python slotCard_in.py --student-id="XXXXXXXXXXX"
# Python slotCard_out.py -i="XXXXXXXXXXX" Python slotCard_out.py --student-id="XXXXXXXXXXX"
# ''' TEST CODE: -------------------------------- see Map: Python cmd_order.py -------------------------------- order seat: Python cmd_order.py -i="XXXXXXXXXXX" -n="xxx" -s="A1" -h --help show the help message and exit -i --student-id student id -n --student-name student name -s --seatPos seat id '''
# ''' TEST CODE: ---------------------------------------------- leave for temp Python cmd_leave.py -i="XXXXXXXXXXX" -t="temp" ---------------------------------------------- leave Python cmd_leave.py -i="XXXXXXXXXXX" -t="free" [or] Python cmd_leave.py -i="XXXXXXXXXXX" -h --help show the help message and exit -i --student-id student id -t --leave-type temp/free '''
# > Python cmd_order.py [seat]============================ 可預約座位: ▇ A2 A3 A4 A5 A6 B1 B2 B3 B4 B5 B6 C1 C2 C3 C4 C5 C6 D1 D2 D3 D4 D5 D6 E1 E2 E3 E4 E5 E6 F1 F2 F3 F4 F5 F6 > Python cmd_order.py -i="18160000000" -n="xxx" -s="A1" [book error]======================== 座位已被佔,請選擇其他位置申請 > Python cmd_order.py -i="18160000000" -n="xxx" -s="A100" 座位編號格式不正確 > Python cmd_order.py -i="18160000000" -n="xxx" -s="A2" [book]=========================================== 2021-05-31 18:04:35 姓名:xxx 學號:18160000000 座次:A2 預約成功! ------------------------------------------------- 注意事項: 1、預約成功後請在30分鐘內到達,否則預約資訊將失效。 2、進入自習室前請刷校園卡核驗資訊。 3、如要暫離請cmd執行如下程式碼: Python cmd_leave.py -i='XXXXXXXXXXX' -t='temp' 4、離開、取消預約請cmd執行如下程式碼: Python cmd_leave.py -i='XXXXXXXXXXX' -t='free' > Python cmd_order.py -i="18160000000" -n="xxx" -s="A3" 請勿重複預約
# > Python slotCard_in.py -i="1816000XXXX" [in error]========================== 非本校校園卡或已超時 > Python slotCard_in.py -i="18160000000" [in]================================ 預約時間:2021-05-31 18:04:35 校園卡號:18160000000 座次:A2
# > Python cmd_leave.py -i="1816000XXXX" -t="temp" [out error]========================= 可能輸入了錯誤的校園卡號 > Python cmd_leave.py -i="18160000000" -t="temp" [out]=============================== 已進行暫離申請 > Python cmd_leave.py -i="18160000000" -t="free" 已釋放位置
# > Python slotCard_out.py -i="18160000000" [out]=============================== 暫離時間:2021-05-31 18:23:09 校園卡號:18160000000 座次:A1 > Python slotCard_out.py -i="1816000XXXX" [out error]========================= 請更換卡片再次嘗試
# from PySide2.QtWidgets import QApplication, QWidget,QScrollArea from PySide2.QtWidgets import QLabel,QPushButton,QLineEdit from PySide2.QtGui import QIcon,QFont from PySide2.QtCore import Qt import sys sys.path.append("...") import json import datetime from orderDataDisplay import orderDisplay from InfOperate import occupySeat,order,timeoutDetection,alreadyOreder ###加Q群:906715085 class Window_main(QWidget): def __init__(self,Width=700,Height=840): super().__init__() self.setWindowTitle("book seat online") timeoutDetection() self.Width=Width self.Height=Height self.selectedId="" self.selectedBtn=[] self.icoPath="./gallery/icon.ico" # 字型標籤 title_qf=QFont() title_qf.setPointSize(11) title_qf.setBold(True) title_qf.setFamily("Cambria") main_qf=QFont() main_qf.setPointSize(27) main_qf.setBold(True) main_qf.setFamily("Cambria") Inf_qf=QFont() Inf_qf.setPointSize(10) Inf_qf.setBold(True) Inf_qf.setFamily("Cambria") table_qf=QFont() table_qf.setPointSize(16) table_qf.setBold(True) table_qf.setFamily("Cambria") # --- self.QF_part_title=title_qf # 框標題字型標籤 self.QF_main_title=main_qf # 主標題字型標籤 self.QF_state_explain=Inf_qf # 狀態標籤解釋文字字型標籤 self.QF_Inf_title=title_qf # 資訊標題字型標籤 self.QF_Inf_text=Inf_qf # 資訊文字字型標籤 self.QF_table_name=table_qf # 桌子編號資訊標籤 # 樣式表 self.SS_part_frame="QLabel{background: rgb(245,245,245);color:rgb(92,92,92);border-radius:8px;border: 2.5px solid rgb(122,122,122)}" self.SS_part_title="QLabel{background: rgb(245,245,245);color:rgb(92,92,92)}" self.SS_main_title="QLabel{background: rgb(245,245,245);color:rgb(92,92,92);border-radius:50px;border: 3px solid rgb(142,142,142)}" self.SS_state_frame="QLabel{background: rgb(245,245,245);border-radius:5px;border: 3px solid rgb(172,172,172)}" self.SS_W="QLabel{background: rgb(242,242,242);border-radius:9px;border: 3px solid rgb(74,69,42)}" self.SS_K="QLabel{background: rgb(64,64,64);border-radius:9px;border: 3px solid rgb(74,69,42)}" self.SS_R="QLabel{background: rgb(149,55,43);border-radius:9px;border: 3px solid rgb(74,69,42)}" self.SS_state_explain="QLabel{background: rgb(214,219,233);color:rgb(92,92,92)}" self.SS_Inf_title="QLabel{background: rgb(230,230,230);color:rgb(82,82,82);border-radius:8px}" self.SS_text_Line="QLineEdit{border-radius:3px;background: rgb(205,205,205);color:rgb(82,82,82)}" self.SS_book_btn="color:rgb(255,255,255);background: rgb(79,148,204)" # path=sys.argv[0] # path=path[0:path.rfind("/")] f=open("./config/seatInf.json","r") seatInf=json.load(f) f=open("./config/occupied.json","r") seatOccupied=json.load(f) self.seatInf=seatInf self.seatOccupied=json.loads(seatOccupied) self.setSize() self.setIcon() self.partition() self.setStateExp() self.setInfBox() self.setMap() self.setBookBtn() # ================================================================================================ # 回撥函數部分: def selectedPos(self):# 座位選擇回撥 btn=self.sender() tempSelectedId=btn.property("chairId") if not self.seatOccupied[tempSelectedId]: if len(self.selectedId)==0: self.selectedId=tempSelectedId self.selectedBtn=btn btn.setStyleSheet(self.seatInf["chairSS_R"]) self.selectedBox.setText(" 當前選擇: "+tempSelectedId) else: self.selectedBtn.setStyleSheet(self.seatInf["chairSS_W"]) def bookSeat(self): if not len(self.selectedId)==0: if alreadyOreder(self.InfBox_Id.text()): print("================================") print("請勿重複預約") print(" ") nowDate=datetime.datetime.now() nowDateStr=nowDate.strftime('%Y-%m-%d %H:%M:%S') print(nowDateStr) print("姓名:"+self.InfBox_Name.text()) print("學號:"+self.InfBox_Id.text()) print("座次:"+self.selectedId) # myapp.exit() # app = QApplication.instance() # if app is None: # app = QApplication(sys.argv) self.window_disp= orderDisplay(self.InfBox_Name.text(), self.InfBox_Id.text(), nowDateStr, self.selectedId,700,840) self.window_disp.show() self.close() occupySeat(self.selectedId) order(self.InfBox_Id.text(),nowDateStr,self.selectedId) # 框架建構函式部分: def setSize(self):# 調整框架大小 self.setGeometry(80,80,self.Width,self.Height) self.setMaximumSize(self.Width,self.Height) self.setMinimumSize(self.Width,self.Height) def setIcon(self):# 設定圖示 appIcon=QIcon(self.icoPath) self.setWindowIcon(appIcon) def setStateExp(self):# 繪製狀態解釋框 Width=self.Width Height=self.Height self.part0=QLabel(self) self.part0.setGeometry(0.66*Width,0.045*Height, 0.28*Width,0.14*Height) self.part0.setStyleSheet(self.SS_state_frame) # ---Color Bar-------------------------------------------------------------------- self.CB1=QLabel(self) self.CB1.setGeometry(0.68*Width,0.06*Height,0.05*Width,0.03*Height) self.CB1.setStyleSheet(self.SS_W) self.CB2=QLabel(self) self.CB2.setGeometry(0.68*Width,(0.06+0.04)*Height,0.05*Width,0.03*Height) self.CB2.setStyleSheet(self.SS_K) self.CB3=QLabel(self) self.CB3.setGeometry(0.68*Width,(0.06+0.08)*Height,0.05*Width,0.03*Height) self.CB3.setStyleSheet(self.SS_R) # ---Color Bar 解釋文字------------------------------------------------------------- self.plaintext1=QLabel(self) self.plaintext1.setGeometry(0.76*Width,(0.059)*Height,0.15*Width,0.032*Height) self.plaintext1.setStyleSheet(self.SS_state_explain) self.plaintext1.setText(" 可選擇") self.plaintext1.setFont(self.QF_state_explain) self.plaintext2=QLabel(self) self.plaintext2.setGeometry(0.76*Width,(0.059+0.04)*Height,0.15*Width,0.032*Height) self.plaintext2.setStyleSheet(self.SS_state_explain) self.plaintext2.setText(" 已被選") self.plaintext2.setFont(self.QF_state_explain) self.plaintext3=QLabel(self) self.plaintext3.setGeometry(0.76*Width,(0.059+0.08)*Height,0.15*Width,0.032*Height) self.plaintext3.setStyleSheet(self.SS_state_explain) self.plaintext3.setText(" 當前選擇") self.plaintext3.setFont(self.QF_state_explain) def setInfBox(self): # ---資訊標題------------------------------------------ self.InfTitle_Name=QLabel(self) self.InfTitle_Name.setGeometry(0.09*Width,0.28*Height, 0.16*Width,0.05*Height) self.InfTitle_Name.setStyleSheet(self.SS_Inf_title) self.InfTitle_Name.setText(" 姓名:") self.InfTitle_Name.setFont(self.QF_Inf_title) self.InfTitle_Id=QLabel(self) self.InfTitle_Id.setGeometry(0.09*Width,0.36*Height, 0.16*Width,0.05*Height) self.InfTitle_Id.setStyleSheet(self.SS_Inf_title) self.InfTitle_Id.setText(" 學號:") self.InfTitle_Id.setFont(self.QF_Inf_title) # ---資訊文字方塊------------------------------------------ self.InfBox_Name=QLineEdit(self) self.InfBox_Name.setText("範例:李華") self.InfBox_Name.move(0.3*Width,0.281*Height) self.InfBox_Name.resize(0.6*Width,0.048*Height) self.InfBox_Name.setFont(self.QF_Inf_text) self.InfBox_Name.setStyleSheet(self.SS_text_Line) #self.InfBox_Name.textChanged.connect(self.colorCheckFunc) self.InfBox_Id=QLineEdit(self) self.InfBox_Id.setText("範例:XXXXXXXXXXX") self.InfBox_Id.move(0.3*Width,0.361*Height) self.InfBox_Id.resize(0.6*Width,0.048*Height) self.InfBox_Id.setFont(self.QF_Inf_text) self.InfBox_Id.setStyleSheet(self.SS_text_Line) #self.InfBox_ID.textChanged.connect(self.colorCheckFunc) def partition(self):# 繪製框線分佈 # ---標題框--------------------------------------------------- self.part0.setGeometry(0.05*Width,0.045*Height, 0.52*Width,0.14*Height) self.part0.setStyleSheet(self.SS_main_title) self.part0.setAlignment(Qt.AlignCenter) self.part0.setText(" 自習室預約") self.part0.setFont(self.QF_main_title) # self.part0title=QLabel(self) # self.part0title.setGeometry(0.098*Width,0.06*Height, # 0.43*Width,0.11*Height) # self.part0title.setStyleSheet(self.SS_part_title) # self.part0title.setText(" 自習室預約") # self.part0title.setFont(self.QF_main_title) # ---資訊填寫框----------------------------------------------- self.part1=QLabel(self) self.part1.setGeometry(0.04*Width,0.23*Height, 0.92*Width,0.24*Height) self.part1.setStyleSheet(self.SS_part_frame) self.part1title=QLabel(self) self.part1title.setGeometry(0.08*Width,0.21*Height, 0.15*Width,0.04*Height) self.part1title.setStyleSheet(self.SS_part_title) self.part1title.setText(" 資訊填寫") self.part1title.setFont(self.QF_part_title) # ---座位選擇框------------------------------------------------ self.part2=QLabel(self) self.part2.setGeometry(0.04*Width,0.53*Height, 0.92*Width,0.355*Height) self.part2.setStyleSheet(self.SS_part_frame) self.part1title.setGeometry(0.08*Width,0.51*Height, self.part1title.setText(" 座位選擇") # ================================================================================================ # 可滑動區域部分: def setMap(self): self.map=QScrollArea(self) self.map.setGeometry(0.05*Width,0.545*Height, 0.9*Width,0.325*Height) self.drawMap() self.map.setWidget(self.mapContent) def drawMap(self):# 繪製座位地圖 self.mapContent=QWidget(self) boxWidth=0.9*self.Width boxHeight=0.325*self.Height seatInf=self.seatInf seatOccupied=self.seatOccupied mapWidth=boxWidth*seatInf["mapSize"][0] mapHeight=boxHeight*seatInf["mapSize"][1] tableSize=seatInf["tableSize"] tablePos=seatInf["tablePos"] chairSize=seatInf["chairSize"] chairPos=seatInf["chairPos"] self.mapContent.setGeometry(0,0,mapWidth,mapHeight) self.mapContent.setMaximumSize(mapWidth,mapHeight) self.mapContent.setMinimumSize(mapWidth,mapHeight) for i in range(0,seatInf["tableNum"]): table=QLabel(self.mapContent) table.setGeometry(tablePos[i][0]*mapWidth,tablePos[i][1]*mapHeight, tableSize[i][0]*mapWidth,tableSize[i][1]*mapHeight) table.setText(seatInf["tableId"][i]) table.setFont(self.QF_table_name) table.setAlignment(Qt.AlignCenter) table.setStyleSheet(seatInf["tableSS"][seatInf["tableType"][i]]) for j in range(0,seatInf["chairNum"][i]): chairBnt=QPushButton(self.mapContent) chairBnt.setGeometry((tablePos[i][0]+chairPos[i][j][0])*mapWidth, (tablePos[i][1]+chairPos[i][j][1])*mapHeight, chairSize[0]*mapWidth, chairSize[1]*mapHeight) chairId=seatInf["tableId"][i]+str(j+1) if seatOccupied[chairId]: chairBnt.setStyleSheet(seatInf["chairSS_K"]) else: chairBnt.setStyleSheet(seatInf["chairSS_W"]) chairBnt.setProperty("chairId",chairId) chairBnt.clicked.connect(self.selectedPos) def setBookBtn(self): self.selectedBox=QLabel(self) self.selectedBox.setGeometry(0.54*Width,(0.92)*Height,0.22*Width,0.05*Height) self.selectedBox.setStyleSheet(self.SS_state_explain) self.selectedBox.setText(" 當前選擇:") self.selectedBox.setFont(self.QF_Inf_title) self.bookBtn=QPushButton(self) self.bookBtn.setGeometry(0.79*Width,(0.92)*Height,0.16*Width,0.05*Height) self.bookBtn.setStyleSheet(self.SS_book_btn) self.bookBtn.setText("預約") self.bookBtn.setFont(self.QF_Inf_title) self.bookBtn.clicked.connect(self.bookSeat) # =========================================================================================== # 函數呼叫: myapp = QApplication(sys.argv) window_main = Window_main(700,840) window_main.show() sys.exit(myapp.exec_())
# from PySide2.QtWidgets import QApplication, QWidget from PySide2.QtWidgets import QLabel,QPushButton from PySide2.QtGui import QIcon,QFont,QPixmap from PySide2.QtCore import Qt import sys sys.path.append("...") import datetime from InfOperate import freeSeat,setString class Window_disp(QWidget): def __init__(self,studentName,studentId,bookTime,seatId,Width=700,Height=840): super().__init__() self.setWindowTitle("order successfully") self.studentName=studentName self.studentId=studentId self.bookTime=bookTime self.seatId=seatId self.Width=Width self.Height=Height # path=sys.argv[0] # path=path[0:path.rfind("/")] self.orderSuccTitlePath="./gallery/order_succ_title.png" self.icoPath="./gallery/icon.ico" # 字型標籤 title_qf=QFont() title_qf.setPointSize(11) title_qf.setBold(True) title_qf.setFamily("Cambria") Inf_qf=QFont() Inf_qf.setPointSize(10) Inf_qf.setBold(True) Inf_qf.setFamily("Cambria") matters_qf=QFont() matters_qf.setPointSize(10.5) matters_qf.setBold(True) matters_qf.setFamily("Cambria") # --- self.QF_part_title=title_qf # 框標題字型標籤 self.QF_Inf_title=title_qf # 資訊標題字型標籤 self.QF_Inf_text=Inf_qf # 資訊文字字型標籤 self.QF_matters=matters_qf # 注意事項字型標籤 # 樣式表 self.SS_part_frame="QLabel{background: rgb(245,245,245);color:rgb(92,92,92);border-radius:8px;border: 2.5px solid rgb(122,122,122)}" self.SS_part_title="QLabel{background: rgb(245,245,245);color:rgb(92,92,92)}" self.SS_Inf_title="QLabel{background: rgb(230,230,230);color:rgb(82,82,82);border-radius:8px}" self.SS_text_Line="QLabel{border-radius:3px;background: rgb(205,205,205);color:rgb(82,82,82)}" self.SS_book_btn="color:rgb(255,255,255);background: rgb(79,148,204)" self.setSize() self.setIcon() self.setTitle() self.partition() self.InfDisplay() self.mattersDisplay() self.setBtn() # ================================================================================================ # 回撥函數部分: def tempLeave(self): if self.tleaveBtn.text()=="暫離": setString(self.seatId,"temp") nowDate=datetime.datetime.now() nowDateStr=nowDate.strftime('%Y-%m-%d %H:%M:%S') self.InfBox_Time.setText(nowDateStr) self.tleaveBtn.setText("暫離中") def leave(self): freeSeat(self.seatId) self.close() # 框架建構函式部分: def setSize(self):# 調整框架大小 self.setGeometry(80,80,self.Width,self.Height) self.setMaximumSize(self.Width,self.Height) self.setMinimumSize(self.Width,self.Height) def setIcon(self):# 設定圖示 appIcon=QIcon(self.icoPath) self.setWindowIcon(appIcon) def setTitle(self): Width=self.Width Height=self.Height self.Imgbox=QLabel(self) self.Imgbox.setGeometry(0.24*Width,0.02*Height, 0.52*Width,0.18*Height) self.Imgpic=QPixmap(self.orderSuccTitlePath) self.Imgpic=self.Imgpic.scaled(0.52*Width,0.18*Height) self.Imgbox.setPixmap(self.Imgpic) def partition(self):# 繪製框線分佈 # ---資訊展示框----------------------------------------------- self.part1=QLabel(self) self.part1.setGeometry(0.04*Width,0.23*Height, 0.92*Width,0.40*Height) self.part1.setStyleSheet(self.SS_part_frame) self.part1title=QLabel(self) self.part1title.setGeometry(0.08*Width,0.21*Height, 0.15*Width,0.04*Height) self.part1title.setStyleSheet(self.SS_part_title) self.part1title.setText(" 個人資訊 ") self.part1title.setFont(self.QF_part_title) # ---注意事項框----------------------------------------------- self.part2=QLabel(self) self.part2.setGeometry(0.04*Width,0.67*Height, 0.92*Width,0.22*Height) self.part2.setStyleSheet(self.SS_part_frame) self.part2title=QLabel(self) self.part2title.setGeometry(0.08*Width,0.65*Height, self.part2title.setStyleSheet(self.SS_part_title) self.part2title.setText(" 注意事項") self.part2title.setFont(self.QF_part_title) def InfDisplay(self): # ---資訊標題------------------------------------------ self.InfTitle_Name=QLabel(self) self.InfTitle_Name.setGeometry(0.09*Width,0.28*Height, 0.16*Width,0.05*Height) self.InfTitle_Name.setStyleSheet(self.SS_Inf_title) self.InfTitle_Name.setText(" 姓名:") self.InfTitle_Name.setFont(self.QF_Inf_title) self.InfTitle_Id=QLabel(self) self.InfTitle_Id.setGeometry(0.09*Width,0.36*Height, 0.16*Width,0.05*Height) self.InfTitle_Id.setStyleSheet(self.SS_Inf_title) self.InfTitle_Id.setText(" 學號:") self.InfTitle_Id.setFont(self.QF_Inf_title) self.InfTitle_Time=QLabel(self) self.InfTitle_Time.setGeometry(0.09*Width,0.44*Height, self.InfTitle_Time.setStyleSheet(self.SS_Inf_title) self.InfTitle_Time.setText(" 時間:") self.InfTitle_Time.setFont(self.QF_Inf_title) self.InfTitle_Seat=QLabel(self) self.InfTitle_Seat.setGeometry(0.09*Width,0.52*Height, self.InfTitle_Seat.setStyleSheet(self.SS_Inf_title) self.InfTitle_Seat.setText(" 座次:") self.InfTitle_Seat.setFont(self.QF_Inf_title) # ---資訊文字方塊------------------------------------------ self.InfBox_Name=QLabel(self) self.InfBox_Name.setText(self.studentName) self.InfBox_Name.move(0.3*Width,0.281*Height) self.InfBox_Name.resize(0.6*Width,0.048*Height) self.InfBox_Name.setFont(self.QF_Inf_text) self.InfBox_Name.setStyleSheet(self.SS_text_Line) self.InfBox_Name.setAlignment(Qt.AlignCenter) self.InfBox_Id=QLabel(self) self.InfBox_Id.setText(self.studentId) self.InfBox_Id.move(0.3*Width,0.361*Height) self.InfBox_Id.resize(0.6*Width,0.048*Height) self.InfBox_Id.setFont(self.QF_Inf_text) self.InfBox_Id.setStyleSheet(self.SS_text_Line) self.InfBox_Id.setAlignment(Qt.AlignCenter) self.InfBox_Time=QLabel(self) self.InfBox_Time.setText(self.bookTime) self.InfBox_Time.move(0.3*Width,0.441*Height) self.InfBox_Time.resize(0.6*Width,0.048*Height) self.InfBox_Time.setFont(self.QF_Inf_text) self.InfBox_Time.setStyleSheet(self.SS_text_Line) self.InfBox_Time.setAlignment(Qt.AlignCenter) self.InfBox_Seat=QLabel(self) self.InfBox_Seat.setText(self.seatId) self.InfBox_Seat.move(0.3*Width,0.521*Height) self.InfBox_Seat.resize(0.6*Width,0.048*Height) self.InfBox_Seat.setFont(self.QF_Inf_text) self.InfBox_Seat.setStyleSheet(self.SS_text_Line) self.InfBox_Seat.setAlignment(Qt.AlignCenter) def mattersDisplay(self): self.m1=QLabel(self) self.m1.setText("1、預約成功後請在30分鐘內到達,否則預約資訊將失效。") self.m1.setGeometry(0.06*Width,0.71*Height, 0.87*Width,0.03*Height) self.m1.setStyleSheet("QLabel{color:rgb(82,82,82)}") self.m1.setFont(self.QF_matters) self.m2=QLabel(self) self.m2.setText("2、進入自習室前請刷校園卡核驗資訊。") self.m2.setGeometry(0.06*Width,0.75*Height, self.m2.setStyleSheet("QLabel{color:rgb(82,82,82)}") self.m2.setFont(self.QF_matters) self.m3=QLabel(self) self.m3.setText("3、如要離開請點選下方「暫離」按鈕,否則將釋放座位資訊。") self.m3.setGeometry(0.06*Width,0.79*Height, self.m3.setStyleSheet("QLabel{color:rgb(82,82,82)}") self.m3.setFont(self.QF_matters) self.m4=QLabel(self) self.m4.setText("4、離開、取消預約請點選下方「離開取消」按鈕。") self.m4.setGeometry(0.06*Width,0.83*Height, self.m4.setStyleSheet("QLabel{color:rgb(82,82,82)}") self.m4.setFont(self.QF_matters) def setBtn(self): self.tleaveBtn=QPushButton(self) self.tleaveBtn.setGeometry(0.18*Width,(0.92)*Height,0.2*Width,0.05*Height) self.tleaveBtn.setStyleSheet(self.SS_book_btn) self.tleaveBtn.setText("暫離") self.tleaveBtn.setFont(self.QF_Inf_title) self.tleaveBtn.clicked.connect(self.tempLeave) self.leaveBtn=QPushButton(self) self.leaveBtn.setGeometry((1-0.2-0.18)*Width,(0.92)*Height,0.2*Width,0.05*Height) self.leaveBtn.setStyleSheet(self.SS_book_btn) self.leaveBtn.setText("離開取消") self.leaveBtn.setFont(self.QF_Inf_title) self.leaveBtn.clicked.connect(self.leave) # =========================================================================================== # 函數呼叫: # myapp = QApplication(sys.argv) # window_disp = Window_disp("李華","1816000XXXX","2021-05-30 17:04:24","A1",700,840) # window_disp.show() # myapp.exec_() def orderDisplay(studentName,studentId,bookTime,seatId,Width=700,Height=840): window_disp = Window_disp(studentName,studentId,bookTime,seatId,Width,Height) return window_disp
學會這個技能 ,再也不用擔心搶不到座位了,密密麻麻碼了那麼多程式碼。
到此這篇關於如何用Python實現大學座位預約的文章就介紹到這了,更多相關Python實現大學座位預約內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45