91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用PyQt5怎么實現簡易電子詞典

發布時間:2021-06-01 18:17:42 來源:億速云 閱讀:149 作者:Leah 欄目:開發技術

本篇文章為大家展示了使用PyQt5怎么實現簡易電子詞典,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

第一個為主程序代碼,主要實現槽函數功能。

from PyQt5.QtCore import pyqtSlot
from PyQt5.QtWidgets import QMainWindow
from PyQt5 import QtWidgets
from Ui_E_Dict_Main import Ui_E_Dictory
from PyQt5.QtWidgets import *
from PyQt5.QtGui import *
from PyQt5.QtCore import *
import time, re
 
# 槽函數代碼,運行程序需要運行本文件
class MainWindow(QMainWindow, Ui_E_Dictory):
 """
 Class documentation goes here.
 """
 def __init__(self, parent=None):
  """
  Constructor
  
  @param parent reference to the parent widget
  @type QWidget
  """
  super(MainWindow, self).__init__(parent)
  self.setupUi(self)
  # 啟動時休眠1秒
  time.sleep(1)
 
 # 按鈕1 查找單詞,把單詞顯示在textBrowser的同時,插入歷史記錄
 @pyqtSlot()
 def on_pushButton_clicked(self):
  """
  Slot documentation goes here.
  """
  # 單詞查詢,需要先有一個'dict.txt'文件,其中有大量的英文單詞和注釋
  # 此處也可以先把'dict.txt'插入數據庫,歷史記錄和單詞本的插入和查詢都可以直接操作數據庫
  # 不過數據庫需要事先安裝數據庫,并建立相應的表,不好打包,不太方便
  word=self.lineEdit.text()
  f=open('dict.txt', 'r')
  for line in f:
   # 對字典文件的數據進行分析,拆解為適合顯示的格式
   l = re.split('[ ]+',line)
   if l[0]==word:
    interpret=' '.join(l[1:])
    data='%s\n %s'%(l[0], interpret)
    # interpret='%s: %s'%(l[0],' '.join(l[1:]))
    self.textBrowser.setText(data)
    # 當地時間
    t1=time.localtime()
    t2=time.asctime(t1)
    #self.lineEdit.setText("")#lineEdit輸入后清零,可要可不要
    try:
     # 把所查詢單詞插入歷史記錄中,
     #'a'以只寫文件打開一個文件,如果有原文件則追加到文件末尾
     file=open('history.txt', 'at')
     msg='%s %s'%(word, t2)
     file.write(msg)
     file.write('\n')
     file.close()
    except Exception as e:
     print(e)
  f.close()
   
    
 @pyqtSlot()
 def on_pushButton_2_clicked(self):
  """
  Slot documentation goes here.
  """
  try:
   # 查詢歷史記錄,把歷史記錄顯示在textBrowser中
   file=open('history.txt', 'rt')   
   list=file.readlines()
   msg=''.join(list)
   self.textBrowser.setText(msg)
   file.close()
  except Exception as e:
     print(e)
     
  
 @pyqtSlot()
 def on_pushButton_3_clicked(self):
  """
  Slot documentation goes here.
  """
  try:
   # 查詢單詞本,把單詞本顯示在textBrowser中
   file=open('words.txt', 'rt')   
   list=file.readlines()
   msg=''.join(list)
   self.textBrowser.setText(msg)
   file.close()
  except Exception as e:
     print(e)
  
 
 
 @pyqtSlot()
 def on_pushButton_4_clicked(self):
  """
  Slot documentation goes here.
  """
  word=self.lineEdit.text()
  try:
   # 把所查詢單詞插入單詞本中
   file=open('words.txt', 'at')
   file.write(word)
   file.write('\n')
   file.close()
  except Exception as e:
   print(e)  
 
  
  
if __name__ == "__main__":
 import sys
 app = QtWidgets.QApplication(sys.argv)
 # 啟動界面的實現,可以使程序更加炫酷
 splash=QtWidgets.QSplashScreen(QPixmap("Saved Pictures/5b517f520feaa.jpg"))
 # 啟動界面顯示
 splash.show()
 # 在啟動界面中顯示程序加載進度,參數意思分別為居中顯示,藍色字體
 splash.showMessage('正在加載圖片資源', Qt.AlignCenter, Qt.blue)
 time.sleep(1)
 # 為了不與主程序干擾
 app.processEvents()
 ui = MainWindow()
 ui.show()
 # 啟動界面完成
 splash.finish(ui)
 sys.exit(app.exec_())

第二個程序代碼,主要實現整體的GUI界面的構建(使用Qtdesiner可以極大的簡化工作量,強烈推薦)

from PyQt5 import QtCore, QtGui, QtWidgets
 
