Implemented Qt4-dialogue box for input-file name.
This commit is contained in:
parent
fced74473f
commit
ea4cc6a1a3
@ -80,10 +80,14 @@ class MainWindow(QMainWindow):
|
||||
# check for default pylot.in-file
|
||||
infile = os.path.join(os.path.expanduser('~'), '.pylot', 'pylot.in')
|
||||
if os.path.isfile(infile)== False:
|
||||
infile = raw_input("Default file not found! Type name including full path ...")
|
||||
infile = QInputDialog.getText(self, "Default input file not found! \
|
||||
Enter file name including full path:",
|
||||
"infile")
|
||||
self.infile = infile[0]
|
||||
else:
|
||||
self.infile = infile
|
||||
|
||||
self._inputs = AutoPickParameter(infile)
|
||||
self._inputs = AutoPickParameter(self.infile)
|
||||
if settings.value("user/FullName", None) is None:
|
||||
fulluser = QInputDialog.getText(self, "Enter Name:", "Full name")
|
||||
settings.setValue("user/FullName", fulluser)
|
||||
|
Loading…
Reference in New Issue
Block a user