原文: http://zetcode.com/gui/pyqt5/dialogs/

对话框窗口或对话框是大多数现代 GUI 应用必不可少的部分。 对话被定义为两个或更多人之间的对话。 在计算机应用中,对话框是一个窗口,用于与应用“对话”。 对话框用于输入数据,修改数据,更改应用设置等。

QInputDialog

QInputDialog提供了一个简单的便捷对话框,可从用户那里获取单个值。 输入值可以是字符串,数字或列表中的项目。

inputdialog.py

  1. #!/usr/bin/python3
  2. # -*- coding: utf-8 -*-
  3. """
  4. ZetCode PyQt5 tutorial
  5. In this example, we receive data from
  6. a QInputDialog dialog.
  7. Aauthor: Jan Bodnar
  8. Website: zetcode.com
  9. Last edited: August 2017
  10. """
  11. from PyQt5.QtWidgets import (QWidget, QPushButton, QLineEdit,
  12. QInputDialog, QApplication)
  13. import sys
  14. class Example(QWidget):
  15. def __init__(self):
  16. super().__init__()
  17. self.initUI()
  18. def initUI(self):
  19. self.btn = QPushButton('Dialog', self)
  20. self.btn.move(20, 20)
  21. self.btn.clicked.connect(self.showDialog)
  22. self.le = QLineEdit(self)
  23. self.le.move(130, 22)
  24. self.setGeometry(300, 300, 290, 150)
  25. self.setWindowTitle('Input dialog')
  26. self.show()
  27. def showDialog(self):
  28. text, ok = QInputDialog.getText(self, 'Input Dialog',
  29. 'Enter your name:')
  30. if ok:
  31. self.le.setText(str(text))
  32. if __name__ == '__main__':
  33. app = QApplication(sys.argv)
  34. ex = Example()
  35. sys.exit(app.exec_())

该示例具有一个按钮和一个行编辑小部件。 该按钮显示用于获取文本值的输入对话框。 输入的文本将显示在行编辑小部件中。

  1. text, ok = QInputDialog.getText(self, 'Input Dialog',
  2. 'Enter your name:')

这行显示输入对话框。 第一个字符串是对话框标题,第二个字符串是对话框中的消息。 对话框返回输入的文本和布尔值。 如果单击“确定”按钮,则布尔值为true

  1. if ok:
  2. self.le.setText(str(text))

我们从对话框中收到的文本通过setText()设置为行编辑小部件。

PyQt5 中的对话框 - 图1

图:输入对话框

QColorDialog

QColorDialog提供了一个对话框小部件,用于选择颜色值。

colordialog.py

  1. #!/usr/bin/python3
  2. # -*- coding: utf-8 -*-
  3. """
  4. ZetCode PyQt5 tutorial
  5. In this example, we select a color value
  6. from the QColorDialog and change the background
  7. color of a QFrame widget.
  8. Author: Jan Bodnar
  9. Website: zetcode.com
  10. Last edited: August 2017
  11. """
  12. from PyQt5.QtWidgets import (QWidget, QPushButton, QFrame,
  13. QColorDialog, QApplication)
  14. from PyQt5.QtGui import QColor
  15. import sys
  16. class Example(QWidget):
  17. def __init__(self):
  18. super().__init__()
  19. self.initUI()
  20. def initUI(self):
  21. col = QColor(0, 0, 0)
  22. self.btn = QPushButton('Dialog', self)
  23. self.btn.move(20, 20)
  24. self.btn.clicked.connect(self.showDialog)
  25. self.frm = QFrame(self)
  26. self.frm.setStyleSheet("QWidget { background-color: %s }"
  27. % col.name())
  28. self.frm.setGeometry(130, 22, 100, 100)
  29. self.setGeometry(300, 300, 250, 180)
  30. self.setWindowTitle('Color dialog')
  31. self.show()
  32. def showDialog(self):
  33. col = QColorDialog.getColor()
  34. if col.isValid():
  35. self.frm.setStyleSheet("QWidget { background-color: %s }"
  36. % col.name())
  37. if __name__ == '__main__':
  38. app = QApplication(sys.argv)
  39. ex = Example()
  40. sys.exit(app.exec_())

该应用示例显示了一个按钮和一个QFrame。 窗口小部件背景设置为黑色。 使用QColorDialog,我们可以更改其背景。

  1. col = QColor(0, 0, 0)

这是QFrame背景的初始颜色。

  1. col = QColorDialog.getColor()

这行弹出QColorDialog

  1. if col.isValid():
  2. self.frm.setStyleSheet("QWidget { background-color: %s }"
  3. % col.name())

我们检查颜色是否有效。 如果单击“取消”按钮,则不会返回有效的颜色。 如果颜色有效,我们将使用样式表更改背景颜色。

QFontDialog

QFontDialog是用于选择字体的对话框小部件。

