Python PyQt5标准对话框用法示例


Posted in Python onAugust 23, 2017

本文实例讲述了Python PyQt5标准对话框用法。分享给大家供大家参考,具体如下:

很全的Qt的标准对话框,包含QInputDialog、QColorDialog、QFontDialog、QMessageBox、QOpenFileDialog...

全部是由官网的C++版本,转换成PyQt5版本。

有些细节忽略了,因为实在不知怎么转换过来。捣鼓了一晚上,总算完成了,好累啊,不过很开心!

效果图:

Python PyQt5标准对话框用法示例

Python PyQt5标准对话框用法示例

完整代码:

# -*- coding: utf-8 -*-
from PyQt5.QtGui import *
from PyQt5.QtCore import *
from PyQt5.QtWidgets import *
import sys
class DialogOptionsWidget(QWidget):
 def __init__(self, parent=None):
  super(DialogOptionsWidget,self).__init__(parent)
 def addCheckBox(self, text, value):
  pass
 def addSpacer():
  pass
 def value():
  pass
class StandardDialog(QDialog):
 def __init__(self,parent=None):
  super(StandardDialog,self).__init__(parent)
  self.setWindowTitle("Standard Dialog")
  frameStyle = QFrame.Sunken | QFrame.Panel
  mainLayout = QVBoxLayout(self)
  toolbox = QToolBox()
  mainLayout.addWidget(toolbox)
  self.errorMessageDialog = QErrorMessage(self)
  pushButton_integer = QPushButton("QInputDialog.get&Int()")
  pushButton_double = QPushButton("QInputDialog.get&Double()")
  pushButton_item = QPushButton("QInputDialog.getIte&m()")
  pushButton_text = QPushButton("QInputDialog.get&Text()")
  pushButton_multiLineText = QPushButton("QInputDialog.get&MultiLineText()")
  pushButton_color = QPushButton("QColorDialog.get&Color()")
  pushButton_font = QPushButton("QFontDialog.get&Font()")
  pushButton_directory = QPushButton("QFileDialog.getE&xistingDirectory()")
  pushButton_openFileName = QPushButton("QFileDialog.get&OpenFileName()")
  pushButton_openFileNames = QPushButton("QFileDialog.&getOpenFileNames()")
  pushButton_saveFileName = QPushButton("QFileDialog.get&SaveFileName()")
  pushButton_critical = QPushButton("QMessageBox.critica&l()")
  pushButton_information = QPushButton("QMessageBox.i&nformation()")
  pushButton_question = QPushButton("QQMessageBox.&question()")
  pushButton_warning = QPushButton("QMessageBox.&warning()")
  pushButton_error = QPushButton("QErrorMessage.showM&essage()")
  self.label_integer = QLabel()
  self.label_double = QLabel()
  self.label_item = QLabel()
  self.label_text = QLabel()
  self.label_multiLineText = QLabel()
  self.label_color = QLabel()
  self.label_font = QLabel()
  self.label_directory = QLabel()
  self.label_openFileName = QLabel()
  self.label_openFileNames = QLabel()
  self.label_saveFileName = QLabel()
  self.label_critical = QLabel()
  self.label_information = QLabel()
  self.label_question = QLabel()
  self.label_warning = QLabel()
  self.label_error = QLabel()
  self.label_integer.setFrameStyle(frameStyle)
  self.label_double.setFrameStyle(frameStyle)
  self.label_item.setFrameStyle(frameStyle)
  self.label_text.setFrameStyle(frameStyle)
  self.label_multiLineText.setFrameStyle(frameStyle)
  self.label_color.setFrameStyle(frameStyle)
  self.label_font.setFrameStyle(frameStyle)
  self.label_directory.setFrameStyle(frameStyle)
  self.label_openFileName.setFrameStyle(frameStyle)
  self.label_openFileNames.setFrameStyle(frameStyle)
  self.label_saveFileName.setFrameStyle(frameStyle)
  self.label_critical.setFrameStyle(frameStyle)
  self.label_information.setFrameStyle(frameStyle)
  self.label_question.setFrameStyle(frameStyle)
  self.label_warning.setFrameStyle(frameStyle)
  self.label_error.setFrameStyle(frameStyle)
  page = QWidget()
  layout = QGridLayout(page)
  layout.setColumnStretch(1,1)
  layout.setColumnMinimumWidth(1,250)
  layout.addWidget(pushButton_integer,0,0)
  layout.addWidget(self.label_integer,0,1)
  layout.addWidget(pushButton_double,1,0)
  layout.addWidget(self.label_double,1,1)
  layout.addWidget(pushButton_item,2,0)
  layout.addWidget(self.label_item,2,1)
  layout.addWidget(pushButton_text,3,0)
  layout.addWidget(self.label_text,3,1)
  layout.addWidget(pushButton_multiLineText,4,0)
  layout.addWidget(self.label_multiLineText,4,1)
  layout.addItem(QSpacerItem(0,0,QSizePolicy.Ignored,QSizePolicy.MinimumExpanding),5,0)
  toolbox.addItem(page, "Input Dialog")
  page = QWidget()
  layout = QGridLayout(page)
  layout.setColumnStretch(1,1)
  #layout.setColumnMinimumWidth(1,250)
  layout.addWidget(pushButton_color,0,0)
  layout.addWidget(self.label_color,0,1)
  colorDialogOptionsWidget = DialogOptionsWidget()
  colorDialogOptionsWidget.addCheckBox("Do not use native dialog", QColorDialog.DontUseNativeDialog)
  colorDialogOptionsWidget.addCheckBox("Show alpha channel" , QColorDialog.ShowAlphaChannel)
  colorDialogOptionsWidget.addCheckBox("No buttons" , QColorDialog.NoButtons)
  layout.addItem(QSpacerItem(0,0,QSizePolicy.Ignored,QSizePolicy.MinimumExpanding),1,0)
  layout.addWidget(colorDialogOptionsWidget, 2, 0, 1 ,2)
  toolbox.addItem(page, "Color Dialog")
  page = QWidget()
  layout = QGridLayout(page)
  layout.setColumnStretch(1, 1)
  layout.addWidget(pushButton_font, 0, 0)
  layout.addWidget(self.label_font, 0, 1)
  fontDialogOptionsWidget = DialogOptionsWidget()
  fontDialogOptionsWidget.addCheckBox("Do not use native dialog", QFontDialog.DontUseNativeDialog)
  fontDialogOptionsWidget.addCheckBox("No buttons", QFontDialog.NoButtons)
  layout.addItem(QSpacerItem(0, 0, QSizePolicy.Ignored, QSizePolicy.MinimumExpanding), 1, 0)
  layout.addWidget(fontDialogOptionsWidget, 2, 0, 1 ,2)
  toolbox.addItem(page, "Font Dialog")
  page = QWidget()
  layout = QGridLayout(page)
  layout.setColumnStretch(1, 1)
  layout.addWidget(pushButton_directory, 0, 0)
  layout.addWidget(self.label_directory, 0, 1)
  layout.addWidget(pushButton_openFileName, 1, 0)
  layout.addWidget(self.label_openFileName, 1, 1)
  layout.addWidget(pushButton_openFileNames, 2, 0)
  layout.addWidget(self.label_openFileNames, 2, 1)
  layout.addWidget(pushButton_saveFileName, 3, 0)
  layout.addWidget(self.label_saveFileName, 3, 1)
  fileDialogOptionsWidget = DialogOptionsWidget()
  fileDialogOptionsWidget.addCheckBox("Do not use native dialog", QFileDialog.DontUseNativeDialog)
  fileDialogOptionsWidget.addCheckBox("Show directories only", QFileDialog.ShowDirsOnly)
  fileDialogOptionsWidget.addCheckBox("Do not resolve symlinks", QFileDialog.DontResolveSymlinks)
  fileDialogOptionsWidget.addCheckBox("Do not confirm overwrite", QFileDialog.DontConfirmOverwrite)
  fileDialogOptionsWidget.addCheckBox("Do not use sheet", QFileDialog.DontUseSheet)
  fileDialogOptionsWidget.addCheckBox("Readonly", QFileDialog.ReadOnly)
  fileDialogOptionsWidget.addCheckBox("Hide name filter details", QFileDialog.HideNameFilterDetails)
  layout.addItem(QSpacerItem(0, 0, QSizePolicy.Ignored, QSizePolicy.MinimumExpanding), 4, 0)
  layout.addWidget(fileDialogOptionsWidget, 5, 0, 1 ,2)
  toolbox.addItem(page, "File Dialogs")
  page = QWidget()
  layout = QGridLayout(page)
  layout.setColumnStretch(1, 1)
  layout.addWidget(pushButton_critical, 0, 0)
  layout.addWidget(self.label_critical, 0, 1)
  layout.addWidget(pushButton_information, 1, 0)
  layout.addWidget(self.label_information, 1, 1)
  layout.addWidget(pushButton_question, 2, 0)
  layout.addWidget(self.label_question, 2, 1)
  layout.addWidget(pushButton_warning, 3, 0)
  layout.addWidget(self.label_warning, 3, 1)
  layout.addWidget(pushButton_error, 4, 0)
  layout.addWidget(self.label_error, 4, 1)
  layout.addItem(QSpacerItem(0, 0, QSizePolicy.Ignored, QSizePolicy.MinimumExpanding), 5, 0)
  toolbox.addItem(page, "Message Boxes")
  pushButton_integer.clicked.connect(self.setInteger)
  pushButton_double.clicked.connect(self.setDouble)
  pushButton_item.clicked.connect(self.setItem)
  pushButton_text.clicked.connect(self.setText)
  pushButton_multiLineText.clicked.connect(self.setMultiLineText)
  pushButton_color.clicked.connect(self.setColor)
  pushButton_font.clicked.connect(self.setFont)
  pushButton_directory.clicked.connect(self.setExistingDirectory)
  pushButton_openFileName.clicked.connect(self.setOpenFileName)
  pushButton_openFileNames.clicked.connect(self.setOpenFileNames)
  pushButton_saveFileName.clicked.connect(self.setSaveFileName)
  pushButton_critical.clicked.connect(self.criticalMessage)
  pushButton_information.clicked.connect(self.informationMessage)
  pushButton_question.clicked.connect(self.questionMessage)
  pushButton_warning.clicked.connect(self.warningMessage)
  pushButton_error.clicked.connect(self.errorMessage)
 #输入对话框 取整数
 def setInteger(self):
  intNum, ok = QInputDialog.getInt(self, "QInputDialog.getInteger()","Percentage:", 25, 0, 100, 1)
  if ok:
   self.label_integer.setText(str(intNum))
 #输入对话框 取实数
 def setDouble(self):
  doubleNum, ok = QInputDialog.getDouble(self, "QInputDialog.getDouble()", "Amount:", 37.56, -10000, 10000, 2)
  if ok:
   self.label_double.setText(str(doubleNum))
 #输入对话框 取列表项
 def setItem(self):
  items = ["Spring", "Summer", "Fall", "Winter"]
  item, ok = QInputDialog.getItem(self, "QInputDialog.getItem()","Season:", items, 0, False)
  if ok and item:
   self.label_item.setText(item)
 #输入对话框 取文本
 def setText(self):
  text, ok = QInputDialog.getText(self, "QInputDialog.getText()", "User name:", QLineEdit.Normal, QDir.home().dirName())
  if ok and text:
   self.label_text.setText(text)
 #输入对话框 取多行文本
 def setMultiLineText(self):
  text, ok = QInputDialog.getMultiLineText(self, "QInputDialog.getMultiLineText()", "Address:", "John Doe\nFreedom Street")
  if ok and text:
   self.label_multiLineText.setText(text)
 #颜色对话框 取颜色
 def setColor(self):
  #options = QColorDialog.ColorDialogOptions(QFlag.QFlag(colorDialogOptionsWidget.value()))
  color = QColorDialog.getColor(Qt.green, self, "Select Color")
  if color.isValid():
   self.label_color.setText(color.name())
   self.label_color.setPalette(QPalette(color))
   self.label_color.setAutoFillBackground(True)
 #字体对话框 取字体
 def setFont(self):
  #options = QFontDialog.FontDialogOptions(QFlag(fontDialogOptionsWidget.value()))
  #font, ok = QFontDialog.getFont(ok, QFont(self.label_font.text()), self, "Select Font",options)
  font, ok = QFontDialog.getFont()
  if ok:
   self.label_font.setText(font.key())
   self.label_font.setFont(font)
 #目录对话框 取目录
 def setExistingDirectory(self):
  #options = QFileDialog.Options(QFlag(fileDialogOptionsWidget->value()))
  #options |= QFileDialog.DontResolveSymlinks | QFileDialog.ShowDirsOnly
  directory = QFileDialog.getExistingDirectory(self,
         "QFileDialog.getExistingDirectory()",
         self.label_directory.text())
  if directory:
   self.label_directory.setText(directory)
 #打开文件对话框 取文件名
 def setOpenFileName(self):
  #options = QFileDialog.Options(QFlag(fileDialogOptionsWidget.value()))
  #selectedFilter
  fileName, filetype = QFileDialog.getOpenFileName(self,
         "QFileDialog.getOpenFileName()",
         self.label_openFileName.text(),
         "All Files (*);;Text Files (*.txt)")
  if fileName:
   self.label_openFileName.setText(fileName)
 #打开文件对话框 取一组文件名
 def setOpenFileNames(self):
  #options = QFileDialog.Options(QFlag(fileDialogOptionsWidget.value()))
  #selectedFilter
  openFilesPath = "D:/documents/pyMarksix/draw/"
  files, ok = QFileDialog.getOpenFileNames(self,
         "QFileDialog.getOpenFileNames()",
         openFilesPath,
         "All Files (*);;Text Files (*.txt)")
  if len(files):
   self.label_openFileNames.setText(", ".join(files))
 #保存文件对话框 取文件名
 def setSaveFileName(self):
  #options = QFileDialog.Options(QFlag(fileDialogOptionsWidget.value()))
  #selectedFilter
  fileName, ok = QFileDialog.getSaveFileName(self,
         "QFileDialog.getSaveFileName()",
         self.label_saveFileName.text(),
         "All Files (*);;Text Files (*.txt)")
  if fileName:
   self.label_saveFileName.setText(fileName)
 def criticalMessage(self):
  #reply = QMessageBox.StandardButton()
  MESSAGE = "批评!"
  reply = QMessageBox.critical(self,
         "QMessageBox.critical()",
         MESSAGE,
         QMessageBox.Abort | QMessageBox.Retry | QMessageBox.Ignore)
  if reply == QMessageBox.Abort:
   self.label_critical.setText("Abort")
  elif reply == QMessageBox.Retry:
   self.label_critical.setText("Retry")
  else:
   self.label_critical.setText("Ignore")
 def informationMessage(self):
  MESSAGE = "信息"
  reply = QMessageBox.information(self, "QMessageBox.information()", MESSAGE)
  if reply == QMessageBox.Ok:
   self.label_information.setText("OK")
  else:
   self.label_information.setText("Escape")
 def questionMessage(self):
  MESSAGE = "疑问"
  reply = QMessageBox.question(self, "QMessageBox.question()",
         MESSAGE,
         QMessageBox.Yes | QMessageBox.No | QMessageBox.Cancel)
  if reply == QMessageBox.Yes:
   self.label_question.setText("Yes")
  elif reply == QMessageBox.No:
   self.label_question.setText("No")
  else:
   self.label_question.setText("Cancel")
 def warningMessage(self):
  MESSAGE = "警告文本"
  msgBox = QMessageBox(QMessageBox.Warning,
       "QMessageBox.warning()",
        MESSAGE,
        QMessageBox.Retry | QMessageBox.Discard | QMessageBox.Cancel,
        self)
  msgBox.setDetailedText("详细信息。。。")
  #msgBox.addButton("Save &Again", QMessageBox.AcceptRole)
  #msgBox.addButton("&Continue", QMessageBox.RejectRole)
  if msgBox.exec() == QMessageBox.AcceptRole:
   self.label_warning.setText("Retry")
  else:
   self.label_warning.setText("Abort")
 def errorMessage(self):
  self.errorMessageDialog.showMessage(
     "This dialog shows and remembers error messages. "
     "If the checkbox is checked (as it is by default), "
     "the shown message will be shown again, "
     "but if the user unchecks the box the message "
     "will not appear again if QErrorMessage.showMessage() "
     "is called with the same message.")
  self.label_error.setText("If the box is unchecked, the message "
        "won't appear again.")
