1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
# -*- coding: utf-8 -*-
#
# AWL simulator - QT bindings wrapper
#
# Copyright 2015-2017 Michael Buesch <m@bues.ch>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
from __future__ import division, absolute_import, print_function, unicode_literals
from awlsim.common.compat import *
from awlsim.common import *
import sys
import os
def __frameworkError(msg):
printError("awlsim-gui ERROR: " + msg)
input("Press enter to exit.")
sys.exit(1)
def __testQStringAPI(scope, silent=False):
# Test for QString v2 API
if "QString" in scope:
# QString exists. This is v1 API.
if silent:
return False
__frameworkError("Deprecated QString API detected.\n"
"Awlsim does not support PyQt QString v1 API.\n"
"---> Please use PySide or a newer PyQt with v2 APIs. <---")
return True
def __autodetectGuiFramework():
urls = {
"pyside" : "http://www.pyside.org/",
"pyqt4" : "http://www.riverbankcomputing.com/software/pyqt/download",
"pyqt5" : "http://www.riverbankcomputing.com/software/pyqt/download5",
}
with contextlib.suppress(ImportError):
import PyQt5.QtCore as __pyQtCore
if __testQStringAPI(dir(__pyQtCore), True):
return "pyqt5"
with contextlib.suppress(ImportError):
import PySide.QtCore as __pySideCore
return "pyside4"
with contextlib.suppress(ImportError):
import PyQt4.QtCore as __pyQtCore
if __testQStringAPI(dir(__pyQtCore), True):
return "pyqt4"
__frameworkError("Neither PySide nor PyQt found.\n"
"PLEASE INSTALL PySide (%s)\n"
" or PyQt4 with v2 APIs (%s)\n"
" or PyQt5 with v2 APIs (%s)" %\
(urls["pyside"],
urls["pyqt4"],
urls["pyqt5"]))
# The Qt bindings can be set via AWLSIM_GUI environment variable.
__guiFramework = os.getenv("AWLSIM_GUI", "auto").lower()
# Run Qt autodetection
if __guiFramework == "auto":
__guiFramework = __autodetectGuiFramework()
if __guiFramework == "pyside":
__guiFramework = "pyside4"
if __guiFramework == "pyqt":
__guiFramework = "pyqt5"
# Load the Qt modules
if __guiFramework == "pyside4":
printInfo("awlsim-gui: Using PySide4 GUI framework")
try:
from PySide.QtCore import *
from PySide.QtGui import *
except ImportError as e:
__frameworkError("Failed to import PySide modules:\n" + str(e))
elif __guiFramework == "pyqt4":
printInfo("awlsim-gui: Using PyQt4 GUI framework")
try:
from PyQt4.QtCore import *
from PyQt4.QtGui import *
except ImportError as e:
__frameworkError("Failed to import PyQt4 modules:\n" + str(e))
__testQStringAPI(globals())
elif __guiFramework == "pyqt5":
printInfo("awlsim-gui: Using PyQt5 GUI framework")
try:
from PyQt5.QtCore import *
from PyQt5.QtGui import *
from PyQt5.QtWidgets import *
except ImportError as e:
__frameworkError("Failed to import PyQt5 modules:\n" + str(e))
__testQStringAPI(globals())
else:
__frameworkError("Unknown GUI framework '%s' requested. "
"Please fix AWLSIM_GUI environment variable." %\
__guiFramework)
# Helpers for distinction between Qt4 and Qt5 API.
isQt4 = (__guiFramework == "pyside4" or\
__guiFramework == "pyqt4")
isQt5 = (__guiFramework == "pyqt5")
# Helpers for distinction between PySide and PyQt API.
isPySide = __guiFramework.startswith("pyside")
isPyQt = __guiFramework.startswith("pyqt")
if isQt4:
# Compatibility
QGuiApplication = QApplication
if isPyQt:
# Compatibility
Signal = pyqtSignal
|