You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pytde/examples/pytde-sampler/runner.py

62 lines
1.6 KiB

#!/usr/bin/env python
"""
"""
import sys
from PyTQt.tqt import TQVBoxLayout
from tdecore import TDEApplication, TDECmdLineArgs, TDEAboutData
from tdeui import TDEMainWindow
class SamplerRunnerWindow(TDEMainWindow):
def __init__(self, ctor):
TDEMainWindow.__init__(self)
layout = TQVBoxLayout(self)
layout.setAutoAdd(True)
self.widget = ctor(self)
def importItem(name):
""" importItem(name) -> import an item from a module by dotted name
"""
def importName(name):
""" importName(name) -> import and return a module by name in dotted form
Copied from the Python lib docs.
"""
mod = __import__(name)
for comp in name.split('.')[1:]:
mod = getattr(mod, comp)
return mod
names = name.split('.')
modname, itemname = names[0:-1], names[-1]
print(str.join('.', modname))
mod = importName(str.join('.', modname))
return getattr(mod, itemname)
if __name__ == '__main__':
description = b"A runner application"
version = b"1.0"
aboutData = TDEAboutData (b"", b"",\
version, description, TDEAboutData.License_GPL,\
b"(C) 2003 whoever the author is")
options = [(b'+item', b'An item in the sys.path')]
TDECmdLineArgs.init(sys.argv, aboutData)
TDECmdLineArgs.addCmdLineOptions(options)
args = TDECmdLineArgs.parsedArgs()
if not args.count():
args.usage()
else:
pathitem = args.arg(0)
widget = importItem(pathitem)
app = TDEApplication()
mainWindow = SamplerRunnerWindow(widget)
mainWindow.show()
app.exec_loop()