##// END OF EJS Templates
customftp.py is not necessary because there is another package jroutils, it has FTP module to replace customftp.py
customftp.py is not necessary because there is another package jroutils, it has FTP module to replace customftp.py

File last commit:

r385:cd998dfc7f21
r493:ae1d10537a71
Show More
testSignalChainGUI.py
29 lines | 760 B | text/x-python | PythonLexer
/ schainpy / gui / testSignalChainGUI.py
#!/usr/bin/python
# -*- coding: utf-8 -*-'
import sys
from PyQt4 import QtCore, QtGui
from PyQt4.QtGui import QApplication
#from PyQt4.QtCore import pyqtSignature
from viewcontroller.initwindow import InitWindow
from viewcontroller.basicwindow import BasicWindow
from viewcontroller.workspace import Workspace
def main():
import sys
app = QtGui.QApplication(sys.argv)
Welcome=InitWindow()
if not Welcome.exec_():
sys.exit(-1)
WorkPathspace=Workspace()
if not WorkPathspace.exec_():
sys.exit(-1)
MainGUI=BasicWindow()
MainGUI.setWorkSpaceGUI(WorkPathspace.dirComBox.currentText())
MainGUI.show()
sys.exit(app.exec_())
if __name__ == "__main__":
main()