-
Notifications
You must be signed in to change notification settings - Fork 1
/
qtcompat.py
59 lines (53 loc) · 1.95 KB
/
qtcompat.py
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
##
## This file is part of the sigrok-meter project.
##
## Copyright (C) 2014 Jens Steinhauser <[email protected]>
##
## 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, see <http://www.gnu.org/licenses/>.
##
import sys
def load_modules(force_pyside):
if force_pyside:
import PySide.QtCore as _QtCore
import PySide.QtGui as _QtGui
else:
try:
# Use version 2 API in all cases, because that's what PySide uses.
import sip
sip.setapi('QVariant', 2)
sip.setapi('QDate', 2)
sip.setapi('QDateTime', 2)
sip.setapi('QString', 2)
sip.setapi('QTextStream', 2)
sip.setapi('QTime', 2)
sip.setapi('QUrl', 2)
sip.setapi('QVariant', 2)
import PyQt4.QtCore as _QtCore
import PyQt4.QtGui as _QtGui
# Add PySide compatible names.
_QtCore.Signal = _QtCore.pyqtSignal
_QtCore.Slot = _QtCore.pyqtSlot
except:
sys.stderr.write('Import of PyQt4 failed, using PySide,\n')
import PySide.QtCore as _QtCore
import PySide.QtGui as _QtGui
global QtCore
global QtGui
QtCore = _QtCore
QtGui = _QtGui
import pyqtgraph as _pyqtgraph
import pyqtgraph.dockarea as _pyqtgraph_dockarea
global pyqtgraph
pyqtgraph = _pyqtgraph
pyqtgraph.dockarea = _pyqtgraph_dockarea