本文整理汇总了Python中spyderlib.qt.QtGui.QInputDialog.getInteger方法的典型用法代码示例。如果您正苦于以下问题:Python QInputDialog.getInteger方法的具体用法?Python QInputDialog.getInteger怎么用?Python QInputDialog.getInteger使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类spyderlib.qt.QtGui.QInputDialog
的用法示例。
在下文中一共展示了QInputDialog.getInteger方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: change_history_depth
# 需要导入模块: from spyderlib.qt.QtGui import QInputDialog [as 别名]
# 或者: from spyderlib.qt.QtGui.QInputDialog import getInteger [as 别名]
def change_history_depth(self):
"Change history max entries" ""
depth, valid = QInputDialog.getInteger(
self, _("History"), _("Maximum entries"), self.get_option("max_entries"), 10, 10000
)
if valid:
self.set_option("max_entries", depth)
示例2: change_max_line_count
# 需要导入模块: from spyderlib.qt.QtGui import QInputDialog [as 别名]
# 或者: from spyderlib.qt.QtGui.QInputDialog import getInteger [as 别名]
def change_max_line_count(self):
"Change maximum line count" ""
mlc, valid = QInputDialog.getInteger(
self, _("Buffer"), _("Maximum line count"), self.get_option("max_line_count"), 0, 1000000
)
if valid:
self.shell.setMaximumBlockCount(mlc)
self.set_option("max_line_count", mlc)