コード例 #1
0
ファイル: taf.py プロジェクト: jpli/tafor
 def showEvent(self, event):
     # 检查必要配置是否完成
     if isConfigured('TAF'):
         self.setDate()
         self.changeMessageType()
     else:
         QTimer.singleShot(0, self.showConfigError)
コード例 #2
0
ファイル: test_settingdialog.py プロジェクト: ajelcode/tafor
def test_is_configured():
    assert isConfigured('TAF')
    assert isConfigured('Trend')
    assert isConfigured('SIGMET')
コード例 #3
0
 def showEvent(self, event):
     if not isConfigured('Trend'):
         QTimer.singleShot(0, self.showConfigError)
コード例 #4
0
ファイル: sigmet.py プロジェクト: jpli/tafor
 def showEvent(self, event):
     # 检查必要配置是否完成
     if isConfigured('SIGMET'):
         self.currentSegment.head.updateState()
     else:
         QTimer.singleShot(0, self.showConfigError)