mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-18 00:03:05 -04:00
Remove PyQt4 compatibility layer
This commit is contained in:
parent
a3f7655030
commit
b010b2a7a9
@ -1,26 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
***************************************************************************
|
||||
Qsci.py
|
||||
---------------------
|
||||
Date : November 2015
|
||||
Copyright : (C) 2015 by Matthias Kuhn
|
||||
Email : matthias at opengis dot ch
|
||||
***************************************************************************
|
||||
* *
|
||||
* This program is free software; you can redistribute it and/or modify *
|
||||
* it under the terms of the GNU General Public License as published by *
|
||||
* the Free Software Foundation; either version 2 of the License, or *
|
||||
* (at your option) any later version. *
|
||||
* *
|
||||
***************************************************************************
|
||||
"""
|
||||
|
||||
__author__ = 'Matthias Kuhn'
|
||||
__date__ = 'November 2015'
|
||||
__copyright__ = '(C) 2015, Matthias Kuhn'
|
||||
# This will get replaced with a git SHA1 when you do a git archive
|
||||
__revision__ = '$Format:%H$'
|
||||
|
||||
from PyQt4.Qsci import *
|
@ -1,27 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
***************************************************************************
|
||||
Qt.py
|
||||
---------------------
|
||||
Date : September 2016
|
||||
Copyright : (C) 2015 by Marco Bernasocchi
|
||||
Email : marco at opengis dot ch
|
||||
***************************************************************************
|
||||
* *
|
||||
* This program is free software; you can redistribute it and/or modify *
|
||||
* it under the terms of the GNU General Public License as published by *
|
||||
* the Free Software Foundation; either version 2 of the License, or *
|
||||
* (at your option) any later version. *
|
||||
* *
|
||||
***************************************************************************
|
||||
"""
|
||||
|
||||
__author__ = 'Marco Bernasocchi'
|
||||
__date__ = 'September 2016'
|
||||
__copyright__ = '(C) 2016, Marco Bernasocchi'
|
||||
# This will get replaced with a git SHA1 when you do a git archive
|
||||
__revision__ = '$Format:%H$'
|
||||
|
||||
|
||||
from PyQt4.Qt import *
|
@ -1,67 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
***************************************************************************
|
||||
QtCore.py
|
||||
---------------------
|
||||
Date : November 2015
|
||||
Copyright : (C) 2015 by Matthias Kuhn
|
||||
Email : matthias at opengis dot ch
|
||||
***************************************************************************
|
||||
* *
|
||||
* This program is free software; you can redistribute it and/or modify *
|
||||
* it under the terms of the GNU General Public License as published by *
|
||||
* the Free Software Foundation; either version 2 of the License, or *
|
||||
* (at your option) any later version. *
|
||||
* *
|
||||
***************************************************************************
|
||||
"""
|
||||
|
||||
__author__ = 'Matthias Kuhn'
|
||||
__date__ = 'November 2015'
|
||||
__copyright__ = '(C) 2015, Matthias Kuhn'
|
||||
# This will get replaced with a git SHA1 when you do a git archive
|
||||
__revision__ = '$Format:%H$'
|
||||
|
||||
import sip
|
||||
for api in ["QDate", "QDateTime", "QString", "QTextStream", "QTime", "QUrl", "QVariant"]:
|
||||
sip.setapi(api, 2)
|
||||
|
||||
from PyQt4.QtCore import *
|
||||
from PyQt4.QtGui import QItemSelectionModel, QSortFilterProxyModel
|
||||
|
||||
# Add a __nonzero__ method onto QPyNullVariant so we can check for null values easier.
|
||||
# >>> value = QPyNullVariant("int")
|
||||
# >>> if value:
|
||||
# >>> print "Not a null value"
|
||||
from types import MethodType
|
||||
from PyQt4.QtCore import QPyNullVariant
|
||||
|
||||
|
||||
def __nonzero__(self):
|
||||
return False
|
||||
|
||||
|
||||
def __repr__(self):
|
||||
return 'NULL'
|
||||
|
||||
|
||||
def __eq__(self, other):
|
||||
return isinstance(other, QPyNullVariant) or other is None
|
||||
|
||||
|
||||
def __ne__(self, other):
|
||||
return not isinstance(other, QPyNullVariant) and other is not None
|
||||
|
||||
|
||||
def __hash__(self):
|
||||
return 2178309
|
||||
|
||||
|
||||
QPyNullVariant.__nonzero__ = MethodType(__nonzero__, None, QPyNullVariant)
|
||||
QPyNullVariant.__repr__ = MethodType(__repr__, None, QPyNullVariant)
|
||||
QPyNullVariant.__eq__ = MethodType(__eq__, None, QPyNullVariant)
|
||||
QPyNullVariant.__ne__ = MethodType(__ne__, None, QPyNullVariant)
|
||||
QPyNullVariant.__hash__ = MethodType(__hash__, None, QPyNullVariant)
|
||||
|
||||
NULL = QPyNullVariant(int)
|
@ -1,26 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
***************************************************************************
|
||||
QtGui.py
|
||||
---------------------
|
||||
Date : November 2015
|
||||
Copyright : (C) 2015 by Matthias Kuhn
|
||||
Email : matthias at opengis dot ch
|
||||
***************************************************************************
|
||||
* *
|
||||
* This program is free software; you can redistribute it and/or modify *
|
||||
* it under the terms of the GNU General Public License as published by *
|
||||
* the Free Software Foundation; either version 2 of the License, or *
|
||||
* (at your option) any later version. *
|
||||
* *
|
||||
***************************************************************************
|
||||
"""
|
||||
|
||||
__author__ = 'Matthias Kuhn'
|
||||
__date__ = 'November 2015'
|
||||
__copyright__ = '(C) 2015, Matthias Kuhn'
|
||||
# This will get replaced with a git SHA1 when you do a git archive
|
||||
__revision__ = '$Format:%H$'
|
||||
|
||||
from PyQt4.QtGui import *
|
@ -1,26 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
***************************************************************************
|
||||
QtNetwork.py
|
||||
---------------------
|
||||
Date : February 2016
|
||||
Copyright : (C) 2016 by Jürgen E. Fischer
|
||||
Email : jef at norbit dot de
|
||||
***************************************************************************
|
||||
* *
|
||||
* This program is free software; you can redistribute it and/or modify *
|
||||
* it under the terms of the GNU General Public License as published by *
|
||||
* the Free Software Foundation; either version 2 of the License, or *
|
||||
* (at your option) any later version. *
|
||||
* *
|
||||
***************************************************************************
|
||||
"""
|
||||
|
||||
__author__ = 'Jürgen E. Fischer'
|
||||
__date__ = 'February 2016'
|
||||
__copyright__ = '(C) 2016, Jürgen E. Fischer'
|
||||
# This will get replaced with a git SHA1 when you do a git archive
|
||||
__revision__ = '$Format:%H$'
|
||||
|
||||
from PyQt4.QtNetwork import *
|
@ -1,35 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
***************************************************************************
|
||||
QtPrintSupport.py
|
||||
---------------------
|
||||
Date : November 2015
|
||||
Copyright : (C) 2015 by Matthias Kuhn
|
||||
Email : matthias at opengis dot ch
|
||||
***************************************************************************
|
||||
* *
|
||||
* This program is free software; you can redistribute it and/or modify *
|
||||
* it under the terms of the GNU General Public License as published by *
|
||||
* the Free Software Foundation; either version 2 of the License, or *
|
||||
* (at your option) any later version. *
|
||||
* *
|
||||
***************************************************************************
|
||||
"""
|
||||
|
||||
__author__ = 'Matthias Kuhn'
|
||||
__date__ = 'November 2015'
|
||||
__copyright__ = '(C) 2015, Matthias Kuhn'
|
||||
# This will get replaced with a git SHA1 when you do a git archive
|
||||
__revision__ = '$Format:%H$'
|
||||
|
||||
from PyQt4.QtGui import (
|
||||
QAbstractPrintDialog,
|
||||
QPageSetupDialog,
|
||||
QPrintDialog,
|
||||
QPrintEngine,
|
||||
QPrintPreviewDialog,
|
||||
QPrintPreviewWidget,
|
||||
QPrinter,
|
||||
QPrinterInfo
|
||||
)
|
@ -1,26 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
***************************************************************************
|
||||
QtSql.py
|
||||
---------------------
|
||||
Date : February 2016
|
||||
Copyright : (C) 2016 by Jürgen E. Fischer
|
||||
Email : jef at norbit dot de
|
||||
***************************************************************************
|
||||
* *
|
||||
* This program is free software; you can redistribute it and/or modify *
|
||||
* it under the terms of the GNU General Public License as published by *
|
||||
* the Free Software Foundation; either version 2 of the License, or *
|
||||
* (at your option) any later version. *
|
||||
* *
|
||||
***************************************************************************
|
||||
"""
|
||||
|
||||
__author__ = 'Jürgen E. Fischer'
|
||||
__date__ = 'February 2016'
|
||||
__copyright__ = '(C) 2016, Jürgen E. Fischer'
|
||||
# This will get replaced with a git SHA1 when you do a git archive
|
||||
__revision__ = '$Format:%H$'
|
||||
|
||||
from PyQt4.QtSql import *
|
@ -1,26 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
***************************************************************************
|
||||
QtSvg.py
|
||||
---------------------
|
||||
Date : March 2016
|
||||
Copyright : (C) 2016 by Jürgen E. Fischer
|
||||
Email : jef at norbit dot de
|
||||
***************************************************************************
|
||||
* *
|
||||
* This program is free software; you can redistribute it and/or modify *
|
||||
* it under the terms of the GNU General Public License as published by *
|
||||
* the Free Software Foundation; either version 2 of the License, or *
|
||||
* (at your option) any later version. *
|
||||
* *
|
||||
***************************************************************************
|
||||
"""
|
||||
|
||||
__author__ = 'Jürgen E. Fischer'
|
||||
__date__ = 'March 2016'
|
||||
__copyright__ = '(C) 2016, Jürgen E. Fischer'
|
||||
# This will get replaced with a git SHA1 when you do a git archive
|
||||
__revision__ = '$Format:%H$'
|
||||
|
||||
from PyQt4.QtSvg import *
|
@ -1,26 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
***************************************************************************
|
||||
QtTest.py
|
||||
---------------------
|
||||
Date : February 2016
|
||||
Copyright : (C) 2016 by Jürgen E. Fischer
|
||||
Email : jef at norbit dot de
|
||||
***************************************************************************
|
||||
* *
|
||||
* This program is free software; you can redistribute it and/or modify *
|
||||
* it under the terms of the GNU General Public License as published by *
|
||||
* the Free Software Foundation; either version 2 of the License, or *
|
||||
* (at your option) any later version. *
|
||||
* *
|
||||
***************************************************************************
|
||||
"""
|
||||
|
||||
__author__ = 'Jürgen E. Fischer'
|
||||
__date__ = 'February 2016'
|
||||
__copyright__ = '(C) 2016, Jürgen E. Fischer'
|
||||
# This will get replaced with a git SHA1 when you do a git archive
|
||||
__revision__ = '$Format:%H$'
|
||||
|
||||
from PyQt4.QtTest import *
|
@ -1,26 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
***************************************************************************
|
||||
QtWebKit.py
|
||||
---------------------
|
||||
Date : November 2015
|
||||
Copyright : (C) 2015 by Matthias Kuhn
|
||||
Email : matthias at opengis dot ch
|
||||
***************************************************************************
|
||||
* *
|
||||
* This program is free software; you can redistribute it and/or modify *
|
||||
* it under the terms of the GNU General Public License as published by *
|
||||
* the Free Software Foundation; either version 2 of the License, or *
|
||||
* (at your option) any later version. *
|
||||
* *
|
||||
***************************************************************************
|
||||
"""
|
||||
|
||||
__author__ = 'Matthias Kuhn'
|
||||
__date__ = 'November 2015'
|
||||
__copyright__ = '(C) 2015, Matthias Kuhn'
|
||||
# This will get replaced with a git SHA1 when you do a git archive
|
||||
__revision__ = '$Format:%H$'
|
||||
|
||||
from PyQt4.QtWebKit import *
|
@ -1,33 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
***************************************************************************
|
||||
QtWebKitWidgets.py
|
||||
---------------------
|
||||
Date : November 2015
|
||||
Copyright : (C) 2015 by Matthias Kuhn
|
||||
Email : matthias at opengis dot ch
|
||||
***************************************************************************
|
||||
* *
|
||||
* This program is free software; you can redistribute it and/or modify *
|
||||
* it under the terms of the GNU General Public License as published by *
|
||||
* the Free Software Foundation; either version 2 of the License, or *
|
||||
* (at your option) any later version. *
|
||||
* *
|
||||
***************************************************************************
|
||||
"""
|
||||
|
||||
__author__ = 'Matthias Kuhn'
|
||||
__date__ = 'November 2015'
|
||||
__copyright__ = '(C) 2015, Matthias Kuhn'
|
||||
# This will get replaced with a git SHA1 when you do a git archive
|
||||
__revision__ = '$Format:%H$'
|
||||
|
||||
from PyQt4.QtWebKit import (
|
||||
QGraphicsWebView,
|
||||
QWebFrame,
|
||||
QWebHitTestResult,
|
||||
QWebInspector,
|
||||
QWebPage,
|
||||
QWebView
|
||||
)
|
@ -1,225 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
***************************************************************************
|
||||
QtWidgets.py
|
||||
---------------------
|
||||
Date : November 2015
|
||||
Copyright : (C) 2015 by Matthias Kuhn
|
||||
Email : matthias at opengis dot ch
|
||||
***************************************************************************
|
||||
* *
|
||||
* This program is free software; you can redistribute it and/or modify *
|
||||
* it under the terms of the GNU General Public License as published by *
|
||||
* the Free Software Foundation; either version 2 of the License, or *
|
||||
* (at your option) any later version. *
|
||||
* *
|
||||
***************************************************************************
|
||||
"""
|
||||
|
||||
__author__ = 'Matthias Kuhn'
|
||||
__date__ = 'November 2015'
|
||||
__copyright__ = '(C) 2015, Matthias Kuhn'
|
||||
# This will get replaced with a git SHA1 when you do a git archive
|
||||
__revision__ = '$Format:%H$'
|
||||
|
||||
from PyQt4.QtGui import (
|
||||
QAbstractButton,
|
||||
QAbstractGraphicsShapeItem,
|
||||
QAbstractItemDelegate,
|
||||
QAbstractItemView,
|
||||
QAbstractScrollArea,
|
||||
QAbstractSlider,
|
||||
QAbstractSpinBox,
|
||||
QAction,
|
||||
QActionGroup,
|
||||
QApplication,
|
||||
QBoxLayout,
|
||||
QButtonGroup,
|
||||
QCalendarWidget,
|
||||
QCheckBox,
|
||||
QColorDialog,
|
||||
QColumnView,
|
||||
QComboBox,
|
||||
QCommandLinkButton,
|
||||
QCommonStyle,
|
||||
QCompleter,
|
||||
QDataWidgetMapper,
|
||||
QDateEdit,
|
||||
QDateTimeEdit,
|
||||
QDesktopWidget,
|
||||
QDial,
|
||||
QDialog,
|
||||
QDialogButtonBox,
|
||||
QDirModel,
|
||||
QDockWidget,
|
||||
QDoubleSpinBox,
|
||||
QErrorMessage,
|
||||
QFileDialog,
|
||||
QFileIconProvider,
|
||||
QFileSystemModel,
|
||||
QFocusFrame,
|
||||
QFontComboBox,
|
||||
QFontDialog,
|
||||
QFormLayout,
|
||||
QFrame,
|
||||
QGesture,
|
||||
QGestureEvent,
|
||||
QGestureRecognizer,
|
||||
QGraphicsAnchor,
|
||||
QGraphicsAnchorLayout,
|
||||
QGraphicsBlurEffect,
|
||||
QGraphicsColorizeEffect,
|
||||
QGraphicsDropShadowEffect,
|
||||
QGraphicsEffect,
|
||||
QGraphicsEllipseItem,
|
||||
QGraphicsGridLayout,
|
||||
QGraphicsItem,
|
||||
QGraphicsItemGroup,
|
||||
QGraphicsLayout,
|
||||
QGraphicsLayoutItem,
|
||||
QGraphicsLineItem,
|
||||
QGraphicsLinearLayout,
|
||||
QGraphicsObject,
|
||||
QGraphicsOpacityEffect,
|
||||
QGraphicsPathItem,
|
||||
QGraphicsPixmapItem,
|
||||
QGraphicsPolygonItem,
|
||||
QGraphicsProxyWidget,
|
||||
QGraphicsRectItem,
|
||||
QGraphicsRotation,
|
||||
QGraphicsScale,
|
||||
QGraphicsScene,
|
||||
QGraphicsSceneContextMenuEvent,
|
||||
QGraphicsSceneDragDropEvent,
|
||||
QGraphicsSceneEvent,
|
||||
QGraphicsSceneHelpEvent,
|
||||
QGraphicsSceneHoverEvent,
|
||||
QGraphicsSceneMouseEvent,
|
||||
QGraphicsSceneMoveEvent,
|
||||
QGraphicsSceneResizeEvent,
|
||||
QGraphicsSceneWheelEvent,
|
||||
QGraphicsSimpleTextItem,
|
||||
QGraphicsTextItem,
|
||||
QGraphicsTransform,
|
||||
QGraphicsView,
|
||||
QGraphicsWidget,
|
||||
QGridLayout,
|
||||
QGroupBox,
|
||||
QHBoxLayout,
|
||||
QHeaderView,
|
||||
QInputDialog,
|
||||
QItemDelegate,
|
||||
QItemEditorCreatorBase,
|
||||
QItemEditorFactory,
|
||||
QKeyEventTransition,
|
||||
QLCDNumber,
|
||||
QLabel,
|
||||
QLayout,
|
||||
QLayoutItem,
|
||||
QLineEdit,
|
||||
QListView,
|
||||
QListWidget,
|
||||
QListWidgetItem,
|
||||
QMainWindow,
|
||||
QMdiArea,
|
||||
QMdiSubWindow,
|
||||
QMenu,
|
||||
QMenuBar,
|
||||
QMessageBox,
|
||||
QMouseEventTransition,
|
||||
QPanGesture,
|
||||
QPinchGesture,
|
||||
QPlainTextDocumentLayout,
|
||||
QPlainTextEdit,
|
||||
QProgressBar,
|
||||
QProgressDialog,
|
||||
QPushButton,
|
||||
QRadioButton,
|
||||
QRubberBand,
|
||||
QScrollArea,
|
||||
QScrollBar,
|
||||
QShortcut,
|
||||
QSizeGrip,
|
||||
QSizePolicy,
|
||||
QSlider,
|
||||
QSpacerItem,
|
||||
QSpinBox,
|
||||
QSplashScreen,
|
||||
QSplitter,
|
||||
QSplitterHandle,
|
||||
QStackedLayout,
|
||||
QStackedWidget,
|
||||
QStatusBar,
|
||||
QStyle,
|
||||
QStyleFactory,
|
||||
QStyleHintReturn,
|
||||
QStyleHintReturnMask,
|
||||
QStyleHintReturnVariant,
|
||||
QStyleOption,
|
||||
QStyleOptionButton,
|
||||
QStyleOptionComboBox,
|
||||
QStyleOptionComplex,
|
||||
QStyleOptionDockWidget,
|
||||
QStyleOptionFocusRect,
|
||||
QStyleOptionFrame,
|
||||
QStyleOptionGraphicsItem,
|
||||
QStyleOptionGroupBox,
|
||||
QStyleOptionHeader,
|
||||
QStyleOptionMenuItem,
|
||||
QStyleOptionProgressBar,
|
||||
QStyleOptionRubberBand,
|
||||
QStyleOptionSizeGrip,
|
||||
QStyleOptionSlider,
|
||||
QStyleOptionSpinBox,
|
||||
QStyleOptionTab,
|
||||
QStyleOptionTabBarBase,
|
||||
QStyleOptionTabWidgetFrame,
|
||||
QStyleOptionTitleBar,
|
||||
QStyleOptionToolBar,
|
||||
QStyleOptionToolBox,
|
||||
QStyleOptionToolButton,
|
||||
QStyleOptionViewItem,
|
||||
QStylePainter,
|
||||
QStyledItemDelegate,
|
||||
QSwipeGesture,
|
||||
QSystemTrayIcon,
|
||||
QTabBar,
|
||||
QTabWidget,
|
||||
QTableView,
|
||||
QTableWidget,
|
||||
QTableWidgetItem,
|
||||
QTableWidgetSelectionRange,
|
||||
QTapAndHoldGesture,
|
||||
QTapGesture,
|
||||
QTextBrowser,
|
||||
QTextEdit,
|
||||
QTimeEdit,
|
||||
QToolBar,
|
||||
QToolBox,
|
||||
QToolButton,
|
||||
QToolTip,
|
||||
QTreeView,
|
||||
QTreeWidget,
|
||||
QTreeWidgetItem,
|
||||
QTreeWidgetItemIterator,
|
||||
QUndoCommand,
|
||||
QUndoGroup,
|
||||
QUndoStack,
|
||||
QUndoView,
|
||||
QVBoxLayout,
|
||||
QWhatsThis,
|
||||
QWidget,
|
||||
QWidgetAction,
|
||||
QWidgetItem,
|
||||
QWizard,
|
||||
QWizardPage,
|
||||
qApp,
|
||||
qDrawBorderPixmap,
|
||||
qDrawPlainRect,
|
||||
qDrawShadeLine,
|
||||
qDrawShadePanel,
|
||||
qDrawShadeRect,
|
||||
qDrawWinButton,
|
||||
qDrawWinPanel
|
||||
)
|
@ -1,26 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
***************************************************************************
|
||||
QtXml.py
|
||||
---------------------
|
||||
Date : February 2016
|
||||
Copyright : (C) 2016 by Jürgen E. Fischer
|
||||
Email : jef at norbit dot de
|
||||
***************************************************************************
|
||||
* *
|
||||
* This program is free software; you can redistribute it and/or modify *
|
||||
* it under the terms of the GNU General Public License as published by *
|
||||
* the Free Software Foundation; either version 2 of the License, or *
|
||||
* (at your option) any later version. *
|
||||
* *
|
||||
***************************************************************************
|
||||
"""
|
||||
|
||||
__author__ = 'Jürgen E. Fischer'
|
||||
__date__ = 'February 2016'
|
||||
__copyright__ = '(C) 2016, Jürgen E. Fischer'
|
||||
# This will get replaced with a git SHA1 when you do a git archive
|
||||
__revision__ = '$Format:%H$'
|
||||
|
||||
from PyQt4.QtXml import *
|
@ -1,24 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
***************************************************************************
|
||||
__init__.py
|
||||
---------------------
|
||||
Date : November 2015
|
||||
Copyright : (C) 2015 by Matthias Kuhn
|
||||
Email : matthias at opengis dot ch
|
||||
***************************************************************************
|
||||
* *
|
||||
* This program is free software; you can redistribute it and/or modify *
|
||||
* it under the terms of the GNU General Public License as published by *
|
||||
* the Free Software Foundation; either version 2 of the License, or *
|
||||
* (at your option) any later version. *
|
||||
* *
|
||||
***************************************************************************
|
||||
"""
|
||||
|
||||
__author__ = 'Matthias Kuhn'
|
||||
__date__ = 'November 2015'
|
||||
__copyright__ = '(C) 2015, Matthias Kuhn'
|
||||
# This will get replaced with a git SHA1 when you do a git archive
|
||||
__revision__ = '$Format:%H$'
|
@ -1,29 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
***************************************************************************
|
||||
__init__.py
|
||||
---------------------
|
||||
Date : February 2016
|
||||
Copyright : (C) 2016 by Jürgen E. Fischer
|
||||
Email : jef at norbit dot de
|
||||
***************************************************************************
|
||||
* *
|
||||
* This program is free software; you can redistribute it and/or modify *
|
||||
* it under the terms of the GNU General Public License as published by *
|
||||
* the Free Software Foundation; either version 2 of the License, or *
|
||||
* (at your option) any later version. *
|
||||
* *
|
||||
***************************************************************************
|
||||
"""
|
||||
|
||||
__author__ = 'Jürgen E. Fischer'
|
||||
__date__ = 'February 2016'
|
||||
__copyright__ = '(C) 2016, Jürgen E. Fischer'
|
||||
# This will get replaced with a git SHA1 when you do a git archive
|
||||
__revision__ = '$Format:%H$'
|
||||
|
||||
from PyQt4.uic.Compiler import indenter, compiler
|
||||
from PyQt4.uic.objcreator import widgetPluginPath
|
||||
from PyQt4.uic import properties, uiparser, Compiler
|
||||
from PyQt4.uic import *
|
@ -1 +0,0 @@
|
||||
from PyQt4.uic import properties
|
@ -1,31 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
***************************************************************************
|
||||
pyuic.py
|
||||
---------------------
|
||||
Date : February 2016
|
||||
Copyright : (C) 2016 by Jürgen E. Fischer
|
||||
Email : jef at norbit dot de
|
||||
***************************************************************************
|
||||
* *
|
||||
* This program is free software; you can redistribute it and/or modify *
|
||||
* it under the terms of the GNU General Public License as published by *
|
||||
* the Free Software Foundation; either version 2 of the License, or *
|
||||
* (at your option) any later version. *
|
||||
* *
|
||||
***************************************************************************
|
||||
"""
|
||||
|
||||
__author__ = 'Jürgen E. Fischer'
|
||||
__date__ = 'February 2016'
|
||||
__copyright__ = '(C) 2016, Jürgen E. Fischer'
|
||||
# This will get replaced with a git SHA1 when you do a git archive
|
||||
__revision__ = '$Format:%H$'
|
||||
|
||||
|
||||
import sip
|
||||
for api in ["QDate", "QDateTime", "QString", "QTextStream", "QTime", "QUrl", "QVariant"]:
|
||||
sip.setapi(api, 2)
|
||||
|
||||
from PyQt4.uic import pyuic
|
Loading…
x
Reference in New Issue
Block a user