├── .gitignore ├── README.md ├── darwin_2012 ├── PyQt4 │ ├── Qt.so │ ├── QtCore.so │ ├── QtDesigner.so │ ├── QtGui.so │ ├── QtHelp.so │ ├── QtMultimedia.so │ ├── QtNetwork.so │ ├── QtOpenGL.so │ ├── QtSql.so │ ├── QtSvg.so │ ├── QtTest.so │ ├── QtXml.so │ ├── QtXmlPatterns.so │ ├── __init__.py │ ├── pyqtconfig.py │ └── uic │ │ ├── Compiler │ │ ├── __init__.py │ │ ├── compiler.py │ │ ├── indenter.py │ │ ├── misc.py │ │ ├── proxy_type.py │ │ ├── qobjectcreator.py │ │ └── qtproxies.py │ │ ├── Loader │ │ ├── __init__.py │ │ ├── loader.py │ │ └── qobjectcreator.py │ │ ├── __init__.py │ │ ├── driver.py │ │ ├── exceptions.py │ │ ├── icon_cache.py │ │ ├── objcreator.py │ │ ├── port_v2 │ │ ├── __init__.py │ │ ├── as_string.py │ │ ├── ascii_upper.py │ │ ├── invoke.py │ │ ├── load_plugin.py │ │ ├── proxy_base.py │ │ └── string_io.py │ │ ├── port_v3 │ │ ├── __init__.py │ │ ├── as_string.py │ │ ├── ascii_upper.py │ │ ├── invoke.py │ │ ├── load_plugin.py │ │ ├── proxy_base.py │ │ └── string_io.py │ │ ├── properties.py │ │ ├── pyuic.py │ │ ├── uiparser.py │ │ └── widget-plugins │ │ ├── phonon.py │ │ ├── qaxcontainer.py │ │ ├── qscintilla.py │ │ ├── qtdeclarative.py │ │ └── qtwebkit.py └── sip.so ├── darwin_2013 ├── PyQt4 │ ├── Qt.so │ ├── QtCore.so │ ├── QtDesigner.so │ ├── QtGui.so │ ├── QtHelp.so │ ├── QtMultimedia.so │ ├── QtNetwork.so │ ├── QtOpenGL.so │ ├── QtSql.so │ ├── QtSvg.so │ ├── QtTest.so │ ├── QtXml.so │ ├── QtXmlPatterns.so │ ├── __init__.py │ ├── pyqtconfig.py │ └── uic │ │ ├── Compiler │ │ ├── __init__.py │ │ ├── compiler.py │ │ ├── indenter.py │ │ ├── misc.py │ │ ├── proxy_type.py │ │ ├── qobjectcreator.py │ │ └── qtproxies.py │ │ ├── Loader │ │ ├── __init__.py │ │ ├── loader.py │ │ └── qobjectcreator.py │ │ ├── __init__.py │ │ ├── driver.py │ │ ├── exceptions.py │ │ ├── icon_cache.py │ │ ├── objcreator.py │ │ ├── port_v2 │ │ ├── __init__.py │ │ ├── as_string.py │ │ ├── ascii_upper.py │ │ ├── invoke.py │ │ ├── load_plugin.py │ │ ├── proxy_base.py │ │ └── string_io.py │ │ ├── port_v3 │ │ ├── __init__.py │ │ ├── as_string.py │ │ ├── ascii_upper.py │ │ ├── invoke.py │ │ ├── load_plugin.py │ │ ├── proxy_base.py │ │ └── string_io.py │ │ ├── properties.py │ │ ├── pyuic.py │ │ ├── uiparser.py │ │ └── widget-plugins │ │ ├── phonon.py │ │ ├── qaxcontainer.py │ │ ├── qscintilla.py │ │ ├── qtdeclarative.py │ │ └── qtwebkit.py └── sip.so ├── darwin_2014 ├── PyQt4 │ ├── Qt.so │ ├── QtCore.so │ ├── QtDeclarative.so │ ├── QtDesigner.so │ ├── QtGui.so │ ├── QtHelp.so │ ├── QtMultimedia.so │ ├── QtNetwork.so │ ├── QtOpenGL.so │ ├── QtScript.so │ ├── QtScriptTools.so │ ├── QtSql.so │ ├── QtSvg.so │ ├── QtWebKit.so │ ├── QtXml.so │ ├── QtXmlPatterns.so │ ├── __init__.py │ ├── _qt.so │ ├── phonon.so │ └── uic │ │ ├── Compiler │ │ ├── __init__.py │ │ ├── compiler.py │ │ ├── indenter.py │ │ ├── misc.py │ │ ├── proxy_metaclass.py │ │ ├── qobjectcreator.py │ │ └── qtproxies.py │ │ ├── Loader │ │ ├── __init__.py │ │ ├── loader.py │ │ └── qobjectcreator.py │ │ ├── __init__.py │ │ ├── driver.py │ │ ├── exceptions.py │ │ ├── icon_cache.py │ │ ├── objcreator.py │ │ ├── port_v2 │ │ ├── __init__.py │ │ ├── as_string.py │ │ ├── ascii_upper.py │ │ ├── invoke.py │ │ ├── load_plugin.py │ │ ├── proxy_base.py │ │ └── string_io.py │ │ ├── port_v3 │ │ ├── __init__.py │ │ ├── as_string.py │ │ ├── ascii_upper.py │ │ ├── invoke.py │ │ ├── load_plugin.py │ │ ├── proxy_base.py │ │ └── string_io.py │ │ ├── properties.py │ │ ├── pyuic.py │ │ ├── uiparser.py │ │ └── widget-plugins │ │ ├── phonon.py │ │ ├── qaxcontainer.py │ │ ├── qscintilla.py │ │ ├── qtdeclarative.py │ │ └── qtwebkit.py └── sip.so ├── darwin_2015 ├── PyQt4 │ ├── Qt.so │ ├── QtCore.so │ ├── QtDeclarative.so │ ├── QtGui.so │ ├── QtHelp.so │ ├── QtMultimedia.so │ ├── QtNetwork.so │ ├── QtOpenGL.so │ ├── QtScript.so │ ├── QtScriptTools.so │ ├── QtSql.so │ ├── QtSvg.so │ ├── QtWebKit.so │ ├── QtXml.so │ ├── QtXmlPatterns.so │ ├── __init__.py │ ├── _qt.so │ ├── phonon.so │ ├── pyqtconfig.py │ └── uic │ │ ├── Compiler │ │ ├── __init__.py │ │ ├── compiler.py │ │ ├── indenter.py │ │ ├── misc.py │ │ ├── proxy_metaclass.py │ │ ├── qobjectcreator.py │ │ └── qtproxies.py │ │ ├── Loader │ │ ├── __init__.py │ │ ├── loader.py │ │ └── qobjectcreator.py │ │ ├── __init__.py │ │ ├── driver.py │ │ ├── exceptions.py │ │ ├── icon_cache.py │ │ ├── objcreator.py │ │ ├── port_v2 │ │ ├── __init__.py │ │ ├── as_string.py │ │ ├── ascii_upper.py │ │ ├── invoke.py │ │ ├── load_plugin.py │ │ ├── proxy_base.py │ │ └── string_io.py │ │ ├── port_v3 │ │ ├── __init__.py │ │ ├── as_string.py │ │ ├── ascii_upper.py │ │ ├── invoke.py │ │ ├── load_plugin.py │ │ ├── proxy_base.py │ │ └── string_io.py │ │ ├── properties.py │ │ ├── pyuic.py │ │ ├── uiparser.py │ │ └── widget-plugins │ │ ├── phonon.py │ │ ├── qaxcontainer.py │ │ ├── qscintilla.py │ │ ├── qtdeclarative.py │ │ └── qtwebkit.py └── sip.so ├── darwin_2016 └── sip.so ├── setup.py ├── userSetup.mel ├── userSetup.py ├── win32_2012 ├── PyQt4 │ ├── QAxContainer.pyd │ ├── Qsci.pyd │ ├── Qt.pyd │ ├── QtCore.pyd │ ├── QtDeclarative.pyd │ ├── QtDesigner.pyd │ ├── QtGui.pyd │ ├── QtHelp.pyd │ ├── QtMultimedia.pyd │ ├── QtNetwork.pyd │ ├── QtOpenGL.pyd │ ├── QtScript.pyd │ ├── QtScriptTools.pyd │ ├── QtSql.pyd │ ├── QtSvg.pyd │ ├── QtTest.pyd │ ├── QtWebKit.pyd │ ├── QtXml.pyd │ ├── QtXmlPatterns.pyd │ ├── __init__.py │ ├── phonon.pyd │ └── uic │ │ ├── Compiler │ │ ├── __init__.py │ │ ├── compiler.py │ │ ├── indenter.py │ │ ├── misc.py │ │ ├── proxy_metaclass.py │ │ ├── proxy_type.py │ │ ├── qobjectcreator.py │ │ └── qtproxies.py │ │ ├── Loader │ │ ├── __init__.py │ │ ├── loader.py │ │ └── qobjectcreator.py │ │ ├── __init__.py │ │ ├── driver.py │ │ ├── exceptions.py │ │ ├── icon_cache.py │ │ ├── objcreator.py │ │ ├── port_v2 │ │ ├── __init__.py │ │ ├── as_string.py │ │ ├── ascii_upper.py │ │ ├── invoke.py │ │ ├── load_plugin.py │ │ ├── proxy_base.py │ │ └── string_io.py │ │ ├── port_v3 │ │ ├── __init__.py │ │ ├── as_string.py │ │ ├── ascii_upper.py │ │ ├── invoke.py │ │ ├── load_plugin.py │ │ ├── proxy_base.py │ │ └── string_io.py │ │ ├── properties.py │ │ ├── pyuic.py │ │ ├── uiparser.py │ │ └── widget-plugins │ │ ├── phonon.py │ │ ├── qaxcontainer.py │ │ ├── qscintilla.py │ │ ├── qtdeclarative.py │ │ └── qtwebkit.py └── sip.pyd ├── win32_2013 ├── PyQt4 │ ├── QAxContainer.pyd │ ├── Qt.pyd │ ├── QtCore.pyd │ ├── QtDeclarative.pyd │ ├── QtDesigner.pyd │ ├── QtGui.pyd │ ├── QtHelp.pyd │ ├── QtMultimedia.pyd │ ├── QtNetwork.pyd │ ├── QtOpenGL.pyd │ ├── QtScript.pyd │ ├── QtScriptTools.pyd │ ├── QtSql.pyd │ ├── QtSvg.pyd │ ├── QtTest.pyd │ ├── QtWebKit.pyd │ ├── QtXml.pyd │ ├── QtXmlPatterns.pyd │ ├── __init__.py │ ├── phonon.pyd │ ├── readme.txt │ └── uic │ │ ├── Compiler │ │ ├── __init__.py │ │ ├── compiler.py │ │ ├── indenter.py │ │ ├── misc.py │ │ ├── proxy_metaclass.py │ │ ├── qobjectcreator.py │ │ └── qtproxies.py │ │ ├── Loader │ │ ├── __init__.py │ │ ├── loader.py │ │ └── qobjectcreator.py │ │ ├── __init__.py │ │ ├── driver.py │ │ ├── exceptions.py │ │ ├── icon_cache.py │ │ ├── objcreator.py │ │ ├── port_v2 │ │ ├── __init__.py │ │ ├── as_string.py │ │ ├── ascii_upper.py │ │ ├── invoke.py │ │ ├── load_plugin.py │ │ ├── proxy_base.py │ │ └── string_io.py │ │ ├── port_v3 │ │ ├── __init__.py │ │ ├── as_string.py │ │ ├── ascii_upper.py │ │ ├── invoke.py │ │ ├── load_plugin.py │ │ ├── proxy_base.py │ │ └── string_io.py │ │ ├── properties.py │ │ ├── pyuic.py │ │ ├── uiparser.py │ │ └── widget-plugins │ │ ├── phonon.py │ │ ├── qaxcontainer.py │ │ ├── qscintilla.py │ │ ├── qtdeclarative.py │ │ └── qtwebkit.py └── sip.pyd ├── win32_2014 ├── PyQt4 │ ├── Qt.pyd │ ├── QtCore.pyd │ ├── QtDeclarative.pyd │ ├── QtDesigner.pyd │ ├── QtGui.pyd │ ├── QtHelp.pyd │ ├── QtMultimedia.pyd │ ├── QtNetwork.pyd │ ├── QtOpenGL.pyd │ ├── QtScript.pyd │ ├── QtScriptTools.pyd │ ├── QtSql.pyd │ ├── QtSvg.pyd │ ├── QtTest.pyd │ ├── QtWebKit.pyd │ ├── QtXml.pyd │ ├── QtXmlPatterns.pyd │ ├── __init__.py │ ├── phonon.pyd │ └── uic │ │ ├── Compiler │ │ ├── __init__.py │ │ ├── compiler.py │ │ ├── indenter.py │ │ ├── misc.py │ │ ├── proxy_metaclass.py │ │ ├── qobjectcreator.py │ │ └── qtproxies.py │ │ ├── Loader │ │ ├── __init__.py │ │ ├── loader.py │ │ └── qobjectcreator.py │ │ ├── __init__.py │ │ ├── driver.py │ │ ├── exceptions.py │ │ ├── icon_cache.py │ │ ├── objcreator.py │ │ ├── port_v2 │ │ ├── __init__.py │ │ ├── as_string.py │ │ ├── ascii_upper.py │ │ ├── invoke.py │ │ ├── load_plugin.py │ │ ├── proxy_base.py │ │ └── string_io.py │ │ ├── port_v3 │ │ ├── __init__.py │ │ ├── as_string.py │ │ ├── ascii_upper.py │ │ ├── invoke.py │ │ ├── load_plugin.py │ │ ├── proxy_base.py │ │ └── string_io.py │ │ ├── properties.py │ │ ├── pyuic.py │ │ ├── uiparser.py │ │ └── widget-plugins │ │ ├── phonon.py │ │ ├── qaxcontainer.py │ │ ├── qscintilla.py │ │ ├── qtdeclarative.py │ │ └── qtwebkit.py └── sip.pyd ├── win32_2015 ├── PyQt4 │ ├── QAxContainer.pyd │ ├── Qt.pyd │ ├── QtCore.pyd │ ├── QtDeclarative.pyd │ ├── QtDesigner.pyd │ ├── QtGui.pyd │ ├── QtHelp.pyd │ ├── QtMultimedia.pyd │ ├── QtNetwork.pyd │ ├── QtOpenGL.pyd │ ├── QtScript.pyd │ ├── QtScriptTools.pyd │ ├── QtSql.pyd │ ├── QtSvg.pyd │ ├── QtTest.pyd │ ├── QtWebKit.pyd │ ├── QtXml.pyd │ ├── QtXmlPatterns.pyd │ ├── __init__.py │ ├── phonon.pyd │ └── uic │ │ ├── Compiler │ │ ├── __init__.py │ │ ├── compiler.py │ │ ├── indenter.py │ │ ├── misc.py │ │ ├── proxy_metaclass.py │ │ ├── qobjectcreator.py │ │ └── qtproxies.py │ │ ├── Loader │ │ ├── __init__.py │ │ ├── loader.py │ │ └── qobjectcreator.py │ │ ├── __init__.py │ │ ├── driver.py │ │ ├── exceptions.py │ │ ├── icon_cache.py │ │ ├── objcreator.py │ │ ├── port_v2 │ │ ├── __init__.py │ │ ├── as_string.py │ │ ├── ascii_upper.py │ │ ├── invoke.py │ │ ├── load_plugin.py │ │ ├── proxy_base.py │ │ └── string_io.py │ │ ├── port_v3 │ │ ├── __init__.py │ │ ├── as_string.py │ │ ├── ascii_upper.py │ │ ├── invoke.py │ │ ├── load_plugin.py │ │ ├── proxy_base.py │ │ └── string_io.py │ │ ├── properties.py │ │ ├── pyuic.py │ │ ├── uiparser.py │ │ └── widget-plugins │ │ ├── phonon.py │ │ ├── qaxcontainer.py │ │ ├── qscintilla.py │ │ ├── qtdeclarative.py │ │ └── qtwebkit.py └── sip.pyd └── win32_2016 ├── PyQt4 ├── QAxContainer.pyd ├── Qt.pyd ├── QtCore.pyd ├── QtDeclarative.pyd ├── QtDesigner.pyd ├── QtGui.pyd ├── QtHelp.pyd ├── QtMultimedia.pyd ├── QtNetwork.pyd ├── QtOpenGL.pyd ├── QtScript.pyd ├── QtScriptTools.pyd ├── QtSql.pyd ├── QtSvg.pyd ├── QtTest.pyd ├── QtWebKit.pyd ├── QtXml.pyd ├── QtXmlPatterns.pyd ├── __init__.py ├── phonon.pyd └── uic │ ├── Compiler │ ├── __init__.py │ ├── compiler.py │ ├── indenter.py │ ├── misc.py │ ├── proxy_metaclass.py │ ├── qobjectcreator.py │ └── qtproxies.py │ ├── Loader │ ├── __init__.py │ ├── loader.py │ └── qobjectcreator.py │ ├── __init__.py │ ├── driver.py │ ├── exceptions.py │ ├── icon_cache.py │ ├── objcreator.py │ ├── port_v2 │ ├── __init__.py │ ├── as_string.py │ ├── ascii_upper.py │ ├── invoke.py │ ├── load_plugin.py │ ├── proxy_base.py │ └── string_io.py │ ├── port_v3 │ ├── __init__.py │ ├── as_string.py │ ├── ascii_upper.py │ ├── invoke.py │ ├── load_plugin.py │ ├── proxy_base.py │ └── string_io.py │ ├── properties.py │ ├── pyuic.py │ ├── uiparser.py │ └── widget-plugins │ ├── phonon.py │ ├── qaxcontainer.py │ ├── qscintilla.py │ ├── qtdeclarative.py │ └── qtwebkit.py └── sip.pyd /.gitignore: -------------------------------------------------------------------------------- 1 | # Python 2 | 3 | *.pyc 4 | 5 | # window database 6 | 7 | *.db 8 | 9 | # wing IDE project file 10 | 11 | *.wpr 12 | *.wpu 13 | 14 | 15 | # pyCharm project file 16 | 17 | *.idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | PyQt4 for Maya 2012 - 2016 2 | = 3 | 4 | windows 如果本机已经安装python的话,直接执行setup.py就可以了。 5 | 6 | 7 | 如果未安装python,请使用maya自带的mayapy执行setup.py 8 | 9 | 10 | 或者按以下方法安装 11 | 12 | 将 userSetup.mel 放到 我的文档/maya/scripts 文件夹下(不需要放到版本内的文件夹里面)。 13 | Exp:C:\Users\zangchanglong\Documents\maya\scripts 14 | 15 | 16 | 将 userSetup.mel 文件里的 userSetup.py 路径改为本文件夹路径。 17 | Exp: //bjserver2/WScriptsTool/rig/PyQt4/userSetup.py 18 | 19 | 20 | maya/201x/scripts 里面如果有 userSetup.mel, maya/scripts 里面的 userSetup.mel 便会对此版本失效。 21 | Exp:C:\Users\zangchanglong\Documents\maya\2015-x64\scripts 22 | 23 | 24 | 如果原本有个人的 userSetup.mel, 只需要把里面的mel复制过去就好。注意测试格式是否正确。 25 | -------------------------------------------------------------------------------- /darwin_2012/PyQt4/Qt.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2012/PyQt4/Qt.so -------------------------------------------------------------------------------- /darwin_2012/PyQt4/QtCore.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2012/PyQt4/QtCore.so -------------------------------------------------------------------------------- /darwin_2012/PyQt4/QtDesigner.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2012/PyQt4/QtDesigner.so -------------------------------------------------------------------------------- /darwin_2012/PyQt4/QtGui.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2012/PyQt4/QtGui.so -------------------------------------------------------------------------------- /darwin_2012/PyQt4/QtHelp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2012/PyQt4/QtHelp.so -------------------------------------------------------------------------------- /darwin_2012/PyQt4/QtMultimedia.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2012/PyQt4/QtMultimedia.so -------------------------------------------------------------------------------- /darwin_2012/PyQt4/QtNetwork.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2012/PyQt4/QtNetwork.so -------------------------------------------------------------------------------- /darwin_2012/PyQt4/QtOpenGL.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2012/PyQt4/QtOpenGL.so -------------------------------------------------------------------------------- /darwin_2012/PyQt4/QtSql.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2012/PyQt4/QtSql.so -------------------------------------------------------------------------------- /darwin_2012/PyQt4/QtSvg.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2012/PyQt4/QtSvg.so -------------------------------------------------------------------------------- /darwin_2012/PyQt4/QtTest.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2012/PyQt4/QtTest.so -------------------------------------------------------------------------------- /darwin_2012/PyQt4/QtXml.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2012/PyQt4/QtXml.so -------------------------------------------------------------------------------- /darwin_2012/PyQt4/QtXmlPatterns.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2012/PyQt4/QtXmlPatterns.so -------------------------------------------------------------------------------- /darwin_2012/PyQt4/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2011 Riverbank Computing Limited 2 | # 3 | # This file is part of PyQt. 4 | # 5 | # This file may be used under the terms of the GNU General Public 6 | # License versions 2.0 or 3.0 as published by the Free Software 7 | # Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 8 | # included in the packaging of this file. Alternatively you may (at 9 | # your option) use any later version of the GNU General Public 10 | # License if such license has been publicly approved by Riverbank 11 | # Computing Limited (or its successors, if any) and the KDE Free Qt 12 | # Foundation. In addition, as a special exception, Riverbank gives you 13 | # certain additional rights. These rights are described in the Riverbank 14 | # GPL Exception version 1.1, which can be found in the file 15 | # GPL_EXCEPTION.txt in this package. 16 | # 17 | # If you are unsure which license is appropriate for your use, please 18 | # contact the sales department at sales@riverbankcomputing.com. 19 | # 20 | # This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 21 | # WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 22 | -------------------------------------------------------------------------------- /darwin_2012/PyQt4/uic/Compiler/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /darwin_2012/PyQt4/uic/Loader/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /darwin_2012/PyQt4/uic/port_v2/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /darwin_2012/PyQt4/uic/port_v2/ascii_upper.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | import string 29 | 30 | 31 | # A translation table for converting ASCII lower case to upper case. 32 | _ascii_trans_table = string.maketrans(string.ascii_lowercase, 33 | string.ascii_uppercase) 34 | 35 | 36 | # Convert a string to ASCII upper case irrespective of the current locale. 37 | def ascii_upper(s): 38 | return s.translate(_ascii_trans_table) 39 | -------------------------------------------------------------------------------- /darwin_2012/PyQt4/uic/port_v2/load_plugin.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | from PyQt4.uic.exceptions import WidgetPluginError 29 | 30 | 31 | def load_plugin(plugin, plugin_globals, plugin_locals): 32 | """ Load the given plugin (which is an open file). Return True if the 33 | plugin was loaded, or False if it wanted to be ignored. Raise an exception 34 | if there was an error. 35 | """ 36 | 37 | try: 38 | exec(plugin.read(), plugin_globals, plugin_locals) 39 | except ImportError: 40 | return False 41 | except Exception, e: 42 | raise WidgetPluginError("%s: %s" % (e.__class__, str(e))) 43 | 44 | return True 45 | -------------------------------------------------------------------------------- /darwin_2012/PyQt4/uic/port_v2/proxy_base.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | from PyQt4.uic.Compiler.proxy_type import ProxyType 29 | 30 | 31 | class ProxyBase(object): 32 | __metaclass__ = ProxyType 33 | -------------------------------------------------------------------------------- /darwin_2012/PyQt4/uic/port_v2/string_io.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | # Import the StringIO object. 29 | try: 30 | from cStringIO import StringIO 31 | except ImportError: 32 | from StringIO import StringIO 33 | -------------------------------------------------------------------------------- /darwin_2012/PyQt4/uic/port_v3/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /darwin_2012/PyQt4/uic/port_v3/ascii_upper.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | # A translation table for converting ASCII lower case to upper case. 29 | _ascii_trans_table = bytes.maketrans(b'abcdefghijklmnopqrstuvwxyz', 30 | b'ABCDEFGHIJKLMNOPQRSTUVWXYZ') 31 | 32 | 33 | # Convert a string to ASCII upper case irrespective of the current locale. 34 | def ascii_upper(s): 35 | return s.translate(_ascii_trans_table) 36 | -------------------------------------------------------------------------------- /darwin_2012/PyQt4/uic/port_v3/load_plugin.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | from PyQt4.uic.exceptions import WidgetPluginError 29 | 30 | 31 | def load_plugin(plugin, plugin_globals, plugin_locals): 32 | """ Load the given plugin (which is an open file). Return True if the 33 | plugin was loaded, or False if it wanted to be ignored. Raise an exception 34 | if there was an error. 35 | """ 36 | 37 | try: 38 | exec(plugin.read(), plugin_globals, plugin_locals) 39 | except ImportError: 40 | return False 41 | except Exception as e: 42 | raise WidgetPluginError("%s: %s" % (e.__class__, str(e))) 43 | 44 | return True 45 | -------------------------------------------------------------------------------- /darwin_2012/PyQt4/uic/port_v3/proxy_base.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | from PyQt4.uic.Compiler.proxy_type import ProxyType 29 | 30 | 31 | class ProxyBase(metaclass=ProxyType): 32 | pass 33 | -------------------------------------------------------------------------------- /darwin_2012/PyQt4/uic/port_v3/string_io.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | # Import the StringIO object. 29 | from io import StringIO 30 | -------------------------------------------------------------------------------- /darwin_2012/sip.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2012/sip.so -------------------------------------------------------------------------------- /darwin_2013/PyQt4/Qt.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2013/PyQt4/Qt.so -------------------------------------------------------------------------------- /darwin_2013/PyQt4/QtCore.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2013/PyQt4/QtCore.so -------------------------------------------------------------------------------- /darwin_2013/PyQt4/QtDesigner.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2013/PyQt4/QtDesigner.so -------------------------------------------------------------------------------- /darwin_2013/PyQt4/QtGui.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2013/PyQt4/QtGui.so -------------------------------------------------------------------------------- /darwin_2013/PyQt4/QtHelp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2013/PyQt4/QtHelp.so -------------------------------------------------------------------------------- /darwin_2013/PyQt4/QtMultimedia.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2013/PyQt4/QtMultimedia.so -------------------------------------------------------------------------------- /darwin_2013/PyQt4/QtNetwork.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2013/PyQt4/QtNetwork.so -------------------------------------------------------------------------------- /darwin_2013/PyQt4/QtOpenGL.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2013/PyQt4/QtOpenGL.so -------------------------------------------------------------------------------- /darwin_2013/PyQt4/QtSql.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2013/PyQt4/QtSql.so -------------------------------------------------------------------------------- /darwin_2013/PyQt4/QtSvg.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2013/PyQt4/QtSvg.so -------------------------------------------------------------------------------- /darwin_2013/PyQt4/QtTest.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2013/PyQt4/QtTest.so -------------------------------------------------------------------------------- /darwin_2013/PyQt4/QtXml.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2013/PyQt4/QtXml.so -------------------------------------------------------------------------------- /darwin_2013/PyQt4/QtXmlPatterns.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2013/PyQt4/QtXmlPatterns.so -------------------------------------------------------------------------------- /darwin_2013/PyQt4/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2011 Riverbank Computing Limited 2 | # 3 | # This file is part of PyQt. 4 | # 5 | # This file may be used under the terms of the GNU General Public 6 | # License versions 2.0 or 3.0 as published by the Free Software 7 | # Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 8 | # included in the packaging of this file. Alternatively you may (at 9 | # your option) use any later version of the GNU General Public 10 | # License if such license has been publicly approved by Riverbank 11 | # Computing Limited (or its successors, if any) and the KDE Free Qt 12 | # Foundation. In addition, as a special exception, Riverbank gives you 13 | # certain additional rights. These rights are described in the Riverbank 14 | # GPL Exception version 1.1, which can be found in the file 15 | # GPL_EXCEPTION.txt in this package. 16 | # 17 | # If you are unsure which license is appropriate for your use, please 18 | # contact the sales department at sales@riverbankcomputing.com. 19 | # 20 | # This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 21 | # WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 22 | -------------------------------------------------------------------------------- /darwin_2013/PyQt4/uic/Compiler/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /darwin_2013/PyQt4/uic/Loader/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /darwin_2013/PyQt4/uic/port_v2/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /darwin_2013/PyQt4/uic/port_v2/ascii_upper.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | import string 29 | 30 | 31 | # A translation table for converting ASCII lower case to upper case. 32 | _ascii_trans_table = string.maketrans(string.ascii_lowercase, 33 | string.ascii_uppercase) 34 | 35 | 36 | # Convert a string to ASCII upper case irrespective of the current locale. 37 | def ascii_upper(s): 38 | return s.translate(_ascii_trans_table) 39 | -------------------------------------------------------------------------------- /darwin_2013/PyQt4/uic/port_v2/load_plugin.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | from PyQt4.uic.exceptions import WidgetPluginError 29 | 30 | 31 | def load_plugin(plugin, plugin_globals, plugin_locals): 32 | """ Load the given plugin (which is an open file). Return True if the 33 | plugin was loaded, or False if it wanted to be ignored. Raise an exception 34 | if there was an error. 35 | """ 36 | 37 | try: 38 | exec(plugin.read(), plugin_globals, plugin_locals) 39 | except ImportError: 40 | return False 41 | except Exception, e: 42 | raise WidgetPluginError("%s: %s" % (e.__class__, str(e))) 43 | 44 | return True 45 | -------------------------------------------------------------------------------- /darwin_2013/PyQt4/uic/port_v2/proxy_base.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | from PyQt4.uic.Compiler.proxy_type import ProxyType 29 | 30 | 31 | class ProxyBase(object): 32 | __metaclass__ = ProxyType 33 | -------------------------------------------------------------------------------- /darwin_2013/PyQt4/uic/port_v2/string_io.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | # Import the StringIO object. 29 | try: 30 | from cStringIO import StringIO 31 | except ImportError: 32 | from StringIO import StringIO 33 | -------------------------------------------------------------------------------- /darwin_2013/PyQt4/uic/port_v3/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /darwin_2013/PyQt4/uic/port_v3/ascii_upper.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | # A translation table for converting ASCII lower case to upper case. 29 | _ascii_trans_table = bytes.maketrans(b'abcdefghijklmnopqrstuvwxyz', 30 | b'ABCDEFGHIJKLMNOPQRSTUVWXYZ') 31 | 32 | 33 | # Convert a string to ASCII upper case irrespective of the current locale. 34 | def ascii_upper(s): 35 | return s.translate(_ascii_trans_table) 36 | -------------------------------------------------------------------------------- /darwin_2013/PyQt4/uic/port_v3/proxy_base.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | from PyQt4.uic.Compiler.proxy_type import ProxyType 29 | 30 | 31 | class ProxyBase(metaclass=ProxyType): 32 | pass 33 | -------------------------------------------------------------------------------- /darwin_2013/PyQt4/uic/port_v3/string_io.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | # Import the StringIO object. 29 | from io import StringIO 30 | -------------------------------------------------------------------------------- /darwin_2013/sip.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2013/sip.so -------------------------------------------------------------------------------- /darwin_2014/PyQt4/Qt.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2014/PyQt4/Qt.so -------------------------------------------------------------------------------- /darwin_2014/PyQt4/QtCore.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2014/PyQt4/QtCore.so -------------------------------------------------------------------------------- /darwin_2014/PyQt4/QtDeclarative.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2014/PyQt4/QtDeclarative.so -------------------------------------------------------------------------------- /darwin_2014/PyQt4/QtDesigner.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2014/PyQt4/QtDesigner.so -------------------------------------------------------------------------------- /darwin_2014/PyQt4/QtGui.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2014/PyQt4/QtGui.so -------------------------------------------------------------------------------- /darwin_2014/PyQt4/QtHelp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2014/PyQt4/QtHelp.so -------------------------------------------------------------------------------- /darwin_2014/PyQt4/QtMultimedia.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2014/PyQt4/QtMultimedia.so -------------------------------------------------------------------------------- /darwin_2014/PyQt4/QtNetwork.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2014/PyQt4/QtNetwork.so -------------------------------------------------------------------------------- /darwin_2014/PyQt4/QtOpenGL.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2014/PyQt4/QtOpenGL.so -------------------------------------------------------------------------------- /darwin_2014/PyQt4/QtScript.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2014/PyQt4/QtScript.so -------------------------------------------------------------------------------- /darwin_2014/PyQt4/QtScriptTools.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2014/PyQt4/QtScriptTools.so -------------------------------------------------------------------------------- /darwin_2014/PyQt4/QtSql.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2014/PyQt4/QtSql.so -------------------------------------------------------------------------------- /darwin_2014/PyQt4/QtSvg.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2014/PyQt4/QtSvg.so -------------------------------------------------------------------------------- /darwin_2014/PyQt4/QtWebKit.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2014/PyQt4/QtWebKit.so -------------------------------------------------------------------------------- /darwin_2014/PyQt4/QtXml.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2014/PyQt4/QtXml.so -------------------------------------------------------------------------------- /darwin_2014/PyQt4/QtXmlPatterns.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2014/PyQt4/QtXmlPatterns.so -------------------------------------------------------------------------------- /darwin_2014/PyQt4/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2013 Riverbank Computing Limited 2 | # 3 | # This file is part of PyQt. 4 | # 5 | # This file may be used under the terms of the GNU General Public 6 | # License versions 2.0 or 3.0 as published by the Free Software 7 | # Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 8 | # included in the packaging of this file. Alternatively you may (at 9 | # your option) use any later version of the GNU General Public 10 | # License if such license has been publicly approved by Riverbank 11 | # Computing Limited (or its successors, if any) and the KDE Free Qt 12 | # Foundation. In addition, as a special exception, Riverbank gives you 13 | # certain additional rights. These rights are described in the Riverbank 14 | # GPL Exception version 1.1, which can be found in the file 15 | # GPL_EXCEPTION.txt in this package. 16 | # 17 | # If you are unsure which license is appropriate for your use, please 18 | # contact the sales department at sales@riverbankcomputing.com. 19 | # 20 | # This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 21 | # WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 22 | -------------------------------------------------------------------------------- /darwin_2014/PyQt4/_qt.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2014/PyQt4/_qt.so -------------------------------------------------------------------------------- /darwin_2014/PyQt4/phonon.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2014/PyQt4/phonon.so -------------------------------------------------------------------------------- /darwin_2014/PyQt4/uic/Compiler/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2013 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /darwin_2014/PyQt4/uic/Loader/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2013 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /darwin_2014/PyQt4/uic/port_v2/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2013 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /darwin_2014/PyQt4/uic/port_v2/ascii_upper.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2013 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | import string 29 | 30 | 31 | # A translation table for converting ASCII lower case to upper case. 32 | _ascii_trans_table = string.maketrans(string.ascii_lowercase, 33 | string.ascii_uppercase) 34 | 35 | 36 | # Convert a string to ASCII upper case irrespective of the current locale. 37 | def ascii_upper(s): 38 | return s.translate(_ascii_trans_table) 39 | -------------------------------------------------------------------------------- /darwin_2014/PyQt4/uic/port_v2/load_plugin.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2013 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | from PyQt4.uic.exceptions import WidgetPluginError 29 | 30 | 31 | def load_plugin(plugin, plugin_globals, plugin_locals): 32 | """ Load the given plugin (which is an open file). Return True if the 33 | plugin was loaded, or False if it wanted to be ignored. Raise an exception 34 | if there was an error. 35 | """ 36 | 37 | try: 38 | exec(plugin.read(), plugin_globals, plugin_locals) 39 | except ImportError: 40 | return False 41 | except Exception, e: 42 | raise WidgetPluginError("%s: %s" % (e.__class__, str(e))) 43 | 44 | return True 45 | -------------------------------------------------------------------------------- /darwin_2014/PyQt4/uic/port_v2/proxy_base.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2013 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | from PyQt4.uic.Compiler.proxy_metaclass import ProxyMetaclass 29 | 30 | 31 | class ProxyBase(object): 32 | """ A base class for proxies using Python v2 syntax for setting the 33 | meta-class. 34 | """ 35 | 36 | __metaclass__ = ProxyMetaclass 37 | -------------------------------------------------------------------------------- /darwin_2014/PyQt4/uic/port_v2/string_io.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2013 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | # Import the StringIO object. 29 | try: 30 | from cStringIO import StringIO 31 | except ImportError: 32 | from StringIO import StringIO 33 | -------------------------------------------------------------------------------- /darwin_2014/PyQt4/uic/port_v3/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2013 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /darwin_2014/PyQt4/uic/port_v3/ascii_upper.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2013 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | # A translation table for converting ASCII lower case to upper case. 29 | _ascii_trans_table = bytes.maketrans(b'abcdefghijklmnopqrstuvwxyz', 30 | b'ABCDEFGHIJKLMNOPQRSTUVWXYZ') 31 | 32 | 33 | # Convert a string to ASCII upper case irrespective of the current locale. 34 | def ascii_upper(s): 35 | return s.translate(_ascii_trans_table) 36 | -------------------------------------------------------------------------------- /darwin_2014/PyQt4/uic/port_v3/proxy_base.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2013 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | from PyQt4.uic.Compiler.proxy_metaclass import ProxyMetaclass 29 | 30 | 31 | class ProxyBase(metaclass=ProxyMetaclass): 32 | """ A base class for proxies using Python v3 syntax for setting the 33 | meta-class. 34 | """ 35 | -------------------------------------------------------------------------------- /darwin_2014/PyQt4/uic/port_v3/string_io.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2013 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | # Import the StringIO object. 29 | from io import StringIO 30 | -------------------------------------------------------------------------------- /darwin_2014/sip.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2014/sip.so -------------------------------------------------------------------------------- /darwin_2015/PyQt4/Qt.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2015/PyQt4/Qt.so -------------------------------------------------------------------------------- /darwin_2015/PyQt4/QtCore.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2015/PyQt4/QtCore.so -------------------------------------------------------------------------------- /darwin_2015/PyQt4/QtDeclarative.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2015/PyQt4/QtDeclarative.so -------------------------------------------------------------------------------- /darwin_2015/PyQt4/QtGui.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2015/PyQt4/QtGui.so -------------------------------------------------------------------------------- /darwin_2015/PyQt4/QtHelp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2015/PyQt4/QtHelp.so -------------------------------------------------------------------------------- /darwin_2015/PyQt4/QtMultimedia.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2015/PyQt4/QtMultimedia.so -------------------------------------------------------------------------------- /darwin_2015/PyQt4/QtNetwork.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2015/PyQt4/QtNetwork.so -------------------------------------------------------------------------------- /darwin_2015/PyQt4/QtOpenGL.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2015/PyQt4/QtOpenGL.so -------------------------------------------------------------------------------- /darwin_2015/PyQt4/QtScript.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2015/PyQt4/QtScript.so -------------------------------------------------------------------------------- /darwin_2015/PyQt4/QtScriptTools.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2015/PyQt4/QtScriptTools.so -------------------------------------------------------------------------------- /darwin_2015/PyQt4/QtSql.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2015/PyQt4/QtSql.so -------------------------------------------------------------------------------- /darwin_2015/PyQt4/QtSvg.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2015/PyQt4/QtSvg.so -------------------------------------------------------------------------------- /darwin_2015/PyQt4/QtWebKit.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2015/PyQt4/QtWebKit.so -------------------------------------------------------------------------------- /darwin_2015/PyQt4/QtXml.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2015/PyQt4/QtXml.so -------------------------------------------------------------------------------- /darwin_2015/PyQt4/QtXmlPatterns.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2015/PyQt4/QtXmlPatterns.so -------------------------------------------------------------------------------- /darwin_2015/PyQt4/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2014 Riverbank Computing Limited 2 | # 3 | # This file is part of PyQt. 4 | # 5 | # This file may be used under the terms of the GNU General Public 6 | # License versions 2.0 or 3.0 as published by the Free Software 7 | # Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 8 | # included in the packaging of this file. Alternatively you may (at 9 | # your option) use any later version of the GNU General Public 10 | # License if such license has been publicly approved by Riverbank 11 | # Computing Limited (or its successors, if any) and the KDE Free Qt 12 | # Foundation. In addition, as a special exception, Riverbank gives you 13 | # certain additional rights. These rights are described in the Riverbank 14 | # GPL Exception version 1.1, which can be found in the file 15 | # GPL_EXCEPTION.txt in this package. 16 | # 17 | # If you are unsure which license is appropriate for your use, please 18 | # contact the sales department at sales@riverbankcomputing.com. 19 | # 20 | # This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 21 | # WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 22 | -------------------------------------------------------------------------------- /darwin_2015/PyQt4/_qt.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2015/PyQt4/_qt.so -------------------------------------------------------------------------------- /darwin_2015/PyQt4/phonon.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2015/PyQt4/phonon.so -------------------------------------------------------------------------------- /darwin_2015/PyQt4/uic/Compiler/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /darwin_2015/PyQt4/uic/Loader/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /darwin_2015/PyQt4/uic/port_v2/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /darwin_2015/PyQt4/uic/port_v2/ascii_upper.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | import string 29 | 30 | 31 | # A translation table for converting ASCII lower case to upper case. 32 | _ascii_trans_table = string.maketrans(string.ascii_lowercase, 33 | string.ascii_uppercase) 34 | 35 | 36 | # Convert a string to ASCII upper case irrespective of the current locale. 37 | def ascii_upper(s): 38 | return s.translate(_ascii_trans_table) 39 | -------------------------------------------------------------------------------- /darwin_2015/PyQt4/uic/port_v2/load_plugin.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | from PyQt4.uic.exceptions import WidgetPluginError 29 | 30 | 31 | def load_plugin(plugin, plugin_globals, plugin_locals): 32 | """ Load the given plugin (which is an open file). Return True if the 33 | plugin was loaded, or False if it wanted to be ignored. Raise an exception 34 | if there was an error. 35 | """ 36 | 37 | try: 38 | exec(plugin.read(), plugin_globals, plugin_locals) 39 | except ImportError: 40 | return False 41 | except Exception, e: 42 | raise WidgetPluginError("%s: %s" % (e.__class__, str(e))) 43 | 44 | return True 45 | -------------------------------------------------------------------------------- /darwin_2015/PyQt4/uic/port_v2/proxy_base.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | from PyQt4.uic.Compiler.proxy_metaclass import ProxyMetaclass 29 | 30 | 31 | class ProxyBase(object): 32 | """ A base class for proxies using Python v2 syntax for setting the 33 | meta-class. 34 | """ 35 | 36 | __metaclass__ = ProxyMetaclass 37 | -------------------------------------------------------------------------------- /darwin_2015/PyQt4/uic/port_v2/string_io.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | # Import the StringIO object. 29 | try: 30 | from cStringIO import StringIO 31 | except ImportError: 32 | from StringIO import StringIO 33 | -------------------------------------------------------------------------------- /darwin_2015/PyQt4/uic/port_v3/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /darwin_2015/PyQt4/uic/port_v3/ascii_upper.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | # A translation table for converting ASCII lower case to upper case. 29 | _ascii_trans_table = bytes.maketrans(b'abcdefghijklmnopqrstuvwxyz', 30 | b'ABCDEFGHIJKLMNOPQRSTUVWXYZ') 31 | 32 | 33 | # Convert a string to ASCII upper case irrespective of the current locale. 34 | def ascii_upper(s): 35 | return s.translate(_ascii_trans_table) 36 | -------------------------------------------------------------------------------- /darwin_2015/PyQt4/uic/port_v3/proxy_base.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | from PyQt4.uic.Compiler.proxy_metaclass import ProxyMetaclass 29 | 30 | 31 | class ProxyBase(metaclass=ProxyMetaclass): 32 | """ A base class for proxies using Python v3 syntax for setting the 33 | meta-class. 34 | """ 35 | -------------------------------------------------------------------------------- /darwin_2015/PyQt4/uic/port_v3/string_io.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | # Import the StringIO object. 29 | from io import StringIO 30 | -------------------------------------------------------------------------------- /darwin_2015/sip.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2015/sip.so -------------------------------------------------------------------------------- /darwin_2016/sip.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/darwin_2016/sip.so -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | #======================================== 2 | # author: changlong.zang 3 | # mail: zclongpop@163.com 4 | # date: Tue, 09 Jun 2015 10:49:09 5 | #======================================== 6 | import string, os, inspect, tempfile 7 | #--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ 8 | THIS_DIR = os.path.dirname(inspect.getfile(inspect.currentframe())) or os.getcwd() 9 | SETUP_MEL_DIR = os.path.join(os.path.expanduser('~'), 'Documents', 'maya', 'scripts') 10 | 11 | SETUP_MEL_PATH = os.path.join(SETUP_MEL_DIR or THIS_DIR, 'userSetup.mel') 12 | MEL_STRING_DATA = string.replace("python(\"import imp;imp.load_source('temp', '%s')\");"%os.path.join(THIS_DIR, 'userSetup.py'), '\\', '/') 13 | 14 | with open(SETUP_MEL_PATH, 'w') as f: 15 | f.write(MEL_STRING_DATA) 16 | 17 | os.system('explorer.exe %s'%os.path.normcase(os.path.dirname(SETUP_MEL_PATH))) 18 | -------------------------------------------------------------------------------- /userSetup.mel: -------------------------------------------------------------------------------- 1 | python("import imp;imp.load_source('temp', '//bjserver2/RiggingTools/PyQt4/userSetup.py')"); -------------------------------------------------------------------------------- /userSetup.py: -------------------------------------------------------------------------------- 1 | #======================================== 2 | # author: changlong.zang 3 | # mail: zclongpop@163.com 4 | # date: Fri, 10 Apr 2015 14:40:05 5 | #======================================== 6 | import sys, inspect, os.path, re, maya.cmds 7 | #--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ 8 | QT_ROOT_PATH = os.path.dirname(inspect.getfile(inspect.currentframe())) 9 | 10 | #- get maya version 11 | Maya_product = maya.cmds.about(p=True) 12 | Maya_version = re.search('\d+$', Maya_product).group() 13 | 14 | #- get matched pyqt path 15 | Qt_path = os.path.normcase(os.path.join(QT_ROOT_PATH, '%s_%s'%(sys.platform, Maya_version))) 16 | 17 | #- add pyqt path to system path 18 | Qt_path in sys.path or sys.path.append(Qt_path) 19 | -------------------------------------------------------------------------------- /win32_2012/PyQt4/QAxContainer.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2012/PyQt4/QAxContainer.pyd -------------------------------------------------------------------------------- /win32_2012/PyQt4/Qsci.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2012/PyQt4/Qsci.pyd -------------------------------------------------------------------------------- /win32_2012/PyQt4/Qt.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2012/PyQt4/Qt.pyd -------------------------------------------------------------------------------- /win32_2012/PyQt4/QtCore.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2012/PyQt4/QtCore.pyd -------------------------------------------------------------------------------- /win32_2012/PyQt4/QtDeclarative.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2012/PyQt4/QtDeclarative.pyd -------------------------------------------------------------------------------- /win32_2012/PyQt4/QtDesigner.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2012/PyQt4/QtDesigner.pyd -------------------------------------------------------------------------------- /win32_2012/PyQt4/QtGui.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2012/PyQt4/QtGui.pyd -------------------------------------------------------------------------------- /win32_2012/PyQt4/QtHelp.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2012/PyQt4/QtHelp.pyd -------------------------------------------------------------------------------- /win32_2012/PyQt4/QtMultimedia.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2012/PyQt4/QtMultimedia.pyd -------------------------------------------------------------------------------- /win32_2012/PyQt4/QtNetwork.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2012/PyQt4/QtNetwork.pyd -------------------------------------------------------------------------------- /win32_2012/PyQt4/QtOpenGL.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2012/PyQt4/QtOpenGL.pyd -------------------------------------------------------------------------------- /win32_2012/PyQt4/QtScript.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2012/PyQt4/QtScript.pyd -------------------------------------------------------------------------------- /win32_2012/PyQt4/QtScriptTools.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2012/PyQt4/QtScriptTools.pyd -------------------------------------------------------------------------------- /win32_2012/PyQt4/QtSql.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2012/PyQt4/QtSql.pyd -------------------------------------------------------------------------------- /win32_2012/PyQt4/QtSvg.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2012/PyQt4/QtSvg.pyd -------------------------------------------------------------------------------- /win32_2012/PyQt4/QtTest.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2012/PyQt4/QtTest.pyd -------------------------------------------------------------------------------- /win32_2012/PyQt4/QtWebKit.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2012/PyQt4/QtWebKit.pyd -------------------------------------------------------------------------------- /win32_2012/PyQt4/QtXml.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2012/PyQt4/QtXml.pyd -------------------------------------------------------------------------------- /win32_2012/PyQt4/QtXmlPatterns.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2012/PyQt4/QtXmlPatterns.pyd -------------------------------------------------------------------------------- /win32_2012/PyQt4/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2011 Riverbank Computing Limited 2 | # 3 | # This file is part of PyQt. 4 | # 5 | # This file may be used under the terms of the GNU General Public 6 | # License versions 2.0 or 3.0 as published by the Free Software 7 | # Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 8 | # included in the packaging of this file. Alternatively you may (at 9 | # your option) use any later version of the GNU General Public 10 | # License if such license has been publicly approved by Riverbank 11 | # Computing Limited (or its successors, if any) and the KDE Free Qt 12 | # Foundation. In addition, as a special exception, Riverbank gives you 13 | # certain additional rights. These rights are described in the Riverbank 14 | # GPL Exception version 1.1, which can be found in the file 15 | # GPL_EXCEPTION.txt in this package. 16 | # 17 | # Please review the following information to ensure GNU General 18 | # Public Licensing requirements will be met: 19 | # http://trolltech.com/products/qt/licenses/licensing/opensource/. If 20 | # you are unsure which license is appropriate for your use, please 21 | # review the following information: 22 | # http://trolltech.com/products/qt/licenses/licensing/licensingoverview 23 | # or contact the sales department at sales@riverbankcomputing.com. 24 | # 25 | # This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 26 | # WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 27 | -------------------------------------------------------------------------------- /win32_2012/PyQt4/phonon.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2012/PyQt4/phonon.pyd -------------------------------------------------------------------------------- /win32_2012/PyQt4/uic/Compiler/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## Please review the following information to ensure GNU General 20 | ## Public Licensing requirements will be met: 21 | ## http://trolltech.com/products/qt/licenses/licensing/opensource/. If 22 | ## you are unsure which license is appropriate for your use, please 23 | ## review the following information: 24 | ## http://trolltech.com/products/qt/licenses/licensing/licensingoverview 25 | ## or contact the sales department at sales@riverbankcomputing.com. 26 | ## 27 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 28 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 29 | ## 30 | ############################################################################# 31 | -------------------------------------------------------------------------------- /win32_2012/PyQt4/uic/Loader/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## Please review the following information to ensure GNU General 20 | ## Public Licensing requirements will be met: 21 | ## http://trolltech.com/products/qt/licenses/licensing/opensource/. If 22 | ## you are unsure which license is appropriate for your use, please 23 | ## review the following information: 24 | ## http://trolltech.com/products/qt/licenses/licensing/licensingoverview 25 | ## or contact the sales department at sales@riverbankcomputing.com. 26 | ## 27 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 28 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 29 | ## 30 | ############################################################################# 31 | -------------------------------------------------------------------------------- /win32_2012/PyQt4/uic/port_v2/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## Please review the following information to ensure GNU General 20 | ## Public Licensing requirements will be met: 21 | ## http://trolltech.com/products/qt/licenses/licensing/opensource/. If 22 | ## you are unsure which license is appropriate for your use, please 23 | ## review the following information: 24 | ## http://trolltech.com/products/qt/licenses/licensing/licensingoverview 25 | ## or contact the sales department at sales@riverbankcomputing.com. 26 | ## 27 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 28 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 29 | ## 30 | ############################################################################# 31 | -------------------------------------------------------------------------------- /win32_2012/PyQt4/uic/port_v2/proxy_base.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## Please review the following information to ensure GNU General 20 | ## Public Licensing requirements will be met: 21 | ## http://trolltech.com/products/qt/licenses/licensing/opensource/. If 22 | ## you are unsure which license is appropriate for your use, please 23 | ## review the following information: 24 | ## http://trolltech.com/products/qt/licenses/licensing/licensingoverview 25 | ## or contact the sales department at sales@riverbankcomputing.com. 26 | ## 27 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 28 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 29 | ## 30 | ############################################################################# 31 | 32 | 33 | from PyQt4.uic.Compiler.proxy_type import ProxyType 34 | 35 | 36 | class ProxyBase(object): 37 | __metaclass__ = ProxyType 38 | -------------------------------------------------------------------------------- /win32_2012/PyQt4/uic/port_v2/string_io.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## Please review the following information to ensure GNU General 20 | ## Public Licensing requirements will be met: 21 | ## http://trolltech.com/products/qt/licenses/licensing/opensource/. If 22 | ## you are unsure which license is appropriate for your use, please 23 | ## review the following information: 24 | ## http://trolltech.com/products/qt/licenses/licensing/licensingoverview 25 | ## or contact the sales department at sales@riverbankcomputing.com. 26 | ## 27 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 28 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 29 | ## 30 | ############################################################################# 31 | 32 | 33 | # Import the StringIO object. 34 | try: 35 | from cStringIO import StringIO 36 | except ImportError: 37 | from StringIO import StringIO 38 | -------------------------------------------------------------------------------- /win32_2012/PyQt4/uic/port_v3/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## Please review the following information to ensure GNU General 20 | ## Public Licensing requirements will be met: 21 | ## http://trolltech.com/products/qt/licenses/licensing/opensource/. If 22 | ## you are unsure which license is appropriate for your use, please 23 | ## review the following information: 24 | ## http://trolltech.com/products/qt/licenses/licensing/licensingoverview 25 | ## or contact the sales department at sales@riverbankcomputing.com. 26 | ## 27 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 28 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 29 | ## 30 | ############################################################################# 31 | -------------------------------------------------------------------------------- /win32_2012/PyQt4/uic/port_v3/proxy_base.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## Please review the following information to ensure GNU General 20 | ## Public Licensing requirements will be met: 21 | ## http://trolltech.com/products/qt/licenses/licensing/opensource/. If 22 | ## you are unsure which license is appropriate for your use, please 23 | ## review the following information: 24 | ## http://trolltech.com/products/qt/licenses/licensing/licensingoverview 25 | ## or contact the sales department at sales@riverbankcomputing.com. 26 | ## 27 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 28 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 29 | ## 30 | ############################################################################# 31 | 32 | 33 | from PyQt4.uic.Compiler.proxy_type import ProxyType 34 | 35 | 36 | class ProxyBase(metaclass=ProxyType): 37 | pass 38 | -------------------------------------------------------------------------------- /win32_2012/PyQt4/uic/port_v3/string_io.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2011 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## Please review the following information to ensure GNU General 20 | ## Public Licensing requirements will be met: 21 | ## http://trolltech.com/products/qt/licenses/licensing/opensource/. If 22 | ## you are unsure which license is appropriate for your use, please 23 | ## review the following information: 24 | ## http://trolltech.com/products/qt/licenses/licensing/licensingoverview 25 | ## or contact the sales department at sales@riverbankcomputing.com. 26 | ## 27 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 28 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 29 | ## 30 | ############################################################################# 31 | 32 | 33 | # Import the StringIO object. 34 | from io import StringIO 35 | -------------------------------------------------------------------------------- /win32_2012/sip.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2012/sip.pyd -------------------------------------------------------------------------------- /win32_2013/PyQt4/QAxContainer.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2013/PyQt4/QAxContainer.pyd -------------------------------------------------------------------------------- /win32_2013/PyQt4/Qt.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2013/PyQt4/Qt.pyd -------------------------------------------------------------------------------- /win32_2013/PyQt4/QtCore.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2013/PyQt4/QtCore.pyd -------------------------------------------------------------------------------- /win32_2013/PyQt4/QtDeclarative.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2013/PyQt4/QtDeclarative.pyd -------------------------------------------------------------------------------- /win32_2013/PyQt4/QtDesigner.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2013/PyQt4/QtDesigner.pyd -------------------------------------------------------------------------------- /win32_2013/PyQt4/QtGui.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2013/PyQt4/QtGui.pyd -------------------------------------------------------------------------------- /win32_2013/PyQt4/QtHelp.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2013/PyQt4/QtHelp.pyd -------------------------------------------------------------------------------- /win32_2013/PyQt4/QtMultimedia.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2013/PyQt4/QtMultimedia.pyd -------------------------------------------------------------------------------- /win32_2013/PyQt4/QtNetwork.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2013/PyQt4/QtNetwork.pyd -------------------------------------------------------------------------------- /win32_2013/PyQt4/QtOpenGL.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2013/PyQt4/QtOpenGL.pyd -------------------------------------------------------------------------------- /win32_2013/PyQt4/QtScript.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2013/PyQt4/QtScript.pyd -------------------------------------------------------------------------------- /win32_2013/PyQt4/QtScriptTools.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2013/PyQt4/QtScriptTools.pyd -------------------------------------------------------------------------------- /win32_2013/PyQt4/QtSql.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2013/PyQt4/QtSql.pyd -------------------------------------------------------------------------------- /win32_2013/PyQt4/QtSvg.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2013/PyQt4/QtSvg.pyd -------------------------------------------------------------------------------- /win32_2013/PyQt4/QtTest.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2013/PyQt4/QtTest.pyd -------------------------------------------------------------------------------- /win32_2013/PyQt4/QtWebKit.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2013/PyQt4/QtWebKit.pyd -------------------------------------------------------------------------------- /win32_2013/PyQt4/QtXml.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2013/PyQt4/QtXml.pyd -------------------------------------------------------------------------------- /win32_2013/PyQt4/QtXmlPatterns.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2013/PyQt4/QtXmlPatterns.pyd -------------------------------------------------------------------------------- /win32_2013/PyQt4/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2012 Riverbank Computing Limited 2 | # 3 | # This file is part of PyQt. 4 | # 5 | # This file may be used under the terms of the GNU General Public 6 | # License versions 2.0 or 3.0 as published by the Free Software 7 | # Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 8 | # included in the packaging of this file. Alternatively you may (at 9 | # your option) use any later version of the GNU General Public 10 | # License if such license has been publicly approved by Riverbank 11 | # Computing Limited (or its successors, if any) and the KDE Free Qt 12 | # Foundation. In addition, as a special exception, Riverbank gives you 13 | # certain additional rights. These rights are described in the Riverbank 14 | # GPL Exception version 1.1, which can be found in the file 15 | # GPL_EXCEPTION.txt in this package. 16 | # 17 | # If you are unsure which license is appropriate for your use, please 18 | # contact the sales department at sales@riverbankcomputing.com. 19 | # 20 | # This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 21 | # WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 22 | -------------------------------------------------------------------------------- /win32_2013/PyQt4/phonon.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2013/PyQt4/phonon.pyd -------------------------------------------------------------------------------- /win32_2013/PyQt4/readme.txt: -------------------------------------------------------------------------------- 1 | for maya2013.5 only -------------------------------------------------------------------------------- /win32_2013/PyQt4/uic/Compiler/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2012 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /win32_2013/PyQt4/uic/Loader/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2012 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /win32_2013/PyQt4/uic/port_v2/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2012 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /win32_2013/PyQt4/uic/port_v2/ascii_upper.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2012 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | import string 29 | 30 | 31 | # A translation table for converting ASCII lower case to upper case. 32 | _ascii_trans_table = string.maketrans(string.ascii_lowercase, 33 | string.ascii_uppercase) 34 | 35 | 36 | # Convert a string to ASCII upper case irrespective of the current locale. 37 | def ascii_upper(s): 38 | return s.translate(_ascii_trans_table) 39 | -------------------------------------------------------------------------------- /win32_2013/PyQt4/uic/port_v2/load_plugin.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2012 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | from PyQt4.uic.exceptions import WidgetPluginError 29 | 30 | 31 | def load_plugin(plugin, plugin_globals, plugin_locals): 32 | """ Load the given plugin (which is an open file). Return True if the 33 | plugin was loaded, or False if it wanted to be ignored. Raise an exception 34 | if there was an error. 35 | """ 36 | 37 | try: 38 | exec(plugin.read(), plugin_globals, plugin_locals) 39 | except ImportError: 40 | return False 41 | except Exception, e: 42 | raise WidgetPluginError("%s: %s" % (e.__class__, str(e))) 43 | 44 | return True 45 | -------------------------------------------------------------------------------- /win32_2013/PyQt4/uic/port_v2/proxy_base.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2012 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | from PyQt4.uic.Compiler.proxy_metaclass import ProxyMetaclass 29 | 30 | 31 | class ProxyBase(object): 32 | """ A base class for proxies using Python v2 syntax for setting the 33 | meta-class. 34 | """ 35 | 36 | __metaclass__ = ProxyMetaclass 37 | -------------------------------------------------------------------------------- /win32_2013/PyQt4/uic/port_v2/string_io.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2012 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | # Import the StringIO object. 29 | try: 30 | from cStringIO import StringIO 31 | except ImportError: 32 | from StringIO import StringIO 33 | -------------------------------------------------------------------------------- /win32_2013/PyQt4/uic/port_v3/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2012 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /win32_2013/PyQt4/uic/port_v3/ascii_upper.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2012 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | # A translation table for converting ASCII lower case to upper case. 29 | _ascii_trans_table = bytes.maketrans(b'abcdefghijklmnopqrstuvwxyz', 30 | b'ABCDEFGHIJKLMNOPQRSTUVWXYZ') 31 | 32 | 33 | # Convert a string to ASCII upper case irrespective of the current locale. 34 | def ascii_upper(s): 35 | return s.translate(_ascii_trans_table) 36 | -------------------------------------------------------------------------------- /win32_2013/PyQt4/uic/port_v3/proxy_base.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2012 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | from PyQt4.uic.Compiler.proxy_metaclass import ProxyMetaclass 29 | 30 | 31 | class ProxyBase(metaclass=ProxyMetaclass): 32 | """ A base class for proxies using Python v3 syntax for setting the 33 | meta-class. 34 | """ 35 | -------------------------------------------------------------------------------- /win32_2013/PyQt4/uic/port_v3/string_io.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2012 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | # Import the StringIO object. 29 | from io import StringIO 30 | -------------------------------------------------------------------------------- /win32_2013/sip.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2013/sip.pyd -------------------------------------------------------------------------------- /win32_2014/PyQt4/Qt.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2014/PyQt4/Qt.pyd -------------------------------------------------------------------------------- /win32_2014/PyQt4/QtCore.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2014/PyQt4/QtCore.pyd -------------------------------------------------------------------------------- /win32_2014/PyQt4/QtDeclarative.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2014/PyQt4/QtDeclarative.pyd -------------------------------------------------------------------------------- /win32_2014/PyQt4/QtDesigner.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2014/PyQt4/QtDesigner.pyd -------------------------------------------------------------------------------- /win32_2014/PyQt4/QtGui.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2014/PyQt4/QtGui.pyd -------------------------------------------------------------------------------- /win32_2014/PyQt4/QtHelp.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2014/PyQt4/QtHelp.pyd -------------------------------------------------------------------------------- /win32_2014/PyQt4/QtMultimedia.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2014/PyQt4/QtMultimedia.pyd -------------------------------------------------------------------------------- /win32_2014/PyQt4/QtNetwork.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2014/PyQt4/QtNetwork.pyd -------------------------------------------------------------------------------- /win32_2014/PyQt4/QtOpenGL.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2014/PyQt4/QtOpenGL.pyd -------------------------------------------------------------------------------- /win32_2014/PyQt4/QtScript.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2014/PyQt4/QtScript.pyd -------------------------------------------------------------------------------- /win32_2014/PyQt4/QtScriptTools.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2014/PyQt4/QtScriptTools.pyd -------------------------------------------------------------------------------- /win32_2014/PyQt4/QtSql.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2014/PyQt4/QtSql.pyd -------------------------------------------------------------------------------- /win32_2014/PyQt4/QtSvg.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2014/PyQt4/QtSvg.pyd -------------------------------------------------------------------------------- /win32_2014/PyQt4/QtTest.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2014/PyQt4/QtTest.pyd -------------------------------------------------------------------------------- /win32_2014/PyQt4/QtWebKit.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2014/PyQt4/QtWebKit.pyd -------------------------------------------------------------------------------- /win32_2014/PyQt4/QtXml.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2014/PyQt4/QtXml.pyd -------------------------------------------------------------------------------- /win32_2014/PyQt4/QtXmlPatterns.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2014/PyQt4/QtXmlPatterns.pyd -------------------------------------------------------------------------------- /win32_2014/PyQt4/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2013 Riverbank Computing Limited 2 | # 3 | # This file is part of PyQt. 4 | # 5 | # This file may be used under the terms of the GNU General Public 6 | # License versions 2.0 or 3.0 as published by the Free Software 7 | # Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 8 | # included in the packaging of this file. Alternatively you may (at 9 | # your option) use any later version of the GNU General Public 10 | # License if such license has been publicly approved by Riverbank 11 | # Computing Limited (or its successors, if any) and the KDE Free Qt 12 | # Foundation. In addition, as a special exception, Riverbank gives you 13 | # certain additional rights. These rights are described in the Riverbank 14 | # GPL Exception version 1.1, which can be found in the file 15 | # GPL_EXCEPTION.txt in this package. 16 | # 17 | # If you are unsure which license is appropriate for your use, please 18 | # contact the sales department at sales@riverbankcomputing.com. 19 | # 20 | # This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 21 | # WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 22 | -------------------------------------------------------------------------------- /win32_2014/PyQt4/phonon.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2014/PyQt4/phonon.pyd -------------------------------------------------------------------------------- /win32_2014/PyQt4/uic/Compiler/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2013 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /win32_2014/PyQt4/uic/Loader/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2013 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /win32_2014/PyQt4/uic/port_v2/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2013 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /win32_2014/PyQt4/uic/port_v2/ascii_upper.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2013 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | import string 29 | 30 | 31 | # A translation table for converting ASCII lower case to upper case. 32 | _ascii_trans_table = string.maketrans(string.ascii_lowercase, 33 | string.ascii_uppercase) 34 | 35 | 36 | # Convert a string to ASCII upper case irrespective of the current locale. 37 | def ascii_upper(s): 38 | return s.translate(_ascii_trans_table) 39 | -------------------------------------------------------------------------------- /win32_2014/PyQt4/uic/port_v2/load_plugin.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2013 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | from PyQt4.uic.exceptions import WidgetPluginError 29 | 30 | 31 | def load_plugin(plugin, plugin_globals, plugin_locals): 32 | """ Load the given plugin (which is an open file). Return True if the 33 | plugin was loaded, or False if it wanted to be ignored. Raise an exception 34 | if there was an error. 35 | """ 36 | 37 | try: 38 | exec(plugin.read(), plugin_globals, plugin_locals) 39 | except ImportError: 40 | return False 41 | except Exception, e: 42 | raise WidgetPluginError("%s: %s" % (e.__class__, str(e))) 43 | 44 | return True 45 | -------------------------------------------------------------------------------- /win32_2014/PyQt4/uic/port_v2/proxy_base.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2013 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | from PyQt4.uic.Compiler.proxy_metaclass import ProxyMetaclass 29 | 30 | 31 | class ProxyBase(object): 32 | """ A base class for proxies using Python v2 syntax for setting the 33 | meta-class. 34 | """ 35 | 36 | __metaclass__ = ProxyMetaclass 37 | -------------------------------------------------------------------------------- /win32_2014/PyQt4/uic/port_v2/string_io.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2013 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | # Import the StringIO object. 29 | try: 30 | from cStringIO import StringIO 31 | except ImportError: 32 | from StringIO import StringIO 33 | -------------------------------------------------------------------------------- /win32_2014/PyQt4/uic/port_v3/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2013 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /win32_2014/PyQt4/uic/port_v3/ascii_upper.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2013 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | # A translation table for converting ASCII lower case to upper case. 29 | _ascii_trans_table = bytes.maketrans(b'abcdefghijklmnopqrstuvwxyz', 30 | b'ABCDEFGHIJKLMNOPQRSTUVWXYZ') 31 | 32 | 33 | # Convert a string to ASCII upper case irrespective of the current locale. 34 | def ascii_upper(s): 35 | return s.translate(_ascii_trans_table) 36 | -------------------------------------------------------------------------------- /win32_2014/PyQt4/uic/port_v3/proxy_base.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2013 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | from PyQt4.uic.Compiler.proxy_metaclass import ProxyMetaclass 29 | 30 | 31 | class ProxyBase(metaclass=ProxyMetaclass): 32 | """ A base class for proxies using Python v3 syntax for setting the 33 | meta-class. 34 | """ 35 | -------------------------------------------------------------------------------- /win32_2014/PyQt4/uic/port_v3/string_io.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2013 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | # Import the StringIO object. 29 | from io import StringIO 30 | -------------------------------------------------------------------------------- /win32_2014/sip.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2014/sip.pyd -------------------------------------------------------------------------------- /win32_2015/PyQt4/QAxContainer.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2015/PyQt4/QAxContainer.pyd -------------------------------------------------------------------------------- /win32_2015/PyQt4/Qt.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2015/PyQt4/Qt.pyd -------------------------------------------------------------------------------- /win32_2015/PyQt4/QtCore.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2015/PyQt4/QtCore.pyd -------------------------------------------------------------------------------- /win32_2015/PyQt4/QtDeclarative.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2015/PyQt4/QtDeclarative.pyd -------------------------------------------------------------------------------- /win32_2015/PyQt4/QtDesigner.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2015/PyQt4/QtDesigner.pyd -------------------------------------------------------------------------------- /win32_2015/PyQt4/QtGui.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2015/PyQt4/QtGui.pyd -------------------------------------------------------------------------------- /win32_2015/PyQt4/QtHelp.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2015/PyQt4/QtHelp.pyd -------------------------------------------------------------------------------- /win32_2015/PyQt4/QtMultimedia.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2015/PyQt4/QtMultimedia.pyd -------------------------------------------------------------------------------- /win32_2015/PyQt4/QtNetwork.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2015/PyQt4/QtNetwork.pyd -------------------------------------------------------------------------------- /win32_2015/PyQt4/QtOpenGL.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2015/PyQt4/QtOpenGL.pyd -------------------------------------------------------------------------------- /win32_2015/PyQt4/QtScript.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2015/PyQt4/QtScript.pyd -------------------------------------------------------------------------------- /win32_2015/PyQt4/QtScriptTools.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2015/PyQt4/QtScriptTools.pyd -------------------------------------------------------------------------------- /win32_2015/PyQt4/QtSql.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2015/PyQt4/QtSql.pyd -------------------------------------------------------------------------------- /win32_2015/PyQt4/QtSvg.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2015/PyQt4/QtSvg.pyd -------------------------------------------------------------------------------- /win32_2015/PyQt4/QtTest.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2015/PyQt4/QtTest.pyd -------------------------------------------------------------------------------- /win32_2015/PyQt4/QtWebKit.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2015/PyQt4/QtWebKit.pyd -------------------------------------------------------------------------------- /win32_2015/PyQt4/QtXml.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2015/PyQt4/QtXml.pyd -------------------------------------------------------------------------------- /win32_2015/PyQt4/QtXmlPatterns.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2015/PyQt4/QtXmlPatterns.pyd -------------------------------------------------------------------------------- /win32_2015/PyQt4/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2014 Riverbank Computing Limited 2 | # 3 | # This file is part of PyQt. 4 | # 5 | # This file may be used under the terms of the GNU General Public 6 | # License versions 2.0 or 3.0 as published by the Free Software 7 | # Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 8 | # included in the packaging of this file. Alternatively you may (at 9 | # your option) use any later version of the GNU General Public 10 | # License if such license has been publicly approved by Riverbank 11 | # Computing Limited (or its successors, if any) and the KDE Free Qt 12 | # Foundation. In addition, as a special exception, Riverbank gives you 13 | # certain additional rights. These rights are described in the Riverbank 14 | # GPL Exception version 1.1, which can be found in the file 15 | # GPL_EXCEPTION.txt in this package. 16 | # 17 | # If you are unsure which license is appropriate for your use, please 18 | # contact the sales department at sales@riverbankcomputing.com. 19 | # 20 | # This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 21 | # WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 22 | -------------------------------------------------------------------------------- /win32_2015/PyQt4/phonon.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2015/PyQt4/phonon.pyd -------------------------------------------------------------------------------- /win32_2015/PyQt4/uic/Compiler/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /win32_2015/PyQt4/uic/Loader/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /win32_2015/PyQt4/uic/port_v2/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /win32_2015/PyQt4/uic/port_v2/ascii_upper.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | import string 29 | 30 | 31 | # A translation table for converting ASCII lower case to upper case. 32 | _ascii_trans_table = string.maketrans(string.ascii_lowercase, 33 | string.ascii_uppercase) 34 | 35 | 36 | # Convert a string to ASCII upper case irrespective of the current locale. 37 | def ascii_upper(s): 38 | return s.translate(_ascii_trans_table) 39 | -------------------------------------------------------------------------------- /win32_2015/PyQt4/uic/port_v2/load_plugin.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | from PyQt4.uic.exceptions import WidgetPluginError 29 | 30 | 31 | def load_plugin(plugin, plugin_globals, plugin_locals): 32 | """ Load the given plugin (which is an open file). Return True if the 33 | plugin was loaded, or False if it wanted to be ignored. Raise an exception 34 | if there was an error. 35 | """ 36 | 37 | try: 38 | exec(plugin.read(), plugin_globals, plugin_locals) 39 | except ImportError: 40 | return False 41 | except Exception, e: 42 | raise WidgetPluginError("%s: %s" % (e.__class__, str(e))) 43 | 44 | return True 45 | -------------------------------------------------------------------------------- /win32_2015/PyQt4/uic/port_v2/proxy_base.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | from PyQt4.uic.Compiler.proxy_metaclass import ProxyMetaclass 29 | 30 | 31 | class ProxyBase(object): 32 | """ A base class for proxies using Python v2 syntax for setting the 33 | meta-class. 34 | """ 35 | 36 | __metaclass__ = ProxyMetaclass 37 | -------------------------------------------------------------------------------- /win32_2015/PyQt4/uic/port_v2/string_io.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | # Import the StringIO object. 29 | try: 30 | from cStringIO import StringIO 31 | except ImportError: 32 | from StringIO import StringIO 33 | -------------------------------------------------------------------------------- /win32_2015/PyQt4/uic/port_v3/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /win32_2015/PyQt4/uic/port_v3/ascii_upper.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | # A translation table for converting ASCII lower case to upper case. 29 | _ascii_trans_table = bytes.maketrans(b'abcdefghijklmnopqrstuvwxyz', 30 | b'ABCDEFGHIJKLMNOPQRSTUVWXYZ') 31 | 32 | 33 | # Convert a string to ASCII upper case irrespective of the current locale. 34 | def ascii_upper(s): 35 | return s.translate(_ascii_trans_table) 36 | -------------------------------------------------------------------------------- /win32_2015/PyQt4/uic/port_v3/proxy_base.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | from PyQt4.uic.Compiler.proxy_metaclass import ProxyMetaclass 29 | 30 | 31 | class ProxyBase(metaclass=ProxyMetaclass): 32 | """ A base class for proxies using Python v3 syntax for setting the 33 | meta-class. 34 | """ 35 | -------------------------------------------------------------------------------- /win32_2015/PyQt4/uic/port_v3/string_io.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | # Import the StringIO object. 29 | from io import StringIO 30 | -------------------------------------------------------------------------------- /win32_2015/sip.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2015/sip.pyd -------------------------------------------------------------------------------- /win32_2016/PyQt4/QAxContainer.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2016/PyQt4/QAxContainer.pyd -------------------------------------------------------------------------------- /win32_2016/PyQt4/Qt.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2016/PyQt4/Qt.pyd -------------------------------------------------------------------------------- /win32_2016/PyQt4/QtCore.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2016/PyQt4/QtCore.pyd -------------------------------------------------------------------------------- /win32_2016/PyQt4/QtDeclarative.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2016/PyQt4/QtDeclarative.pyd -------------------------------------------------------------------------------- /win32_2016/PyQt4/QtDesigner.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2016/PyQt4/QtDesigner.pyd -------------------------------------------------------------------------------- /win32_2016/PyQt4/QtGui.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2016/PyQt4/QtGui.pyd -------------------------------------------------------------------------------- /win32_2016/PyQt4/QtHelp.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2016/PyQt4/QtHelp.pyd -------------------------------------------------------------------------------- /win32_2016/PyQt4/QtMultimedia.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2016/PyQt4/QtMultimedia.pyd -------------------------------------------------------------------------------- /win32_2016/PyQt4/QtNetwork.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2016/PyQt4/QtNetwork.pyd -------------------------------------------------------------------------------- /win32_2016/PyQt4/QtOpenGL.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2016/PyQt4/QtOpenGL.pyd -------------------------------------------------------------------------------- /win32_2016/PyQt4/QtScript.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2016/PyQt4/QtScript.pyd -------------------------------------------------------------------------------- /win32_2016/PyQt4/QtScriptTools.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2016/PyQt4/QtScriptTools.pyd -------------------------------------------------------------------------------- /win32_2016/PyQt4/QtSql.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2016/PyQt4/QtSql.pyd -------------------------------------------------------------------------------- /win32_2016/PyQt4/QtSvg.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2016/PyQt4/QtSvg.pyd -------------------------------------------------------------------------------- /win32_2016/PyQt4/QtTest.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2016/PyQt4/QtTest.pyd -------------------------------------------------------------------------------- /win32_2016/PyQt4/QtWebKit.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2016/PyQt4/QtWebKit.pyd -------------------------------------------------------------------------------- /win32_2016/PyQt4/QtXml.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2016/PyQt4/QtXml.pyd -------------------------------------------------------------------------------- /win32_2016/PyQt4/QtXmlPatterns.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2016/PyQt4/QtXmlPatterns.pyd -------------------------------------------------------------------------------- /win32_2016/PyQt4/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2014 Riverbank Computing Limited 2 | # 3 | # This file is part of PyQt. 4 | # 5 | # This file may be used under the terms of the GNU General Public 6 | # License versions 2.0 or 3.0 as published by the Free Software 7 | # Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 8 | # included in the packaging of this file. Alternatively you may (at 9 | # your option) use any later version of the GNU General Public 10 | # License if such license has been publicly approved by Riverbank 11 | # Computing Limited (or its successors, if any) and the KDE Free Qt 12 | # Foundation. In addition, as a special exception, Riverbank gives you 13 | # certain additional rights. These rights are described in the Riverbank 14 | # GPL Exception version 1.1, which can be found in the file 15 | # GPL_EXCEPTION.txt in this package. 16 | # 17 | # If you are unsure which license is appropriate for your use, please 18 | # contact the sales department at sales@riverbankcomputing.com. 19 | # 20 | # This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 21 | # WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 22 | -------------------------------------------------------------------------------- /win32_2016/PyQt4/phonon.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2016/PyQt4/phonon.pyd -------------------------------------------------------------------------------- /win32_2016/PyQt4/uic/Compiler/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /win32_2016/PyQt4/uic/Loader/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /win32_2016/PyQt4/uic/port_v2/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /win32_2016/PyQt4/uic/port_v2/ascii_upper.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | import string 29 | 30 | 31 | # A translation table for converting ASCII lower case to upper case. 32 | _ascii_trans_table = string.maketrans(string.ascii_lowercase, 33 | string.ascii_uppercase) 34 | 35 | 36 | # Convert a string to ASCII upper case irrespective of the current locale. 37 | def ascii_upper(s): 38 | return s.translate(_ascii_trans_table) 39 | -------------------------------------------------------------------------------- /win32_2016/PyQt4/uic/port_v2/load_plugin.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | from PyQt4.uic.exceptions import WidgetPluginError 29 | 30 | 31 | def load_plugin(plugin, plugin_globals, plugin_locals): 32 | """ Load the given plugin (which is an open file). Return True if the 33 | plugin was loaded, or False if it wanted to be ignored. Raise an exception 34 | if there was an error. 35 | """ 36 | 37 | try: 38 | exec(plugin.read(), plugin_globals, plugin_locals) 39 | except ImportError: 40 | return False 41 | except Exception, e: 42 | raise WidgetPluginError("%s: %s" % (e.__class__, str(e))) 43 | 44 | return True 45 | -------------------------------------------------------------------------------- /win32_2016/PyQt4/uic/port_v2/proxy_base.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | from PyQt4.uic.Compiler.proxy_metaclass import ProxyMetaclass 29 | 30 | 31 | class ProxyBase(object): 32 | """ A base class for proxies using Python v2 syntax for setting the 33 | meta-class. 34 | """ 35 | 36 | __metaclass__ = ProxyMetaclass 37 | -------------------------------------------------------------------------------- /win32_2016/PyQt4/uic/port_v2/string_io.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | # Import the StringIO object. 29 | try: 30 | from cStringIO import StringIO 31 | except ImportError: 32 | from StringIO import StringIO 33 | -------------------------------------------------------------------------------- /win32_2016/PyQt4/uic/port_v3/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | -------------------------------------------------------------------------------- /win32_2016/PyQt4/uic/port_v3/ascii_upper.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | # A translation table for converting ASCII lower case to upper case. 29 | _ascii_trans_table = bytes.maketrans(b'abcdefghijklmnopqrstuvwxyz', 30 | b'ABCDEFGHIJKLMNOPQRSTUVWXYZ') 31 | 32 | 33 | # Convert a string to ASCII upper case irrespective of the current locale. 34 | def ascii_upper(s): 35 | return s.translate(_ascii_trans_table) 36 | -------------------------------------------------------------------------------- /win32_2016/PyQt4/uic/port_v3/proxy_base.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | from PyQt4.uic.Compiler.proxy_metaclass import ProxyMetaclass 29 | 30 | 31 | class ProxyBase(metaclass=ProxyMetaclass): 32 | """ A base class for proxies using Python v3 syntax for setting the 33 | meta-class. 34 | """ 35 | -------------------------------------------------------------------------------- /win32_2016/PyQt4/uic/port_v3/string_io.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2014 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public 8 | ## License versions 2.0 or 3.0 as published by the Free Software 9 | ## Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 10 | ## included in the packaging of this file. Alternatively you may (at 11 | ## your option) use any later version of the GNU General Public 12 | ## License if such license has been publicly approved by Riverbank 13 | ## Computing Limited (or its successors, if any) and the KDE Free Qt 14 | ## Foundation. In addition, as a special exception, Riverbank gives you 15 | ## certain additional rights. These rights are described in the Riverbank 16 | ## GPL Exception version 1.1, which can be found in the file 17 | ## GPL_EXCEPTION.txt in this package. 18 | ## 19 | ## If you are unsure which license is appropriate for your use, please 20 | ## contact the sales department at sales@riverbankcomputing.com. 21 | ## 22 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 23 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 24 | ## 25 | ############################################################################# 26 | 27 | 28 | # Import the StringIO object. 29 | from io import StringIO 30 | -------------------------------------------------------------------------------- /win32_2016/sip.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zclongpop123/PyQt4/85ec518e7cb3f4659792e55e6d770b9057416998/win32_2016/sip.pyd --------------------------------------------------------------------------------