Changeset 310
- Timestamp:
- 12/06/11 04:14:07 (9 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Puzzlebox/Synapse/Interface_Design.py
r309 r310 3 3 # Form implementation generated from reading ui file 'interface/puzzlebox_synapse_interface_design.ui' 4 4 # 5 # Created: Mon Dec 5 01:28:4320115 # Created: Mon Dec 5 17:05:15 2011 6 6 # by: PyQt4 UI code generator 4.8.6 7 7 # -
trunk/scripts/update-interface-pyside.py
r307 r310 2 2 # -*- coding: utf-8 -*- 3 3 # 4 # Puzzlebox - Jigsaw- Script - Update Interface Pyside4 # Puzzlebox - Synapse - Script - Update Interface Pyside 5 5 # 6 6 # Copyright Puzzlebox Productions, LLC (2011) 7 7 8 8 __changelog__ = """\ 9 Last Update: 2011. 09.279 Last Update: 2011.12.05 10 10 """ 11 11 … … 16 16 ##################################################################### 17 17 18 DEFAULT_INPUT_FILE = 'Puzzlebox/ Jigsaw/Interface_Design.py'19 DEFAULT_OUTPUT_FILE = 'Puzzlebox/ Jigsaw/Interface_Design.py'18 DEFAULT_INPUT_FILE = 'Puzzlebox/Synapse/Interface_Design.py' 19 DEFAULT_OUTPUT_FILE = 'Puzzlebox/Synapse/Interface_Design.py' 20 20 21 21 REPLACE_STRINGS = { \ … … 26 26 if configuration.ENABLE_PYSIDE: 27 27 try: 28 import PySide as PyQt429 from PySide import QtCore, QtGui , QtNetwork, QtWebKit28 #import PySide as PyQt4 29 from PySide import QtCore, QtGui 30 30 except Exception, e: 31 31 print "ERROR: Excetion importing PySide:", … … 33 33 configuration.ENABLE_PYSIDE = False 34 34 else: 35 print "INFO: [ Jigsaw:Interface_Design] Using PySide module"35 print "INFO: [Synapse:Interface_Design] Using PySide module" 36 36 37 37 if not configuration.ENABLE_PYSIDE: 38 print "INFO: [ Jigsaw:Interface_Design] Using PyQt4 module"39 from PyQt4 import QtCore, QtGui , QtNetwork, QtWebKit38 print "INFO: [Synapse:Interface_Design] Using PyQt4 module" 39 from PyQt4 import QtCore, QtGui 40 40 41 #try:42 #from PySide import QtCore, QtGui, QtWebKit43 #except:44 #from PyQt4 import QtCore, QtGui, QtWebKit45 41 """, \ 46 42 -
trunk/setup.cfg
r276 r310 6 6 # icon = puzzlebox.ico 7 7 requires = python 8 PyQt48 python-pyside 9 9 python-simplejson 10 10 pybluez -
trunk/setup.py
r279 r310 8 8 # For more information please refer to http://www.gnu.org/copyleft/gpl.html 9 9 # 10 # Last Update: 2011. 08.1510 # Last Update: 2011.12.05 11 11 # 12 12 ##################################################################### … … 38 38 "includes": [ \ 39 39 #"sip", #"PyQt4._qt", \ 40 "PySide", \ 40 41 "numpy", "pylab", \ 41 42 "matplotlib", \ … … 96 97 setup( 97 98 name='puzzlebox_synapse', 98 version='0.5. 0',99 version='0.5.1', 99 100 description='Puzzlebox Synapse provides a GUI and socket-server interface to commercially available EEG headsets', 100 101 author='Steve Castellotti',
Note: See TracChangeset
for help on using the changeset viewer.