##// END OF EJS Templates
Cambios en la clase RTIPlot para optimizar el uso de la memoria RAM....
Cambios en la clase RTIPlot para optimizar el uso de la memoria RAM. Se agrega una version EWDrifts para procesamiento de datos de radar

File last commit:

r235:47f976225757
r254:e9870cb49b1c
Show More
unitprocess.py
58 lines | 1.4 KiB | text/x-python | PythonLexer
Alexander Valdez
NOTAS:...
r235 # -*- coding: utf-8 -*-
"""
Module implementing MainWindow.
"""
from PyQt4.QtGui import QMainWindow
from PyQt4.QtCore import pyqtSignature
from viewer.ui_unitprocess import Ui_UnitProcess
class UnitProcess(QMainWindow, Ui_UnitProcess):
"""
Class documentation goes here.
"""
def __init__(self, parent = None):
"""
Constructor
"""
QMainWindow.__init__(self, parent)
self.setupUi(self)
@pyqtSignature("QString")
def on_comboInputBox_activated(self, p0):
"""
Slot documentation goes here.
"""
# TODO: not implemented yet
raise NotImplementedError
@pyqtSignature("QString")
def on_comboTypeBox_activated(self, p0):
"""
Slot documentation goes here.
"""
# TODO: not implemented yet
raise NotImplementedError
@pyqtSignature("")
def on_unitPokbut_clicked(self):
"""
Slot documentation goes here.
"""
# TODO: not implemented yet
#raise NotImplementedError
print "this is suspiscious"
print "njdasjdajj"
@pyqtSignature("")
def on_unitPcancelbut_clicked(self):
"""
Slot documentation goes here.
"""
# TODO: not implemented yet
raise NotImplementedError