##// END OF EJS Templates

File last commit:

r577:bea3bacb993a
r577:bea3bacb993a
Show More
testSignalChainGUI.py
28 lines | 717 B | text/x-python | PythonLexer
/ schainpy / gui / testSignalChainGUI.py
Miguel Valdez
r577
Alexander Valdez
Se habilitaron las vistas:...
r377 import sys
from PyQt4 import QtCore, QtGui
Alexander Valdez
VERSION1-GUI...
r208 from PyQt4.QtGui import QApplication
#from PyQt4.QtCore import pyqtSignature
Alexander Valdez
Last Change Test
r263
Alexander Valdez
Ultimo test de la Interfaz gráfica....
r368 from viewcontroller.initwindow import InitWindow
Alexander Valdez
new test con el modo basico
r288 from viewcontroller.basicwindow import BasicWindow
Alexander Valdez
Ultimo test de la Interfaz gráfica....
r368 from viewcontroller.workspace import Workspace
Alexander Valdez
VERSION1-GUI...
r208
def main():
import sys
Alexander Valdez
Se habilitaron las vistas:...
r377 app = QtGui.QApplication(sys.argv)
Alexander Valdez
Last Change Test
r263
Alexander Valdez
Ultimo test de la Interfaz gráfica....
r368 Welcome=InitWindow()
Alexander Valdez
Se habilitaron las vistas:...
r377 if not Welcome.exec_():
sys.exit(-1)
Alexander Valdez
Ultimo test de la Interfaz gráfica....
r368 WorkPathspace=Workspace()
Alexander Valdez
Se habilitaron las vistas:...
r377 if not WorkPathspace.exec_():
sys.exit(-1)
Alexander Valdez
Update
r385
Alexander Valdez
new test con el modo basico
r288 MainGUI=BasicWindow()
Alexander Valdez
Se habilitaron las vistas:...
r377 MainGUI.setWorkSpaceGUI(WorkPathspace.dirComBox.currentText())
MainGUI.show()
Alexander Valdez
VERSION1-GUI...
r208 sys.exit(app.exec_())
if __name__ == "__main__":
Alexander Valdez
Ultimo test de la Interfaz gráfica....
r368 main()