Last change
on this file since 200 was
163,
checked in by sc, 12 years ago
|
- Merge of code from repackaging by John Schutte <g.john.schutte@…>
|
-
Property svn:executable set to
*
|
File size:
599 bytes
|
Line | |
---|
1 | #!/usr/bin/env python |
---|
2 | # -*- coding: utf-8 -*- |
---|
3 | |
---|
4 | # Copyright Puzzlebox Productions, LLC (2010) |
---|
5 | # |
---|
6 | # This code is released under the GNU Pulic License (GPL) version 2 |
---|
7 | # For more information please refer to http://www.gnu.org/copyleft/gpl.html |
---|
8 | |
---|
9 | import Puzzlebox.Synapse.Interface as tgInterface |
---|
10 | import sys |
---|
11 | |
---|
12 | try: |
---|
13 | import PySide as PyQt4 |
---|
14 | from PySide import QtCore, QtGui |
---|
15 | except: |
---|
16 | print "Using PyQt4 module" |
---|
17 | from PyQt4 import QtCore, QtGui |
---|
18 | else: |
---|
19 | print "Using PySide module" |
---|
20 | |
---|
21 | DEBUG = 1 |
---|
22 | log = None |
---|
23 | app = QtGui.QApplication(sys.argv) |
---|
24 | window = tgInterface.QtUI(log, DEBUG) |
---|
25 | window.show() |
---|
26 | sys.exit(app.exec_()) |
---|
Note: See
TracBrowser
for help on using the repository browser.