PyQt:如何更改QInputDialog按钮的文本?

时间:2013-04-06 10:07:39

标签: python button dialog pyqt

我想在QInputDialog框中更改按钮的文本(确定,取消)。  我怎样才能做到这一点?

我想用Python的gettext来做翻译,而不是Qt Linguist。

# Set maximum file size
def maximumFilesize(self):

    # Get user input
    maxsize, ok = QtGui.QInputDialog.getInt(self, "Maximum file size",
        "Enter maximum file size in bytes:", self.maxsize, 1, 1073741824)

    # If OK was clicked...
    if ok:
        if maxsize <= 0:
            message = "Maximum file size cannot be less than 1."
                QtGui.QMessageBox.critical(self, "Error", message)
                return False

        # Set new maximum file size
        self.maxsize = maxsize

1 个答案:

答案 0 :(得分:3)

QInputDialog本身包含方法setOkButtonTextsetCancelButtonText,但是,您使用的静态方法gitInt会创建一个QInputDialog对象,该对象仅可见在getInt方法中,您无法访问。

我建议您创建自己的InputIntegerDialog(QtGui.QInputDialog),您必须手动添加一个spinBox并设置其属性。然后,您可以更改两个按钮上的文本,因为对话框对象在您的控制之下,而不是在PyQt内部创建。

顺便说一句,如果您只想翻译标准按钮,可能需要查看this question