本文整理汇总了Python中skeinforge_tools.skeinforge_utilities.preferences.startMainLoopFromConstructor函数的典型用法代码示例。如果您正苦于以下问题:Python startMainLoopFromConstructor函数的具体用法?Python startMainLoopFromConstructor怎么用?Python startMainLoopFromConstructor使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了startMainLoopFromConstructor函数的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: main
def main():
"Display the file or directory dialog."
preferences.startMainLoopFromConstructor( getRepositoryConstructor() )
示例2: main
def main():
"Display the export dialog."
if len( sys.argv ) > 1:
writeOutput( ' '.join( sys.argv[ 1 : ] ) )
else:
preferences.startMainLoopFromConstructor( getRepositoryConstructor() )
示例3: main
def main():
"Display the statistics dialog."
if len( sys.argv ) > 1:
writeOutput( ' '.join( sys.argv[ 1 : ] ) )
else:
preferences.startMainLoopFromConstructor( getPreferencesConstructor() )
示例4: main
def main():
"Display the behold dialog."
if len( sys.argv ) > 1:
beholdFile( ' '.join( sys.argv[ 1 : ] ) )
else:
preferences.startMainLoopFromConstructor( getPreferencesConstructor() )
示例5: main
def main():
"Display the vectorwrite dialog."
if len( sys.argv ) > 1:
writeRegardless( ' '.join( sys.argv[ 1 : ] ) )
else:
preferences.startMainLoopFromConstructor( getRepositoryConstructor() )
示例6: main
def main():
"Display the profile dialog."
preferences.startMainLoopFromConstructor( getPreferencesConstructor() )
示例7: main
def main():
"Display the skeinview dialog."
if len( sys.argv ) > 1:
displayFile( ' '.join( sys.argv[ 1 : ] ) )
else:
preferences.startMainLoopFromConstructor( getRepositoryConstructor() )