mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
50 lines
2.5 KiB
Python
50 lines
2.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
***************************************************************************
|
|
__init__.py
|
|
---------------------
|
|
Date : May 2014
|
|
Copyright : (C) 2014 by Nathan Woodrow
|
|
Email : woodrow dot nathan at gmail dot com
|
|
***************************************************************************
|
|
* *
|
|
* 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__ = 'Nathan Woodrow'
|
|
__date__ = 'May 2014'
|
|
__copyright__ = '(C) 2014, Nathan Woodrow'
|
|
# This will get replaced with a git SHA1 when you do a git archive
|
|
__revision__ = '$Format:%H$'
|
|
|
|
from qgis.PyQt import QtCore
|
|
from qgis._gui import *
|
|
|
|
# -----------------
|
|
# DO NOT EDIT BELOW
|
|
# These are automatically added by calling sipify.pl script
|
|
QgsAuthSettingsWidget.WarningType.baseClass = QgsAuthSettingsWidget
|
|
QgsAdvancedDigitizingDockWidget.CadCapacities.baseClass = QgsAdvancedDigitizingDockWidget
|
|
CadCapacities = QgsAdvancedDigitizingDockWidget # dirty hack since SIP seems to introduce the flags in module
|
|
QgsColorButton.Behavior.baseClass = QgsColorButton
|
|
QgsColorTextWidget.ColorTextFormat.baseClass = QgsColorTextWidget
|
|
QgsFilterLineEdit.ClearMode.baseClass = QgsFilterLineEdit
|
|
QgsFloatingWidget.AnchorPoint.baseClass = QgsFloatingWidget
|
|
QgsFontButton.Mode.baseClass = QgsFontButton
|
|
QgsMapLayerAction.Targets.baseClass = QgsMapLayerAction
|
|
Targets = QgsMapLayerAction # dirty hack since SIP seems to introduce the flags in module
|
|
QgsMapLayerAction.Flags.baseClass = QgsMapLayerAction
|
|
Flags = QgsMapLayerAction # dirty hack since SIP seems to introduce the flags in module
|
|
QgsMapToolIdentify.IdentifyMode.baseClass = QgsMapToolIdentify
|
|
QgsMapToolIdentify.LayerType.baseClass = QgsMapToolIdentify
|
|
LayerType = QgsMapToolIdentify # dirty hack since SIP seems to introduce the flags in module
|
|
QgsAttributeTableFilterModel.FilterMode.baseClass = QgsAttributeTableFilterModel
|
|
QgsAttributeTableFilterModel.ColumnType.baseClass = QgsAttributeTableFilterModel
|
|
QgsDualView.ViewMode.baseClass = QgsDualView
|