PyQt5实现简易电子词典


Posted in Python onJune 25, 2019

PyQt5是python中一个非常实用的GUI编程模块,功能十分强大。刚刚学完了Pyqt的编程,就迫不及待的写出了一个电子词典GUI程序。整个程序使用qt Desiner把整个gui界面做好,槽函数则自己写好的。电子词典实现了查询单词,查询历史记录,收藏和查看单词本的功能,另外为了是程序更加炫酷,还添加了一个启动界面。具体代码如下:

第一个为主程序代码,主要实现槽函数功能。

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_())

textBrowser中的内容可以以html的格式显示出来,所有其中的文件的显示可以按照自己的喜好来设计。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python获取豆瓣电影简介代码分享
Jan 16 Python
Python解析网页源代码中的115网盘链接实例
Sep 30 Python
python3实现读取chrome浏览器cookie
Jun 19 Python
Pycharm学习教程(7)虚拟机VM的配置教程
May 04 Python
Python回文字符串及回文数字判定功能示例
Mar 20 Python
如何快速一次性卸载所有python包(第三方库)呢
Oct 20 Python
jupyter notebook 写代码自动补全的实现
Nov 02 Python
python3爬虫GIL修改多线程实例讲解
Nov 24 Python
详解pycharm自动import所需的库的操作方法
Nov 30 Python
Python爬虫UA伪装爬取的实例讲解
Feb 19 Python
python 逐步回归算法
Apr 06 Python
Python实战之用tkinter库做一个鼠标模拟点击器
Apr 27 Python
python如何制作英文字典
Jun 25 #Python
Pandas DataFrame数据的更改、插入新增的列和行的方法
Jun 25 #Python
python模拟菜刀反弹shell绕过限制【推荐】
Jun 25 #Python
Pandas之DataFrame对象的列和索引之间的转化
Jun 25 #Python
Pandas之Fillna填充缺失数据的方法
Jun 25 #Python
PYQT5实现控制台显示功能的方法
Jun 25 #Python
Pandas之Dropna滤除缺失数据的实现方法
Jun 25 #Python
You might like
一台收音机,让一家人都笑逐颜开!
2020/08/21 无线电
一贴学会PHP 新手入门教程
2009/08/03 PHP
php错误级别的设置方法
2013/06/17 PHP
php返回json数据函数实例
2014/10/09 PHP
PHP CURL post数据报错 failed creating formpost data
2016/10/16 PHP
thinkPHP利用ajax异步上传图片并显示、删除的示例
2018/09/26 PHP
js展开闭合效果演示代码
2013/07/24 Javascript
jQuery实现平滑滚动页面到指定锚点链接的方法
2015/07/15 Javascript
一步一步封装自己的HtmlHelper组件BootstrapHelper(二)
2016/09/14 Javascript
JS实现的视频弹幕效果示例
2018/08/17 Javascript
javascript刷新父页面方法汇总详解
2019/10/10 Javascript
VueQuillEditor富文本上传图片(非base64)
2020/06/03 Javascript
[14:00]DOTA2国际邀请赛史上最长大战 赛后专访B神
2013/08/10 DOTA
详解Python中用于计算指数的exp()方法
2015/05/14 Python
python中模块的__all__属性详解
2017/10/26 Python
python中实现控制小数点位数的方法
2019/01/24 Python
python读取目录下所有的jpg文件,并显示第一张图片的示例
2019/06/13 Python
python单线程下实现多个socket并发过程详解
2019/07/27 Python
python验证码图片处理(二值化)
2019/11/01 Python
如何基于Python实现电子邮件的发送
2019/12/16 Python
PyQt5 控件字体样式等设置的实现
2020/05/13 Python
Python selenium 加载并保存QQ群成员,去除其群主、管理员信息的示例代码
2020/05/28 Python
python如何写出表白程序
2020/06/01 Python
python代码区分大小写吗
2020/06/17 Python
波兰数码相机及配件网上商店: Cyfrowe.pl
2017/06/19 全球购物
为娇小女性量身打造:Petite Studio
2018/11/01 全球购物
MYPROTEIN澳大利亚官方网站:欧洲运动营养品牌
2019/06/26 全球购物
俄罗斯第一家多品牌在线奢侈品精品店:Aizel.ru
2020/09/06 全球购物
清正廉洁演讲稿
2014/05/22 职场文书
行政文员实习自我鉴定范文
2014/09/14 职场文书
副总经理岗位职责
2015/02/02 职场文书
银行自荐信范文
2015/03/25 职场文书
劳动合同变更协议书范本
2019/04/18 职场文书
MySQL分库分表与分区的入门指南
2021/04/22 MySQL
ORM模型框架操作mysql数据库的方法
2021/07/25 MySQL
JavaScript函数柯里化
2021/11/07 Javascript