Home | History | Annotate | Download | only in JetCreator

Lines Matching refs:dlg

261         dlg = wx.FileDialog(None, self.title, defDir, '', self.spec, wx.FD_OPEN)

262 ret = dlg.ShowModal()
264 IniSetValue(JetDefs.JETCREATOR_INI, JetDefs.INI_DEFAULTDIRS, self.spec, str(FileJustPath(dlg.GetPath())))
265 val = dlg.GetPath()
272 dlg.Destroy()
328 dlg = wx.FileDialog(None, self.title, defDir, '', self.spec, wx.FD_OPEN)
329 ret = dlg.ShowModal()
331 IniSetValue(JetDefs.JETCREATOR_INI, JetDefs.INI_DEFAULTDIRS, self.spec, str(FileJustPath(dlg.GetPath())))
332 val = dlg.GetPath()
334 dlg.Destroy()
364 dlg = wx.MessageDialog(None, question, title, wx.YES_NO | wx.ICON_QUESTION)
365 if dlg.ShowModal() == wx.ID_YES:
369 dlg.Destroy()
374 dlg = wx.MessageDialog(None, question, title, wx.YES_NO | wx.CANCEL | wx.ICON_QUESTION)
375 result = dlg.ShowModal()
376 dlg.Destroy()
381 dlg = wx.MessageDialog(None, message, title, wx.ICON_ERROR)
382 dlg.ShowModal()
383 dlg.Destroy()
387 dlg = wx.MessageDialog(None, message, title, wx.ICON_INFORMATION)
388 dlg.ShowModal()
389 dlg.Destroy()