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

File last commit:

r235:47f976225757
r262:4645eec0199f
Show More
testSignalChainGUI.py
26 lines | 688 B | text/x-python | PythonLexer
/ schainpy / gui / testSignalChainGUI.py
Alexander Valdez
VERSION1-GUI...
r208 #!/usr/bin/python
# -*- coding: utf-8 -*-
Alexander Valdez
NOTAS:...
r235 #from PyQt4 import QtCore, QtGuis
Alexander Valdez
VERSION1-GUI...
r208 from PyQt4.QtGui import QApplication
#from PyQt4.QtCore import pyqtSignature
#from Controller.workspace import Workspace
#from Controller.mainwindow import InitWindow
#from Controller.initwindow import InitWindow
#from Controller.window import window
from viewcontroller.mainwindow import MainWindow
Alexander Valdez
NOTAS:...
r235 #from viewcontroller.mainwindow2 import UnitProcess
Alexander Valdez
VERSION1-GUI...
r208
def main():
import sys
app = QApplication(sys.argv)
#wnd=InitWindow()
Alexander Valdez
NOTAS:...
r235 # wnd=UnitProcess()
Alexander Valdez
VERSION1-GUI...
r208 wnd=MainWindow()
#wnd=Workspace()
wnd.show()
sys.exit(app.exec_())
if __name__ == "__main__":
main()