本文整理汇总了Python中viewer.Viewer.onModuleLoad方法的典型用法代码示例。如果您正苦于以下问题:Python Viewer.onModuleLoad方法的具体用法?Python Viewer.onModuleLoad怎么用?Python Viewer.onModuleLoad使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类viewer.Viewer
的用法示例。
在下文中一共展示了Viewer.onModuleLoad方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: VerticalPanel
# 需要导入模块: from viewer import Viewer [as 别名]
# 或者: from viewer.Viewer import onModuleLoad [as 别名]
import pyjd # this is dummy in pyjs.
from pyjamas.ui.RootPanel import RootPanel
from pyjamas.ui.HTML import HTML
from pyjamas.ui.VerticalPanel import VerticalPanel
from pyjamas import Window
from editor import Editor
from viewer import Viewer
if __name__ == '__main__':
pyjd.setup("public/cbrow.html")
full_url = Window.getLocation().getHref()
db_url = '/'.join(full_url.split('/')[:4])+'/'
editor_panel = VerticalPanel()
editor = Editor(db_url, editor_panel)
viewer = Viewer(db_url, RootPanel(), editor.loadDocument)
sep = HTML('<hr style="height:10" />')
editor.onModuleLoad()
viewer.onModuleLoad()
RootPanel().add(sep)
RootPanel().add(editor_panel)
viewer.setView('_all_docs')
pyjd.run()