class Ui_E_Dictory(object):
 def setupUi(self, E_Dictory):
  E_Dictory.setObjectName("E_Dictory")
  E_Dictory.resize(658, 474)
  icon = QtGui.QIcon()
  icon.addPixmap(QtGui.QPixmap("icon/24-monitor.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
  E_Dictory.setWindowIcon(icon)
  self.centralWidget = QtWidgets.QWidget(E_Dictory)
  self.centralWidget.setObjectName("centralWidget")
  self.pushButton = QtWidgets.QPushButton(self.centralWidget)
  self.pushButton.setGeometry(QtCore.QRect(390, 400, 91, 31))
  font = QtGui.QFont()
  font.setFamily("黑體")
  font.setPointSize(14)
  self.pushButton.setFont(font)
  self.pushButton.setObjectName("pushButton")
  self.label_2 = QtWidgets.QLabel(self.centralWidget)
  self.label_2.setGeometry(QtCore.QRect(100, 400, 51, 31))
  font = QtGui.QFont()
  font.setFamily("黑體")
  font.setPointSize(14)
  self.label_2.setFont(font)
  self.label_2.setObjectName("label_2")
  self.textBrowser = QtWidgets.QTextBrowser(self.centralWidget)
  self.textBrowser.setGeometry(QtCore.QRect(100, 110, 381, 271))
  self.textBrowser.setStyleSheet("background-color: rgb(242, 255, 233);")
  self.textBrowser.setObjectName("textBrowser")
  self.lineEdit = QtWidgets.QLineEdit(self.centralWidget)
  self.lineEdit.setGeometry(QtCore.QRect(160, 400, 211, 31))
  font = QtGui.QFont()
  font.setFamily("楷體")
  font.setPointSize(10)
  self.lineEdit.setFont(font)
  self.lineEdit.setText("")
  self.lineEdit.setObjectName("lineEdit")
  self.label = QtWidgets.QLabel(self.centralWidget)
  self.label.setGeometry(QtCore.QRect(240, 60, 151, 31))
  font = QtGui.QFont()
  font.setFamily("楷體")
  font.setPointSize(14)
  font.setBold(False)
  font.setWeight(50)
  self.label.setFont(font)
  self.label.setObjectName("label")
  self.pushButton_2 = QtWidgets.QPushButton(self.centralWidget)
  self.pushButton_2.setGeometry(QtCore.QRect(510, 140, 75, 23))
  self.pushButton_2.setObjectName("pushButton_2")
  self.pushButton_3 = QtWidgets.QPushButton(self.centralWidget)
  self.pushButton_3.setGeometry(QtCore.QRect(510, 220, 75, 23))
  self.pushButton_3.setObjectName("pushButton_3")
  self.pushButton_4 = QtWidgets.QPushButton(self.centralWidget)
  self.pushButton_4.setGeometry(QtCore.QRect(510, 310, 75, 23))
  self.pushButton_4.setObjectName("pushButton_4")
  self.graphicsView = QtWidgets.QGraphicsView(self.centralWidget)
  self.graphicsView.setGeometry(QtCore.QRect(0, 0, 661, 471))
  self.graphicsView.setStyleSheet("border-image: url(:/pic/Saved Pictures/f3cb924702022fc35eb6f865d67e23a6.jpg);")
  self.graphicsView.setObjectName("graphicsView")
  self.graphicsView.raise_()
  self.pushButton.raise_()
  self.label_2.raise_()
  self.textBrowser.raise_()
  self.lineEdit.raise_()
  self.label.raise_()
  self.pushButton_2.raise_()
  self.pushButton_3.raise_()
  self.pushButton_4.raise_()
  E_Dictory.setCentralWidget(self.centralWidget)
 
  self.retranslateUi(E_Dictory)
  QtCore.QMetaObject.connectSlotsByName(E_Dictory)
 
 def retranslateUi(self, E_Dictory):
  _translate = QtCore.QCoreApplication.translate
  E_Dictory.setWindowTitle(_translate("E_Dictory", "無道詞典"))
  self.pushButton.setText(_translate("E_Dictory", "查找"))
  # 快捷鍵回車,可以使查找按鈕發生效果
  self.pushButton.setShortcut(_translate("E_Dictory", "Return"))
  self.label_2.setText(_translate("E_Dictory", "單詞:"))
  # setHtml樣式表可以按照自己喜好修改
  self.textBrowser.setHtml(_translate("E_Dictory", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:\'SimSun\'; font-size:9pt; font-weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><br /></p></body></html>"))
  self.label.setText(_translate("E_Dictory", "查詢單詞"))
  self.pushButton_2.setText(_translate("E_Dictory", "歷史記錄"))
  self.pushButton_3.setText(_translate("E_Dictory", "單詞本"))
  self.pushButton_4.setText(_translate("E_Dictory", "添加單詞"))
 
import dict_rc
 
if __name__ == "__main__":
 import sys
 app = QtWidgets.QApplication(sys.argv)
 E_Dictory = QtWidgets.QMainWindow()
 ui = Ui_E_Dictory()
 ui.setupUi(E_Dictory)
 E_Dictory.show()
 sys.exit(app.exec_())

上述內容就是使用PyQt5怎么實現簡易電子詞典,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宕昌县| 苍梧县| 同德县| 肇东市| 大宁县| 顺平县| 资阳市| 沾化县| 肃南| 青铜峡市| 苍溪县| 资讯| 辽宁省| 民丰县| 太谷县| 台山市| 盐山县| 奉贤区| 茂名市| 墨玉县| 峨边| 宁武县| 唐山市| 东丰县| 绥芬河市| 洮南市| 兴山县| 中牟县| 江都市| 昔阳县| 柯坪县| 团风县| 靖江市| 尼玛县| 峡江县| 乌鲁木齐县| 滕州市| 乌什县| 东平县| 呈贡县| 乳源|