当前位置: 首页>>代码示例>>Python>>正文


Python Port.importFitsThreaded方法代码示例

本文整理汇总了Python中service.port.Port.importFitsThreaded方法的典型用法代码示例。如果您正苦于以下问题:Python Port.importFitsThreaded方法的具体用法?Python Port.importFitsThreaded怎么用?Python Port.importFitsThreaded使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在service.port.Port的用法示例。


在下文中一共展示了Port.importFitsThreaded方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: fileImportDialog

# 需要导入模块: from service.port import Port [as 别名]
# 或者: from service.port.Port import importFitsThreaded [as 别名]
 def fileImportDialog(self, event):
     """Handles importing single/multiple EVE XML / EFT cfg fit files"""
     dlg = wx.FileDialog(
         self,
         "Open One Or More Fitting Files",
         wildcard=("EVE XML fitting files (*.xml)|*.xml|"
                   "EFT text fitting files (*.cfg)|*.cfg|"
                   "All Files (*)|*"),
         style=wx.FD_OPEN | wx.FD_FILE_MUST_EXIST | wx.FD_MULTIPLE
     )
     if dlg.ShowModal() == wx.ID_OK:
         self.progressDialog = wx.ProgressDialog(
             "Importing fits",
             " " * 100,  # set some arbitrary spacing to create width in window
             parent=self,
             style=wx.PD_CAN_ABORT | wx.PD_SMOOTH | wx.PD_ELAPSED_TIME | wx.PD_APP_MODAL
         )
         # self.progressDialog.message = None
         Port.importFitsThreaded(dlg.GetPaths(), self)
         self.progressDialog.ShowModal()
         try:
             dlg.Destroy()
         except RuntimeError:
             pyfalog.error("Tried to destroy an object that doesn't exist in <fileImportDialog>.")
开发者ID:petosorus,项目名称:Pyfa,代码行数:26,代码来源:mainFrame.py


注:本文中的service.port.Port.importFitsThreaded方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。