Home | History | Annotate | Download | only in JetCreator

Lines Matching full:dialog

409         """ Calls the dialog box for adding a segment """

456 """ Calls the dialog box for updating a segment """
631 """ Calls a dialog box to add an event to the current segment """
686 """ Calls the dialog box to update the current event """
843 """ Calls a dialog box to get a jet config file to open """
863 """ Calls a dialog box to allow saving the current jet file as another name """
865 dialog = wx.FileDialog(None, JetDefs.SAVE_PROMPT, defDir, "", JetDefs.JTC_FILE_SPEC, wx.SAVE | wx.OVERWRITE_PROMPT )
866 if dialog.ShowModal() == wx.ID_OK:
867 IniSetValue(JetDefs.JETCREATOR_INI, JetDefs.INI_DEFAULTDIRS, JetDefs.JTC_FILE_SPEC, str(FileJustPath(dialog.GetPath())))
868 self.currentJetConfigFile = FileJustRoot(dialog.GetPath()) + ".jtc"
873 dialog.Destroy()
991 """ Loads the about dialog box """
999 dialog = wx.FileDialog(None, JetDefs.IMPORT_ARCHIVE_PROMPT, defDir, "", JetDefs.ARCHIVE_FILE_SPEC, wx.OPEN)
1000 if dialog.ShowModal() == wx.ID_OK:
1001 IniSetValue(JetDefs.JETCREATOR_INI, JetDefs.INI_DEFAULTDIRS, JetDefs.ARCHIVE_FILE_SPEC, str(FileJustPath(dialog.GetPath())))
1006 if YesNo(JetDefs.MAIN_IMPORTTITLE, JetDefs.MAIN_IMPORTMSG % (dialog.GetPath(),dlg1.GetPath()), False):
1008 zipFile = dialog.GetPath()
1063 dialog.Destroy()
1069 dialog = wx.FileDialog(None, JetDefs.EXPORT_ARCHIVE_PROMPT, defDir, "", JetDefs.ARCHIVE_FILE_SPEC, wx.SAVE | wx.OVERWRITE_PROMPT )
1070 if dialog.ShowModal() == wx.ID_OK:
1071 IniSetValue(JetDefs.JETCREATOR_INI, JetDefs.INI_DEFAULTDIRS, JetDefs.ARCHIVE_FILE_SPEC, str(FileJustPath(dialog.GetPath())))
1072 ExportJetArchive(FileJustRoot(dialog.GetPath()) + ".zip", self.currentJetConfigFile, self.jet_file)
1073 dialog.Destroy()
1131 """ Opens a dialog box for jetfile properties """
1147 """ Opens a dialog box to capture preferences and saves them to a configuration file """
1396 """ Sets the logging level, then calls the open dialog box before initializing main window"""