Exemplo n.º 1
0
Arquivo: taf.py Projeto: jpli/tafor
 def showEvent(self, event):
     # 检查必要配置是否完成
     if isConfigured('TAF'):
         self.setDate()
         self.changeMessageType()
     else:
         QTimer.singleShot(0, self.showConfigError)
Exemplo n.º 2
0
def test_is_configured():
    assert isConfigured('TAF')
    assert isConfigured('Trend')
    assert isConfigured('SIGMET')
Exemplo n.º 3
0
 def showEvent(self, event):
     if not isConfigured('Trend'):
         QTimer.singleShot(0, self.showConfigError)
Exemplo n.º 4
0
Arquivo: sigmet.py Projeto: jpli/tafor
 def showEvent(self, event):
     # 检查必要配置是否完成
     if isConfigured('SIGMET'):
         self.currentSegment.head.updateState()
     else:
         QTimer.singleShot(0, self.showConfigError)