made some changes to make the code more idiomatic and renamed method convertPicks4PyLoT to updatePicks
This commit is contained in:
		
							parent
							
								
									2b42583999
								
							
						
					
					
						commit
						ff2b50f615
					
				
							
								
								
									
										26
									
								
								QtPyLoT.py
									
									
									
									
									
								
							
							
						
						
									
										26
									
								
								QtPyLoT.py
									
									
									
									
									
								
							@ -54,11 +54,9 @@ from pylot.core.util.thread import AutoPickThread
 | 
				
			|||||||
from pylot.core.util.version import get_git_version as _getVersionString
 | 
					from pylot.core.util.version import get_git_version as _getVersionString
 | 
				
			||||||
import icons_rc
 | 
					import icons_rc
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Version information
 | 
					 | 
				
			||||||
__version__ = _getVersionString()
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
class MainWindow(QMainWindow):
 | 
					class MainWindow(QMainWindow):
 | 
				
			||||||
 | 
					    __version__ = _getVersionString()
 | 
				
			||||||
    closing = Signal()
 | 
					    closing = Signal()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def __init__(self, parent=None):
 | 
					    def __init__(self, parent=None):
 | 
				
			||||||
@ -355,7 +353,7 @@ class MainWindow(QMainWindow):
 | 
				
			|||||||
                    fname = unicode(action.data().toString())
 | 
					                    fname = unicode(action.data().toString())
 | 
				
			||||||
        self.setFileName(fname)
 | 
					        self.setFileName(fname)
 | 
				
			||||||
        self.data += Data(self, evtdata=self.getFileName())
 | 
					        self.data += Data(self, evtdata=self.getFileName())
 | 
				
			||||||
        self.convertPicks4PyLoT()
 | 
					        self.updatePicks()
 | 
				
			||||||
        self.drawPicks()
 | 
					        self.drawPicks()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def getLastEvent(self):
 | 
					    def getLastEvent(self):
 | 
				
			||||||
@ -692,7 +690,7 @@ class MainWindow(QMainWindow):
 | 
				
			|||||||
                raise Exception('FATAL: Should never occur!')
 | 
					                raise Exception('FATAL: Should never occur!')
 | 
				
			||||||
        self.getPicks()[station] = stat_picks
 | 
					        self.getPicks()[station] = stat_picks
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def convertPicks4PyLoT(self):
 | 
					    def updatePicks(self):
 | 
				
			||||||
        evt = self.getData().getEvtData()
 | 
					        evt = self.getData().getEvtData()
 | 
				
			||||||
        picks = {}
 | 
					        picks = {}
 | 
				
			||||||
        onsets = {}
 | 
					        onsets = {}
 | 
				
			||||||
@ -809,20 +807,24 @@ def main():
 | 
				
			|||||||
    app_icon = QIcon()
 | 
					    app_icon = QIcon()
 | 
				
			||||||
    app_icon.addPixmap(QPixmap(':/icons/pylot.png'))
 | 
					    app_icon.addPixmap(QPixmap(':/icons/pylot.png'))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    # set Application Information
 | 
					 | 
				
			||||||
    pylot_app.setOrganizationName("Ruhr-University Bochum / MAGS2")
 | 
					 | 
				
			||||||
    pylot_app.setOrganizationDomain("rub.de")
 | 
					 | 
				
			||||||
    pylot_app.setApplicationName("PyLoT")
 | 
					 | 
				
			||||||
    pylot_app.setApplicationVersion(__version__)
 | 
					 | 
				
			||||||
    pylot_app.setWindowIcon(app_icon)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    # create the main window
 | 
					    # create the main window
 | 
				
			||||||
    pylot_form = MainWindow()
 | 
					    pylot_form = MainWindow()
 | 
				
			||||||
    splash.showMessage('Loading. Please wait ...')
 | 
					    splash.showMessage('Loading. Please wait ...')
 | 
				
			||||||
    pylot_app.processEvents()
 | 
					    pylot_app.processEvents()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    # set Application Information
 | 
				
			||||||
 | 
					    pylot_app.setOrganizationName("Ruhr-University Bochum / MAGS2")
 | 
				
			||||||
 | 
					    pylot_app.setOrganizationDomain("rub.de")
 | 
				
			||||||
 | 
					    pylot_app.processEvents()
 | 
				
			||||||
 | 
					    pylot_app.setApplicationName("PyLoT")
 | 
				
			||||||
 | 
					    pylot_app.setApplicationVersion(pylot_form.__version__)
 | 
				
			||||||
 | 
					    pylot_app.setWindowIcon(app_icon)
 | 
				
			||||||
 | 
					    pylot_app.processEvents()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    # Show main window and run the app
 | 
					    # Show main window and run the app
 | 
				
			||||||
    pylot_form.showMaximized()
 | 
					    pylot_form.showMaximized()
 | 
				
			||||||
 | 
					    pylot_app.processEvents()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    splash.finish(pylot_form)
 | 
					    splash.finish(pylot_form)
 | 
				
			||||||
    pylot_app.exec_()
 | 
					    pylot_app.exec_()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user