aboutsummaryrefslogtreecommitdiffstats
path: root/PySide/__init__.py.in
blob: 183df2d302c5560137858d691bc7e83736773dd3 (plain)
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
__all__ = ['QtCore', 'QtGui', 'QtNetwork', 'QtOpenGL', 'QtSql', 'QtSvg', 'QtTest', 'QtWebKit', 'QtScript']
__version__         = "@BINDING_API_VERSION_FULL@"
__version_info__    = (@BINDING_API_MAJOR_VERSION@, @BINDING_API_MINOR_VERSION@, @BINDING_API_MICRO_VERSION@, "@BINDING_API_RELEASE_LEVEL@", @BINDING_API_SERIAL@)


def _setupQtDirectories():
    import sys
    import os
    from . import _utils

    pysideDir = _utils.get_pyside_dir()

    # On Windows add the PySide\openssl folder (if it exists) to the
    # PATH so the SSL DLLs can be found when Qt tries to dynamically
    # load them.  Tell Qt to load them and then reset the PATH.
    if sys.platform == 'win32':
        opensslDir = os.path.join(pysideDir, 'openssl')
        if os.path.exists(opensslDir):
            path = os.environ['PATH']
            try:
                os.environ['PATH'] = opensslDir + os.pathsep + path
                try:
                    from . import QtNetwork
                except ImportError:
                    pass
                else:
                    QtNetwork.QSslSocket.supportsSsl()
            finally:
                os.environ['PATH'] = path

    # Tell Qt to look for plugins in the PySide package, if the
    # plugins folder exists there, instead of just the default of
    # looking only in Qt's install or build folder.
    try:
        from . import QtCore
    except ImportError:
        pass
    else:
        pluginsDir = os.path.join(pysideDir, 'plugins')
        if os.path.exists(pluginsDir) and \
               pluginsDir not in QtCore.QCoreApplication.libraryPaths():
            QtCore.QCoreApplication.addLibraryPath(pluginsDir)

    # Tell Qt to look for qml imports in the PySide package, if the
    # imports folder exists there.
    importsDir = os.path.join(pysideDir, 'imports')
    if os.path.exists(importsDir):
        if 'QML_IMPORT_PATH' in os.environ:
            qml_import_path = os.environ['QML_IMPORT_PATH']
            os.environ['QML_IMPORT_PATH'] = importsDir + os.pathsep + qml_import_path
        else:
            os.environ['QML_IMPORT_PATH'] = importsDir


_setupQtDirectories()