##// END OF EJS Templates
Bug fixed in RTI and Wind Profiler Plots, when data time exceeded the xmax, the new plot generated was overwriting the first one.
Bug fixed in RTI and Wind Profiler Plots, when data time exceeded the xmax, the new plot generated was overwriting the first one.

File last commit:

r376:4b52362a94e1
r509:7fe23f0913c9
Show More
initwindow.py
42 lines | 1.1 KiB | text/x-python | PythonLexer
# -*- coding: utf-8 -*-
"""
Module implementing InitWindow.
"""
from PyQt4.QtGui import QDialog
from PyQt4.QtCore import pyqtSignature
from PyQt4 import QtCore
from PyQt4 import QtGui
from viewer.ui_initwindow import Ui_InitWindow
class InitWindow(QDialog, Ui_InitWindow):
"""
Class documentation goes here.
"""
def __init__(self, parent = None):
"""
Constructor
"""
QDialog.__init__(self, parent)
self.setupUi(self)
self.setWindowTitle("ROJ-Signal Chain")
self.setWindowIcon(QtGui.QIcon("figure/adn.jpg"))
@pyqtSignature("")
def on_ExitBtn_clicked(self):
"""
Exit cierra la ventana de Bienvenida
"""
self.close()
@pyqtSignature("")
def on_ContinueBtn_clicked(self):
"""
Continue cierra la ventana de Bienvenida, a este evento se le complementa con la accion
conectar con la ventana de configuracion de Workspace
"""
# TODO: not implemented yet
#raise NotImplementedError
self.accept()