##// END OF EJS Templates
Adicion de la clase ProfilePlot, CoherencePLot en el modulo jroplot.py...
Adicion de la clase ProfilePlot, CoherencePLot en el modulo jroplot.py Adicion de los metodos para graficos multilinea en figure.py y en mpldriver.py Se agrega el colormap como parametro para el metodo addpcolor en mpldriver.py Se hacen ajustes en los xticks cuando la diferencia entre xmax y xmin es menor igual a uno.

File last commit:

r208:f0e2ebb4337f
r229:22aec8924dc0
Show More
initwindow.py
47 lines | 1.0 KiB | text/x-python | PythonLexer
# -*- coding: utf-8 -*-
"""
Module implementing Pantalla.
"""
from PyQt4.QtGui import QMainWindow
from PyQt4.QtCore import pyqtSignature
from workspace import Workspace
#from mainwindow import Workspace
from GUI.ui_initwindow import Ui_InitWindow
class InitWindow(QMainWindow, Ui_InitWindow):
"""
Class documentation goes here.
"""
def __init__(self, parent = None):
"""
Constructor
"""
QMainWindow.__init__(self, parent)
@pyqtSignature("")
def on_pushButton_2_clicked(self):
"""
Close First Window
"""
self.close()
@pyqtSignature("")
def on_pushButton_clicked(self):
"""
Show Workspace Window
"""
self.showmeconfig()
def showmeconfig(self):
'''
Method to call Workspace
'''
self.config=Workspace()
self.config.closed.connect(self.show)
self.config.show()
self.hide()