本文整理汇总了Python中spyderlib.widgets.externalshell.baseshell.ExternalShellBase.set_buttons_runnning_state方法的典型用法代码示例。如果您正苦于以下问题:Python ExternalShellBase.set_buttons_runnning_state方法的具体用法?Python ExternalShellBase.set_buttons_runnning_state怎么用?Python ExternalShellBase.set_buttons_runnning_state使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类spyderlib.widgets.externalshell.baseshell.ExternalShellBase
的用法示例。
在下文中一共展示了ExternalShellBase.set_buttons_runnning_state方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: set_buttons_runnning_state
# 需要导入模块: from spyderlib.widgets.externalshell.baseshell import ExternalShellBase [as 别名]
# 或者: from spyderlib.widgets.externalshell.baseshell.ExternalShellBase import set_buttons_runnning_state [as 别名]
def set_buttons_runnning_state(self, state):
ExternalShellBase.set_buttons_runnning_state(self, state)
self.interact_action.setEnabled(not state and not self.is_interpreter)
self.debug_action.setEnabled(not state and not self.is_interpreter)
self.args_action.setEnabled(not state and not self.is_interpreter)
if state:
if self.arguments:
argstr = _("Arguments: %s") % self.arguments
else:
argstr = _("No argument")
else:
argstr = _("Arguments...")
self.args_action.setText(argstr)
self.terminate_button.setVisible(not self.is_interpreter and state)
if not state:
self.toggle_globals_explorer(False)
for btn in (self.cwd_button, self.env_button, self.syspath_button):
btn.setEnabled(state and self.monitor_enabled)
if self.namespacebrowser_button is not None:
self.namespacebrowser_button.setEnabled(state)