示例#1
0
文件: app.py 项目: Reimilia/Camellia
def _gui(app_file, paths, settings):
    reexec_with_pythonw(app_file)  # ensure pythonw for mac
    gui = import_pyWx()
    if paths:
        actionlist = paths[0]
    else:
        actionlist = ''
    gui.main(settings, actionlist)
示例#2
0
文件: app.py 项目: anish/phatch
def _gui(app_file, paths, settings):
    reexec_with_pythonw(app_file)  # ensure pythonw for mac
    gui = import_pyWx()
    if paths:
        actionlist = paths[0]
    else:
        actionlist = ''
    gui.main(settings, actionlist)
示例#3
0
文件: Medieer.py 项目: crebma/Medieer
def launch_gui(options):
    from core.tools import reexec_with_pythonw
    reexec_with_pythonw()
    from pyWx import gui
    gui.main(options, log=logging.getLogger('gui'))