##// END OF EJS Templates
NOTAS:...
NOTAS: mainwindow: Ahora incluye a las clases unitprocess,window modelProperties: Se aumento la clase modelProperties y solo se llama ahora al modelo y al método necesario desde la clase mainwindow. controller: Se trabaja con el controller actualizado y se le añadio un atributo llamado arbol. ui_mainwindow: Se modificaron algunas opciones del GUI ,botones,checkbox,textlabel ui_unitprocess: Se agrego la clase ui_unitprocess para agregar unidades de procesamiento ui_window: Se modifico la ventana ui_window

File last commit:

r235:47f976225757
r235:47f976225757
Show More
unitprocess.py
58 lines | 1.4 KiB | text/x-python | PythonLexer
# -*- 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