##// END OF EJS Templates
update ui_workspace
update ui_workspace

File last commit:

r258:7a2b31d6bd54
r262:4645eec0199f
Show More
initwindow.py
40 lines | 1.0 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 """
Alexander Valdez
initwindow...
r258
Alexander Valdez
VERSION1-GUI...
r208 from PyQt4.QtGui import QMainWindow
from PyQt4.QtCore import pyqtSignature
Alexander Valdez
initwindow...
r258
from viewer.ui_initwindow import Ui_InitWindow
Alexander Valdez
VERSION1-GUI...
r208
class InitWindow(QMainWindow, Ui_InitWindow):
"""
Class documentation goes here.
"""
def __init__(self, parent = None):
"""
Constructor
"""
QMainWindow.__init__(self, parent)
Alexander Valdez
initwindow...
r258 self.setupUi(self)
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 # TODO: not implemented yet
#raise NotImplementedError
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
self.close()