fontdialog.py

  1. #!/usr/bin/python3
  2. # -*- coding: utf-8 -*-
  3. """
  4. ZetCode PyQt5 tutorial
  5. In this example, we select a font name
  6. and change the font of a label.
  7. Author: Jan Bodnar
  8. Website: zetcode.com
  9. Last edited: August 2017
  10. """
  11. from PyQt5.QtWidgets import (QWidget, QVBoxLayout, QPushButton,
  12. QSizePolicy, QLabel, QFontDialog, QApplication)
  13. import sys
  14. class Example(QWidget):
  15. def __init__(self):
  16. super().__init__()
  17. self.initUI()
  18. def initUI(self):
  19. vbox = QVBoxLayout()
  20. btn = QPushButton('Dialog', self)
  21. btn.setSizePolicy(QSizePolicy.Fixed,
  22. QSizePolicy.Fixed)
  23. btn.move(20, 20)
  24. vbox.addWidget(btn)
  25. btn.clicked.connect(self.showDialog)
  26. self.lbl = QLabel('Knowledge only matters', self)
  27. self.lbl.move(130, 20)
  28. vbox.addWidget(self.lbl)
  29. self.setLayout(vbox)
  30. self.setGeometry(300, 300, 250, 180)
  31. self.setWindowTitle('Font dialog')
  32. self.show()
  33. def showDialog(self):
  34. font, ok = QFontDialog.getFont()
  35. if ok:
  36. self.lbl.setFont(font)
  37. if __name__ == '__main__':
  38. app = QApplication(sys.argv)
  39. ex = Example()
  40. sys.exit(app.exec_())

在我们的示例中,我们有一个按钮和一个标签。 使用QFontDialog,我们更改标签的字体。

  1. font, ok = QFontDialog.getFont()

在这里我们弹出字体对话框。 getFont()方法返回字体名称和ok参数。 如果用户单击“确定”,则它等于True; 否则为False

  1. if ok:
  2. self.label.setFont(font)

如果单击“确定”,标签的字体将更改为setFont()

QFileDialog

QFileDialog是允许用户选择文件或目录的对话框。 可以选择打开和保存文件。

filedialog.py

  1. #!/usr/bin/python3
  2. # -*- coding: utf-8 -*-
  3. """
  4. ZetCode PyQt5 tutorial
  5. In this example, we select a file with a
  6. QFileDialog and display its contents
  7. in a QTextEdit.
  8. Author: Jan Bodnar
  9. Website: zetcode.com
  10. Last edited: August 2017
  11. """
  12. from PyQt5.QtWidgets import (QMainWindow, QTextEdit,
  13. QAction, QFileDialog, QApplication)
  14. from PyQt5.QtGui import QIcon
  15. import sys
  16. class Example(QMainWindow):
  17. def __init__(self):
  18. super().__init__()
  19. self.initUI()
  20. def initUI(self):
  21. self.textEdit = QTextEdit()
  22. self.setCentralWidget(self.textEdit)
  23. self.statusBar()
  24. openFile = QAction(QIcon('open.png'), 'Open', self)
  25. openFile.setShortcut('Ctrl+O')
  26. openFile.setStatusTip('Open new File')
  27. openFile.triggered.connect(self.showDialog)
  28. menubar = self.menuBar()
  29. fileMenu = menubar.addMenu('&File')
  30. fileMenu.addAction(openFile)
  31. self.setGeometry(300, 300, 350, 300)
  32. self.setWindowTitle('File dialog')
  33. self.show()
  34. def showDialog(self):
  35. fname = QFileDialog.getOpenFileName(self, 'Open file', '/home')
  36. if fname[0]:
  37. f = open(fname[0], 'r')
  38. with f:
  39. data = f.read()
  40. self.textEdit.setText(data)
  41. if __name__ == '__main__':
  42. app = QApplication(sys.argv)
  43. ex = Example()
  44. sys.exit(app.exec_())

该示例显示了一个菜单栏,集中设置的文本编辑小部件和一个状态栏。 菜单项显示用于选择文件的QFileDialog。 文件的内容被加载到文本编辑小部件中。

  1. class Example(QMainWindow):
  2. def __init__(self):
  3. super().__init__()
  4. self.initUI()

该示例基于QMainWindow小部件,因为我们集中设置了文本编辑小部件。

  1. fname = QFileDialog.getOpenFileName(self, 'Open file', '/home')

我们弹出QFileDialoggetOpenFileName()方法中的第一个字符串是标题。 第二个字符串指定对话框的工作目录。 默认情况下,文件过滤器设置为All Files (*)

  1. if fname[0]:
  2. f = open(fname[0], 'r')
  3. with f:
  4. data = f.read()
  5. self.textEdit.setText(data)

读取所选文件名,并将文件内容设置为文本编辑小部件。

在 PyQt5 教程的这一部分中,我们使用了对话框。