##// END OF EJS Templates
data...
data -Corrections in Parameters class graphics -Bug fix in RTI Plot -Bug fix in Sky Map Plot -New plot added: Phase Plot -New plotting codes added for new graphics model -Bug fix in HDF5 Writing module -Added new operation and plot to calculate Channel Phase Offset in JASMET experiments scripts -New scripts for JASMET campaign

File last commit:

r583:e5ed8fbe1d1e
r608:3cc55c179318
Show More
initwindow.py
46 lines | 1.2 KiB | text/x-python | PythonLexer
Alexander Valdez
VERSION1-GUI...
r208 # -*- coding: utf-8 -*-
"""
Alexander Valdez
initwindow...
r258 Module implementing InitWindow.
Alexander Valdez
VERSION1-GUI...
r208 """
Miguel Valdez
Bug fixed in SchainGUI: figures were not been loaded
r583 import os
Alexander Valdez
initwindow...
r258
Alexander Valdez
initwindow.py...
r376 from PyQt4.QtGui import QDialog
Alexander Valdez
VERSION1-GUI...
r208 from PyQt4.QtCore import pyqtSignature
Alexander Valdez
-Adicion de nuevo Icono
r363 from PyQt4 import QtCore
from PyQt4 import QtGui
Alexander Valdez
initwindow...
r258
Miguel Valdez
r577 from schainpy.gui.viewer.ui_initwindow import Ui_InitWindow
Miguel Valdez
Bug fixed in SchainGUI: figures were not been loaded
r583 from schainpy.gui.figures import tools
FIGURES_PATH = tools.get_path()
Alexander Valdez
VERSION1-GUI...
r208
Alexander Valdez
initwindow.py...
r376 class InitWindow(QDialog, Ui_InitWindow):
Alexander Valdez
VERSION1-GUI...
r208 """
Class documentation goes here.
"""
def __init__(self, parent = None):
"""
Constructor
"""
Alexander Valdez
initwindow.py...
r376 QDialog.__init__(self, parent)
Alexander Valdez
initwindow...
r258 self.setupUi(self)
Alexander Valdez
-Adicion de nuevo Icono
r363 self.setWindowTitle("ROJ-Signal Chain")
Miguel Valdez
Bug fixed in SchainGUI: figures were not been loaded
r583 self.setWindowIcon(QtGui.QIcon( os.path.join(FIGURES_PATH,"adn.jpg") ))
Alexander Valdez
VERSION1-GUI...
r208
@pyqtSignature("")
Alexander Valdez
initwindow...
r258 def on_ExitBtn_clicked(self):
Alexander Valdez
VERSION1-GUI...
r208 """
Alexander Valdez
initwindow...
r258 Exit cierra la ventana de Bienvenida
Alexander Valdez
VERSION1-GUI...
r208 """
Alexander Valdez
initwindow...
r258 self.close()
Alexander Valdez
VERSION1-GUI...
r208 @pyqtSignature("")
Alexander Valdez
initwindow...
r258 def on_ContinueBtn_clicked(self):
Alexander Valdez
VERSION1-GUI...
r208 """
Alexander Valdez
initwindow...
r258 Continue cierra la ventana de Bienvenida, a este evento se le complementa con la accion
conectar con la ventana de configuracion de Workspace
Alexander Valdez
VERSION1-GUI...
r208 """
Alexander Valdez
initwindow...
r258 # TODO: not implemented yet
#raise NotImplementedError
Alexander Valdez
initwindow.py...
r376 self.accept()