new method okToContinue written in order to prevent accidental dataloss
This commit is contained in:
parent
dc43a3520d
commit
ec1cc26b8c
12
QtPyLoT.py
12
QtPyLoT.py
@ -220,9 +220,14 @@ class MainWindow(QMainWindow):
|
|||||||
# maingrid = QGridLayout()
|
# maingrid = QGridLayout()
|
||||||
# maingrid.setSpacing(10)
|
# maingrid.setSpacing(10)
|
||||||
# maingrid.addLayout(statLayout, 0, 0)
|
# maingrid.addLayout(statLayout, 0, 0)
|
||||||
# maingrid.addWidget(dataLayout, 1, 0)
|
# maingrid.addWidget(self.getDataWidget(), 0, 1)
|
||||||
# self.setLayout(maingrid)
|
# self.setLayout(maingrid)
|
||||||
|
|
||||||
|
def okToContinue(self):
|
||||||
|
if self.dirty:
|
||||||
|
return self.saveData()
|
||||||
|
return True
|
||||||
|
|
||||||
def plotData(self):
|
def plotData(self):
|
||||||
pass #self.data.plotData(self.DataPlot)
|
pass #self.data.plotData(self.DataPlot)
|
||||||
|
|
||||||
@ -273,9 +278,8 @@ class MainWindow(QMainWindow):
|
|||||||
def printEvent(self):
|
def printEvent(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def cleanUp(self):
|
def closeEvent(self):
|
||||||
self
|
return self.saveData()
|
||||||
return 0
|
|
||||||
|
|
||||||
def helpHelp(self):
|
def helpHelp(self):
|
||||||
if checkurl():
|
if checkurl():
|
||||||
|
Loading…
Reference in New Issue
Block a user