本文整理汇总了Python中pyjamas.ui.Button.Button.setFocus方法的典型用法代码示例。如果您正苦于以下问题:Python Button.setFocus方法的具体用法?Python Button.setFocus怎么用?Python Button.setFocus使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyjamas.ui.Button.Button
的用法示例。
在下文中一共展示了Button.setFocus方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: reduceterm
# 需要导入模块: from pyjamas.ui.Button import Button [as 别名]
# 或者: from pyjamas.ui.Button.Button import setFocus [as 别名]
This function is used to make buttons for allowing more computation time,
step by step, in reduceterm().
"""
orders = 0
while prevmaxlines >= 10:
orders += 1
prevmaxlines /= 10
if prevmaxlines >= 3:
maxlines = 10
else:
maxlines = 3
for _ in range(orders):
maxlines *= 10
return maxlines
if __name__ == "__main__":
b = Button("Reduce", queuereduce)
RootPanel("buttons").add(b)
fileChooser = makeFileChooser()
RootPanel("file-chooser").add(fileChooser)
RootPanel("loading-notify").setVisible(False)
inputArea = TextArea(VisibleLines=5, CharacterWidth=80)
RootPanel("input").add(inputArea)
outputPanel = RootPanel("output")
loadFile("called from main")
showOutputMeta(BEGINMESSAGES, iswidgetlist=True)
b.setFocus(True)