本文整理汇总了Python中spyderlib.qt.QtGui.QDialog.accept方法的典型用法代码示例。如果您正苦于以下问题:Python QDialog.accept方法的具体用法?Python QDialog.accept怎么用?Python QDialog.accept使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类spyderlib.qt.QtGui.QDialog
的用法示例。
在下文中一共展示了QDialog.accept方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: accept
# 需要导入模块: from spyderlib.qt.QtGui import QDialog [as 别名]
# 或者: from spyderlib.qt.QtGui.QDialog import accept [as 别名]
def accept(self):
"""Reimplement Qt method"""
if not self.runconfigoptions.is_valid():
return
configurations = _get_run_configurations()
configurations.insert(0, (self.filename, self.runconfigoptions.get()))
_set_run_configurations(configurations)
QDialog.accept(self)
示例2: accept
# 需要导入模块: from spyderlib.qt.QtGui import QDialog [as 别名]
# 或者: from spyderlib.qt.QtGui.QDialog import accept [as 别名]
def accept(self):
"""Reimplement Qt method"""
for index in range(self.pages_widget.count()):
configpage = self.get_page(index)
if not configpage.is_valid():
return
configpage.apply_changes()
QDialog.accept(self)
示例3: accept
# 需要导入模块: from spyderlib.qt.QtGui import QDialog [as 别名]
# 或者: from spyderlib.qt.QtGui.QDialog import accept [as 别名]
def accept(self):
"""Reimplement Qt method"""
configurations = []
for index in range(self.stack.count()):
filename = unicode(self.combo.itemText(index))
runconfigoptions = self.stack.widget(index)
if not runconfigoptions.is_valid():
return
options = runconfigoptions.get()
configurations.append((filename, options))
_set_run_configurations(configurations)
QDialog.accept(self)
示例4: accept
# 需要导入模块: from spyderlib.qt.QtGui import QDialog [as 别名]
# 或者: from spyderlib.qt.QtGui.QDialog import accept [as 别名]
def accept(self):
"""Reimplement Qt method"""
for index in range(self.stack.count()):
self.stack.widget(index).accept_changes()
QDialog.accept(self)
示例5: accept
# 需要导入模块: from spyderlib.qt.QtGui import QDialog [as 别名]
# 或者: from spyderlib.qt.QtGui.QDialog import accept [as 别名]
def accept(self):
"""Reimplement Qt method"""
self.set_environ(listdict2envdict(self.get_value()))
QDialog.accept(self)
示例6: accept
# 需要导入模块: from spyderlib.qt.QtGui import QDialog [as 别名]
# 或者: from spyderlib.qt.QtGui.QDialog import accept [as 别名]
def accept(self):
self.data = self.formwidget.get()
QDialog.accept(self)
示例7: accept
# 需要导入模块: from spyderlib.qt.QtGui import QDialog [as 别名]
# 或者: from spyderlib.qt.QtGui.QDialog import accept [as 别名]
def accept(self):
QDialog.accept(self)
self.list.clear()