|
1 # -*- coding: utf-8 -*- |
|
2 |
|
3 # Copyright (c) 2005 - 2021 Detlev Offenbach <detlev@die-offenbachs.de> |
|
4 # |
|
5 |
|
6 """ |
|
7 Module defining type strings for the different Python types. |
|
8 """ |
|
9 |
|
10 |
|
11 SpecialAttributes = ( |
|
12 "__bases__", "__class__", "__dict__", "__doc__", "__mro__", "__name__", |
|
13 "__qualname__", |
|
14 ) |
|
15 BatchSize = 200 |
|
16 ConfigQtNames = ( |
|
17 'PyQt5.', 'PyQt6.', 'PySide2.', 'PySide6.', 'Shiboken.EnumType' |
|
18 ) |
|
19 ConfigKnownQtTypes = ( |
|
20 '.QChar', '.QByteArray', '.QString', '.QStringList', '.QPoint', '.QPointF', |
|
21 '.QRect', '.QRectF', '.QSize', '.QSizeF', '.QColor', '.QDate', '.QTime', |
|
22 '.QDateTime', '.QDir', '.QFile', '.QFont', '.QUrl', '.QModelIndex', |
|
23 '.QRegExp', '.QRegularExpression', '.QAction', '.QKeySequence', |
|
24 '.QDomAttr', '.QDomCharacterData', '.QDomComment', '.QDomDocument', |
|
25 '.QDomElement', '.QDomText', '.QHostAddress', '.EnumType' |
|
26 ) |