ZetCode

PyQt4 中的对话框

最后修改于 2023 年 10 月 18 日

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

QtGui.QInputDialog

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

#!/usr/bin/python

"""
ZetCode PyQt4 tutorial 

In this example, we receive data from
a QtGui.QInputDialog dialog. 

author: Jan Bodnar
website: zetcode.com
"""

import sys
from PyQt4 import QtGui


class Example(QtGui.QWidget):
    
    def __init__(self):
        super(Example, self).__init__()
        
        self.initUI()
        
    def initUI(self):      

        self.btn = QtGui.QPushButton('Dialog', self)
        self.btn.move(20, 20)
        self.btn.clicked.connect(self.showDialog)
        
        self.le = QtGui.QLineEdit(self)
        self.le.move(130, 22)
        
        self.setGeometry(300, 300, 290, 150)
        self.setWindowTitle('Input dialog')
        self.show()
        
    def showDialog(self):
        
        text, ok = QtGui.QInputDialog.getText(self, 'Input Dialog', 
            'Enter your name:')
        
        if ok:
            self.le.setText(str(text))
        
def main():
    
    app = QtGui.QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())


if __name__ == '__main__':
    main()

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

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

此行显示输入对话框。 第一个字符串是对话框标题,第二个字符串是对话框中的消息。 对话框返回输入的文本和一个布尔值。 如果我们点击确定按钮,布尔值为真。

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

我们从对话框接收到的文本被设置为行编辑小部件。

Input Dialog
图:输入对话框

QtGui.QColorDialog

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

#!/usr/bin/python

"""
ZetCode PyQt4 tutorial 

In this example, we select a colour value
from the QtGui.QColorDialog and change the background
colour of a QtGui.QFrame widget. 

author: Jan Bodnar
website: zetcode.com
"""

import sys
from PyQt4 import QtGui

class Example(QtGui.QWidget):
    
    def __init__(self):
        super(Example, self).__init__()
        
        self.initUI()
        
    def initUI(self):      

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

        self.btn = QtGui.QPushButton('Dialog', self)
        self.btn.move(20, 20)

        self.btn.clicked.connect(self.showDialog)

        self.frm = QtGui.QFrame(self)
        self.frm.setStyleSheet("QWidget { background-color: %s }" 
            % col.name())
        self.frm.setGeometry(130, 22, 100, 100)            
        
        self.setGeometry(300, 300, 250, 180)
        self.setWindowTitle('Color dialog')
        self.show()
        
    def showDialog(self):
      
        col = QtGui.QColorDialog.getColor()

        if col.isValid():
            self.frm.setStyleSheet("QWidget { background-color: %s }"
                % col.name())
        
def main():
    
    app = QtGui.QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())


if __name__ == '__main__':
    main()

应用程序示例显示一个按钮和一个 QtGui.QFrame。小部件的背景设置为黑色。使用 QtGui.QColorDialog,我们可以更改其背景。

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

这是 QtGui.QFrame 背景的初始颜色。

col = QtGui.QColorDialog.getColor()

这行将弹出 QtGui.QColorDialog

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

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

Color dialog
图:颜色对话框

QtGui.QFontDialog

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

#!/usr/bin/python

"""
ZetCode PyQt4 tutorial 

In this example, we select a font name
and change the font of a label. 

author: Jan Bodnar
website: zetcode.com
"""

import sys
from PyQt4 import QtGui


class Example(QtGui.QWidget):
    
    def __init__(self):
        super(Example, self).__init__()
        
        self.initUI()
        
    def initUI(self):      

        vbox = QtGui.QVBoxLayout()

        btn = QtGui.QPushButton('Dialog', self)
        btn.setSizePolicy(QtGui.QSizePolicy.Fixed,
            QtGui.QSizePolicy.Fixed)
        
        btn.move(20, 20)

        vbox.addWidget(btn)

        btn.clicked.connect(self.showDialog)
        
        self.lbl = QtGui.QLabel('Knowledge only matters', self)
        self.lbl.move(130, 20)

        vbox.addWidget(self.lbl)
        self.setLayout(vbox)          
        
        self.setGeometry(300, 300, 250, 180)
        self.setWindowTitle('Font dialog')
        self.show()
        
    def showDialog(self):

        font, ok = QtGui.QFontDialog.getFont()
        if ok:
            self.lbl.setFont(font)
        
def main():
    
    app = QtGui.QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())


if __name__ == '__main__':
    main()

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

font, ok = QtGui.QFontDialog.getFont()

这里我们弹出字体对话框。getFont 方法返回字体名称和 ok 参数。如果用户单击 OK,则等于 True;否则等于 False。

if ok:
    self.label.setFont(font)

如果我们单击 OK,标签的字体将更改。

QtGui.QFileDialog

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

#!/usr/bin/python

"""
ZetCode PyQt4 tutorial 

In this example, we select a file with a
QtGui.QFileDialog and display its contents
in a QtGui.QTextEdit.

author: Jan Bodnar
website: zetcode.com
"""

import sys
from PyQt4 import QtGui


class Example(QtGui.QMainWindow):
    
    def __init__(self):
        super(Example, self).__init__()
        
        self.initUI()
        
    def initUI(self):      

        self.textEdit = QtGui.QTextEdit()
        self.setCentralWidget(self.textEdit)
        self.statusBar()

        openFile = QtGui.QAction(QtGui.QIcon('open.png'), 'Open', self)
        openFile.setShortcut('Ctrl+O')
        openFile.setStatusTip('Open new File')
        openFile.triggered.connect(self.showDialog)

        menubar = self.menuBar()
        fileMenu = menubar.addMenu('&File')
        fileMenu.addAction(openFile)       
        
        self.setGeometry(300, 300, 350, 300)
        self.setWindowTitle('File dialog')
        self.show()
        
    def showDialog(self):

        fname = QtGui.QFileDialog.getOpenFileName(self, 'Open file', 
                '/home')
        
        f = open(fname, 'r')
        
        with f:        
            data = f.read()
            self.textEdit.setText(data) 
                                
        
def main():
    
    app = QtGui.QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())


if __name__ == '__main__':
    main()

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

class Example(QtGui.QMainWindow):
    
    def __init__(self):
        super(Example, self).__init__()

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

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

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

f = open(fname, 'r')

with f:        
    data = f.read()
    self.textEdit.setText(data) 

读取选定的文件名,并将文件的内容设置到文本编辑小部件。

File Dialog
图:文件对话框

在 PyQt4 教程的这一部分,我们处理了对话框。