app=QApplication(sys.argv)
form=StandardDialog()
form.show()
app.exec_()

希望本文所述对大家Python程序设计有所帮助。

Python 相关文章推荐
python实现网站的模拟登录
Jan 04 Python
Python遍历文件夹和读写文件的实现方法
May 10 Python
python OpenCV学习笔记直方图反向投影的实现
Feb 07 Python
Python爬虫常用库的安装及其环境配置
Sep 19 Python
Python 2种方法求某个范围内的所有素数(质数)
Jan 31 Python
详解字符串在Python内部是如何省内存的
Feb 03 Python
Python-jenkins模块获取jobs的执行状态操作
May 12 Python
Keras实现支持masking的Flatten层代码
Jun 16 Python
Python文件夹批处理操作代码实例
Jul 21 Python
python 实现控制鼠标键盘
Nov 27 Python
Python爬取酷狗MP3音频的步骤
Feb 26 Python
超级详细实用的pycharm常用快捷键
May 12 Python
Python PyQt5实现的简易计算器功能示例
Aug 23 #Python
Python实现的密码强度检测器示例
Aug 23 #Python
python+selenium+autoit实现文件上传功能
Aug 23 #Python
Django与JS交互的示例代码
Aug 23 #Python
python paramiko模块学习分享
Aug 23 #Python
定制FileField中的上传文件名称实例
Aug 23 #Python
基于python元祖与字典与集合的粗浅认识
Aug 23 #Python
You might like
smarty中先strip_tags过滤html标签后truncate截取文章运用
2010/10/25 PHP
php全局变量和类配合使用深刻理解
2013/06/05 PHP
php设计模式之单例模式实例分析
2015/02/25 PHP
Yii2实现增删改查后留在当前页的方法详解
2017/01/13 PHP
浏览器无法运行JAVA脚本的解决方法
2008/01/09 Javascript
jquery.ui.progressbar 中文文档
2009/11/26 Javascript
Fastest way to build an HTML string(拼装html字符串的最快方法)
2011/08/20 Javascript
javascript 用函数语句和表达式定义函数的区别详解
2014/01/06 Javascript
new Date()问题在ie8下面的处理方法
2014/07/31 Javascript
浅谈Sizzle的“编译原理”
2015/04/14 Javascript
jquery验证手机号是否正确实例讲解
2015/11/17 Javascript
jQuery实现文本框邮箱输入自动补全效果
2015/11/17 Javascript
jQuery实现字符串全部替换的方法【推荐】
2017/03/09 Javascript
深入理解vue-loader如何使用
2017/06/06 Javascript
JS图片轮播与索引变色功能实例详解
2017/07/06 Javascript
详解Vue源码之数据的代理访问
2018/12/11 Javascript
layer.msg()去掉默认时间,实现手动关闭的方法
2019/09/12 Javascript
微信小程序里引入SVG矢量图标的方法
2019/09/20 Javascript
Layui带搜索的下拉框的使用以及动态数据绑定方法
2019/09/28 Javascript
JS常用跨域方法实现原理解析
2020/12/09 Javascript
[53:44]DOTA2-DPC中国联赛 正赛 PSG.LGD vs Magma BO3 第一场 1月31日
2021/03/11 DOTA
Python 文件读写操作实例详解
2014/03/12 Python
python和flask中返回JSON数据的方法
2018/03/26 Python
python将txt文件读入为np.array的方法
2018/10/30 Python
Python Numpy计算各类距离的方法
2019/07/05 Python
使用keras内置的模型进行图片预测实例
2020/06/17 Python
ebookers英国:隶属全球最大的在线旅游公司Expedia
2017/12/28 全球购物
数控机械专业个人的自我评价
2014/01/02 职场文书
大学四年个人自我小结
2014/03/05 职场文书
《鹬蚌相争》教学反思
2014/04/22 职场文书
ktv周年庆活动方案
2014/08/18 职场文书
初中生庆国庆演讲稿范文2014
2014/09/25 职场文书
国际商务专业毕业生自我鉴定2014
2014/09/27 职场文书
任长霞观后感
2015/06/16 职场文书
预备党员入党感言
2015/08/01 职场文书
公司财务制度:成本管理控制制度模板
2019/11/19 职场文书