exe 依赖添加
This commit is contained in:
@@ -0,0 +1,236 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QT3DANIMATION_PYTHON_H
|
||||
#define SBK_QT3DANIMATION_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qt3drender_python.h>
|
||||
#include <pyside6_qt3dcore_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtopengl_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <Qt3DAnimation/qabstractanimation.h>
|
||||
#include <Qt3DAnimation/qabstractclipanimator.h>
|
||||
#include <Qt3DAnimation/qanimationcallback.h>
|
||||
#include <Qt3DAnimation/qanimationcliploader.h>
|
||||
#include <Qt3DAnimation/qkeyframe.h>
|
||||
#include <Qt3DAnimation/qkeyframeanimation.h>
|
||||
#include <Qt3DAnimation/qmorphinganimation.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
namespace Qt3DAnimation {
|
||||
class QAbstractAnimationClip;
|
||||
class QAbstractChannelMapping;
|
||||
class QAbstractClipBlendNode;
|
||||
class QAdditiveClipBlend;
|
||||
class QAnimationAspect;
|
||||
class QAnimationClip;
|
||||
class QAnimationClipData;
|
||||
class QAnimationController;
|
||||
class QAnimationGroup;
|
||||
class QBlendedClipAnimator;
|
||||
class QCallbackMapping;
|
||||
class QChannel;
|
||||
class QChannelComponent;
|
||||
class QChannelMapper;
|
||||
class QChannelMapping;
|
||||
class QClipAnimator;
|
||||
class QClipBlendValue;
|
||||
class QClock;
|
||||
class QLerpClipBlend;
|
||||
class QMorphTarget;
|
||||
class QSkeletonMapping;
|
||||
class QVertexBlendAnimation;
|
||||
}
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QT3DANIMATIONQT3DANIMATION_IDX = 2,
|
||||
SBK_QT3DANIMATION_QABSTRACTANIMATION_ANIMATIONTYPE_IDX = 6,
|
||||
SBK_QT3DANIMATION_QABSTRACTANIMATION_IDX = 4,
|
||||
SBK_QT3DANIMATION_QABSTRACTANIMATIONCLIP_IDX = 8,
|
||||
SBK_QT3DANIMATION_QABSTRACTCHANNELMAPPING_IDX = 10,
|
||||
SBK_QT3DANIMATION_QABSTRACTCLIPANIMATOR_LOOPS_IDX = 14,
|
||||
SBK_QT3DANIMATION_QABSTRACTCLIPANIMATOR_IDX = 12,
|
||||
SBK_QT3DANIMATION_QABSTRACTCLIPBLENDNODE_IDX = 16,
|
||||
SBK_QT3DANIMATION_QADDITIVECLIPBLEND_IDX = 18,
|
||||
SBK_QT3DANIMATION_QANIMATIONASPECT_IDX = 20,
|
||||
SBK_QT3DANIMATION_QANIMATIONCALLBACK_FLAG_IDX = 24,
|
||||
SBK_QFLAGS_QT3DANIMATION_QANIMATIONCALLBACK_FLAG_IDX = 0,
|
||||
SBK_QT3DANIMATION_QANIMATIONCALLBACK_IDX = 22,
|
||||
SBK_QT3DANIMATION_QANIMATIONCLIP_IDX = 26,
|
||||
SBK_QT3DANIMATION_QANIMATIONCLIPDATA_IDX = 28,
|
||||
SBK_QT3DANIMATION_QANIMATIONCLIPLOADER_STATUS_IDX = 32,
|
||||
SBK_QT3DANIMATION_QANIMATIONCLIPLOADER_IDX = 30,
|
||||
SBK_QT3DANIMATION_QANIMATIONCONTROLLER_IDX = 34,
|
||||
SBK_QT3DANIMATION_QANIMATIONGROUP_IDX = 36,
|
||||
SBK_QT3DANIMATION_QBLENDEDCLIPANIMATOR_IDX = 38,
|
||||
SBK_QT3DANIMATION_QCALLBACKMAPPING_IDX = 40,
|
||||
SBK_QT3DANIMATION_QCHANNEL_IDX = 42,
|
||||
SBK_QT3DANIMATION_QCHANNELCOMPONENT_IDX = 44,
|
||||
SBK_QT3DANIMATION_QCHANNELMAPPER_IDX = 46,
|
||||
SBK_QT3DANIMATION_QCHANNELMAPPING_IDX = 48,
|
||||
SBK_QT3DANIMATION_QCLIPANIMATOR_IDX = 50,
|
||||
SBK_QT3DANIMATION_QCLIPBLENDVALUE_IDX = 52,
|
||||
SBK_QT3DANIMATION_QCLOCK_IDX = 54,
|
||||
SBK_QT3DANIMATION_QKEYFRAME_INTERPOLATIONTYPE_IDX = 58,
|
||||
SBK_QT3DANIMATION_QKEYFRAME_IDX = 56,
|
||||
SBK_QT3DANIMATION_QKEYFRAMEANIMATION_REPEATMODE_IDX = 62,
|
||||
SBK_QT3DANIMATION_QKEYFRAMEANIMATION_IDX = 60,
|
||||
SBK_QT3DANIMATION_QLERPCLIPBLEND_IDX = 64,
|
||||
SBK_QT3DANIMATION_QMORPHTARGET_IDX = 66,
|
||||
SBK_QT3DANIMATION_QMORPHINGANIMATION_METHOD_IDX = 70,
|
||||
SBK_QT3DANIMATION_QMORPHINGANIMATION_IDX = 68,
|
||||
SBK_QT3DANIMATION_QSKELETONMAPPING_IDX = 72,
|
||||
SBK_QT3DANIMATION_QVERTEXBLENDANIMATION_IDX = 74,
|
||||
SBK_QT3DANIMATION_IDX_COUNT = 76,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_Qt3DAnimationQt3DAnimation_IDX = 1,
|
||||
SBK_Qt3DAnimation_QAbstractAnimation_AnimationType_IDX = 3,
|
||||
SBK_Qt3DAnimation_QAbstractAnimation_IDX = 2,
|
||||
SBK_Qt3DAnimation_QAbstractAnimationClip_IDX = 4,
|
||||
SBK_Qt3DAnimation_QAbstractChannelMapping_IDX = 5,
|
||||
SBK_Qt3DAnimation_QAbstractClipAnimator_Loops_IDX = 7,
|
||||
SBK_Qt3DAnimation_QAbstractClipAnimator_IDX = 6,
|
||||
SBK_Qt3DAnimation_QAbstractClipBlendNode_IDX = 8,
|
||||
SBK_Qt3DAnimation_QAdditiveClipBlend_IDX = 9,
|
||||
SBK_Qt3DAnimation_QAnimationAspect_IDX = 10,
|
||||
SBK_Qt3DAnimation_QAnimationCallback_Flag_IDX = 12,
|
||||
SBK_QFlags_Qt3DAnimation_QAnimationCallback_Flag_IDX = 0,
|
||||
SBK_Qt3DAnimation_QAnimationCallback_IDX = 11,
|
||||
SBK_Qt3DAnimation_QAnimationClip_IDX = 13,
|
||||
SBK_Qt3DAnimation_QAnimationClipData_IDX = 14,
|
||||
SBK_Qt3DAnimation_QAnimationClipLoader_Status_IDX = 16,
|
||||
SBK_Qt3DAnimation_QAnimationClipLoader_IDX = 15,
|
||||
SBK_Qt3DAnimation_QAnimationController_IDX = 17,
|
||||
SBK_Qt3DAnimation_QAnimationGroup_IDX = 18,
|
||||
SBK_Qt3DAnimation_QBlendedClipAnimator_IDX = 19,
|
||||
SBK_Qt3DAnimation_QCallbackMapping_IDX = 20,
|
||||
SBK_Qt3DAnimation_QChannel_IDX = 21,
|
||||
SBK_Qt3DAnimation_QChannelComponent_IDX = 22,
|
||||
SBK_Qt3DAnimation_QChannelMapper_IDX = 23,
|
||||
SBK_Qt3DAnimation_QChannelMapping_IDX = 24,
|
||||
SBK_Qt3DAnimation_QClipAnimator_IDX = 25,
|
||||
SBK_Qt3DAnimation_QClipBlendValue_IDX = 26,
|
||||
SBK_Qt3DAnimation_QClock_IDX = 27,
|
||||
SBK_Qt3DAnimation_QKeyFrame_InterpolationType_IDX = 29,
|
||||
SBK_Qt3DAnimation_QKeyFrame_IDX = 28,
|
||||
SBK_Qt3DAnimation_QKeyframeAnimation_RepeatMode_IDX = 31,
|
||||
SBK_Qt3DAnimation_QKeyframeAnimation_IDX = 30,
|
||||
SBK_Qt3DAnimation_QLerpClipBlend_IDX = 32,
|
||||
SBK_Qt3DAnimation_QMorphTarget_IDX = 33,
|
||||
SBK_Qt3DAnimation_QMorphingAnimation_Method_IDX = 35,
|
||||
SBK_Qt3DAnimation_QMorphingAnimation_IDX = 34,
|
||||
SBK_Qt3DAnimation_QSkeletonMapping_IDX = 36,
|
||||
SBK_Qt3DAnimation_QVertexBlendAnimation_IDX = 37,
|
||||
SBK_Qt3DAnimation_IDX_COUNT = 38,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_Qt3DAnimationTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_Qt3DAnimationTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_Qt3DAnimationModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_Qt3DAnimationTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QT3DANIMATION_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QT3DANIMATION_QLIST_FLOAT_IDX = 1, // QList<float>
|
||||
SBK_QT3DANIMATION_QLIST_QT3DCORE_QTRANSFORMPTR_IDX = 2, // QList<Qt3DCore::QTransform*>
|
||||
SBK_QT3DANIMATION_QLIST_QT3DANIMATION_QMORPHTARGETPTR_IDX = 3, // QList<Qt3DAnimation::QMorphTarget*>
|
||||
SBK_QT3DANIMATION_QLIST_QT3DANIMATION_QABSTRACTCHANNELMAPPINGPTR_IDX = 4, // QList<Qt3DAnimation::QAbstractChannelMapping*>
|
||||
SBK_QT3DANIMATION_STD_VECTOR_QSHAREDPOINTER_QT3DCORE_QASPECTJOB_IDX = 5, // std::vector<QSharedPointer<Qt3DCore::QAspectJob>>
|
||||
SBK_QT3DANIMATION_QLIST_QT3DANIMATION_QABSTRACTANIMATIONPTR_IDX = 6, // QList<Qt3DAnimation::QAbstractAnimation*>
|
||||
SBK_QT3DANIMATION_QLIST_QT3DANIMATION_QANIMATIONGROUPPTR_IDX = 7, // QList<Qt3DAnimation::QAnimationGroup*>
|
||||
SBK_QT3DANIMATION_QLIST_QT3DCORE_QATTRIBUTEPTR_IDX = 8, // QList<Qt3DCore::QAttribute*>
|
||||
SBK_QT3DANIMATION_QLIST_QVARIANT_IDX = 9, // QList<QVariant>
|
||||
SBK_QT3DANIMATION_QLIST_QSTRING_IDX = 10, // QList<QString>
|
||||
SBK_QT3DANIMATION_QMAP_QSTRING_QVARIANT_IDX = 11, // QMap<QString,QVariant>
|
||||
SBK_QT3DANIMATION_CONVERTERS_IDX_COUNT = 12,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_Qt3DAnimation_QList_int_IDX = 0, // QList<int>
|
||||
SBK_Qt3DAnimation_QList_float_IDX = 1, // QList<float>
|
||||
SBK_Qt3DAnimation_QList_Qt3DCore_QTransformPTR_IDX = 2, // QList<Qt3DCore::QTransform*>
|
||||
SBK_Qt3DAnimation_QList_Qt3DAnimation_QMorphTargetPTR_IDX = 3, // QList<Qt3DAnimation::QMorphTarget*>
|
||||
SBK_Qt3DAnimation_QList_Qt3DAnimation_QAbstractChannelMappingPTR_IDX = 4, // QList<Qt3DAnimation::QAbstractChannelMapping*>
|
||||
SBK_Qt3DAnimation_std_vector_QSharedPointer_Qt3DCore_QAspectJob_IDX = 5, // std::vector<QSharedPointer<Qt3DCore::QAspectJob>>
|
||||
SBK_Qt3DAnimation_QList_Qt3DAnimation_QAbstractAnimationPTR_IDX = 6, // QList<Qt3DAnimation::QAbstractAnimation*>
|
||||
SBK_Qt3DAnimation_QList_Qt3DAnimation_QAnimationGroupPTR_IDX = 7, // QList<Qt3DAnimation::QAnimationGroup*>
|
||||
SBK_Qt3DAnimation_QList_Qt3DCore_QAttributePTR_IDX = 8, // QList<Qt3DCore::QAttribute*>
|
||||
SBK_Qt3DAnimation_QList_QVariant_IDX = 9, // QList<QVariant>
|
||||
SBK_Qt3DAnimation_QList_QString_IDX = 10, // QList<QString>
|
||||
SBK_Qt3DAnimation_QMap_QString_QVariant_IDX = 11, // QMap<QString,QVariant>
|
||||
SBK_Qt3DAnimation_CONVERTERS_IDX_COUNT = 12,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QAbstractAnimation::AnimationType >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QAbstractAnimation_AnimationType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QAbstractAnimation >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QAbstractAnimation_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QAbstractAnimationClip >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QAbstractAnimationClip_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QAbstractChannelMapping >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QAbstractChannelMapping_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QAbstractClipAnimator::Loops >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QAbstractClipAnimator_Loops_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QAbstractClipAnimator >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QAbstractClipAnimator_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QAbstractClipBlendNode >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QAbstractClipBlendNode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QAdditiveClipBlend >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QAdditiveClipBlend_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QAnimationAspect >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QAnimationAspect_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QAnimationCallback::Flag >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QAnimationCallback_Flag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<Qt3DAnimation::QAnimationCallback::Flag> >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_QFlags_Qt3DAnimation_QAnimationCallback_Flag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QAnimationCallback >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QAnimationCallback_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QAnimationClip >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QAnimationClip_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QAnimationClipData >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QAnimationClipData_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QAnimationClipLoader::Status >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QAnimationClipLoader_Status_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QAnimationClipLoader >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QAnimationClipLoader_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QAnimationController >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QAnimationController_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QAnimationGroup >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QAnimationGroup_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QBlendedClipAnimator >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QBlendedClipAnimator_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QCallbackMapping >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QCallbackMapping_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QChannel >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QChannel_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QChannelComponent >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QChannelComponent_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QChannelMapper >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QChannelMapper_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QChannelMapping >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QChannelMapping_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QClipAnimator >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QClipAnimator_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QClipBlendValue >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QClipBlendValue_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QClock >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QClock_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QKeyFrame::InterpolationType >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QKeyFrame_InterpolationType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QKeyFrame >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QKeyFrame_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QKeyframeAnimation::RepeatMode >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QKeyframeAnimation_RepeatMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QKeyframeAnimation >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QKeyframeAnimation_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QLerpClipBlend >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QLerpClipBlend_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QMorphTarget >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QMorphTarget_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QMorphingAnimation::Method >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QMorphingAnimation_Method_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QMorphingAnimation >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QMorphingAnimation_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QSkeletonMapping >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QSkeletonMapping_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DAnimation::QVertexBlendAnimation >() { return Shiboken::Module::get(SbkPySide6_Qt3DAnimationTypeStructs[SBK_Qt3DAnimation_QVertexBlendAnimation_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QT3DANIMATION_PYTHON_H
|
||||
|
||||
230
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/Qt3DCore/pyside6_qt3dcore_python.h
vendored
Normal file
230
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/Qt3DCore/pyside6_qt3dcore_python.h
vendored
Normal file
@@ -0,0 +1,230 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QT3DCORE_PYTHON_H
|
||||
#define SBK_QT3DCORE_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <Qt3DCore/qaspectengine.h>
|
||||
#include <Qt3DCore/qattribute.h>
|
||||
#include <Qt3DCore/qbackendnode.h>
|
||||
#include <Qt3DCore/qbuffer.h>
|
||||
#include <Qt3DCore/qgeometryview.h>
|
||||
#include <Qt3DCore/qnodeid.h>
|
||||
#include <Qt3DCore/qskeletonloader.h>
|
||||
#include <qsharedpointer.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
namespace Qt3DCore {
|
||||
class QAbstractAspect;
|
||||
class QAbstractFunctor;
|
||||
class QAbstractSkeleton;
|
||||
class QArmature;
|
||||
class QAspectJob;
|
||||
class QBackendNodeMapper;
|
||||
class QBoundingVolume;
|
||||
class QComponent;
|
||||
class QCoreAspect;
|
||||
class QCoreSettings;
|
||||
class QEntity;
|
||||
class QGeometry;
|
||||
class QJoint;
|
||||
class QNode;
|
||||
class QNodeId;
|
||||
struct QNodeIdTypePair;
|
||||
class QSkeleton;
|
||||
class QTransform;
|
||||
}
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QT3DCOREQT3DCORE_IDX = 2,
|
||||
SBK_QT3DCORE_QABSTRACTASPECT_IDX = 4,
|
||||
SBK_QT3DCORE_QABSTRACTFUNCTOR_IDX = 6,
|
||||
SBK_QT3DCORE_QABSTRACTSKELETON_IDX = 8,
|
||||
SBK_QT3DCORE_QARMATURE_IDX = 10,
|
||||
SBK_QT3DCORE_QASPECTENGINE_RUNMODE_IDX = 14,
|
||||
SBK_QT3DCORE_QASPECTENGINE_IDX = 12,
|
||||
SBK_QT3DCORE_QASPECTJOB_IDX = 16,
|
||||
SBK_QT3DCORE_QATTRIBUTE_ATTRIBUTETYPE_IDX = 20,
|
||||
SBK_QT3DCORE_QATTRIBUTE_VERTEXBASETYPE_IDX = 22,
|
||||
SBK_QT3DCORE_QATTRIBUTE_IDX = 18,
|
||||
SBK_QT3DCORE_QBACKENDNODE_MODE_IDX = 26,
|
||||
SBK_QT3DCORE_QBACKENDNODE_IDX = 24,
|
||||
SBK_QT3DCORE_QBACKENDNODEMAPPER_IDX = 28,
|
||||
SBK_QT3DCORE_QBOUNDINGVOLUME_IDX = 30,
|
||||
SBK_QT3DCORE_QBUFFER_USAGETYPE_IDX = 36,
|
||||
SBK_QT3DCORE_QBUFFER_ACCESSTYPE_IDX = 34,
|
||||
SBK_QT3DCORE_QBUFFER_IDX = 32,
|
||||
SBK_QT3DCORE_QCOMPONENT_IDX = 38,
|
||||
SBK_QT3DCORE_QCOREASPECT_IDX = 40,
|
||||
SBK_QT3DCORE_QCORESETTINGS_IDX = 42,
|
||||
SBK_QT3DCORE_QENTITY_IDX = 44,
|
||||
SBK_QT3DCORE_QGEOMETRY_IDX = 46,
|
||||
SBK_QT3DCORE_QGEOMETRYVIEW_PRIMITIVETYPE_IDX = 50,
|
||||
SBK_QT3DCORE_QGEOMETRYVIEW_IDX = 48,
|
||||
SBK_QT3DCORE_QJOINT_IDX = 52,
|
||||
SBK_QT3DCORE_QNODE_IDX = 54,
|
||||
SBK_QT3DCORE_QNODEID_IDX = 56,
|
||||
SBK_QT3DCORE_QNODEIDTYPEPAIR_IDX = 58,
|
||||
SBK_QT3DCORE_QSKELETON_IDX = 60,
|
||||
SBK_QT3DCORE_QSKELETONLOADER_STATUS_IDX = 64,
|
||||
SBK_QT3DCORE_QSKELETONLOADER_IDX = 62,
|
||||
SBK_QT3DCORE_QTRANSFORM_IDX = 66,
|
||||
SBK_QSHAREDPOINTER_QT3DCORE_QENTITY_IDX = 68, // QSharedPointer<Qt3DCore::QEntity>
|
||||
SBK_QSHAREDPOINTER_CONSTQT3DCORE_QENTITY_IDX = 68, // (const)
|
||||
SBK_QSHAREDPOINTER_QT3DCORE_QBACKENDNODEMAPPER_IDX = 70, // QSharedPointer<Qt3DCore::QBackendNodeMapper>
|
||||
SBK_QSHAREDPOINTER_CONSTQT3DCORE_QBACKENDNODEMAPPER_IDX = 70, // (const)
|
||||
SBK_QSHAREDPOINTER_QT3DCORE_QASPECTJOB_IDX = 72, // QSharedPointer<Qt3DCore::QAspectJob>
|
||||
SBK_QSHAREDPOINTER_CONSTQT3DCORE_QASPECTJOB_IDX = 72, // (const)
|
||||
SBK_QT3DCORE_IDX_COUNT = 74,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_Qt3DCoreQt3DCore_IDX = 1,
|
||||
SBK_Qt3DCore_QAbstractAspect_IDX = 2,
|
||||
SBK_Qt3DCore_QAbstractFunctor_IDX = 3,
|
||||
SBK_Qt3DCore_QAbstractSkeleton_IDX = 4,
|
||||
SBK_Qt3DCore_QArmature_IDX = 5,
|
||||
SBK_Qt3DCore_QAspectEngine_RunMode_IDX = 7,
|
||||
SBK_Qt3DCore_QAspectEngine_IDX = 6,
|
||||
SBK_Qt3DCore_QAspectJob_IDX = 8,
|
||||
SBK_Qt3DCore_QAttribute_AttributeType_IDX = 10,
|
||||
SBK_Qt3DCore_QAttribute_VertexBaseType_IDX = 11,
|
||||
SBK_Qt3DCore_QAttribute_IDX = 9,
|
||||
SBK_Qt3DCore_QBackendNode_Mode_IDX = 13,
|
||||
SBK_Qt3DCore_QBackendNode_IDX = 12,
|
||||
SBK_Qt3DCore_QBackendNodeMapper_IDX = 14,
|
||||
SBK_Qt3DCore_QBoundingVolume_IDX = 15,
|
||||
SBK_Qt3DCore_QBuffer_UsageType_IDX = 18,
|
||||
SBK_Qt3DCore_QBuffer_AccessType_IDX = 17,
|
||||
SBK_Qt3DCore_QBuffer_IDX = 16,
|
||||
SBK_Qt3DCore_QComponent_IDX = 19,
|
||||
SBK_Qt3DCore_QCoreAspect_IDX = 20,
|
||||
SBK_Qt3DCore_QCoreSettings_IDX = 21,
|
||||
SBK_Qt3DCore_QEntity_IDX = 22,
|
||||
SBK_Qt3DCore_QGeometry_IDX = 23,
|
||||
SBK_Qt3DCore_QGeometryView_PrimitiveType_IDX = 25,
|
||||
SBK_Qt3DCore_QGeometryView_IDX = 24,
|
||||
SBK_Qt3DCore_QJoint_IDX = 26,
|
||||
SBK_Qt3DCore_QNode_IDX = 27,
|
||||
SBK_Qt3DCore_QNodeId_IDX = 28,
|
||||
SBK_Qt3DCore_QNodeIdTypePair_IDX = 29,
|
||||
SBK_Qt3DCore_QSkeleton_IDX = 30,
|
||||
SBK_Qt3DCore_QSkeletonLoader_Status_IDX = 32,
|
||||
SBK_Qt3DCore_QSkeletonLoader_IDX = 31,
|
||||
SBK_Qt3DCore_QTransform_IDX = 33,
|
||||
SBK_QSharedPointer_Qt3DCore_QEntity_IDX = 34, // QSharedPointer<Qt3DCore::QEntity>
|
||||
SBK_QSharedPointer_constQt3DCore_QEntity_IDX = 34, // (const)
|
||||
SBK_QSharedPointer_Qt3DCore_QBackendNodeMapper_IDX = 35, // QSharedPointer<Qt3DCore::QBackendNodeMapper>
|
||||
SBK_QSharedPointer_constQt3DCore_QBackendNodeMapper_IDX = 35, // (const)
|
||||
SBK_QSharedPointer_Qt3DCore_QAspectJob_IDX = 36, // QSharedPointer<Qt3DCore::QAspectJob>
|
||||
SBK_QSharedPointer_constQt3DCore_QAspectJob_IDX = 36, // (const)
|
||||
SBK_Qt3DCore_IDX_COUNT = 37,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_Qt3DCoreTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_Qt3DCoreTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_Qt3DCoreModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_Qt3DCoreTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QT3DCORE_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QT3DCORE_STD_VECTOR_QSHAREDPOINTER_QT3DCORE_QASPECTJOB_IDX = 1, // std::vector<QSharedPointer<Qt3DCore::QAspectJob>>
|
||||
SBK_QT3DCORE_QLIST_QT3DCORE_QENTITYPTR_IDX = 2, // QList<Qt3DCore::QEntity*>
|
||||
SBK_QT3DCORE_QLIST_QT3DCORE_QATTRIBUTEPTR_IDX = 3, // QList<Qt3DCore::QAttribute*>
|
||||
SBK_QT3DCORE_QLIST_QT3DCORE_QCOMPONENTPTR_IDX = 4, // QList<Qt3DCore::QComponent*>
|
||||
SBK_QT3DCORE_QLIST_QT3DCORE_QJOINTPTR_IDX = 5, // QList<Qt3DCore::QJoint*>
|
||||
SBK_QT3DCORE_QLIST_QT3DCORE_QNODEPTR_IDX = 6, // QList<Qt3DCore::QNode*>
|
||||
SBK_QT3DCORE_QLIST_QT3DCORE_QABSTRACTASPECTPTR_IDX = 7, // QList<Qt3DCore::QAbstractAspect*>
|
||||
SBK_QT3DCORE_QLIST_QT3DCORE_QNODEID_IDX = 8, // QList<Qt3DCore::QNodeId>
|
||||
SBK_QT3DCORE_QLIST_QVARIANT_IDX = 9, // QList<QVariant>
|
||||
SBK_QT3DCORE_QLIST_QSTRING_IDX = 10, // QList<QString>
|
||||
SBK_QT3DCORE_QMAP_QSTRING_QVARIANT_IDX = 11, // QMap<QString,QVariant>
|
||||
SBK_QT3DCORE_CONVERTERS_IDX_COUNT = 12,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_Qt3DCore_QList_int_IDX = 0, // QList<int>
|
||||
SBK_Qt3DCore_std_vector_QSharedPointer_Qt3DCore_QAspectJob_IDX = 1, // std::vector<QSharedPointer<Qt3DCore::QAspectJob>>
|
||||
SBK_Qt3DCore_QList_Qt3DCore_QEntityPTR_IDX = 2, // QList<Qt3DCore::QEntity*>
|
||||
SBK_Qt3DCore_QList_Qt3DCore_QAttributePTR_IDX = 3, // QList<Qt3DCore::QAttribute*>
|
||||
SBK_Qt3DCore_QList_Qt3DCore_QComponentPTR_IDX = 4, // QList<Qt3DCore::QComponent*>
|
||||
SBK_Qt3DCore_QList_Qt3DCore_QJointPTR_IDX = 5, // QList<Qt3DCore::QJoint*>
|
||||
SBK_Qt3DCore_QList_Qt3DCore_QNodePTR_IDX = 6, // QList<Qt3DCore::QNode*>
|
||||
SBK_Qt3DCore_QList_Qt3DCore_QAbstractAspectPTR_IDX = 7, // QList<Qt3DCore::QAbstractAspect*>
|
||||
SBK_Qt3DCore_QList_Qt3DCore_QNodeId_IDX = 8, // QList<Qt3DCore::QNodeId>
|
||||
SBK_Qt3DCore_QList_QVariant_IDX = 9, // QList<QVariant>
|
||||
SBK_Qt3DCore_QList_QString_IDX = 10, // QList<QString>
|
||||
SBK_Qt3DCore_QMap_QString_QVariant_IDX = 11, // QMap<QString,QVariant>
|
||||
SBK_Qt3DCore_CONVERTERS_IDX_COUNT = 12,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QAbstractAspect >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QAbstractAspect_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QAbstractFunctor >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QAbstractFunctor_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QAbstractSkeleton >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QAbstractSkeleton_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QArmature >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QArmature_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QAspectEngine::RunMode >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QAspectEngine_RunMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QAspectEngine >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QAspectEngine_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QAspectJob >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QAspectJob_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QAttribute::AttributeType >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QAttribute_AttributeType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QAttribute::VertexBaseType >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QAttribute_VertexBaseType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QAttribute >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QAttribute_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QBackendNode::Mode >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QBackendNode_Mode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QBackendNode >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QBackendNode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QBackendNodeMapper >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QBackendNodeMapper_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QBoundingVolume >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QBoundingVolume_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QBuffer::UsageType >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QBuffer_UsageType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QBuffer::AccessType >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QBuffer_AccessType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QBuffer >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QBuffer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QComponent >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QComponent_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QCoreAspect >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QCoreAspect_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QCoreSettings >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QCoreSettings_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QEntity >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QEntity_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QGeometry >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QGeometry_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QGeometryView::PrimitiveType >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QGeometryView_PrimitiveType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QGeometryView >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QGeometryView_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QJoint >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QJoint_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QNode >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QNode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QNodeId >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QNodeId_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QNodeIdTypePair >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QNodeIdTypePair_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QSkeleton >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QSkeleton_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QSkeletonLoader::Status >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QSkeletonLoader_Status_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QSkeletonLoader >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QSkeletonLoader_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DCore::QTransform >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_Qt3DCore_QTransform_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSharedPointer<Qt3DCore::QEntity> >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_QSharedPointer_Qt3DCore_QEntity_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSharedPointer<Qt3DCore::QBackendNodeMapper> >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_QSharedPointer_Qt3DCore_QBackendNodeMapper_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSharedPointer<Qt3DCore::QAspectJob> >() { return Shiboken::Module::get(SbkPySide6_Qt3DCoreTypeStructs[SBK_QSharedPointer_Qt3DCore_QAspectJob_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QT3DCORE_PYTHON_H
|
||||
|
||||
261
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/Qt3DExtras/pyside6_qt3dextras_python.h
vendored
Normal file
261
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/Qt3DExtras/pyside6_qt3dextras_python.h
vendored
Normal file
@@ -0,0 +1,261 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QT3DEXTRAS_PYTHON_H
|
||||
#define SBK_QT3DEXTRAS_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qt3drender_python.h>
|
||||
#include <pyside6_qt3dcore_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtopengl_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <Qt3DExtras/qabstractcameracontroller.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
namespace Qt3DExtras {
|
||||
class QAbstractSpriteSheet;
|
||||
class QConeGeometry;
|
||||
class QConeGeometryView;
|
||||
class QConeMesh;
|
||||
class QCuboidGeometry;
|
||||
class QCuboidGeometryView;
|
||||
class QCuboidMesh;
|
||||
class QCylinderGeometry;
|
||||
class QCylinderGeometryView;
|
||||
class QCylinderMesh;
|
||||
class QDiffuseMapMaterial;
|
||||
class QDiffuseSpecularMapMaterial;
|
||||
class QDiffuseSpecularMaterial;
|
||||
class QExtrudedTextGeometry;
|
||||
class QExtrudedTextMesh;
|
||||
class QFirstPersonCameraController;
|
||||
class QForwardRenderer;
|
||||
class QGoochMaterial;
|
||||
class QMetalRoughMaterial;
|
||||
class QMorphPhongMaterial;
|
||||
class QNormalDiffuseMapAlphaMaterial;
|
||||
class QNormalDiffuseMapMaterial;
|
||||
class QNormalDiffuseSpecularMapMaterial;
|
||||
class QOrbitCameraController;
|
||||
class QPerVertexColorMaterial;
|
||||
class QPhongAlphaMaterial;
|
||||
class QPhongMaterial;
|
||||
class QPlaneGeometry;
|
||||
class QPlaneGeometryView;
|
||||
class QPlaneMesh;
|
||||
class QSkyboxEntity;
|
||||
class QSphereGeometry;
|
||||
class QSphereGeometryView;
|
||||
class QSphereMesh;
|
||||
class QSpriteGrid;
|
||||
class QSpriteSheet;
|
||||
class QSpriteSheetItem;
|
||||
class QText2DEntity;
|
||||
class QTextureMaterial;
|
||||
class QTorusGeometry;
|
||||
class QTorusGeometryView;
|
||||
class QTorusMesh;
|
||||
class Qt3DWindow;
|
||||
}
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QT3DEXTRASQT3DEXTRAS_IDX = 0,
|
||||
SBK_QT3DEXTRAS_QABSTRACTCAMERACONTROLLER_IDX = 2,
|
||||
SBK_QT3DEXTRAS_QABSTRACTCAMERACONTROLLER_INPUTSTATE_IDX = 4,
|
||||
SBK_QT3DEXTRAS_QABSTRACTSPRITESHEET_IDX = 6,
|
||||
SBK_QT3DEXTRAS_QCONEGEOMETRY_IDX = 8,
|
||||
SBK_QT3DEXTRAS_QCONEGEOMETRYVIEW_IDX = 10,
|
||||
SBK_QT3DEXTRAS_QCONEMESH_IDX = 12,
|
||||
SBK_QT3DEXTRAS_QCUBOIDGEOMETRY_IDX = 14,
|
||||
SBK_QT3DEXTRAS_QCUBOIDGEOMETRYVIEW_IDX = 16,
|
||||
SBK_QT3DEXTRAS_QCUBOIDMESH_IDX = 18,
|
||||
SBK_QT3DEXTRAS_QCYLINDERGEOMETRY_IDX = 20,
|
||||
SBK_QT3DEXTRAS_QCYLINDERGEOMETRYVIEW_IDX = 22,
|
||||
SBK_QT3DEXTRAS_QCYLINDERMESH_IDX = 24,
|
||||
SBK_QT3DEXTRAS_QDIFFUSEMAPMATERIAL_IDX = 26,
|
||||
SBK_QT3DEXTRAS_QDIFFUSESPECULARMAPMATERIAL_IDX = 28,
|
||||
SBK_QT3DEXTRAS_QDIFFUSESPECULARMATERIAL_IDX = 30,
|
||||
SBK_QT3DEXTRAS_QEXTRUDEDTEXTGEOMETRY_IDX = 32,
|
||||
SBK_QT3DEXTRAS_QEXTRUDEDTEXTMESH_IDX = 34,
|
||||
SBK_QT3DEXTRAS_QFIRSTPERSONCAMERACONTROLLER_IDX = 36,
|
||||
SBK_QT3DEXTRAS_QFORWARDRENDERER_IDX = 38,
|
||||
SBK_QT3DEXTRAS_QGOOCHMATERIAL_IDX = 40,
|
||||
SBK_QT3DEXTRAS_QMETALROUGHMATERIAL_IDX = 42,
|
||||
SBK_QT3DEXTRAS_QMORPHPHONGMATERIAL_IDX = 44,
|
||||
SBK_QT3DEXTRAS_QNORMALDIFFUSEMAPALPHAMATERIAL_IDX = 46,
|
||||
SBK_QT3DEXTRAS_QNORMALDIFFUSEMAPMATERIAL_IDX = 48,
|
||||
SBK_QT3DEXTRAS_QNORMALDIFFUSESPECULARMAPMATERIAL_IDX = 50,
|
||||
SBK_QT3DEXTRAS_QORBITCAMERACONTROLLER_IDX = 52,
|
||||
SBK_QT3DEXTRAS_QPERVERTEXCOLORMATERIAL_IDX = 54,
|
||||
SBK_QT3DEXTRAS_QPHONGALPHAMATERIAL_IDX = 56,
|
||||
SBK_QT3DEXTRAS_QPHONGMATERIAL_IDX = 58,
|
||||
SBK_QT3DEXTRAS_QPLANEGEOMETRY_IDX = 60,
|
||||
SBK_QT3DEXTRAS_QPLANEGEOMETRYVIEW_IDX = 62,
|
||||
SBK_QT3DEXTRAS_QPLANEMESH_IDX = 64,
|
||||
SBK_QT3DEXTRAS_QSKYBOXENTITY_IDX = 66,
|
||||
SBK_QT3DEXTRAS_QSPHEREGEOMETRY_IDX = 68,
|
||||
SBK_QT3DEXTRAS_QSPHEREGEOMETRYVIEW_IDX = 70,
|
||||
SBK_QT3DEXTRAS_QSPHEREMESH_IDX = 72,
|
||||
SBK_QT3DEXTRAS_QSPRITEGRID_IDX = 74,
|
||||
SBK_QT3DEXTRAS_QSPRITESHEET_IDX = 76,
|
||||
SBK_QT3DEXTRAS_QSPRITESHEETITEM_IDX = 78,
|
||||
SBK_QT3DEXTRAS_QTEXT2DENTITY_IDX = 80,
|
||||
SBK_QT3DEXTRAS_QTEXTUREMATERIAL_IDX = 82,
|
||||
SBK_QT3DEXTRAS_QTORUSGEOMETRY_IDX = 84,
|
||||
SBK_QT3DEXTRAS_QTORUSGEOMETRYVIEW_IDX = 86,
|
||||
SBK_QT3DEXTRAS_QTORUSMESH_IDX = 88,
|
||||
SBK_QT3DEXTRAS_QT3DWINDOW_IDX = 90,
|
||||
SBK_QT3DEXTRAS_IDX_COUNT = 92,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_Qt3DExtrasQt3DExtras_IDX = 0,
|
||||
SBK_Qt3DExtras_QAbstractCameraController_IDX = 1,
|
||||
SBK_Qt3DExtras_QAbstractCameraController_InputState_IDX = 2,
|
||||
SBK_Qt3DExtras_QAbstractSpriteSheet_IDX = 3,
|
||||
SBK_Qt3DExtras_QConeGeometry_IDX = 4,
|
||||
SBK_Qt3DExtras_QConeGeometryView_IDX = 5,
|
||||
SBK_Qt3DExtras_QConeMesh_IDX = 6,
|
||||
SBK_Qt3DExtras_QCuboidGeometry_IDX = 7,
|
||||
SBK_Qt3DExtras_QCuboidGeometryView_IDX = 8,
|
||||
SBK_Qt3DExtras_QCuboidMesh_IDX = 9,
|
||||
SBK_Qt3DExtras_QCylinderGeometry_IDX = 10,
|
||||
SBK_Qt3DExtras_QCylinderGeometryView_IDX = 11,
|
||||
SBK_Qt3DExtras_QCylinderMesh_IDX = 12,
|
||||
SBK_Qt3DExtras_QDiffuseMapMaterial_IDX = 13,
|
||||
SBK_Qt3DExtras_QDiffuseSpecularMapMaterial_IDX = 14,
|
||||
SBK_Qt3DExtras_QDiffuseSpecularMaterial_IDX = 15,
|
||||
SBK_Qt3DExtras_QExtrudedTextGeometry_IDX = 16,
|
||||
SBK_Qt3DExtras_QExtrudedTextMesh_IDX = 17,
|
||||
SBK_Qt3DExtras_QFirstPersonCameraController_IDX = 18,
|
||||
SBK_Qt3DExtras_QForwardRenderer_IDX = 19,
|
||||
SBK_Qt3DExtras_QGoochMaterial_IDX = 20,
|
||||
SBK_Qt3DExtras_QMetalRoughMaterial_IDX = 21,
|
||||
SBK_Qt3DExtras_QMorphPhongMaterial_IDX = 22,
|
||||
SBK_Qt3DExtras_QNormalDiffuseMapAlphaMaterial_IDX = 23,
|
||||
SBK_Qt3DExtras_QNormalDiffuseMapMaterial_IDX = 24,
|
||||
SBK_Qt3DExtras_QNormalDiffuseSpecularMapMaterial_IDX = 25,
|
||||
SBK_Qt3DExtras_QOrbitCameraController_IDX = 26,
|
||||
SBK_Qt3DExtras_QPerVertexColorMaterial_IDX = 27,
|
||||
SBK_Qt3DExtras_QPhongAlphaMaterial_IDX = 28,
|
||||
SBK_Qt3DExtras_QPhongMaterial_IDX = 29,
|
||||
SBK_Qt3DExtras_QPlaneGeometry_IDX = 30,
|
||||
SBK_Qt3DExtras_QPlaneGeometryView_IDX = 31,
|
||||
SBK_Qt3DExtras_QPlaneMesh_IDX = 32,
|
||||
SBK_Qt3DExtras_QSkyboxEntity_IDX = 33,
|
||||
SBK_Qt3DExtras_QSphereGeometry_IDX = 34,
|
||||
SBK_Qt3DExtras_QSphereGeometryView_IDX = 35,
|
||||
SBK_Qt3DExtras_QSphereMesh_IDX = 36,
|
||||
SBK_Qt3DExtras_QSpriteGrid_IDX = 37,
|
||||
SBK_Qt3DExtras_QSpriteSheet_IDX = 38,
|
||||
SBK_Qt3DExtras_QSpriteSheetItem_IDX = 39,
|
||||
SBK_Qt3DExtras_QText2DEntity_IDX = 40,
|
||||
SBK_Qt3DExtras_QTextureMaterial_IDX = 41,
|
||||
SBK_Qt3DExtras_QTorusGeometry_IDX = 42,
|
||||
SBK_Qt3DExtras_QTorusGeometryView_IDX = 43,
|
||||
SBK_Qt3DExtras_QTorusMesh_IDX = 44,
|
||||
SBK_Qt3DExtras_Qt3DWindow_IDX = 45,
|
||||
SBK_Qt3DExtras_IDX_COUNT = 46,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_Qt3DExtrasTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_Qt3DExtrasTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_Qt3DExtrasModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_Qt3DExtrasTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QT3DEXTRAS_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QT3DEXTRAS_QLIST_QT3DEXTRAS_QSPRITESHEETITEMPTR_IDX = 1, // QList<Qt3DExtras::QSpriteSheetItem*>
|
||||
SBK_QT3DEXTRAS_QLIST_QVARIANT_IDX = 2, // QList<QVariant>
|
||||
SBK_QT3DEXTRAS_QLIST_QSTRING_IDX = 3, // QList<QString>
|
||||
SBK_QT3DEXTRAS_QMAP_QSTRING_QVARIANT_IDX = 4, // QMap<QString,QVariant>
|
||||
SBK_QT3DEXTRAS_CONVERTERS_IDX_COUNT = 5,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_Qt3DExtras_QList_int_IDX = 0, // QList<int>
|
||||
SBK_Qt3DExtras_QList_Qt3DExtras_QSpriteSheetItemPTR_IDX = 1, // QList<Qt3DExtras::QSpriteSheetItem*>
|
||||
SBK_Qt3DExtras_QList_QVariant_IDX = 2, // QList<QVariant>
|
||||
SBK_Qt3DExtras_QList_QString_IDX = 3, // QList<QString>
|
||||
SBK_Qt3DExtras_QMap_QString_QVariant_IDX = 4, // QMap<QString,QVariant>
|
||||
SBK_Qt3DExtras_CONVERTERS_IDX_COUNT = 5,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QAbstractCameraController >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QAbstractCameraController_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QAbstractCameraController::InputState >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QAbstractCameraController_InputState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QAbstractSpriteSheet >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QAbstractSpriteSheet_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QConeGeometry >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QConeGeometry_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QConeGeometryView >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QConeGeometryView_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QConeMesh >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QConeMesh_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QCuboidGeometry >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QCuboidGeometry_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QCuboidGeometryView >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QCuboidGeometryView_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QCuboidMesh >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QCuboidMesh_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QCylinderGeometry >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QCylinderGeometry_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QCylinderGeometryView >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QCylinderGeometryView_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QCylinderMesh >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QCylinderMesh_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QDiffuseMapMaterial >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QDiffuseMapMaterial_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QDiffuseSpecularMapMaterial >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QDiffuseSpecularMapMaterial_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QDiffuseSpecularMaterial >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QDiffuseSpecularMaterial_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QExtrudedTextGeometry >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QExtrudedTextGeometry_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QExtrudedTextMesh >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QExtrudedTextMesh_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QFirstPersonCameraController >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QFirstPersonCameraController_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QForwardRenderer >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QForwardRenderer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QGoochMaterial >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QGoochMaterial_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QMetalRoughMaterial >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QMetalRoughMaterial_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QMorphPhongMaterial >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QMorphPhongMaterial_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QNormalDiffuseMapAlphaMaterial >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QNormalDiffuseMapAlphaMaterial_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QNormalDiffuseMapMaterial >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QNormalDiffuseMapMaterial_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QNormalDiffuseSpecularMapMaterial >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QNormalDiffuseSpecularMapMaterial_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QOrbitCameraController >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QOrbitCameraController_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QPerVertexColorMaterial >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QPerVertexColorMaterial_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QPhongAlphaMaterial >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QPhongAlphaMaterial_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QPhongMaterial >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QPhongMaterial_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QPlaneGeometry >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QPlaneGeometry_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QPlaneGeometryView >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QPlaneGeometryView_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QPlaneMesh >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QPlaneMesh_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QSkyboxEntity >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QSkyboxEntity_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QSphereGeometry >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QSphereGeometry_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QSphereGeometryView >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QSphereGeometryView_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QSphereMesh >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QSphereMesh_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QSpriteGrid >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QSpriteGrid_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QSpriteSheet >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QSpriteSheet_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QSpriteSheetItem >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QSpriteSheetItem_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QText2DEntity >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QText2DEntity_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QTextureMaterial >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QTextureMaterial_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QTorusGeometry >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QTorusGeometry_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QTorusGeometryView >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QTorusGeometryView_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::QTorusMesh >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_QTorusMesh_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DExtras::Qt3DWindow >() { return Shiboken::Module::get(SbkPySide6_Qt3DExtrasTypeStructs[SBK_Qt3DExtras_Qt3DWindow_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QT3DEXTRAS_PYTHON_H
|
||||
|
||||
196
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/Qt3DInput/pyside6_qt3dinput_python.h
vendored
Normal file
196
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/Qt3DInput/pyside6_qt3dinput_python.h
vendored
Normal file
@@ -0,0 +1,196 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QT3DINPUT_PYTHON_H
|
||||
#define SBK_QT3DINPUT_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qt3dcore_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <Qt3DInput/qabstractactioninput.h>
|
||||
#include <Qt3DInput/qaxisaccumulator.h>
|
||||
#include <Qt3DInput/qmousedevice.h>
|
||||
#include <Qt3DInput/qmouseevent.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
namespace Qt3DInput {
|
||||
class QAbstractActionInput;
|
||||
class QAbstractAxisInput;
|
||||
class QAbstractPhysicalDevice;
|
||||
class QAction;
|
||||
class QActionInput;
|
||||
class QAnalogAxisInput;
|
||||
class QAxis;
|
||||
class QAxisSetting;
|
||||
class QButtonAxisInput;
|
||||
class QInputAspect;
|
||||
class QInputChord;
|
||||
class QInputSequence;
|
||||
class QInputSettings;
|
||||
class QKeyEvent;
|
||||
class QKeyboardDevice;
|
||||
class QKeyboardHandler;
|
||||
class QLogicalDevice;
|
||||
class QMouseHandler;
|
||||
}
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QT3DINPUTQT3DINPUT_IDX = 0,
|
||||
SBK_QT3DINPUT_QABSTRACTACTIONINPUT_IDX = 2,
|
||||
SBK_QT3DINPUT_QABSTRACTAXISINPUT_IDX = 4,
|
||||
SBK_QT3DINPUT_QABSTRACTPHYSICALDEVICE_IDX = 6,
|
||||
SBK_QT3DINPUT_QACTION_IDX = 8,
|
||||
SBK_QT3DINPUT_QACTIONINPUT_IDX = 10,
|
||||
SBK_QT3DINPUT_QANALOGAXISINPUT_IDX = 12,
|
||||
SBK_QT3DINPUT_QAXIS_IDX = 14,
|
||||
SBK_QT3DINPUT_QAXISACCUMULATOR_SOURCEAXISTYPE_IDX = 18,
|
||||
SBK_QT3DINPUT_QAXISACCUMULATOR_IDX = 16,
|
||||
SBK_QT3DINPUT_QAXISSETTING_IDX = 20,
|
||||
SBK_QT3DINPUT_QBUTTONAXISINPUT_IDX = 22,
|
||||
SBK_QT3DINPUT_QINPUTASPECT_IDX = 24,
|
||||
SBK_QT3DINPUT_QINPUTCHORD_IDX = 26,
|
||||
SBK_QT3DINPUT_QINPUTSEQUENCE_IDX = 28,
|
||||
SBK_QT3DINPUT_QINPUTSETTINGS_IDX = 30,
|
||||
SBK_QT3DINPUT_QKEYEVENT_IDX = 32,
|
||||
SBK_QT3DINPUT_QKEYBOARDDEVICE_IDX = 34,
|
||||
SBK_QT3DINPUT_QKEYBOARDHANDLER_IDX = 36,
|
||||
SBK_QT3DINPUT_QLOGICALDEVICE_IDX = 38,
|
||||
SBK_QT3DINPUT_QMOUSEDEVICE_AXIS_IDX = 42,
|
||||
SBK_QT3DINPUT_QMOUSEDEVICE_IDX = 40,
|
||||
SBK_QT3DINPUT_QMOUSEEVENT_BUTTONS_IDX = 46,
|
||||
SBK_QT3DINPUT_QMOUSEEVENT_MODIFIERS_IDX = 48,
|
||||
SBK_QT3DINPUT_QMOUSEEVENT_IDX = 44,
|
||||
SBK_QT3DINPUT_QMOUSEHANDLER_IDX = 50,
|
||||
SBK_QT3DINPUT_QWHEELEVENT_BUTTONS_IDX = 54,
|
||||
SBK_QT3DINPUT_QWHEELEVENT_MODIFIERS_IDX = 56,
|
||||
SBK_QT3DINPUT_QWHEELEVENT_IDX = 52,
|
||||
SBK_QT3DINPUT_IDX_COUNT = 58,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_Qt3DInputQt3DInput_IDX = 0,
|
||||
SBK_Qt3DInput_QAbstractActionInput_IDX = 1,
|
||||
SBK_Qt3DInput_QAbstractAxisInput_IDX = 2,
|
||||
SBK_Qt3DInput_QAbstractPhysicalDevice_IDX = 3,
|
||||
SBK_Qt3DInput_QAction_IDX = 4,
|
||||
SBK_Qt3DInput_QActionInput_IDX = 5,
|
||||
SBK_Qt3DInput_QAnalogAxisInput_IDX = 6,
|
||||
SBK_Qt3DInput_QAxis_IDX = 7,
|
||||
SBK_Qt3DInput_QAxisAccumulator_SourceAxisType_IDX = 9,
|
||||
SBK_Qt3DInput_QAxisAccumulator_IDX = 8,
|
||||
SBK_Qt3DInput_QAxisSetting_IDX = 10,
|
||||
SBK_Qt3DInput_QButtonAxisInput_IDX = 11,
|
||||
SBK_Qt3DInput_QInputAspect_IDX = 12,
|
||||
SBK_Qt3DInput_QInputChord_IDX = 13,
|
||||
SBK_Qt3DInput_QInputSequence_IDX = 14,
|
||||
SBK_Qt3DInput_QInputSettings_IDX = 15,
|
||||
SBK_Qt3DInput_QKeyEvent_IDX = 16,
|
||||
SBK_Qt3DInput_QKeyboardDevice_IDX = 17,
|
||||
SBK_Qt3DInput_QKeyboardHandler_IDX = 18,
|
||||
SBK_Qt3DInput_QLogicalDevice_IDX = 19,
|
||||
SBK_Qt3DInput_QMouseDevice_Axis_IDX = 21,
|
||||
SBK_Qt3DInput_QMouseDevice_IDX = 20,
|
||||
SBK_Qt3DInput_QMouseEvent_Buttons_IDX = 23,
|
||||
SBK_Qt3DInput_QMouseEvent_Modifiers_IDX = 24,
|
||||
SBK_Qt3DInput_QMouseEvent_IDX = 22,
|
||||
SBK_Qt3DInput_QMouseHandler_IDX = 25,
|
||||
SBK_Qt3DInput_QWheelEvent_Buttons_IDX = 27,
|
||||
SBK_Qt3DInput_QWheelEvent_Modifiers_IDX = 28,
|
||||
SBK_Qt3DInput_QWheelEvent_IDX = 26,
|
||||
SBK_Qt3DInput_IDX_COUNT = 29,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_Qt3DInputTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_Qt3DInputTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_Qt3DInputModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_Qt3DInputTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QT3DINPUT_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QT3DINPUT_QLIST_QT3DINPUT_QABSTRACTACTIONINPUTPTR_IDX = 1, // QList<Qt3DInput::QAbstractActionInput*>
|
||||
SBK_QT3DINPUT_QLIST_QT3DINPUT_QAXISSETTINGPTR_IDX = 2, // QList<Qt3DInput::QAxisSetting*>
|
||||
SBK_QT3DINPUT_QLIST_QT3DINPUT_QABSTRACTAXISINPUTPTR_IDX = 3, // QList<Qt3DInput::QAbstractAxisInput*>
|
||||
SBK_QT3DINPUT_STD_VECTOR_QSHAREDPOINTER_QT3DCORE_QASPECTJOB_IDX = 4, // std::vector<QSharedPointer<Qt3DCore::QAspectJob>>
|
||||
SBK_QT3DINPUT_QLIST_QT3DINPUT_QACTIONPTR_IDX = 5, // QList<Qt3DInput::QAction*>
|
||||
SBK_QT3DINPUT_QLIST_QT3DINPUT_QAXISPTR_IDX = 6, // QList<Qt3DInput::QAxis*>
|
||||
SBK_QT3DINPUT_QLIST_QVARIANT_IDX = 7, // QList<QVariant>
|
||||
SBK_QT3DINPUT_QLIST_QSTRING_IDX = 8, // QList<QString>
|
||||
SBK_QT3DINPUT_QMAP_QSTRING_QVARIANT_IDX = 9, // QMap<QString,QVariant>
|
||||
SBK_QT3DINPUT_CONVERTERS_IDX_COUNT = 10,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_Qt3DInput_QList_int_IDX = 0, // QList<int>
|
||||
SBK_Qt3DInput_QList_Qt3DInput_QAbstractActionInputPTR_IDX = 1, // QList<Qt3DInput::QAbstractActionInput*>
|
||||
SBK_Qt3DInput_QList_Qt3DInput_QAxisSettingPTR_IDX = 2, // QList<Qt3DInput::QAxisSetting*>
|
||||
SBK_Qt3DInput_QList_Qt3DInput_QAbstractAxisInputPTR_IDX = 3, // QList<Qt3DInput::QAbstractAxisInput*>
|
||||
SBK_Qt3DInput_std_vector_QSharedPointer_Qt3DCore_QAspectJob_IDX = 4, // std::vector<QSharedPointer<Qt3DCore::QAspectJob>>
|
||||
SBK_Qt3DInput_QList_Qt3DInput_QActionPTR_IDX = 5, // QList<Qt3DInput::QAction*>
|
||||
SBK_Qt3DInput_QList_Qt3DInput_QAxisPTR_IDX = 6, // QList<Qt3DInput::QAxis*>
|
||||
SBK_Qt3DInput_QList_QVariant_IDX = 7, // QList<QVariant>
|
||||
SBK_Qt3DInput_QList_QString_IDX = 8, // QList<QString>
|
||||
SBK_Qt3DInput_QMap_QString_QVariant_IDX = 9, // QMap<QString,QVariant>
|
||||
SBK_Qt3DInput_CONVERTERS_IDX_COUNT = 10,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QAbstractActionInput >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QAbstractActionInput_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QAbstractAxisInput >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QAbstractAxisInput_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QAbstractPhysicalDevice >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QAbstractPhysicalDevice_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QAction >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QAction_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QActionInput >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QActionInput_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QAnalogAxisInput >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QAnalogAxisInput_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QAxis >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QAxis_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QAxisAccumulator::SourceAxisType >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QAxisAccumulator_SourceAxisType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QAxisAccumulator >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QAxisAccumulator_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QAxisSetting >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QAxisSetting_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QButtonAxisInput >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QButtonAxisInput_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QInputAspect >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QInputAspect_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QInputChord >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QInputChord_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QInputSequence >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QInputSequence_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QInputSettings >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QInputSettings_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QKeyEvent >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QKeyEvent_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QKeyboardDevice >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QKeyboardDevice_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QKeyboardHandler >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QKeyboardHandler_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QLogicalDevice >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QLogicalDevice_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QMouseDevice::Axis >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QMouseDevice_Axis_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QMouseDevice >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QMouseDevice_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QMouseEvent::Buttons >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QMouseEvent_Buttons_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QMouseEvent::Modifiers >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QMouseEvent_Modifiers_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QMouseEvent >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QMouseEvent_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QMouseHandler >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QMouseHandler_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QWheelEvent::Buttons >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QWheelEvent_Buttons_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QWheelEvent::Modifiers >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QWheelEvent_Modifiers_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DInput::QWheelEvent >() { return Shiboken::Module::get(SbkPySide6_Qt3DInputTypeStructs[SBK_Qt3DInput_QWheelEvent_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QT3DINPUT_PYTHON_H
|
||||
|
||||
89
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/Qt3DLogic/pyside6_qt3dlogic_python.h
vendored
Normal file
89
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/Qt3DLogic/pyside6_qt3dlogic_python.h
vendored
Normal file
@@ -0,0 +1,89 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QT3DLOGIC_PYTHON_H
|
||||
#define SBK_QT3DLOGIC_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qt3dcore_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <Qt3DLogic/qframeaction.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
namespace Qt3DLogic {
|
||||
class QFrameAction;
|
||||
class QLogicAspect;
|
||||
}
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QT3DLOGICQT3DLOGIC_IDX = 0,
|
||||
SBK_QT3DLOGIC_QFRAMEACTION_IDX = 2,
|
||||
SBK_QT3DLOGIC_QLOGICASPECT_IDX = 4,
|
||||
SBK_QT3DLOGIC_IDX_COUNT = 6,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_Qt3DLogicQt3DLogic_IDX = 0,
|
||||
SBK_Qt3DLogic_QFrameAction_IDX = 1,
|
||||
SBK_Qt3DLogic_QLogicAspect_IDX = 2,
|
||||
SBK_Qt3DLogic_IDX_COUNT = 3,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_Qt3DLogicTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_Qt3DLogicTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_Qt3DLogicModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_Qt3DLogicTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QT3DLOGIC_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QT3DLOGIC_STD_VECTOR_QSHAREDPOINTER_QT3DCORE_QASPECTJOB_IDX = 1, // std::vector<QSharedPointer<Qt3DCore::QAspectJob>>
|
||||
SBK_QT3DLOGIC_QLIST_QVARIANT_IDX = 2, // QList<QVariant>
|
||||
SBK_QT3DLOGIC_QLIST_QSTRING_IDX = 3, // QList<QString>
|
||||
SBK_QT3DLOGIC_QMAP_QSTRING_QVARIANT_IDX = 4, // QMap<QString,QVariant>
|
||||
SBK_QT3DLOGIC_CONVERTERS_IDX_COUNT = 5,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_Qt3DLogic_QList_int_IDX = 0, // QList<int>
|
||||
SBK_Qt3DLogic_std_vector_QSharedPointer_Qt3DCore_QAspectJob_IDX = 1, // std::vector<QSharedPointer<Qt3DCore::QAspectJob>>
|
||||
SBK_Qt3DLogic_QList_QVariant_IDX = 2, // QList<QVariant>
|
||||
SBK_Qt3DLogic_QList_QString_IDX = 3, // QList<QString>
|
||||
SBK_Qt3DLogic_QMap_QString_QVariant_IDX = 4, // QMap<QString,QVariant>
|
||||
SBK_Qt3DLogic_CONVERTERS_IDX_COUNT = 5,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DLogic::QFrameAction >() { return Shiboken::Module::get(SbkPySide6_Qt3DLogicTypeStructs[SBK_Qt3DLogic_QFrameAction_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DLogic::QLogicAspect >() { return Shiboken::Module::get(SbkPySide6_Qt3DLogicTypeStructs[SBK_Qt3DLogic_QLogicAspect_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QT3DLOGIC_PYTHON_H
|
||||
|
||||
771
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/Qt3DRender/pyside6_qt3drender_python.h
vendored
Normal file
771
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/Qt3DRender/pyside6_qt3drender_python.h
vendored
Normal file
@@ -0,0 +1,771 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QT3DRENDER_PYTHON_H
|
||||
#define SBK_QT3DRENDER_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qt3dcore_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtopengl_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <Qt3DRender/qabstractlight.h>
|
||||
#include <Qt3DRender/qabstractraycaster.h>
|
||||
#include <Qt3DRender/qabstracttexture.h>
|
||||
#include <Qt3DRender/qalphatest.h>
|
||||
#include <Qt3DRender/qblendequation.h>
|
||||
#include <Qt3DRender/qblendequationarguments.h>
|
||||
#include <Qt3DRender/qblitframebuffer.h>
|
||||
#include <Qt3DRender/qcamera.h>
|
||||
#include <Qt3DRender/qcameralens.h>
|
||||
#include <Qt3DRender/qclearbuffers.h>
|
||||
#include <Qt3DRender/qcomputecommand.h>
|
||||
#include <Qt3DRender/qcullface.h>
|
||||
#include <Qt3DRender/qdepthtest.h>
|
||||
#include <Qt3DRender/qfrontface.h>
|
||||
#include <Qt3DRender/qgeometryrenderer.h>
|
||||
#include <Qt3DRender/qgraphicsapifilter.h>
|
||||
#include <Qt3DRender/qlayerfilter.h>
|
||||
#include <Qt3DRender/qlevelofdetail.h>
|
||||
#include <Qt3DRender/qmemorybarrier.h>
|
||||
#include <Qt3DRender/qmesh.h>
|
||||
#include <Qt3DRender/qpickevent.h>
|
||||
#include <Qt3DRender/qpickingsettings.h>
|
||||
#include <Qt3DRender/qpointsize.h>
|
||||
#include <Qt3DRender/qrastermode.h>
|
||||
#include <Qt3DRender/qraycasterhit.h>
|
||||
#include <Qt3DRender/qrenderapi.h>
|
||||
#include <Qt3DRender/qrenderaspect.h>
|
||||
#include <Qt3DRender/qrendercapabilities.h>
|
||||
#include <Qt3DRender/qrendersettings.h>
|
||||
#include <Qt3DRender/qrendertargetoutput.h>
|
||||
#include <Qt3DRender/qsceneloader.h>
|
||||
#include <Qt3DRender/qsetfence.h>
|
||||
#include <Qt3DRender/qshaderimage.h>
|
||||
#include <Qt3DRender/qshaderprogram.h>
|
||||
#include <Qt3DRender/qsortpolicy.h>
|
||||
#include <Qt3DRender/qstenciloperationarguments.h>
|
||||
#include <Qt3DRender/qstenciltestarguments.h>
|
||||
#include <Qt3DRender/qsubtreeenabler.h>
|
||||
#include <Qt3DRender/qtextureimage.h>
|
||||
#include <Qt3DRender/qtexturewrapmode.h>
|
||||
#include <Qt3DRender/qwaitfence.h>
|
||||
#include <qsharedpointer.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
namespace Qt3DRender {
|
||||
class PropertyReaderInterface;
|
||||
class QAbstractTextureImage;
|
||||
class QAlphaCoverage;
|
||||
class QBufferCapture;
|
||||
class QCameraSelector;
|
||||
class QClipPlane;
|
||||
class QColorMask;
|
||||
class QDebugOverlay;
|
||||
class QDepthRange;
|
||||
class QDirectionalLight;
|
||||
class QDispatchCompute;
|
||||
class QDithering;
|
||||
class QEffect;
|
||||
class QEnvironmentLight;
|
||||
class QFilterKey;
|
||||
class QFrameGraphNode;
|
||||
class QFrustumCulling;
|
||||
class QLayer;
|
||||
class QLevelOfDetailBoundingSphere;
|
||||
class QLevelOfDetailSwitch;
|
||||
class QLineWidth;
|
||||
class QMaterial;
|
||||
class QMultiSampleAntiAliasing;
|
||||
class QNoDepthMask;
|
||||
class QNoDraw;
|
||||
class QNoPicking;
|
||||
class QObjectPicker;
|
||||
class QPaintedTextureImage;
|
||||
class QParameter;
|
||||
class QPickLineEvent;
|
||||
class QPickPointEvent;
|
||||
class QPickTriangleEvent;
|
||||
class QPickingProxy;
|
||||
class QPointLight;
|
||||
class QPolygonOffset;
|
||||
class QProximityFilter;
|
||||
class QRayCaster;
|
||||
class QRenderCapture;
|
||||
class QRenderCaptureReply;
|
||||
class QRenderPass;
|
||||
class QRenderPassFilter;
|
||||
class QRenderState;
|
||||
class QRenderStateSet;
|
||||
class QRenderSurfaceSelector;
|
||||
class QRenderTarget;
|
||||
class QRenderTargetSelector;
|
||||
class QScissorTest;
|
||||
class QScreenRayCaster;
|
||||
class QSeamlessCubemap;
|
||||
class QShaderData;
|
||||
class QShaderProgramBuilder;
|
||||
class QSharedGLTexture;
|
||||
class QSpotLight;
|
||||
class QStencilMask;
|
||||
class QStencilOperation;
|
||||
class QStencilTest;
|
||||
class QTechnique;
|
||||
class QTechniqueFilter;
|
||||
class QTexture1D;
|
||||
class QTexture1DArray;
|
||||
class QTexture2D;
|
||||
class QTexture2DArray;
|
||||
class QTexture2DMultisample;
|
||||
class QTexture2DMultisampleArray;
|
||||
class QTexture3D;
|
||||
class QTextureBuffer;
|
||||
class QTextureCubeMap;
|
||||
class QTextureCubeMapArray;
|
||||
class QTextureData;
|
||||
class QTextureDataUpdate;
|
||||
class QTextureImageData;
|
||||
class QTextureImageDataGenerator;
|
||||
class QTextureLoader;
|
||||
class QTextureRectangle;
|
||||
class QViewport;
|
||||
}
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QT3DRENDER_API_IDX = 8,
|
||||
SBK_QT3DRENDERQT3DRENDER_IDX = 6,
|
||||
SBK_QT3DRENDER_PROPERTYREADERINTERFACE_IDX = 10,
|
||||
SBK_QT3DRENDER_QABSTRACTLIGHT_TYPE_IDX = 14,
|
||||
SBK_QT3DRENDER_QABSTRACTLIGHT_IDX = 12,
|
||||
SBK_QT3DRENDER_QABSTRACTRAYCASTER_RUNMODE_IDX = 20,
|
||||
SBK_QT3DRENDER_QABSTRACTRAYCASTER_FILTERMODE_IDX = 18,
|
||||
SBK_QT3DRENDER_QABSTRACTRAYCASTER_IDX = 16,
|
||||
SBK_QT3DRENDER_QABSTRACTTEXTURE_STATUS_IDX = 34,
|
||||
SBK_QT3DRENDER_QABSTRACTTEXTURE_TARGET_IDX = 36,
|
||||
SBK_QT3DRENDER_QABSTRACTTEXTURE_TEXTUREFORMAT_IDX = 38,
|
||||
SBK_QT3DRENDER_QABSTRACTTEXTURE_FILTER_IDX = 30,
|
||||
SBK_QT3DRENDER_QABSTRACTTEXTURE_CUBEMAPFACE_IDX = 28,
|
||||
SBK_QT3DRENDER_QABSTRACTTEXTURE_COMPARISONFUNCTION_IDX = 24,
|
||||
SBK_QT3DRENDER_QABSTRACTTEXTURE_COMPARISONMODE_IDX = 26,
|
||||
SBK_QT3DRENDER_QABSTRACTTEXTURE_HANDLETYPE_IDX = 32,
|
||||
SBK_QT3DRENDER_QABSTRACTTEXTURE_IDX = 22,
|
||||
SBK_QT3DRENDER_QABSTRACTTEXTUREIMAGE_IDX = 40,
|
||||
SBK_QT3DRENDER_QALPHACOVERAGE_IDX = 42,
|
||||
SBK_QT3DRENDER_QALPHATEST_ALPHAFUNCTION_IDX = 46,
|
||||
SBK_QT3DRENDER_QALPHATEST_IDX = 44,
|
||||
SBK_QT3DRENDER_QBLENDEQUATION_BLENDFUNCTION_IDX = 50,
|
||||
SBK_QT3DRENDER_QBLENDEQUATION_IDX = 48,
|
||||
SBK_QT3DRENDER_QBLENDEQUATIONARGUMENTS_BLENDING_IDX = 54,
|
||||
SBK_QT3DRENDER_QBLENDEQUATIONARGUMENTS_IDX = 52,
|
||||
SBK_QT3DRENDER_QBLITFRAMEBUFFER_INTERPOLATIONMETHOD_IDX = 58,
|
||||
SBK_QT3DRENDER_QBLITFRAMEBUFFER_IDX = 56,
|
||||
SBK_QT3DRENDER_QBUFFERCAPTURE_IDX = 60,
|
||||
SBK_QT3DRENDER_QCAMERA_CAMERATRANSLATIONOPTION_IDX = 64,
|
||||
SBK_QT3DRENDER_QCAMERA_IDX = 62,
|
||||
SBK_QT3DRENDER_QCAMERALENS_PROJECTIONTYPE_IDX = 68,
|
||||
SBK_QT3DRENDER_QCAMERALENS_IDX = 66,
|
||||
SBK_QT3DRENDER_QCAMERASELECTOR_IDX = 70,
|
||||
SBK_QT3DRENDER_QCLEARBUFFERS_BUFFERTYPE_IDX = 74,
|
||||
SBK_QFLAGS_QT3DRENDER_QCLEARBUFFERS_BUFFERTYPE_IDX = 0,
|
||||
SBK_QT3DRENDER_QCLEARBUFFERS_IDX = 72,
|
||||
SBK_QT3DRENDER_QCLIPPLANE_IDX = 76,
|
||||
SBK_QT3DRENDER_QCOLORMASK_IDX = 78,
|
||||
SBK_QT3DRENDER_QCOMPUTECOMMAND_RUNTYPE_IDX = 82,
|
||||
SBK_QT3DRENDER_QCOMPUTECOMMAND_IDX = 80,
|
||||
SBK_QT3DRENDER_QCULLFACE_CULLINGMODE_IDX = 86,
|
||||
SBK_QT3DRENDER_QCULLFACE_IDX = 84,
|
||||
SBK_QT3DRENDER_QDEBUGOVERLAY_IDX = 88,
|
||||
SBK_QT3DRENDER_QDEPTHRANGE_IDX = 90,
|
||||
SBK_QT3DRENDER_QDEPTHTEST_DEPTHFUNCTION_IDX = 94,
|
||||
SBK_QT3DRENDER_QDEPTHTEST_IDX = 92,
|
||||
SBK_QT3DRENDER_QDIRECTIONALLIGHT_IDX = 96,
|
||||
SBK_QT3DRENDER_QDISPATCHCOMPUTE_IDX = 98,
|
||||
SBK_QT3DRENDER_QDITHERING_IDX = 100,
|
||||
SBK_QT3DRENDER_QEFFECT_IDX = 102,
|
||||
SBK_QT3DRENDER_QENVIRONMENTLIGHT_IDX = 104,
|
||||
SBK_QT3DRENDER_QFILTERKEY_IDX = 106,
|
||||
SBK_QT3DRENDER_QFRAMEGRAPHNODE_IDX = 108,
|
||||
SBK_QT3DRENDER_QFRONTFACE_WINDINGDIRECTION_IDX = 112,
|
||||
SBK_QT3DRENDER_QFRONTFACE_IDX = 110,
|
||||
SBK_QT3DRENDER_QFRUSTUMCULLING_IDX = 114,
|
||||
SBK_QT3DRENDER_QGEOMETRYRENDERER_PRIMITIVETYPE_IDX = 118,
|
||||
SBK_QT3DRENDER_QGEOMETRYRENDERER_IDX = 116,
|
||||
SBK_QT3DRENDER_QGRAPHICSAPIFILTER_API_IDX = 122,
|
||||
SBK_QT3DRENDER_QGRAPHICSAPIFILTER_OPENGLPROFILE_IDX = 124,
|
||||
SBK_QT3DRENDER_QGRAPHICSAPIFILTER_IDX = 120,
|
||||
SBK_QT3DRENDER_QLAYER_IDX = 126,
|
||||
SBK_QT3DRENDER_QLAYERFILTER_FILTERMODE_IDX = 130,
|
||||
SBK_QT3DRENDER_QLAYERFILTER_IDX = 128,
|
||||
SBK_QT3DRENDER_QLEVELOFDETAIL_THRESHOLDTYPE_IDX = 134,
|
||||
SBK_QT3DRENDER_QLEVELOFDETAIL_IDX = 132,
|
||||
SBK_QT3DRENDER_QLEVELOFDETAILBOUNDINGSPHERE_IDX = 136,
|
||||
SBK_QT3DRENDER_QLEVELOFDETAILSWITCH_IDX = 138,
|
||||
SBK_QT3DRENDER_QLINEWIDTH_IDX = 140,
|
||||
SBK_QT3DRENDER_QMATERIAL_IDX = 142,
|
||||
SBK_QT3DRENDER_QMEMORYBARRIER_OPERATION_IDX = 146,
|
||||
SBK_QFLAGS_QT3DRENDER_QMEMORYBARRIER_OPERATION_IDX = 2,
|
||||
SBK_QT3DRENDER_QMEMORYBARRIER_IDX = 144,
|
||||
SBK_QT3DRENDER_QMESH_STATUS_IDX = 150,
|
||||
SBK_QT3DRENDER_QMESH_IDX = 148,
|
||||
SBK_QT3DRENDER_QMULTISAMPLEANTIALIASING_IDX = 152,
|
||||
SBK_QT3DRENDER_QNODEPTHMASK_IDX = 154,
|
||||
SBK_QT3DRENDER_QNODRAW_IDX = 156,
|
||||
SBK_QT3DRENDER_QNOPICKING_IDX = 158,
|
||||
SBK_QT3DRENDER_QOBJECTPICKER_IDX = 160,
|
||||
SBK_QT3DRENDER_QPAINTEDTEXTUREIMAGE_IDX = 162,
|
||||
SBK_QT3DRENDER_QPARAMETER_IDX = 164,
|
||||
SBK_QT3DRENDER_QPICKEVENT_BUTTONS_IDX = 168,
|
||||
SBK_QT3DRENDER_QPICKEVENT_MODIFIERS_IDX = 170,
|
||||
SBK_QT3DRENDER_QPICKEVENT_IDX = 166,
|
||||
SBK_QT3DRENDER_QPICKLINEEVENT_IDX = 172,
|
||||
SBK_QT3DRENDER_QPICKPOINTEVENT_IDX = 174,
|
||||
SBK_QT3DRENDER_QPICKTRIANGLEEVENT_IDX = 176,
|
||||
SBK_QT3DRENDER_QPICKINGPROXY_IDX = 178,
|
||||
SBK_QT3DRENDER_QPICKINGSETTINGS_PICKMETHOD_IDX = 184,
|
||||
SBK_QT3DRENDER_QPICKINGSETTINGS_PICKRESULTMODE_IDX = 186,
|
||||
SBK_QT3DRENDER_QPICKINGSETTINGS_FACEORIENTATIONPICKINGMODE_IDX = 182,
|
||||
SBK_QT3DRENDER_QPICKINGSETTINGS_IDX = 180,
|
||||
SBK_QT3DRENDER_QPOINTLIGHT_IDX = 188,
|
||||
SBK_QT3DRENDER_QPOINTSIZE_SIZEMODE_IDX = 192,
|
||||
SBK_QT3DRENDER_QPOINTSIZE_IDX = 190,
|
||||
SBK_QT3DRENDER_QPOLYGONOFFSET_IDX = 194,
|
||||
SBK_QT3DRENDER_QPROXIMITYFILTER_IDX = 196,
|
||||
SBK_QT3DRENDER_QRASTERMODE_RASTERMODE_IDX = 202,
|
||||
SBK_QT3DRENDER_QRASTERMODE_FACEMODE_IDX = 200,
|
||||
SBK_QT3DRENDER_QRASTERMODE_IDX = 198,
|
||||
SBK_QT3DRENDER_QRAYCASTER_IDX = 204,
|
||||
SBK_QT3DRENDER_QRAYCASTERHIT_HITTYPE_IDX = 208,
|
||||
SBK_QT3DRENDER_QRAYCASTERHIT_IDX = 206,
|
||||
SBK_QT3DRENDER_QRENDERASPECT_SUBMISSIONTYPE_IDX = 212,
|
||||
SBK_QT3DRENDER_QRENDERASPECT_IDX = 210,
|
||||
SBK_QT3DRENDER_QRENDERCAPABILITIES_API_IDX = 216,
|
||||
SBK_QT3DRENDER_QRENDERCAPABILITIES_PROFILE_IDX = 218,
|
||||
SBK_QT3DRENDER_QRENDERCAPABILITIES_IDX = 214,
|
||||
SBK_QT3DRENDER_QRENDERCAPTURE_IDX = 220,
|
||||
SBK_QT3DRENDER_QRENDERCAPTUREREPLY_IDX = 222,
|
||||
SBK_QT3DRENDER_QRENDERPASS_IDX = 224,
|
||||
SBK_QT3DRENDER_QRENDERPASSFILTER_IDX = 226,
|
||||
SBK_QT3DRENDER_QRENDERSETTINGS_RENDERPOLICY_IDX = 230,
|
||||
SBK_QT3DRENDER_QRENDERSETTINGS_IDX = 228,
|
||||
SBK_QT3DRENDER_QRENDERSTATE_IDX = 232,
|
||||
SBK_QT3DRENDER_QRENDERSTATESET_IDX = 234,
|
||||
SBK_QT3DRENDER_QRENDERSURFACESELECTOR_IDX = 236,
|
||||
SBK_QT3DRENDER_QRENDERTARGET_IDX = 238,
|
||||
SBK_QT3DRENDER_QRENDERTARGETOUTPUT_ATTACHMENTPOINT_IDX = 242,
|
||||
SBK_QT3DRENDER_QRENDERTARGETOUTPUT_IDX = 240,
|
||||
SBK_QT3DRENDER_QRENDERTARGETSELECTOR_IDX = 244,
|
||||
SBK_QT3DRENDER_QSCENELOADER_STATUS_IDX = 250,
|
||||
SBK_QT3DRENDER_QSCENELOADER_COMPONENTTYPE_IDX = 248,
|
||||
SBK_QT3DRENDER_QSCENELOADER_IDX = 246,
|
||||
SBK_QT3DRENDER_QSCISSORTEST_IDX = 252,
|
||||
SBK_QT3DRENDER_QSCREENRAYCASTER_IDX = 254,
|
||||
SBK_QT3DRENDER_QSEAMLESSCUBEMAP_IDX = 256,
|
||||
SBK_QT3DRENDER_QSETFENCE_HANDLETYPE_IDX = 260,
|
||||
SBK_QT3DRENDER_QSETFENCE_IDX = 258,
|
||||
SBK_QT3DRENDER_QSHADERDATA_IDX = 262,
|
||||
SBK_QT3DRENDER_QSHADERIMAGE_ACCESS_IDX = 266,
|
||||
SBK_QT3DRENDER_QSHADERIMAGE_IMAGEFORMAT_IDX = 268,
|
||||
SBK_QT3DRENDER_QSHADERIMAGE_IDX = 264,
|
||||
SBK_QT3DRENDER_QSHADERPROGRAM_SHADERTYPE_IDX = 274,
|
||||
SBK_QT3DRENDER_QSHADERPROGRAM_STATUS_IDX = 276,
|
||||
SBK_QT3DRENDER_QSHADERPROGRAM_FORMAT_IDX = 272,
|
||||
SBK_QT3DRENDER_QSHADERPROGRAM_IDX = 270,
|
||||
SBK_QT3DRENDER_QSHADERPROGRAMBUILDER_IDX = 278,
|
||||
SBK_QT3DRENDER_QSHAREDGLTEXTURE_IDX = 280,
|
||||
SBK_QT3DRENDER_QSORTPOLICY_SORTTYPE_IDX = 284,
|
||||
SBK_QT3DRENDER_QSORTPOLICY_IDX = 282,
|
||||
SBK_QT3DRENDER_QSPOTLIGHT_IDX = 286,
|
||||
SBK_QT3DRENDER_QSTENCILMASK_IDX = 288,
|
||||
SBK_QT3DRENDER_QSTENCILOPERATION_IDX = 290,
|
||||
SBK_QT3DRENDER_QSTENCILOPERATIONARGUMENTS_FACEMODE_IDX = 294,
|
||||
SBK_QT3DRENDER_QSTENCILOPERATIONARGUMENTS_OPERATION_IDX = 296,
|
||||
SBK_QT3DRENDER_QSTENCILOPERATIONARGUMENTS_IDX = 292,
|
||||
SBK_QT3DRENDER_QSTENCILTEST_IDX = 298,
|
||||
SBK_QT3DRENDER_QSTENCILTESTARGUMENTS_STENCILFACEMODE_IDX = 302,
|
||||
SBK_QT3DRENDER_QSTENCILTESTARGUMENTS_STENCILFUNCTION_IDX = 304,
|
||||
SBK_QT3DRENDER_QSTENCILTESTARGUMENTS_IDX = 300,
|
||||
SBK_QT3DRENDER_QSUBTREEENABLER_ENABLEMENT_IDX = 308,
|
||||
SBK_QT3DRENDER_QSUBTREEENABLER_IDX = 306,
|
||||
SBK_QT3DRENDER_QTECHNIQUE_IDX = 310,
|
||||
SBK_QT3DRENDER_QTECHNIQUEFILTER_IDX = 312,
|
||||
SBK_QT3DRENDER_QTEXTURE1D_IDX = 314,
|
||||
SBK_QT3DRENDER_QTEXTURE1DARRAY_IDX = 316,
|
||||
SBK_QT3DRENDER_QTEXTURE2D_IDX = 318,
|
||||
SBK_QT3DRENDER_QTEXTURE2DARRAY_IDX = 320,
|
||||
SBK_QT3DRENDER_QTEXTURE2DMULTISAMPLE_IDX = 322,
|
||||
SBK_QT3DRENDER_QTEXTURE2DMULTISAMPLEARRAY_IDX = 324,
|
||||
SBK_QT3DRENDER_QTEXTURE3D_IDX = 326,
|
||||
SBK_QT3DRENDER_QTEXTUREBUFFER_IDX = 328,
|
||||
SBK_QT3DRENDER_QTEXTURECUBEMAP_IDX = 330,
|
||||
SBK_QT3DRENDER_QTEXTURECUBEMAPARRAY_IDX = 332,
|
||||
SBK_QT3DRENDER_QTEXTUREDATA_IDX = 334,
|
||||
SBK_QT3DRENDER_QTEXTUREDATAUPDATE_IDX = 336,
|
||||
SBK_QT3DRENDER_QTEXTUREIMAGE_STATUS_IDX = 340,
|
||||
SBK_QT3DRENDER_QTEXTUREIMAGE_IDX = 338,
|
||||
SBK_QT3DRENDER_QTEXTUREIMAGEDATA_IDX = 342,
|
||||
SBK_QT3DRENDER_QTEXTUREIMAGEDATAGENERATOR_IDX = 344,
|
||||
SBK_QT3DRENDER_QTEXTURELOADER_IDX = 346,
|
||||
SBK_QT3DRENDER_QTEXTURERECTANGLE_IDX = 348,
|
||||
SBK_QT3DRENDER_QTEXTUREWRAPMODE_WRAPMODE_IDX = 352,
|
||||
SBK_QT3DRENDER_QTEXTUREWRAPMODE_IDX = 350,
|
||||
SBK_QT3DRENDER_QVIEWPORT_IDX = 354,
|
||||
SBK_QT3DRENDER_QWAITFENCE_HANDLETYPE_IDX = 358,
|
||||
SBK_QT3DRENDER_QWAITFENCE_IDX = 356,
|
||||
SBK_QSHAREDPOINTER_QT3DRENDER_PROPERTYREADERINTERFACE_IDX = 360, // QSharedPointer<Qt3DRender::PropertyReaderInterface>
|
||||
SBK_QSHAREDPOINTER_CONSTQT3DRENDER_PROPERTYREADERINTERFACE_IDX = 360, // (const)
|
||||
SBK_QSHAREDPOINTER_QT3DRENDER_QTEXTUREIMAGEDATAGENERATOR_IDX = 362, // QSharedPointer<Qt3DRender::QTextureImageDataGenerator>
|
||||
SBK_QSHAREDPOINTER_CONSTQT3DRENDER_QTEXTUREIMAGEDATAGENERATOR_IDX = 362, // (const)
|
||||
SBK_QSHAREDPOINTER_QT3DRENDER_QTEXTUREIMAGEDATA_IDX = 364, // QSharedPointer<Qt3DRender::QTextureImageData>
|
||||
SBK_QSHAREDPOINTER_CONSTQT3DRENDER_QTEXTUREIMAGEDATA_IDX = 364, // (const)
|
||||
SBK_QT3DRENDER_IDX_COUNT = 366,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_Qt3DRender_API_IDX = 4,
|
||||
SBK_Qt3DRenderQt3DRender_IDX = 3,
|
||||
SBK_Qt3DRender_PropertyReaderInterface_IDX = 5,
|
||||
SBK_Qt3DRender_QAbstractLight_Type_IDX = 7,
|
||||
SBK_Qt3DRender_QAbstractLight_IDX = 6,
|
||||
SBK_Qt3DRender_QAbstractRayCaster_RunMode_IDX = 10,
|
||||
SBK_Qt3DRender_QAbstractRayCaster_FilterMode_IDX = 9,
|
||||
SBK_Qt3DRender_QAbstractRayCaster_IDX = 8,
|
||||
SBK_Qt3DRender_QAbstractTexture_Status_IDX = 17,
|
||||
SBK_Qt3DRender_QAbstractTexture_Target_IDX = 18,
|
||||
SBK_Qt3DRender_QAbstractTexture_TextureFormat_IDX = 19,
|
||||
SBK_Qt3DRender_QAbstractTexture_Filter_IDX = 15,
|
||||
SBK_Qt3DRender_QAbstractTexture_CubeMapFace_IDX = 14,
|
||||
SBK_Qt3DRender_QAbstractTexture_ComparisonFunction_IDX = 12,
|
||||
SBK_Qt3DRender_QAbstractTexture_ComparisonMode_IDX = 13,
|
||||
SBK_Qt3DRender_QAbstractTexture_HandleType_IDX = 16,
|
||||
SBK_Qt3DRender_QAbstractTexture_IDX = 11,
|
||||
SBK_Qt3DRender_QAbstractTextureImage_IDX = 20,
|
||||
SBK_Qt3DRender_QAlphaCoverage_IDX = 21,
|
||||
SBK_Qt3DRender_QAlphaTest_AlphaFunction_IDX = 23,
|
||||
SBK_Qt3DRender_QAlphaTest_IDX = 22,
|
||||
SBK_Qt3DRender_QBlendEquation_BlendFunction_IDX = 25,
|
||||
SBK_Qt3DRender_QBlendEquation_IDX = 24,
|
||||
SBK_Qt3DRender_QBlendEquationArguments_Blending_IDX = 27,
|
||||
SBK_Qt3DRender_QBlendEquationArguments_IDX = 26,
|
||||
SBK_Qt3DRender_QBlitFramebuffer_InterpolationMethod_IDX = 29,
|
||||
SBK_Qt3DRender_QBlitFramebuffer_IDX = 28,
|
||||
SBK_Qt3DRender_QBufferCapture_IDX = 30,
|
||||
SBK_Qt3DRender_QCamera_CameraTranslationOption_IDX = 32,
|
||||
SBK_Qt3DRender_QCamera_IDX = 31,
|
||||
SBK_Qt3DRender_QCameraLens_ProjectionType_IDX = 34,
|
||||
SBK_Qt3DRender_QCameraLens_IDX = 33,
|
||||
SBK_Qt3DRender_QCameraSelector_IDX = 35,
|
||||
SBK_Qt3DRender_QClearBuffers_BufferType_IDX = 37,
|
||||
SBK_QFlags_Qt3DRender_QClearBuffers_BufferType_IDX = 0,
|
||||
SBK_Qt3DRender_QClearBuffers_IDX = 36,
|
||||
SBK_Qt3DRender_QClipPlane_IDX = 38,
|
||||
SBK_Qt3DRender_QColorMask_IDX = 39,
|
||||
SBK_Qt3DRender_QComputeCommand_RunType_IDX = 41,
|
||||
SBK_Qt3DRender_QComputeCommand_IDX = 40,
|
||||
SBK_Qt3DRender_QCullFace_CullingMode_IDX = 43,
|
||||
SBK_Qt3DRender_QCullFace_IDX = 42,
|
||||
SBK_Qt3DRender_QDebugOverlay_IDX = 44,
|
||||
SBK_Qt3DRender_QDepthRange_IDX = 45,
|
||||
SBK_Qt3DRender_QDepthTest_DepthFunction_IDX = 47,
|
||||
SBK_Qt3DRender_QDepthTest_IDX = 46,
|
||||
SBK_Qt3DRender_QDirectionalLight_IDX = 48,
|
||||
SBK_Qt3DRender_QDispatchCompute_IDX = 49,
|
||||
SBK_Qt3DRender_QDithering_IDX = 50,
|
||||
SBK_Qt3DRender_QEffect_IDX = 51,
|
||||
SBK_Qt3DRender_QEnvironmentLight_IDX = 52,
|
||||
SBK_Qt3DRender_QFilterKey_IDX = 53,
|
||||
SBK_Qt3DRender_QFrameGraphNode_IDX = 54,
|
||||
SBK_Qt3DRender_QFrontFace_WindingDirection_IDX = 56,
|
||||
SBK_Qt3DRender_QFrontFace_IDX = 55,
|
||||
SBK_Qt3DRender_QFrustumCulling_IDX = 57,
|
||||
SBK_Qt3DRender_QGeometryRenderer_PrimitiveType_IDX = 59,
|
||||
SBK_Qt3DRender_QGeometryRenderer_IDX = 58,
|
||||
SBK_Qt3DRender_QGraphicsApiFilter_Api_IDX = 61,
|
||||
SBK_Qt3DRender_QGraphicsApiFilter_OpenGLProfile_IDX = 62,
|
||||
SBK_Qt3DRender_QGraphicsApiFilter_IDX = 60,
|
||||
SBK_Qt3DRender_QLayer_IDX = 63,
|
||||
SBK_Qt3DRender_QLayerFilter_FilterMode_IDX = 65,
|
||||
SBK_Qt3DRender_QLayerFilter_IDX = 64,
|
||||
SBK_Qt3DRender_QLevelOfDetail_ThresholdType_IDX = 67,
|
||||
SBK_Qt3DRender_QLevelOfDetail_IDX = 66,
|
||||
SBK_Qt3DRender_QLevelOfDetailBoundingSphere_IDX = 68,
|
||||
SBK_Qt3DRender_QLevelOfDetailSwitch_IDX = 69,
|
||||
SBK_Qt3DRender_QLineWidth_IDX = 70,
|
||||
SBK_Qt3DRender_QMaterial_IDX = 71,
|
||||
SBK_Qt3DRender_QMemoryBarrier_Operation_IDX = 73,
|
||||
SBK_QFlags_Qt3DRender_QMemoryBarrier_Operation_IDX = 1,
|
||||
SBK_Qt3DRender_QMemoryBarrier_IDX = 72,
|
||||
SBK_Qt3DRender_QMesh_Status_IDX = 75,
|
||||
SBK_Qt3DRender_QMesh_IDX = 74,
|
||||
SBK_Qt3DRender_QMultiSampleAntiAliasing_IDX = 76,
|
||||
SBK_Qt3DRender_QNoDepthMask_IDX = 77,
|
||||
SBK_Qt3DRender_QNoDraw_IDX = 78,
|
||||
SBK_Qt3DRender_QNoPicking_IDX = 79,
|
||||
SBK_Qt3DRender_QObjectPicker_IDX = 80,
|
||||
SBK_Qt3DRender_QPaintedTextureImage_IDX = 81,
|
||||
SBK_Qt3DRender_QParameter_IDX = 82,
|
||||
SBK_Qt3DRender_QPickEvent_Buttons_IDX = 84,
|
||||
SBK_Qt3DRender_QPickEvent_Modifiers_IDX = 85,
|
||||
SBK_Qt3DRender_QPickEvent_IDX = 83,
|
||||
SBK_Qt3DRender_QPickLineEvent_IDX = 86,
|
||||
SBK_Qt3DRender_QPickPointEvent_IDX = 87,
|
||||
SBK_Qt3DRender_QPickTriangleEvent_IDX = 88,
|
||||
SBK_Qt3DRender_QPickingProxy_IDX = 89,
|
||||
SBK_Qt3DRender_QPickingSettings_PickMethod_IDX = 92,
|
||||
SBK_Qt3DRender_QPickingSettings_PickResultMode_IDX = 93,
|
||||
SBK_Qt3DRender_QPickingSettings_FaceOrientationPickingMode_IDX = 91,
|
||||
SBK_Qt3DRender_QPickingSettings_IDX = 90,
|
||||
SBK_Qt3DRender_QPointLight_IDX = 94,
|
||||
SBK_Qt3DRender_QPointSize_SizeMode_IDX = 96,
|
||||
SBK_Qt3DRender_QPointSize_IDX = 95,
|
||||
SBK_Qt3DRender_QPolygonOffset_IDX = 97,
|
||||
SBK_Qt3DRender_QProximityFilter_IDX = 98,
|
||||
SBK_Qt3DRender_QRasterMode_RasterMode_IDX = 101,
|
||||
SBK_Qt3DRender_QRasterMode_FaceMode_IDX = 100,
|
||||
SBK_Qt3DRender_QRasterMode_IDX = 99,
|
||||
SBK_Qt3DRender_QRayCaster_IDX = 102,
|
||||
SBK_Qt3DRender_QRayCasterHit_HitType_IDX = 104,
|
||||
SBK_Qt3DRender_QRayCasterHit_IDX = 103,
|
||||
SBK_Qt3DRender_QRenderAspect_SubmissionType_IDX = 106,
|
||||
SBK_Qt3DRender_QRenderAspect_IDX = 105,
|
||||
SBK_Qt3DRender_QRenderCapabilities_API_IDX = 108,
|
||||
SBK_Qt3DRender_QRenderCapabilities_Profile_IDX = 109,
|
||||
SBK_Qt3DRender_QRenderCapabilities_IDX = 107,
|
||||
SBK_Qt3DRender_QRenderCapture_IDX = 110,
|
||||
SBK_Qt3DRender_QRenderCaptureReply_IDX = 111,
|
||||
SBK_Qt3DRender_QRenderPass_IDX = 112,
|
||||
SBK_Qt3DRender_QRenderPassFilter_IDX = 113,
|
||||
SBK_Qt3DRender_QRenderSettings_RenderPolicy_IDX = 115,
|
||||
SBK_Qt3DRender_QRenderSettings_IDX = 114,
|
||||
SBK_Qt3DRender_QRenderState_IDX = 116,
|
||||
SBK_Qt3DRender_QRenderStateSet_IDX = 117,
|
||||
SBK_Qt3DRender_QRenderSurfaceSelector_IDX = 118,
|
||||
SBK_Qt3DRender_QRenderTarget_IDX = 119,
|
||||
SBK_Qt3DRender_QRenderTargetOutput_AttachmentPoint_IDX = 121,
|
||||
SBK_Qt3DRender_QRenderTargetOutput_IDX = 120,
|
||||
SBK_Qt3DRender_QRenderTargetSelector_IDX = 122,
|
||||
SBK_Qt3DRender_QSceneLoader_Status_IDX = 125,
|
||||
SBK_Qt3DRender_QSceneLoader_ComponentType_IDX = 124,
|
||||
SBK_Qt3DRender_QSceneLoader_IDX = 123,
|
||||
SBK_Qt3DRender_QScissorTest_IDX = 126,
|
||||
SBK_Qt3DRender_QScreenRayCaster_IDX = 127,
|
||||
SBK_Qt3DRender_QSeamlessCubemap_IDX = 128,
|
||||
SBK_Qt3DRender_QSetFence_HandleType_IDX = 130,
|
||||
SBK_Qt3DRender_QSetFence_IDX = 129,
|
||||
SBK_Qt3DRender_QShaderData_IDX = 131,
|
||||
SBK_Qt3DRender_QShaderImage_Access_IDX = 133,
|
||||
SBK_Qt3DRender_QShaderImage_ImageFormat_IDX = 134,
|
||||
SBK_Qt3DRender_QShaderImage_IDX = 132,
|
||||
SBK_Qt3DRender_QShaderProgram_ShaderType_IDX = 137,
|
||||
SBK_Qt3DRender_QShaderProgram_Status_IDX = 138,
|
||||
SBK_Qt3DRender_QShaderProgram_Format_IDX = 136,
|
||||
SBK_Qt3DRender_QShaderProgram_IDX = 135,
|
||||
SBK_Qt3DRender_QShaderProgramBuilder_IDX = 139,
|
||||
SBK_Qt3DRender_QSharedGLTexture_IDX = 140,
|
||||
SBK_Qt3DRender_QSortPolicy_SortType_IDX = 142,
|
||||
SBK_Qt3DRender_QSortPolicy_IDX = 141,
|
||||
SBK_Qt3DRender_QSpotLight_IDX = 143,
|
||||
SBK_Qt3DRender_QStencilMask_IDX = 144,
|
||||
SBK_Qt3DRender_QStencilOperation_IDX = 145,
|
||||
SBK_Qt3DRender_QStencilOperationArguments_FaceMode_IDX = 147,
|
||||
SBK_Qt3DRender_QStencilOperationArguments_Operation_IDX = 148,
|
||||
SBK_Qt3DRender_QStencilOperationArguments_IDX = 146,
|
||||
SBK_Qt3DRender_QStencilTest_IDX = 149,
|
||||
SBK_Qt3DRender_QStencilTestArguments_StencilFaceMode_IDX = 151,
|
||||
SBK_Qt3DRender_QStencilTestArguments_StencilFunction_IDX = 152,
|
||||
SBK_Qt3DRender_QStencilTestArguments_IDX = 150,
|
||||
SBK_Qt3DRender_QSubtreeEnabler_Enablement_IDX = 154,
|
||||
SBK_Qt3DRender_QSubtreeEnabler_IDX = 153,
|
||||
SBK_Qt3DRender_QTechnique_IDX = 155,
|
||||
SBK_Qt3DRender_QTechniqueFilter_IDX = 156,
|
||||
SBK_Qt3DRender_QTexture1D_IDX = 157,
|
||||
SBK_Qt3DRender_QTexture1DArray_IDX = 158,
|
||||
SBK_Qt3DRender_QTexture2D_IDX = 159,
|
||||
SBK_Qt3DRender_QTexture2DArray_IDX = 160,
|
||||
SBK_Qt3DRender_QTexture2DMultisample_IDX = 161,
|
||||
SBK_Qt3DRender_QTexture2DMultisampleArray_IDX = 162,
|
||||
SBK_Qt3DRender_QTexture3D_IDX = 163,
|
||||
SBK_Qt3DRender_QTextureBuffer_IDX = 164,
|
||||
SBK_Qt3DRender_QTextureCubeMap_IDX = 165,
|
||||
SBK_Qt3DRender_QTextureCubeMapArray_IDX = 166,
|
||||
SBK_Qt3DRender_QTextureData_IDX = 167,
|
||||
SBK_Qt3DRender_QTextureDataUpdate_IDX = 168,
|
||||
SBK_Qt3DRender_QTextureImage_Status_IDX = 170,
|
||||
SBK_Qt3DRender_QTextureImage_IDX = 169,
|
||||
SBK_Qt3DRender_QTextureImageData_IDX = 171,
|
||||
SBK_Qt3DRender_QTextureImageDataGenerator_IDX = 172,
|
||||
SBK_Qt3DRender_QTextureLoader_IDX = 173,
|
||||
SBK_Qt3DRender_QTextureRectangle_IDX = 174,
|
||||
SBK_Qt3DRender_QTextureWrapMode_WrapMode_IDX = 176,
|
||||
SBK_Qt3DRender_QTextureWrapMode_IDX = 175,
|
||||
SBK_Qt3DRender_QViewport_IDX = 177,
|
||||
SBK_Qt3DRender_QWaitFence_HandleType_IDX = 179,
|
||||
SBK_Qt3DRender_QWaitFence_IDX = 178,
|
||||
SBK_QSharedPointer_Qt3DRender_PropertyReaderInterface_IDX = 180, // QSharedPointer<Qt3DRender::PropertyReaderInterface>
|
||||
SBK_QSharedPointer_constQt3DRender_PropertyReaderInterface_IDX = 180, // (const)
|
||||
SBK_QSharedPointer_Qt3DRender_QTextureImageDataGenerator_IDX = 181, // QSharedPointer<Qt3DRender::QTextureImageDataGenerator>
|
||||
SBK_QSharedPointer_constQt3DRender_QTextureImageDataGenerator_IDX = 181, // (const)
|
||||
SBK_QSharedPointer_Qt3DRender_QTextureImageData_IDX = 182, // QSharedPointer<Qt3DRender::QTextureImageData>
|
||||
SBK_QSharedPointer_constQt3DRender_QTextureImageData_IDX = 182, // (const)
|
||||
SBK_Qt3DRender_IDX_COUNT = 183,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_Qt3DRenderTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_Qt3DRenderTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_Qt3DRenderModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_Qt3DRenderTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QT3DRENDER_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QT3DRENDER_QLIST_QT3DRENDER_QRAYCASTERHIT_IDX = 1, // QList<Qt3DRender::QRayCasterHit>
|
||||
SBK_QT3DRENDER_QLIST_QT3DRENDER_QLAYERPTR_IDX = 2, // QList<Qt3DRender::QLayer*>
|
||||
SBK_QT3DRENDER_QLIST_QT3DRENDER_QABSTRACTTEXTUREIMAGEPTR_IDX = 3, // QList<Qt3DRender::QAbstractTextureImage*>
|
||||
SBK_QT3DRENDER_QLIST_QT3DRENDER_QFILTERKEYPTR_IDX = 4, // QList<Qt3DRender::QFilterKey*>
|
||||
SBK_QT3DRENDER_QLIST_QT3DRENDER_QPARAMETERPTR_IDX = 5, // QList<Qt3DRender::QParameter*>
|
||||
SBK_QT3DRENDER_QLIST_QT3DRENDER_QRENDERSTATEPTR_IDX = 6, // QList<Qt3DRender::QRenderState*>
|
||||
SBK_QT3DRENDER_QLIST_QT3DRENDER_QSORTPOLICY_SORTTYPE_IDX = 7, // QList<Qt3DRender::QSortPolicy::SortType>
|
||||
SBK_QT3DRENDER_QLIST_QT3DRENDER_QRENDERTARGETOUTPUTPTR_IDX = 8, // QList<Qt3DRender::QRenderTargetOutput*>
|
||||
SBK_QT3DRENDER_QLIST_QT3DRENDER_QTECHNIQUEPTR_IDX = 9, // QList<Qt3DRender::QTechnique*>
|
||||
SBK_QT3DRENDER_QLIST_QREAL_IDX = 10, // QList<qreal>
|
||||
SBK_QT3DRENDER_STD_VECTOR_QSHAREDPOINTER_QT3DCORE_QASPECTJOB_IDX = 11, // std::vector<QSharedPointer<Qt3DCore::QAspectJob>>
|
||||
SBK_QT3DRENDER_QLIST_QT3DRENDER_QRENDERPASSPTR_IDX = 12, // QList<Qt3DRender::QRenderPass*>
|
||||
SBK_QT3DRENDER_QLIST_QSHAREDPOINTER_QT3DRENDER_QTEXTUREIMAGEDATA_IDX = 13, // QList<QSharedPointer<Qt3DRender::QTextureImageData>>
|
||||
SBK_QT3DRENDER_QLIST_QVARIANT_IDX = 14, // QList<QVariant>
|
||||
SBK_QT3DRENDER_QLIST_QSTRING_IDX = 15, // QList<QString>
|
||||
SBK_QT3DRENDER_QMAP_QSTRING_QVARIANT_IDX = 16, // QMap<QString,QVariant>
|
||||
SBK_QT3DRENDER_CONVERTERS_IDX_COUNT = 17,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_Qt3DRender_QList_int_IDX = 0, // QList<int>
|
||||
SBK_Qt3DRender_QList_Qt3DRender_QRayCasterHit_IDX = 1, // QList<Qt3DRender::QRayCasterHit>
|
||||
SBK_Qt3DRender_QList_Qt3DRender_QLayerPTR_IDX = 2, // QList<Qt3DRender::QLayer*>
|
||||
SBK_Qt3DRender_QList_Qt3DRender_QAbstractTextureImagePTR_IDX = 3, // QList<Qt3DRender::QAbstractTextureImage*>
|
||||
SBK_Qt3DRender_QList_Qt3DRender_QFilterKeyPTR_IDX = 4, // QList<Qt3DRender::QFilterKey*>
|
||||
SBK_Qt3DRender_QList_Qt3DRender_QParameterPTR_IDX = 5, // QList<Qt3DRender::QParameter*>
|
||||
SBK_Qt3DRender_QList_Qt3DRender_QRenderStatePTR_IDX = 6, // QList<Qt3DRender::QRenderState*>
|
||||
SBK_Qt3DRender_QList_Qt3DRender_QSortPolicy_SortType_IDX = 7, // QList<Qt3DRender::QSortPolicy::SortType>
|
||||
SBK_Qt3DRender_QList_Qt3DRender_QRenderTargetOutputPTR_IDX = 8, // QList<Qt3DRender::QRenderTargetOutput*>
|
||||
SBK_Qt3DRender_QList_Qt3DRender_QTechniquePTR_IDX = 9, // QList<Qt3DRender::QTechnique*>
|
||||
SBK_Qt3DRender_QList_qreal_IDX = 10, // QList<qreal>
|
||||
SBK_Qt3DRender_std_vector_QSharedPointer_Qt3DCore_QAspectJob_IDX = 11, // std::vector<QSharedPointer<Qt3DCore::QAspectJob>>
|
||||
SBK_Qt3DRender_QList_Qt3DRender_QRenderPassPTR_IDX = 12, // QList<Qt3DRender::QRenderPass*>
|
||||
SBK_Qt3DRender_QList_QSharedPointer_Qt3DRender_QTextureImageData_IDX = 13, // QList<QSharedPointer<Qt3DRender::QTextureImageData>>
|
||||
SBK_Qt3DRender_QList_QVariant_IDX = 14, // QList<QVariant>
|
||||
SBK_Qt3DRender_QList_QString_IDX = 15, // QList<QString>
|
||||
SBK_Qt3DRender_QMap_QString_QVariant_IDX = 16, // QMap<QString,QVariant>
|
||||
SBK_Qt3DRender_CONVERTERS_IDX_COUNT = 17,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::API >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_API_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::PropertyReaderInterface >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_PropertyReaderInterface_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QAbstractLight::Type >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QAbstractLight_Type_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QAbstractLight >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QAbstractLight_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QAbstractRayCaster::RunMode >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QAbstractRayCaster_RunMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QAbstractRayCaster::FilterMode >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QAbstractRayCaster_FilterMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QAbstractRayCaster >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QAbstractRayCaster_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QAbstractTexture::Status >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QAbstractTexture_Status_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QAbstractTexture::Target >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QAbstractTexture_Target_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QAbstractTexture::TextureFormat >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QAbstractTexture_TextureFormat_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QAbstractTexture::Filter >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QAbstractTexture_Filter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QAbstractTexture::CubeMapFace >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QAbstractTexture_CubeMapFace_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QAbstractTexture::ComparisonFunction >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QAbstractTexture_ComparisonFunction_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QAbstractTexture::ComparisonMode >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QAbstractTexture_ComparisonMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QAbstractTexture::HandleType >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QAbstractTexture_HandleType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QAbstractTexture >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QAbstractTexture_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QAbstractTextureImage >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QAbstractTextureImage_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QAlphaCoverage >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QAlphaCoverage_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QAlphaTest::AlphaFunction >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QAlphaTest_AlphaFunction_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QAlphaTest >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QAlphaTest_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QBlendEquation::BlendFunction >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QBlendEquation_BlendFunction_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QBlendEquation >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QBlendEquation_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QBlendEquationArguments::Blending >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QBlendEquationArguments_Blending_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QBlendEquationArguments >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QBlendEquationArguments_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QBlitFramebuffer::InterpolationMethod >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QBlitFramebuffer_InterpolationMethod_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QBlitFramebuffer >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QBlitFramebuffer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QBufferCapture >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QBufferCapture_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QCamera::CameraTranslationOption >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QCamera_CameraTranslationOption_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QCamera >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QCamera_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QCameraLens::ProjectionType >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QCameraLens_ProjectionType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QCameraLens >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QCameraLens_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QCameraSelector >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QCameraSelector_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QClearBuffers::BufferType >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QClearBuffers_BufferType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<Qt3DRender::QClearBuffers::BufferType> >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_QFlags_Qt3DRender_QClearBuffers_BufferType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QClearBuffers >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QClearBuffers_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QClipPlane >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QClipPlane_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QColorMask >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QColorMask_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QComputeCommand::RunType >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QComputeCommand_RunType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QComputeCommand >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QComputeCommand_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QCullFace::CullingMode >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QCullFace_CullingMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QCullFace >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QCullFace_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QDebugOverlay >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QDebugOverlay_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QDepthRange >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QDepthRange_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QDepthTest::DepthFunction >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QDepthTest_DepthFunction_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QDepthTest >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QDepthTest_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QDirectionalLight >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QDirectionalLight_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QDispatchCompute >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QDispatchCompute_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QDithering >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QDithering_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QEffect >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QEffect_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QEnvironmentLight >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QEnvironmentLight_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QFilterKey >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QFilterKey_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QFrameGraphNode >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QFrameGraphNode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QFrontFace::WindingDirection >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QFrontFace_WindingDirection_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QFrontFace >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QFrontFace_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QFrustumCulling >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QFrustumCulling_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QGeometryRenderer::PrimitiveType >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QGeometryRenderer_PrimitiveType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QGeometryRenderer >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QGeometryRenderer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QGraphicsApiFilter::Api >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QGraphicsApiFilter_Api_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QGraphicsApiFilter::OpenGLProfile >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QGraphicsApiFilter_OpenGLProfile_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QGraphicsApiFilter >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QGraphicsApiFilter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QLayer >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QLayer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QLayerFilter::FilterMode >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QLayerFilter_FilterMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QLayerFilter >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QLayerFilter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QLevelOfDetail::ThresholdType >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QLevelOfDetail_ThresholdType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QLevelOfDetail >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QLevelOfDetail_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QLevelOfDetailBoundingSphere >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QLevelOfDetailBoundingSphere_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QLevelOfDetailSwitch >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QLevelOfDetailSwitch_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QLineWidth >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QLineWidth_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QMaterial >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QMaterial_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QMemoryBarrier::Operation >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QMemoryBarrier_Operation_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<Qt3DRender::QMemoryBarrier::Operation> >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_QFlags_Qt3DRender_QMemoryBarrier_Operation_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QMemoryBarrier >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QMemoryBarrier_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QMesh::Status >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QMesh_Status_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QMesh >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QMesh_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QMultiSampleAntiAliasing >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QMultiSampleAntiAliasing_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QNoDepthMask >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QNoDepthMask_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QNoDraw >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QNoDraw_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QNoPicking >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QNoPicking_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QObjectPicker >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QObjectPicker_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QPaintedTextureImage >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QPaintedTextureImage_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QParameter >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QParameter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QPickEvent::Buttons >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QPickEvent_Buttons_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QPickEvent::Modifiers >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QPickEvent_Modifiers_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QPickEvent >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QPickEvent_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QPickLineEvent >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QPickLineEvent_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QPickPointEvent >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QPickPointEvent_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QPickTriangleEvent >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QPickTriangleEvent_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QPickingProxy >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QPickingProxy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QPickingSettings::PickMethod >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QPickingSettings_PickMethod_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QPickingSettings::PickResultMode >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QPickingSettings_PickResultMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QPickingSettings::FaceOrientationPickingMode >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QPickingSettings_FaceOrientationPickingMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QPickingSettings >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QPickingSettings_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QPointLight >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QPointLight_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QPointSize::SizeMode >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QPointSize_SizeMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QPointSize >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QPointSize_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QPolygonOffset >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QPolygonOffset_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QProximityFilter >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QProximityFilter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QRasterMode::RasterMode >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QRasterMode_RasterMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QRasterMode::FaceMode >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QRasterMode_FaceMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QRasterMode >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QRasterMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QRayCaster >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QRayCaster_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QRayCasterHit::HitType >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QRayCasterHit_HitType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QRayCasterHit >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QRayCasterHit_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QRenderAspect::SubmissionType >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QRenderAspect_SubmissionType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QRenderAspect >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QRenderAspect_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QRenderCapabilities::API >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QRenderCapabilities_API_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QRenderCapabilities::Profile >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QRenderCapabilities_Profile_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QRenderCapabilities >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QRenderCapabilities_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QRenderCapture >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QRenderCapture_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QRenderCaptureReply >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QRenderCaptureReply_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QRenderPass >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QRenderPass_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QRenderPassFilter >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QRenderPassFilter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QRenderSettings::RenderPolicy >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QRenderSettings_RenderPolicy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QRenderSettings >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QRenderSettings_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QRenderState >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QRenderState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QRenderStateSet >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QRenderStateSet_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QRenderSurfaceSelector >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QRenderSurfaceSelector_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QRenderTarget >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QRenderTarget_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QRenderTargetOutput::AttachmentPoint >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QRenderTargetOutput_AttachmentPoint_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QRenderTargetOutput >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QRenderTargetOutput_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QRenderTargetSelector >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QRenderTargetSelector_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QSceneLoader::Status >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QSceneLoader_Status_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QSceneLoader::ComponentType >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QSceneLoader_ComponentType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QSceneLoader >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QSceneLoader_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QScissorTest >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QScissorTest_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QScreenRayCaster >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QScreenRayCaster_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QSeamlessCubemap >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QSeamlessCubemap_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QSetFence::HandleType >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QSetFence_HandleType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QSetFence >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QSetFence_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QShaderData >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QShaderData_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QShaderImage::Access >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QShaderImage_Access_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QShaderImage::ImageFormat >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QShaderImage_ImageFormat_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QShaderImage >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QShaderImage_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QShaderProgram::ShaderType >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QShaderProgram_ShaderType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QShaderProgram::Status >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QShaderProgram_Status_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QShaderProgram::Format >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QShaderProgram_Format_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QShaderProgram >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QShaderProgram_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QShaderProgramBuilder >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QShaderProgramBuilder_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QSharedGLTexture >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QSharedGLTexture_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QSortPolicy::SortType >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QSortPolicy_SortType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QSortPolicy >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QSortPolicy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QSpotLight >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QSpotLight_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QStencilMask >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QStencilMask_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QStencilOperation >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QStencilOperation_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QStencilOperationArguments::FaceMode >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QStencilOperationArguments_FaceMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QStencilOperationArguments::Operation >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QStencilOperationArguments_Operation_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QStencilOperationArguments >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QStencilOperationArguments_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QStencilTest >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QStencilTest_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QStencilTestArguments::StencilFaceMode >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QStencilTestArguments_StencilFaceMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QStencilTestArguments::StencilFunction >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QStencilTestArguments_StencilFunction_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QStencilTestArguments >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QStencilTestArguments_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QSubtreeEnabler::Enablement >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QSubtreeEnabler_Enablement_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QSubtreeEnabler >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QSubtreeEnabler_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QTechnique >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QTechnique_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QTechniqueFilter >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QTechniqueFilter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QTexture1D >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QTexture1D_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QTexture1DArray >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QTexture1DArray_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QTexture2D >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QTexture2D_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QTexture2DArray >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QTexture2DArray_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QTexture2DMultisample >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QTexture2DMultisample_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QTexture2DMultisampleArray >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QTexture2DMultisampleArray_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QTexture3D >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QTexture3D_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QTextureBuffer >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QTextureBuffer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QTextureCubeMap >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QTextureCubeMap_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QTextureCubeMapArray >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QTextureCubeMapArray_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QTextureData >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QTextureData_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QTextureDataUpdate >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QTextureDataUpdate_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QTextureImage::Status >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QTextureImage_Status_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QTextureImage >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QTextureImage_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QTextureImageData >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QTextureImageData_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QTextureImageDataGenerator >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QTextureImageDataGenerator_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QTextureLoader >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QTextureLoader_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QTextureRectangle >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QTextureRectangle_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QTextureWrapMode::WrapMode >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QTextureWrapMode_WrapMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QTextureWrapMode >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QTextureWrapMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QViewport >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QViewport_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QWaitFence::HandleType >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QWaitFence_HandleType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Qt3DRender::QWaitFence >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_Qt3DRender_QWaitFence_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSharedPointer<Qt3DRender::PropertyReaderInterface> >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_QSharedPointer_Qt3DRender_PropertyReaderInterface_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSharedPointer<Qt3DRender::QTextureImageDataGenerator> >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_QSharedPointer_Qt3DRender_QTextureImageDataGenerator_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSharedPointer<Qt3DRender::QTextureImageData> >() { return Shiboken::Module::get(SbkPySide6_Qt3DRenderTypeStructs[SBK_QSharedPointer_Qt3DRender_QTextureImageData_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QT3DRENDER_PYTHON_H
|
||||
|
||||
@@ -0,0 +1,121 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTAXCONTAINER_PYTHON_H
|
||||
#define SBK_QTAXCONTAINER_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtwidgets_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtAxContainer/qaxbase.h>
|
||||
#include <QtAxContainer/qaxscript.h>
|
||||
#include <QtAxContainer/qaxselect.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QAxBaseObject;
|
||||
class QAxBaseWidget;
|
||||
class QAxObject;
|
||||
class QAxObjectInterface;
|
||||
class QAxScriptManager;
|
||||
class QAxWidget;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QAXBASE_IDX = 0,
|
||||
SBK_QAXBASEOBJECT_IDX = 2,
|
||||
SBK_QAXBASEWIDGET_IDX = 4,
|
||||
SBK_QAXOBJECT_IDX = 6,
|
||||
SBK_QAXOBJECTINTERFACE_IDX = 8,
|
||||
SBK_QAXSCRIPT_FUNCTIONFLAGS_IDX = 12,
|
||||
SBK_QAXSCRIPT_IDX = 10,
|
||||
SBK_QAXSCRIPTENGINE_STATE_IDX = 16,
|
||||
SBK_QAXSCRIPTENGINE_IDX = 14,
|
||||
SBK_QAXSCRIPTMANAGER_IDX = 18,
|
||||
SBK_QAXSELECT_SANDBOXINGLEVEL_IDX = 22,
|
||||
SBK_QAXSELECT_IDX = 20,
|
||||
SBK_QAXWIDGET_IDX = 24,
|
||||
SBK_QTAXCONTAINER_IDX_COUNT = 26,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QAxBase_IDX = 0,
|
||||
SBK_QAxBaseObject_IDX = 1,
|
||||
SBK_QAxBaseWidget_IDX = 2,
|
||||
SBK_QAxObject_IDX = 3,
|
||||
SBK_QAxObjectInterface_IDX = 4,
|
||||
SBK_QAxScript_FunctionFlags_IDX = 6,
|
||||
SBK_QAxScript_IDX = 5,
|
||||
SBK_QAxScriptEngine_State_IDX = 8,
|
||||
SBK_QAxScriptEngine_IDX = 7,
|
||||
SBK_QAxScriptManager_IDX = 9,
|
||||
SBK_QAxSelect_SandboxingLevel_IDX = 11,
|
||||
SBK_QAxSelect_IDX = 10,
|
||||
SBK_QAxWidget_IDX = 12,
|
||||
SBK_QtAxContainer_IDX_COUNT = 13,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtAxContainerTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtAxContainerTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtAxContainerModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtAxContainerTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTAXCONTAINER_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTAXCONTAINER_QLIST_QVARIANT_IDX = 1, // QList<QVariant>
|
||||
SBK_QTAXCONTAINER_QMAP_QSTRING_QVARIANT_IDX = 2, // QMap<QString,QVariant>
|
||||
SBK_QTAXCONTAINER_QLIST_QSTRING_IDX = 3, // QList<QString>
|
||||
SBK_QTAXCONTAINER_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtAxContainer_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtAxContainer_QList_QVariant_IDX = 1, // QList<QVariant>
|
||||
SBK_QtAxContainer_QMap_QString_QVariant_IDX = 2, // QMap<QString,QVariant>
|
||||
SBK_QtAxContainer_QList_QString_IDX = 3, // QList<QString>
|
||||
SBK_QtAxContainer_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QAxBase >() { return Shiboken::Module::get(SbkPySide6_QtAxContainerTypeStructs[SBK_QAxBase_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAxBaseObject >() { return Shiboken::Module::get(SbkPySide6_QtAxContainerTypeStructs[SBK_QAxBaseObject_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAxBaseWidget >() { return Shiboken::Module::get(SbkPySide6_QtAxContainerTypeStructs[SBK_QAxBaseWidget_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAxObject >() { return Shiboken::Module::get(SbkPySide6_QtAxContainerTypeStructs[SBK_QAxObject_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAxObjectInterface >() { return Shiboken::Module::get(SbkPySide6_QtAxContainerTypeStructs[SBK_QAxObjectInterface_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAxScript::FunctionFlags >() { return Shiboken::Module::get(SbkPySide6_QtAxContainerTypeStructs[SBK_QAxScript_FunctionFlags_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAxScript >() { return Shiboken::Module::get(SbkPySide6_QtAxContainerTypeStructs[SBK_QAxScript_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAxScriptEngine::State >() { return Shiboken::Module::get(SbkPySide6_QtAxContainerTypeStructs[SBK_QAxScriptEngine_State_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAxScriptEngine >() { return Shiboken::Module::get(SbkPySide6_QtAxContainerTypeStructs[SBK_QAxScriptEngine_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAxScriptManager >() { return Shiboken::Module::get(SbkPySide6_QtAxContainerTypeStructs[SBK_QAxScriptManager_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAxSelect::SandboxingLevel >() { return Shiboken::Module::get(SbkPySide6_QtAxContainerTypeStructs[SBK_QAxSelect_SandboxingLevel_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAxSelect >() { return Shiboken::Module::get(SbkPySide6_QtAxContainerTypeStructs[SBK_QAxSelect_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAxWidget >() { return Shiboken::Module::get(SbkPySide6_QtAxContainerTypeStructs[SBK_QAxWidget_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTAXCONTAINER_PYTHON_H
|
||||
|
||||
353
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtBluetooth/pyside6_qtbluetooth_python.h
vendored
Normal file
353
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtBluetooth/pyside6_qtbluetooth_python.h
vendored
Normal file
@@ -0,0 +1,353 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTBLUETOOTH_PYTHON_H
|
||||
#define SBK_QTBLUETOOTH_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtBluetooth/qbluetooth.h>
|
||||
#include <QtBluetooth/qbluetoothdevicediscoveryagent.h>
|
||||
#include <QtBluetooth/qbluetoothdeviceinfo.h>
|
||||
#include <QtBluetooth/qbluetoothlocaldevice.h>
|
||||
#include <QtBluetooth/qbluetoothserver.h>
|
||||
#include <QtBluetooth/qbluetoothservicediscoveryagent.h>
|
||||
#include <QtBluetooth/qbluetoothserviceinfo.h>
|
||||
#include <QtBluetooth/qbluetoothsocket.h>
|
||||
#include <QtBluetooth/qbluetoothuuid.h>
|
||||
#include <QtBluetooth/qlowenergyadvertisingdata.h>
|
||||
#include <QtBluetooth/qlowenergyadvertisingparameters.h>
|
||||
#include <QtBluetooth/qlowenergycharacteristic.h>
|
||||
#include <QtBluetooth/qlowenergycontroller.h>
|
||||
#include <QtBluetooth/qlowenergyservice.h>
|
||||
#include <QtBluetooth/qlowenergyservicedata.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QBluetoothAddress;
|
||||
class QBluetoothHostInfo;
|
||||
class QLowEnergyCharacteristicData;
|
||||
class QLowEnergyConnectionParameters;
|
||||
class QLowEnergyDescriptor;
|
||||
class QLowEnergyDescriptorData;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QBLUETOOTH_SECURITY_IDX = 4,
|
||||
SBK_QFLAGS_QBLUETOOTH_SECURITY_IDX = 92,
|
||||
SBK_QBLUETOOTH_ATTACCESSCONSTRAINT_IDX = 2,
|
||||
SBK_QFLAGS_QBLUETOOTH_ATTACCESSCONSTRAINT_IDX = 90,
|
||||
SBK_QTBLUETOOTHQBLUETOOTH_IDX = 0,
|
||||
SBK_QBLUETOOTHADDRESS_IDX = 6,
|
||||
SBK_QBLUETOOTHDEVICEDISCOVERYAGENT_ERROR_IDX = 12,
|
||||
SBK_QBLUETOOTHDEVICEDISCOVERYAGENT_DISCOVERYMETHOD_IDX = 10,
|
||||
SBK_QFLAGS_QBLUETOOTHDEVICEDISCOVERYAGENT_DISCOVERYMETHOD_IDX = 94,
|
||||
SBK_QBLUETOOTHDEVICEDISCOVERYAGENT_IDX = 8,
|
||||
SBK_QBLUETOOTHDEVICEINFO_MAJORDEVICECLASS_IDX = 20,
|
||||
SBK_QBLUETOOTHDEVICEINFO_MINORMISCELLANEOUSCLASS_IDX = 30,
|
||||
SBK_QBLUETOOTHDEVICEINFO_MINORCOMPUTERCLASS_IDX = 24,
|
||||
SBK_QBLUETOOTHDEVICEINFO_MINORPHONECLASS_IDX = 36,
|
||||
SBK_QBLUETOOTHDEVICEINFO_MINORNETWORKCLASS_IDX = 32,
|
||||
SBK_QBLUETOOTHDEVICEINFO_MINORAUDIOVIDEOCLASS_IDX = 22,
|
||||
SBK_QBLUETOOTHDEVICEINFO_MINORPERIPHERALCLASS_IDX = 34,
|
||||
SBK_QBLUETOOTHDEVICEINFO_MINORIMAGINGCLASS_IDX = 28,
|
||||
SBK_QBLUETOOTHDEVICEINFO_MINORWEARABLECLASS_IDX = 40,
|
||||
SBK_QBLUETOOTHDEVICEINFO_MINORTOYCLASS_IDX = 38,
|
||||
SBK_QBLUETOOTHDEVICEINFO_MINORHEALTHCLASS_IDX = 26,
|
||||
SBK_QBLUETOOTHDEVICEINFO_SERVICECLASS_IDX = 42,
|
||||
SBK_QFLAGS_QBLUETOOTHDEVICEINFO_SERVICECLASS_IDX = 100,
|
||||
SBK_QBLUETOOTHDEVICEINFO_FIELD_IDX = 18,
|
||||
SBK_QFLAGS_QBLUETOOTHDEVICEINFO_FIELD_IDX = 98,
|
||||
SBK_QBLUETOOTHDEVICEINFO_CORECONFIGURATION_IDX = 16,
|
||||
SBK_QFLAGS_QBLUETOOTHDEVICEINFO_CORECONFIGURATION_IDX = 96,
|
||||
SBK_QBLUETOOTHDEVICEINFO_IDX = 14,
|
||||
SBK_QBLUETOOTHHOSTINFO_IDX = 44,
|
||||
SBK_QBLUETOOTHLOCALDEVICE_PAIRING_IDX = 52,
|
||||
SBK_QBLUETOOTHLOCALDEVICE_HOSTMODE_IDX = 50,
|
||||
SBK_QBLUETOOTHLOCALDEVICE_ERROR_IDX = 48,
|
||||
SBK_QBLUETOOTHLOCALDEVICE_IDX = 46,
|
||||
SBK_QBLUETOOTHSERVER_ERROR_IDX = 56,
|
||||
SBK_QBLUETOOTHSERVER_IDX = 54,
|
||||
SBK_QBLUETOOTHSERVICEDISCOVERYAGENT_ERROR_IDX = 62,
|
||||
SBK_QBLUETOOTHSERVICEDISCOVERYAGENT_DISCOVERYMODE_IDX = 60,
|
||||
SBK_QBLUETOOTHSERVICEDISCOVERYAGENT_IDX = 58,
|
||||
SBK_QBLUETOOTHSERVICEINFO_ATTRIBUTEID_IDX = 68,
|
||||
SBK_QBLUETOOTHSERVICEINFO_PROTOCOL_IDX = 70,
|
||||
SBK_QBLUETOOTHSERVICEINFO_IDX = 64,
|
||||
SBK_QBLUETOOTHSERVICEINFO_ALTERNATIVE_IDX = 66,
|
||||
SBK_QBLUETOOTHSERVICEINFO_SEQUENCE_IDX = 72,
|
||||
SBK_QBLUETOOTHSOCKET_SOCKETSTATE_IDX = 78,
|
||||
SBK_QBLUETOOTHSOCKET_SOCKETERROR_IDX = 76,
|
||||
SBK_QBLUETOOTHSOCKET_IDX = 74,
|
||||
SBK_QBLUETOOTHUUID_PROTOCOLUUID_IDX = 86,
|
||||
SBK_QBLUETOOTHUUID_SERVICECLASSUUID_IDX = 88,
|
||||
SBK_QBLUETOOTHUUID_CHARACTERISTICTYPE_IDX = 82,
|
||||
SBK_QBLUETOOTHUUID_DESCRIPTORTYPE_IDX = 84,
|
||||
SBK_QBLUETOOTHUUID_IDX = 80,
|
||||
SBK_QLOWENERGYADVERTISINGDATA_DISCOVERABILITY_IDX = 108,
|
||||
SBK_QLOWENERGYADVERTISINGDATA_IDX = 106,
|
||||
SBK_QLOWENERGYADVERTISINGPARAMETERS_MODE_IDX = 116,
|
||||
SBK_QLOWENERGYADVERTISINGPARAMETERS_FILTERPOLICY_IDX = 114,
|
||||
SBK_QLOWENERGYADVERTISINGPARAMETERS_IDX = 110,
|
||||
SBK_QLOWENERGYADVERTISINGPARAMETERS_ADDRESSINFO_IDX = 112,
|
||||
SBK_QLOWENERGYCHARACTERISTIC_PROPERTYTYPE_IDX = 120,
|
||||
SBK_QFLAGS_QLOWENERGYCHARACTERISTIC_PROPERTYTYPE_IDX = 102,
|
||||
SBK_QLOWENERGYCHARACTERISTIC_IDX = 118,
|
||||
SBK_QLOWENERGYCHARACTERISTICDATA_IDX = 122,
|
||||
SBK_QLOWENERGYCONNECTIONPARAMETERS_IDX = 124,
|
||||
SBK_QLOWENERGYCONTROLLER_ERROR_IDX = 130,
|
||||
SBK_QLOWENERGYCONTROLLER_CONTROLLERSTATE_IDX = 128,
|
||||
SBK_QLOWENERGYCONTROLLER_REMOTEADDRESSTYPE_IDX = 132,
|
||||
SBK_QLOWENERGYCONTROLLER_ROLE_IDX = 134,
|
||||
SBK_QLOWENERGYCONTROLLER_IDX = 126,
|
||||
SBK_QLOWENERGYDESCRIPTOR_IDX = 136,
|
||||
SBK_QLOWENERGYDESCRIPTORDATA_IDX = 138,
|
||||
SBK_QLOWENERGYSERVICE_SERVICETYPE_IDX = 148,
|
||||
SBK_QFLAGS_QLOWENERGYSERVICE_SERVICETYPE_IDX = 104,
|
||||
SBK_QLOWENERGYSERVICE_SERVICEERROR_IDX = 144,
|
||||
SBK_QLOWENERGYSERVICE_SERVICESTATE_IDX = 146,
|
||||
SBK_QLOWENERGYSERVICE_DISCOVERYMODE_IDX = 142,
|
||||
SBK_QLOWENERGYSERVICE_WRITEMODE_IDX = 150,
|
||||
SBK_QLOWENERGYSERVICE_IDX = 140,
|
||||
SBK_QLOWENERGYSERVICEDATA_SERVICETYPE_IDX = 154,
|
||||
SBK_QLOWENERGYSERVICEDATA_IDX = 152,
|
||||
SBK_QTBLUETOOTH_IDX_COUNT = 156,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QBluetooth_Security_IDX = 2,
|
||||
SBK_QFlags_QBluetooth_Security_IDX = 46,
|
||||
SBK_QBluetooth_AttAccessConstraint_IDX = 1,
|
||||
SBK_QFlags_QBluetooth_AttAccessConstraint_IDX = 45,
|
||||
SBK_QtBluetoothQBluetooth_IDX = 0,
|
||||
SBK_QBluetoothAddress_IDX = 3,
|
||||
SBK_QBluetoothDeviceDiscoveryAgent_Error_IDX = 6,
|
||||
SBK_QBluetoothDeviceDiscoveryAgent_DiscoveryMethod_IDX = 5,
|
||||
SBK_QFlags_QBluetoothDeviceDiscoveryAgent_DiscoveryMethod_IDX = 47,
|
||||
SBK_QBluetoothDeviceDiscoveryAgent_IDX = 4,
|
||||
SBK_QBluetoothDeviceInfo_MajorDeviceClass_IDX = 10,
|
||||
SBK_QBluetoothDeviceInfo_MinorMiscellaneousClass_IDX = 15,
|
||||
SBK_QBluetoothDeviceInfo_MinorComputerClass_IDX = 12,
|
||||
SBK_QBluetoothDeviceInfo_MinorPhoneClass_IDX = 18,
|
||||
SBK_QBluetoothDeviceInfo_MinorNetworkClass_IDX = 16,
|
||||
SBK_QBluetoothDeviceInfo_MinorAudioVideoClass_IDX = 11,
|
||||
SBK_QBluetoothDeviceInfo_MinorPeripheralClass_IDX = 17,
|
||||
SBK_QBluetoothDeviceInfo_MinorImagingClass_IDX = 14,
|
||||
SBK_QBluetoothDeviceInfo_MinorWearableClass_IDX = 20,
|
||||
SBK_QBluetoothDeviceInfo_MinorToyClass_IDX = 19,
|
||||
SBK_QBluetoothDeviceInfo_MinorHealthClass_IDX = 13,
|
||||
SBK_QBluetoothDeviceInfo_ServiceClass_IDX = 21,
|
||||
SBK_QFlags_QBluetoothDeviceInfo_ServiceClass_IDX = 50,
|
||||
SBK_QBluetoothDeviceInfo_Field_IDX = 9,
|
||||
SBK_QFlags_QBluetoothDeviceInfo_Field_IDX = 49,
|
||||
SBK_QBluetoothDeviceInfo_CoreConfiguration_IDX = 8,
|
||||
SBK_QFlags_QBluetoothDeviceInfo_CoreConfiguration_IDX = 48,
|
||||
SBK_QBluetoothDeviceInfo_IDX = 7,
|
||||
SBK_QBluetoothHostInfo_IDX = 22,
|
||||
SBK_QBluetoothLocalDevice_Pairing_IDX = 26,
|
||||
SBK_QBluetoothLocalDevice_HostMode_IDX = 25,
|
||||
SBK_QBluetoothLocalDevice_Error_IDX = 24,
|
||||
SBK_QBluetoothLocalDevice_IDX = 23,
|
||||
SBK_QBluetoothServer_Error_IDX = 28,
|
||||
SBK_QBluetoothServer_IDX = 27,
|
||||
SBK_QBluetoothServiceDiscoveryAgent_Error_IDX = 31,
|
||||
SBK_QBluetoothServiceDiscoveryAgent_DiscoveryMode_IDX = 30,
|
||||
SBK_QBluetoothServiceDiscoveryAgent_IDX = 29,
|
||||
SBK_QBluetoothServiceInfo_AttributeId_IDX = 34,
|
||||
SBK_QBluetoothServiceInfo_Protocol_IDX = 35,
|
||||
SBK_QBluetoothServiceInfo_IDX = 32,
|
||||
SBK_QBluetoothServiceInfo_Alternative_IDX = 33,
|
||||
SBK_QBluetoothServiceInfo_Sequence_IDX = 36,
|
||||
SBK_QBluetoothSocket_SocketState_IDX = 39,
|
||||
SBK_QBluetoothSocket_SocketError_IDX = 38,
|
||||
SBK_QBluetoothSocket_IDX = 37,
|
||||
SBK_QBluetoothUuid_ProtocolUuid_IDX = 43,
|
||||
SBK_QBluetoothUuid_ServiceClassUuid_IDX = 44,
|
||||
SBK_QBluetoothUuid_CharacteristicType_IDX = 41,
|
||||
SBK_QBluetoothUuid_DescriptorType_IDX = 42,
|
||||
SBK_QBluetoothUuid_IDX = 40,
|
||||
SBK_QLowEnergyAdvertisingData_Discoverability_IDX = 54,
|
||||
SBK_QLowEnergyAdvertisingData_IDX = 53,
|
||||
SBK_QLowEnergyAdvertisingParameters_Mode_IDX = 58,
|
||||
SBK_QLowEnergyAdvertisingParameters_FilterPolicy_IDX = 57,
|
||||
SBK_QLowEnergyAdvertisingParameters_IDX = 55,
|
||||
SBK_QLowEnergyAdvertisingParameters_AddressInfo_IDX = 56,
|
||||
SBK_QLowEnergyCharacteristic_PropertyType_IDX = 60,
|
||||
SBK_QFlags_QLowEnergyCharacteristic_PropertyType_IDX = 51,
|
||||
SBK_QLowEnergyCharacteristic_IDX = 59,
|
||||
SBK_QLowEnergyCharacteristicData_IDX = 61,
|
||||
SBK_QLowEnergyConnectionParameters_IDX = 62,
|
||||
SBK_QLowEnergyController_Error_IDX = 65,
|
||||
SBK_QLowEnergyController_ControllerState_IDX = 64,
|
||||
SBK_QLowEnergyController_RemoteAddressType_IDX = 66,
|
||||
SBK_QLowEnergyController_Role_IDX = 67,
|
||||
SBK_QLowEnergyController_IDX = 63,
|
||||
SBK_QLowEnergyDescriptor_IDX = 68,
|
||||
SBK_QLowEnergyDescriptorData_IDX = 69,
|
||||
SBK_QLowEnergyService_ServiceType_IDX = 74,
|
||||
SBK_QFlags_QLowEnergyService_ServiceType_IDX = 52,
|
||||
SBK_QLowEnergyService_ServiceError_IDX = 72,
|
||||
SBK_QLowEnergyService_ServiceState_IDX = 73,
|
||||
SBK_QLowEnergyService_DiscoveryMode_IDX = 71,
|
||||
SBK_QLowEnergyService_WriteMode_IDX = 75,
|
||||
SBK_QLowEnergyService_IDX = 70,
|
||||
SBK_QLowEnergyServiceData_ServiceType_IDX = 77,
|
||||
SBK_QLowEnergyServiceData_IDX = 76,
|
||||
SBK_QtBluetooth_IDX_COUNT = 78,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtBluetoothTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtBluetoothTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtBluetoothModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtBluetoothTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTBLUETOOTH_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTBLUETOOTH_QLIST_QLOWENERGYCHARACTERISTICDATA_IDX = 1, // QList<QLowEnergyCharacteristicData>
|
||||
SBK_QTBLUETOOTH_QLIST_QLOWENERGYSERVICEPTR_IDX = 2, // QList<QLowEnergyService*>
|
||||
SBK_QTBLUETOOTH_QLIST_QLOWENERGYCHARACTERISTIC_IDX = 3, // QList<QLowEnergyCharacteristic>
|
||||
SBK_QTBLUETOOTH_QLIST_QBLUETOOTHUUID_IDX = 4, // QList<QBluetoothUuid>
|
||||
SBK_QTBLUETOOTH_QLIST_QLOWENERGYDESCRIPTORDATA_IDX = 5, // QList<QLowEnergyDescriptorData>
|
||||
SBK_QTBLUETOOTH_QLIST_QLOWENERGYDESCRIPTOR_IDX = 6, // QList<QLowEnergyDescriptor>
|
||||
SBK_QTBLUETOOTH_QLIST_QLOWENERGYADVERTISINGPARAMETERS_ADDRESSINFO_IDX = 7, // QList<QLowEnergyAdvertisingParameters::AddressInfo>
|
||||
SBK_QTBLUETOOTH_QLIST_QBLUETOOTHSERVICEINFO_IDX = 8, // QList<QBluetoothServiceInfo>
|
||||
SBK_QTBLUETOOTH_QLIST_QBLUETOOTHHOSTINFO_IDX = 9, // QList<QBluetoothHostInfo>
|
||||
SBK_QTBLUETOOTH_QLIST_QBLUETOOTHADDRESS_IDX = 10, // QList<QBluetoothAddress>
|
||||
SBK_QTBLUETOOTH_QMULTIHASH_QUINT16_QBYTEARRAY_IDX = 11, // QMultiHash<quint16,QByteArray>
|
||||
SBK_QTBLUETOOTH_QLIST_QUINT16_IDX = 12, // QList<quint16>
|
||||
SBK_QTBLUETOOTH_QMULTIHASH_QBLUETOOTHUUID_QBYTEARRAY_IDX = 13, // QMultiHash<QBluetoothUuid,QByteArray>
|
||||
SBK_QTBLUETOOTH_QLIST_QBLUETOOTHDEVICEINFO_IDX = 14, // QList<QBluetoothDeviceInfo>
|
||||
SBK_QTBLUETOOTH_QLIST_QVARIANT_IDX = 15, // QList<QVariant>
|
||||
SBK_QTBLUETOOTH_QLIST_QSTRING_IDX = 16, // QList<QString>
|
||||
SBK_QTBLUETOOTH_QMAP_QSTRING_QVARIANT_IDX = 17, // QMap<QString,QVariant>
|
||||
SBK_QTBLUETOOTH_CONVERTERS_IDX_COUNT = 18,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtBluetooth_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtBluetooth_QList_QLowEnergyCharacteristicData_IDX = 1, // QList<QLowEnergyCharacteristicData>
|
||||
SBK_QtBluetooth_QList_QLowEnergyServicePTR_IDX = 2, // QList<QLowEnergyService*>
|
||||
SBK_QtBluetooth_QList_QLowEnergyCharacteristic_IDX = 3, // QList<QLowEnergyCharacteristic>
|
||||
SBK_QtBluetooth_QList_QBluetoothUuid_IDX = 4, // QList<QBluetoothUuid>
|
||||
SBK_QtBluetooth_QList_QLowEnergyDescriptorData_IDX = 5, // QList<QLowEnergyDescriptorData>
|
||||
SBK_QtBluetooth_QList_QLowEnergyDescriptor_IDX = 6, // QList<QLowEnergyDescriptor>
|
||||
SBK_QtBluetooth_QList_QLowEnergyAdvertisingParameters_AddressInfo_IDX = 7, // QList<QLowEnergyAdvertisingParameters::AddressInfo>
|
||||
SBK_QtBluetooth_QList_QBluetoothServiceInfo_IDX = 8, // QList<QBluetoothServiceInfo>
|
||||
SBK_QtBluetooth_QList_QBluetoothHostInfo_IDX = 9, // QList<QBluetoothHostInfo>
|
||||
SBK_QtBluetooth_QList_QBluetoothAddress_IDX = 10, // QList<QBluetoothAddress>
|
||||
SBK_QtBluetooth_QMultiHash_quint16_QByteArray_IDX = 11, // QMultiHash<quint16,QByteArray>
|
||||
SBK_QtBluetooth_QList_quint16_IDX = 12, // QList<quint16>
|
||||
SBK_QtBluetooth_QMultiHash_QBluetoothUuid_QByteArray_IDX = 13, // QMultiHash<QBluetoothUuid,QByteArray>
|
||||
SBK_QtBluetooth_QList_QBluetoothDeviceInfo_IDX = 14, // QList<QBluetoothDeviceInfo>
|
||||
SBK_QtBluetooth_QList_QVariant_IDX = 15, // QList<QVariant>
|
||||
SBK_QtBluetooth_QList_QString_IDX = 16, // QList<QString>
|
||||
SBK_QtBluetooth_QMap_QString_QVariant_IDX = 17, // QMap<QString,QVariant>
|
||||
SBK_QtBluetooth_CONVERTERS_IDX_COUNT = 18,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetooth::Security >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetooth_Security_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QBluetooth::Security> >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QFlags_QBluetooth_Security_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetooth::AttAccessConstraint >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetooth_AttAccessConstraint_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QBluetooth::AttAccessConstraint> >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QFlags_QBluetooth_AttAccessConstraint_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothAddress >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothAddress_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothDeviceDiscoveryAgent::Error >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothDeviceDiscoveryAgent_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothDeviceDiscoveryAgent::DiscoveryMethod >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothDeviceDiscoveryAgent_DiscoveryMethod_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QBluetoothDeviceDiscoveryAgent::DiscoveryMethod> >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QFlags_QBluetoothDeviceDiscoveryAgent_DiscoveryMethod_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothDeviceDiscoveryAgent >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothDeviceDiscoveryAgent_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothDeviceInfo::MajorDeviceClass >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothDeviceInfo_MajorDeviceClass_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothDeviceInfo::MinorMiscellaneousClass >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothDeviceInfo_MinorMiscellaneousClass_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothDeviceInfo::MinorComputerClass >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothDeviceInfo_MinorComputerClass_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothDeviceInfo::MinorPhoneClass >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothDeviceInfo_MinorPhoneClass_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothDeviceInfo::MinorNetworkClass >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothDeviceInfo_MinorNetworkClass_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothDeviceInfo::MinorAudioVideoClass >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothDeviceInfo_MinorAudioVideoClass_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothDeviceInfo::MinorPeripheralClass >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothDeviceInfo_MinorPeripheralClass_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothDeviceInfo::MinorImagingClass >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothDeviceInfo_MinorImagingClass_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothDeviceInfo::MinorWearableClass >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothDeviceInfo_MinorWearableClass_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothDeviceInfo::MinorToyClass >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothDeviceInfo_MinorToyClass_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothDeviceInfo::MinorHealthClass >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothDeviceInfo_MinorHealthClass_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothDeviceInfo::ServiceClass >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothDeviceInfo_ServiceClass_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QBluetoothDeviceInfo::ServiceClass> >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QFlags_QBluetoothDeviceInfo_ServiceClass_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothDeviceInfo::Field >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothDeviceInfo_Field_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QBluetoothDeviceInfo::Field> >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QFlags_QBluetoothDeviceInfo_Field_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothDeviceInfo::CoreConfiguration >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothDeviceInfo_CoreConfiguration_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QBluetoothDeviceInfo::CoreConfiguration> >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QFlags_QBluetoothDeviceInfo_CoreConfiguration_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothDeviceInfo >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothDeviceInfo_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothHostInfo >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothHostInfo_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothLocalDevice::Pairing >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothLocalDevice_Pairing_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothLocalDevice::HostMode >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothLocalDevice_HostMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothLocalDevice::Error >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothLocalDevice_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothLocalDevice >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothLocalDevice_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothServer::Error >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothServer_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothServer >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothServer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothServiceDiscoveryAgent::Error >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothServiceDiscoveryAgent_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothServiceDiscoveryAgent::DiscoveryMode >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothServiceDiscoveryAgent_DiscoveryMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothServiceDiscoveryAgent >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothServiceDiscoveryAgent_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothServiceInfo::AttributeId >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothServiceInfo_AttributeId_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothServiceInfo::Protocol >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothServiceInfo_Protocol_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothServiceInfo >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothServiceInfo_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothServiceInfo::Alternative >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothServiceInfo_Alternative_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothServiceInfo::Sequence >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothServiceInfo_Sequence_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothSocket::SocketState >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothSocket_SocketState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothSocket::SocketError >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothSocket_SocketError_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothSocket >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothSocket_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothUuid::ProtocolUuid >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothUuid_ProtocolUuid_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothUuid::ServiceClassUuid >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothUuid_ServiceClassUuid_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothUuid::CharacteristicType >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothUuid_CharacteristicType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothUuid::DescriptorType >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothUuid_DescriptorType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBluetoothUuid >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QBluetoothUuid_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLowEnergyAdvertisingData::Discoverability >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QLowEnergyAdvertisingData_Discoverability_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLowEnergyAdvertisingData >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QLowEnergyAdvertisingData_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLowEnergyAdvertisingParameters::Mode >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QLowEnergyAdvertisingParameters_Mode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLowEnergyAdvertisingParameters::FilterPolicy >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QLowEnergyAdvertisingParameters_FilterPolicy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLowEnergyAdvertisingParameters >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QLowEnergyAdvertisingParameters_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLowEnergyAdvertisingParameters::AddressInfo >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QLowEnergyAdvertisingParameters_AddressInfo_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLowEnergyCharacteristic::PropertyType >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QLowEnergyCharacteristic_PropertyType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QLowEnergyCharacteristic::PropertyType> >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QFlags_QLowEnergyCharacteristic_PropertyType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLowEnergyCharacteristic >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QLowEnergyCharacteristic_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLowEnergyCharacteristicData >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QLowEnergyCharacteristicData_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLowEnergyConnectionParameters >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QLowEnergyConnectionParameters_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLowEnergyController::Error >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QLowEnergyController_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLowEnergyController::ControllerState >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QLowEnergyController_ControllerState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLowEnergyController::RemoteAddressType >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QLowEnergyController_RemoteAddressType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLowEnergyController::Role >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QLowEnergyController_Role_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLowEnergyController >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QLowEnergyController_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLowEnergyDescriptor >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QLowEnergyDescriptor_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLowEnergyDescriptorData >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QLowEnergyDescriptorData_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLowEnergyService::ServiceType >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QLowEnergyService_ServiceType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QLowEnergyService::ServiceType> >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QFlags_QLowEnergyService_ServiceType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLowEnergyService::ServiceError >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QLowEnergyService_ServiceError_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLowEnergyService::ServiceState >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QLowEnergyService_ServiceState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLowEnergyService::DiscoveryMode >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QLowEnergyService_DiscoveryMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLowEnergyService::WriteMode >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QLowEnergyService_WriteMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLowEnergyService >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QLowEnergyService_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLowEnergyServiceData::ServiceType >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QLowEnergyServiceData_ServiceType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLowEnergyServiceData >() { return Shiboken::Module::get(SbkPySide6_QtBluetoothTypeStructs[SBK_QLowEnergyServiceData_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTBLUETOOTH_PYTHON_H
|
||||
|
||||
367
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtCharts/pyside6_qtcharts_python.h
vendored
Normal file
367
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtCharts/pyside6_qtcharts_python.h
vendored
Normal file
@@ -0,0 +1,367 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTCHARTS_PYTHON_H
|
||||
#define SBK_QTCHARTS_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtwidgets_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtCharts/qabstractaxis.h>
|
||||
#include <QtCharts/qabstractbarseries.h>
|
||||
#include <QtCharts/qabstractseries.h>
|
||||
#include <QtCharts/qboxset.h>
|
||||
#include <QtCharts/qcategoryaxis.h>
|
||||
#include <QtCharts/qchart.h>
|
||||
#include <QtCharts/qchartview.h>
|
||||
#include <QtCharts/qlegend.h>
|
||||
#include <QtCharts/qlegendmarker.h>
|
||||
#include <QtCharts/qpieslice.h>
|
||||
#include <QtCharts/qpolarchart.h>
|
||||
#include <QtCharts/qscatterseries.h>
|
||||
#include <QtCharts/qvalueaxis.h>
|
||||
#include <QtCharts/qxyseries.h>
|
||||
#include <pyside_numpy.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QAreaLegendMarker;
|
||||
class QAreaSeries;
|
||||
class QBarCategoryAxis;
|
||||
class QBarLegendMarker;
|
||||
class QBarModelMapper;
|
||||
class QBarSeries;
|
||||
class QBarSet;
|
||||
class QBoxPlotLegendMarker;
|
||||
class QBoxPlotModelMapper;
|
||||
class QBoxPlotSeries;
|
||||
class QCandlestickLegendMarker;
|
||||
class QCandlestickModelMapper;
|
||||
class QCandlestickSeries;
|
||||
class QCandlestickSet;
|
||||
class QColorAxis;
|
||||
class QDateTimeAxis;
|
||||
class QHBarModelMapper;
|
||||
class QHBoxPlotModelMapper;
|
||||
class QHCandlestickModelMapper;
|
||||
class QHPieModelMapper;
|
||||
class QHXYModelMapper;
|
||||
class QHorizontalBarSeries;
|
||||
class QHorizontalPercentBarSeries;
|
||||
class QHorizontalStackedBarSeries;
|
||||
class QLineSeries;
|
||||
class QLogValueAxis;
|
||||
class QPercentBarSeries;
|
||||
class QPieLegendMarker;
|
||||
class QPieModelMapper;
|
||||
class QPieSeries;
|
||||
class QSplineSeries;
|
||||
class QStackedBarSeries;
|
||||
class QVBarModelMapper;
|
||||
class QVBoxPlotModelMapper;
|
||||
class QVCandlestickModelMapper;
|
||||
class QVPieModelMapper;
|
||||
class QVXYModelMapper;
|
||||
class QXYLegendMarker;
|
||||
class QXYModelMapper;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QABSTRACTAXIS_AXISTYPE_IDX = 2,
|
||||
SBK_QABSTRACTAXIS_IDX = 0,
|
||||
SBK_QABSTRACTBARSERIES_LABELSPOSITION_IDX = 6,
|
||||
SBK_QABSTRACTBARSERIES_IDX = 4,
|
||||
SBK_QABSTRACTSERIES_SERIESTYPE_IDX = 10,
|
||||
SBK_QABSTRACTSERIES_IDX = 8,
|
||||
SBK_QAREALEGENDMARKER_IDX = 12,
|
||||
SBK_QAREASERIES_IDX = 14,
|
||||
SBK_QBARCATEGORYAXIS_IDX = 16,
|
||||
SBK_QBARLEGENDMARKER_IDX = 18,
|
||||
SBK_QBARMODELMAPPER_IDX = 20,
|
||||
SBK_QBARSERIES_IDX = 22,
|
||||
SBK_QBARSET_IDX = 24,
|
||||
SBK_QBOXPLOTLEGENDMARKER_IDX = 26,
|
||||
SBK_QBOXPLOTMODELMAPPER_IDX = 28,
|
||||
SBK_QBOXPLOTSERIES_IDX = 30,
|
||||
SBK_QBOXSET_VALUEPOSITIONS_IDX = 34,
|
||||
SBK_QBOXSET_IDX = 32,
|
||||
SBK_QCANDLESTICKLEGENDMARKER_IDX = 36,
|
||||
SBK_QCANDLESTICKMODELMAPPER_IDX = 38,
|
||||
SBK_QCANDLESTICKSERIES_IDX = 40,
|
||||
SBK_QCANDLESTICKSET_IDX = 42,
|
||||
SBK_QCATEGORYAXIS_AXISLABELSPOSITION_IDX = 46,
|
||||
SBK_QCATEGORYAXIS_IDX = 44,
|
||||
SBK_QCHART_CHARTTYPE_IDX = 54,
|
||||
SBK_QCHART_CHARTTHEME_IDX = 52,
|
||||
SBK_QCHART_ANIMATIONOPTION_IDX = 50,
|
||||
SBK_QFLAGS_QCHART_ANIMATIONOPTION_IDX = 64,
|
||||
SBK_QCHART_IDX = 48,
|
||||
SBK_QCHARTVIEW_RUBBERBAND_IDX = 58,
|
||||
SBK_QFLAGS_QCHARTVIEW_RUBBERBAND_IDX = 66,
|
||||
SBK_QCHARTVIEW_IDX = 56,
|
||||
SBK_QCOLORAXIS_IDX = 60,
|
||||
SBK_QDATETIMEAXIS_IDX = 62,
|
||||
SBK_QHBARMODELMAPPER_IDX = 70,
|
||||
SBK_QHBOXPLOTMODELMAPPER_IDX = 72,
|
||||
SBK_QHCANDLESTICKMODELMAPPER_IDX = 74,
|
||||
SBK_QHPIEMODELMAPPER_IDX = 76,
|
||||
SBK_QHXYMODELMAPPER_IDX = 78,
|
||||
SBK_QHORIZONTALBARSERIES_IDX = 80,
|
||||
SBK_QHORIZONTALPERCENTBARSERIES_IDX = 82,
|
||||
SBK_QHORIZONTALSTACKEDBARSERIES_IDX = 84,
|
||||
SBK_QLEGEND_MARKERSHAPE_IDX = 88,
|
||||
SBK_QLEGEND_IDX = 86,
|
||||
SBK_QLEGENDMARKER_LEGENDMARKERTYPE_IDX = 92,
|
||||
SBK_QLEGENDMARKER_IDX = 90,
|
||||
SBK_QLINESERIES_IDX = 94,
|
||||
SBK_QLOGVALUEAXIS_IDX = 96,
|
||||
SBK_QPERCENTBARSERIES_IDX = 98,
|
||||
SBK_QPIELEGENDMARKER_IDX = 100,
|
||||
SBK_QPIEMODELMAPPER_IDX = 102,
|
||||
SBK_QPIESERIES_IDX = 104,
|
||||
SBK_QPIESLICE_LABELPOSITION_IDX = 108,
|
||||
SBK_QPIESLICE_IDX = 106,
|
||||
SBK_QPOLARCHART_POLARORIENTATION_IDX = 112,
|
||||
SBK_QFLAGS_QPOLARCHART_POLARORIENTATION_IDX = 68,
|
||||
SBK_QPOLARCHART_IDX = 110,
|
||||
SBK_QSCATTERSERIES_MARKERSHAPE_IDX = 116,
|
||||
SBK_QSCATTERSERIES_IDX = 114,
|
||||
SBK_QSPLINESERIES_IDX = 118,
|
||||
SBK_QSTACKEDBARSERIES_IDX = 120,
|
||||
SBK_QVBARMODELMAPPER_IDX = 122,
|
||||
SBK_QVBOXPLOTMODELMAPPER_IDX = 124,
|
||||
SBK_QVCANDLESTICKMODELMAPPER_IDX = 126,
|
||||
SBK_QVPIEMODELMAPPER_IDX = 128,
|
||||
SBK_QVXYMODELMAPPER_IDX = 130,
|
||||
SBK_QVALUEAXIS_TICKTYPE_IDX = 134,
|
||||
SBK_QVALUEAXIS_IDX = 132,
|
||||
SBK_QXYLEGENDMARKER_IDX = 136,
|
||||
SBK_QXYMODELMAPPER_IDX = 138,
|
||||
SBK_QXYSERIES_POINTCONFIGURATION_IDX = 142,
|
||||
SBK_QXYSERIES_IDX = 140,
|
||||
SBK_QTCHARTS_IDX_COUNT = 144,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QAbstractAxis_AxisType_IDX = 1,
|
||||
SBK_QAbstractAxis_IDX = 0,
|
||||
SBK_QAbstractBarSeries_LabelsPosition_IDX = 3,
|
||||
SBK_QAbstractBarSeries_IDX = 2,
|
||||
SBK_QAbstractSeries_SeriesType_IDX = 5,
|
||||
SBK_QAbstractSeries_IDX = 4,
|
||||
SBK_QAreaLegendMarker_IDX = 6,
|
||||
SBK_QAreaSeries_IDX = 7,
|
||||
SBK_QBarCategoryAxis_IDX = 8,
|
||||
SBK_QBarLegendMarker_IDX = 9,
|
||||
SBK_QBarModelMapper_IDX = 10,
|
||||
SBK_QBarSeries_IDX = 11,
|
||||
SBK_QBarSet_IDX = 12,
|
||||
SBK_QBoxPlotLegendMarker_IDX = 13,
|
||||
SBK_QBoxPlotModelMapper_IDX = 14,
|
||||
SBK_QBoxPlotSeries_IDX = 15,
|
||||
SBK_QBoxSet_ValuePositions_IDX = 17,
|
||||
SBK_QBoxSet_IDX = 16,
|
||||
SBK_QCandlestickLegendMarker_IDX = 18,
|
||||
SBK_QCandlestickModelMapper_IDX = 19,
|
||||
SBK_QCandlestickSeries_IDX = 20,
|
||||
SBK_QCandlestickSet_IDX = 21,
|
||||
SBK_QCategoryAxis_AxisLabelsPosition_IDX = 23,
|
||||
SBK_QCategoryAxis_IDX = 22,
|
||||
SBK_QChart_ChartType_IDX = 27,
|
||||
SBK_QChart_ChartTheme_IDX = 26,
|
||||
SBK_QChart_AnimationOption_IDX = 25,
|
||||
SBK_QFlags_QChart_AnimationOption_IDX = 32,
|
||||
SBK_QChart_IDX = 24,
|
||||
SBK_QChartView_RubberBand_IDX = 29,
|
||||
SBK_QFlags_QChartView_RubberBand_IDX = 33,
|
||||
SBK_QChartView_IDX = 28,
|
||||
SBK_QColorAxis_IDX = 30,
|
||||
SBK_QDateTimeAxis_IDX = 31,
|
||||
SBK_QHBarModelMapper_IDX = 35,
|
||||
SBK_QHBoxPlotModelMapper_IDX = 36,
|
||||
SBK_QHCandlestickModelMapper_IDX = 37,
|
||||
SBK_QHPieModelMapper_IDX = 38,
|
||||
SBK_QHXYModelMapper_IDX = 39,
|
||||
SBK_QHorizontalBarSeries_IDX = 40,
|
||||
SBK_QHorizontalPercentBarSeries_IDX = 41,
|
||||
SBK_QHorizontalStackedBarSeries_IDX = 42,
|
||||
SBK_QLegend_MarkerShape_IDX = 44,
|
||||
SBK_QLegend_IDX = 43,
|
||||
SBK_QLegendMarker_LegendMarkerType_IDX = 46,
|
||||
SBK_QLegendMarker_IDX = 45,
|
||||
SBK_QLineSeries_IDX = 47,
|
||||
SBK_QLogValueAxis_IDX = 48,
|
||||
SBK_QPercentBarSeries_IDX = 49,
|
||||
SBK_QPieLegendMarker_IDX = 50,
|
||||
SBK_QPieModelMapper_IDX = 51,
|
||||
SBK_QPieSeries_IDX = 52,
|
||||
SBK_QPieSlice_LabelPosition_IDX = 54,
|
||||
SBK_QPieSlice_IDX = 53,
|
||||
SBK_QPolarChart_PolarOrientation_IDX = 56,
|
||||
SBK_QFlags_QPolarChart_PolarOrientation_IDX = 34,
|
||||
SBK_QPolarChart_IDX = 55,
|
||||
SBK_QScatterSeries_MarkerShape_IDX = 58,
|
||||
SBK_QScatterSeries_IDX = 57,
|
||||
SBK_QSplineSeries_IDX = 59,
|
||||
SBK_QStackedBarSeries_IDX = 60,
|
||||
SBK_QVBarModelMapper_IDX = 61,
|
||||
SBK_QVBoxPlotModelMapper_IDX = 62,
|
||||
SBK_QVCandlestickModelMapper_IDX = 63,
|
||||
SBK_QVPieModelMapper_IDX = 64,
|
||||
SBK_QVXYModelMapper_IDX = 65,
|
||||
SBK_QValueAxis_TickType_IDX = 67,
|
||||
SBK_QValueAxis_IDX = 66,
|
||||
SBK_QXYLegendMarker_IDX = 68,
|
||||
SBK_QXYModelMapper_IDX = 69,
|
||||
SBK_QXYSeries_PointConfiguration_IDX = 71,
|
||||
SBK_QXYSeries_IDX = 70,
|
||||
SBK_QtCharts_IDX_COUNT = 72,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtChartsTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtChartsTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtChartsModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtChartsTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTCHARTS_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTCHARTS_QLIST_QLEGENDMARKERPTR_IDX = 1, // QList<QLegendMarker*>
|
||||
SBK_QTCHARTS_QLIST_QABSTRACTAXISPTR_IDX = 2, // QList<QAbstractAxis*>
|
||||
SBK_QTCHARTS_QLIST_QABSTRACTSERIESPTR_IDX = 3, // QList<QAbstractSeries*>
|
||||
SBK_QTCHARTS_QLIST_QREAL_IDX = 4, // QList<qreal>
|
||||
SBK_QTCHARTS_QLIST_QPOINTF_IDX = 5, // QList<QPointF>
|
||||
SBK_QTCHARTS_STD_PAIR_QREAL_QREAL_IDX = 6, // std::pair<qreal,qreal>
|
||||
SBK_QTCHARTS_QHASH_QXYSERIES_POINTCONFIGURATION_QVARIANT_IDX = 7, // QHash<QXYSeries::PointConfiguration,QVariant>
|
||||
SBK_QTCHARTS_QHASH_INT_QHASH_QXYSERIES_POINTCONFIGURATION_QVARIANT_IDX = 8, // QHash<int,QHash<QXYSeries::PointConfiguration,QVariant>>
|
||||
SBK_QTCHARTS_QLIST_QPIESLICEPTR_IDX = 9, // QList<QPieSlice*>
|
||||
SBK_QTCHARTS_QLIST_QCANDLESTICKSETPTR_IDX = 10, // QList<QCandlestickSet*>
|
||||
SBK_QTCHARTS_QLIST_QBOXSETPTR_IDX = 11, // QList<QBoxSet*>
|
||||
SBK_QTCHARTS_QLIST_QBARSETPTR_IDX = 12, // QList<QBarSet*>
|
||||
SBK_QTCHARTS_QLIST_QVARIANT_IDX = 13, // QList<QVariant>
|
||||
SBK_QTCHARTS_QLIST_QSTRING_IDX = 14, // QList<QString>
|
||||
SBK_QTCHARTS_QMAP_QSTRING_QVARIANT_IDX = 15, // QMap<QString,QVariant>
|
||||
SBK_QTCHARTS_CONVERTERS_IDX_COUNT = 16,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtCharts_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtCharts_QList_QLegendMarkerPTR_IDX = 1, // QList<QLegendMarker*>
|
||||
SBK_QtCharts_QList_QAbstractAxisPTR_IDX = 2, // QList<QAbstractAxis*>
|
||||
SBK_QtCharts_QList_QAbstractSeriesPTR_IDX = 3, // QList<QAbstractSeries*>
|
||||
SBK_QtCharts_QList_qreal_IDX = 4, // QList<qreal>
|
||||
SBK_QtCharts_QList_QPointF_IDX = 5, // QList<QPointF>
|
||||
SBK_QtCharts_std_pair_qreal_qreal_IDX = 6, // std::pair<qreal,qreal>
|
||||
SBK_QtCharts_QHash_QXYSeries_PointConfiguration_QVariant_IDX = 7, // QHash<QXYSeries::PointConfiguration,QVariant>
|
||||
SBK_QtCharts_QHash_int_QHash_QXYSeries_PointConfiguration_QVariant_IDX = 8, // QHash<int,QHash<QXYSeries::PointConfiguration,QVariant>>
|
||||
SBK_QtCharts_QList_QPieSlicePTR_IDX = 9, // QList<QPieSlice*>
|
||||
SBK_QtCharts_QList_QCandlestickSetPTR_IDX = 10, // QList<QCandlestickSet*>
|
||||
SBK_QtCharts_QList_QBoxSetPTR_IDX = 11, // QList<QBoxSet*>
|
||||
SBK_QtCharts_QList_QBarSetPTR_IDX = 12, // QList<QBarSet*>
|
||||
SBK_QtCharts_QList_QVariant_IDX = 13, // QList<QVariant>
|
||||
SBK_QtCharts_QList_QString_IDX = 14, // QList<QString>
|
||||
SBK_QtCharts_QMap_QString_QVariant_IDX = 15, // QMap<QString,QVariant>
|
||||
SBK_QtCharts_CONVERTERS_IDX_COUNT = 16,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractAxis::AxisType >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QAbstractAxis_AxisType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractAxis >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QAbstractAxis_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractBarSeries::LabelsPosition >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QAbstractBarSeries_LabelsPosition_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractBarSeries >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QAbstractBarSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractSeries::SeriesType >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QAbstractSeries_SeriesType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractSeries >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QAbstractSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAreaLegendMarker >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QAreaLegendMarker_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAreaSeries >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QAreaSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBarCategoryAxis >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QBarCategoryAxis_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBarLegendMarker >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QBarLegendMarker_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBarModelMapper >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QBarModelMapper_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBarSeries >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QBarSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBarSet >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QBarSet_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBoxPlotLegendMarker >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QBoxPlotLegendMarker_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBoxPlotModelMapper >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QBoxPlotModelMapper_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBoxPlotSeries >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QBoxPlotSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBoxSet::ValuePositions >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QBoxSet_ValuePositions_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBoxSet >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QBoxSet_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCandlestickLegendMarker >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QCandlestickLegendMarker_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCandlestickModelMapper >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QCandlestickModelMapper_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCandlestickSeries >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QCandlestickSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCandlestickSet >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QCandlestickSet_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCategoryAxis::AxisLabelsPosition >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QCategoryAxis_AxisLabelsPosition_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCategoryAxis >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QCategoryAxis_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QChart::ChartType >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QChart_ChartType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QChart::ChartTheme >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QChart_ChartTheme_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QChart::AnimationOption >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QChart_AnimationOption_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QChart::AnimationOption> >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QFlags_QChart_AnimationOption_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QChart >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QChart_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QChartView::RubberBand >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QChartView_RubberBand_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QChartView::RubberBand> >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QFlags_QChartView_RubberBand_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QChartView >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QChartView_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QColorAxis >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QColorAxis_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDateTimeAxis >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QDateTimeAxis_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHBarModelMapper >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QHBarModelMapper_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHBoxPlotModelMapper >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QHBoxPlotModelMapper_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHCandlestickModelMapper >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QHCandlestickModelMapper_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHPieModelMapper >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QHPieModelMapper_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHXYModelMapper >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QHXYModelMapper_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHorizontalBarSeries >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QHorizontalBarSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHorizontalPercentBarSeries >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QHorizontalPercentBarSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHorizontalStackedBarSeries >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QHorizontalStackedBarSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLegend::MarkerShape >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QLegend_MarkerShape_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLegend >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QLegend_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLegendMarker::LegendMarkerType >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QLegendMarker_LegendMarkerType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLegendMarker >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QLegendMarker_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLineSeries >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QLineSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLogValueAxis >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QLogValueAxis_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPercentBarSeries >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QPercentBarSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPieLegendMarker >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QPieLegendMarker_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPieModelMapper >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QPieModelMapper_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPieSeries >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QPieSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPieSlice::LabelPosition >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QPieSlice_LabelPosition_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPieSlice >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QPieSlice_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPolarChart::PolarOrientation >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QPolarChart_PolarOrientation_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QPolarChart::PolarOrientation> >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QFlags_QPolarChart_PolarOrientation_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPolarChart >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QPolarChart_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScatterSeries::MarkerShape >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QScatterSeries_MarkerShape_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScatterSeries >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QScatterSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSplineSeries >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QSplineSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QStackedBarSeries >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QStackedBarSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QVBarModelMapper >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QVBarModelMapper_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QVBoxPlotModelMapper >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QVBoxPlotModelMapper_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QVCandlestickModelMapper >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QVCandlestickModelMapper_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QVPieModelMapper >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QVPieModelMapper_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QVXYModelMapper >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QVXYModelMapper_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QValueAxis::TickType >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QValueAxis_TickType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QValueAxis >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QValueAxis_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QXYLegendMarker >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QXYLegendMarker_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QXYModelMapper >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QXYModelMapper_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QXYSeries::PointConfiguration >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QXYSeries_PointConfiguration_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QXYSeries >() { return Shiboken::Module::get(SbkPySide6_QtChartsTypeStructs[SBK_QXYSeries_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTCHARTS_PYTHON_H
|
||||
|
||||
128
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtConcurrent/pyside6_qtconcurrent_python.h
vendored
Normal file
128
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtConcurrent/pyside6_qtconcurrent_python.h
vendored
Normal file
@@ -0,0 +1,128 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTCONCURRENT_PYTHON_H
|
||||
#define SBK_QTCONCURRENT_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtConcurrent/qtaskbuilder.h>
|
||||
#include <QtConcurrent/qtconcurrentreducekernel.h>
|
||||
#include <QtConcurrent/qtconcurrentrunbase.h>
|
||||
#include <QtConcurrent/qtconcurrentthreadengine.h>
|
||||
#if QT_CONFIG(future)
|
||||
#include <QtCore/qfuture.h>
|
||||
#include <QtCore/qfuturewatcher.h>
|
||||
#endif
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QFUTUREQSTRING_IDX = 2,
|
||||
SBK_QFUTURE_QSTRING_IDX = 2,
|
||||
SBK_QFUTUREVOID_IDX = 4,
|
||||
SBK_QFUTURE_VOID_IDX = 4,
|
||||
SBK_QFUTUREWATCHERQSTRING_IDX = 6,
|
||||
SBK_QFUTUREWATCHER_QSTRING_IDX = 6,
|
||||
SBK_QFUTUREWATCHERVOID_IDX = 8,
|
||||
SBK_QFUTUREWATCHER_VOID_IDX = 8,
|
||||
SBK_QTCONCURRENT_FUTURERESULT_IDX = 12,
|
||||
SBK_QTCONCURRENT_THREADFUNCTIONRESULT_IDX = 16,
|
||||
SBK_QTCONCURRENT_REDUCEOPTION_IDX = 14,
|
||||
SBK_QFLAGS_QTCONCURRENT_REDUCEOPTION_IDX = 0,
|
||||
SBK_QTCONCURRENTQTCONCURRENT_IDX = 10,
|
||||
SBK_QTCONCURRENT_IDX_COUNT = 18,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QFutureQString_IDX = 1,
|
||||
SBK_QFuture_QString_IDX = 1,
|
||||
SBK_QFutureVoid_IDX = 2,
|
||||
SBK_QFuture_void_IDX = 2,
|
||||
SBK_QFutureWatcherQString_IDX = 3,
|
||||
SBK_QFutureWatcher_QString_IDX = 3,
|
||||
SBK_QFutureWatcherVoid_IDX = 4,
|
||||
SBK_QFutureWatcher_void_IDX = 4,
|
||||
SBK_QtConcurrent_FutureResult_IDX = 6,
|
||||
SBK_QtConcurrent_ThreadFunctionResult_IDX = 8,
|
||||
SBK_QtConcurrent_ReduceOption_IDX = 7,
|
||||
SBK_QFlags_QtConcurrent_ReduceOption_IDX = 0,
|
||||
SBK_QtConcurrentQtConcurrent_IDX = 5,
|
||||
SBK_QtConcurrent_IDX_COUNT = 9,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtConcurrentTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtConcurrentTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtConcurrentModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtConcurrentTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTCONCURRENT_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTCONCURRENT_QLIST_QVARIANT_IDX = 1, // QList<QVariant>
|
||||
SBK_QTCONCURRENT_QLIST_QSTRING_IDX = 2, // QList<QString>
|
||||
SBK_QTCONCURRENT_QMAP_QSTRING_QVARIANT_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QTCONCURRENT_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtConcurrent_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtConcurrent_QList_QVariant_IDX = 1, // QList<QVariant>
|
||||
SBK_QtConcurrent_QList_QString_IDX = 2, // QList<QString>
|
||||
SBK_QtConcurrent_QMap_QString_QVariant_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QtConcurrent_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
|
||||
// typedef entries
|
||||
using QFutureQString = QFuture<QString>;
|
||||
using QFutureVoid = QFuture<void>;
|
||||
using QFutureWatcherQString = QFutureWatcher<QString>;
|
||||
using QFutureWatcherVoid = QFutureWatcher<void>;
|
||||
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
#if QT_CONFIG(future)
|
||||
template<> inline PyTypeObject *SbkType< QFutureQString >() { return Shiboken::Module::get(SbkPySide6_QtConcurrentTypeStructs[SBK_QFutureQString_IDX]); }
|
||||
#endif
|
||||
#if QT_CONFIG(future)
|
||||
template<> inline PyTypeObject *SbkType< QFutureVoid >() { return Shiboken::Module::get(SbkPySide6_QtConcurrentTypeStructs[SBK_QFutureVoid_IDX]); }
|
||||
#endif
|
||||
#if QT_CONFIG(future)
|
||||
template<> inline PyTypeObject *SbkType< QFutureWatcherQString >() { return Shiboken::Module::get(SbkPySide6_QtConcurrentTypeStructs[SBK_QFutureWatcherQString_IDX]); }
|
||||
#endif
|
||||
#if QT_CONFIG(future)
|
||||
template<> inline PyTypeObject *SbkType< QFutureWatcherVoid >() { return Shiboken::Module::get(SbkPySide6_QtConcurrentTypeStructs[SBK_QFutureWatcherVoid_IDX]); }
|
||||
#endif
|
||||
template<> inline PyTypeObject *SbkType< ::QtConcurrent::FutureResult >() { return Shiboken::Module::get(SbkPySide6_QtConcurrentTypeStructs[SBK_QtConcurrent_FutureResult_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtConcurrent::ThreadFunctionResult >() { return Shiboken::Module::get(SbkPySide6_QtConcurrentTypeStructs[SBK_QtConcurrent_ThreadFunctionResult_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtConcurrent::ReduceOption >() { return Shiboken::Module::get(SbkPySide6_QtConcurrentTypeStructs[SBK_QtConcurrent_ReduceOption_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QtConcurrent::ReduceOption> >() { return Shiboken::Module::get(SbkPySide6_QtConcurrentTypeStructs[SBK_QFlags_QtConcurrent_ReduceOption_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTCONCURRENT_PYTHON_H
|
||||
|
||||
1836
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtCore/pyside6_qtcore_python.h
vendored
Normal file
1836
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtCore/pyside6_qtcore_python.h
vendored
Normal file
File diff suppressed because it is too large
Load Diff
36
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtCore/qiopipe.h
vendored
Normal file
36
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtCore/qiopipe.h
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
// Copyright (C) 2024 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef QIOPIPE_H
|
||||
#define QIOPIPE_H
|
||||
|
||||
#include <QtCore/qiodevicebase.h>
|
||||
#include <QtCore/qobject.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
class QIODevice;
|
||||
|
||||
namespace QtCoreHelper
|
||||
{
|
||||
|
||||
class QIOPipePrivate;
|
||||
class QIOPipe : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_DECLARE_PRIVATE(QIOPipe)
|
||||
|
||||
public:
|
||||
QIOPipe(QObject *parent = nullptr);
|
||||
|
||||
bool open(QIODeviceBase::OpenMode mode);
|
||||
|
||||
QIODevice *end1() const;
|
||||
QIODevice *end2() const;
|
||||
};
|
||||
|
||||
} // namespace QtCoreHelper
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#endif // QIOPIPE_H
|
||||
145
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtCore/qtcorehelper.h
vendored
Normal file
145
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtCore/qtcorehelper.h
vendored
Normal file
@@ -0,0 +1,145 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef QTCOREHELPER_H
|
||||
#define QTCOREHELPER_H
|
||||
|
||||
#include <QtCore/qdirlisting.h>
|
||||
#include <QtCore/qmutex.h>
|
||||
#include <QtCore/qobjectdefs.h>
|
||||
|
||||
#include <memory>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
namespace QtCoreHelper {
|
||||
|
||||
using MutexLocker = QT_PREPEND_NAMESPACE(QMutexLocker<QMutex>);
|
||||
using RecursiveMutexLocker = QT_PREPEND_NAMESPACE(QMutexLocker<QRecursiveMutex>);
|
||||
|
||||
// ::QMutexLocker is a template with the QMutex class as parameter which can
|
||||
// only be represented by different type names in Python. Provide a common API.
|
||||
class QMutexLocker
|
||||
{
|
||||
public:
|
||||
Q_DISABLE_COPY_MOVE(QMutexLocker)
|
||||
|
||||
explicit QMutexLocker(QMutex *m)
|
||||
: m_mutexLocker(new MutexLocker(m))
|
||||
{
|
||||
}
|
||||
|
||||
explicit QMutexLocker(QRecursiveMutex *m)
|
||||
: m_recursiveMutexLocker(new RecursiveMutexLocker(m))
|
||||
{
|
||||
}
|
||||
|
||||
void unlock()
|
||||
{
|
||||
if (m_mutexLocker)
|
||||
m_mutexLocker->unlock();
|
||||
else
|
||||
m_recursiveMutexLocker->unlock();
|
||||
}
|
||||
|
||||
void relock()
|
||||
{
|
||||
if (m_mutexLocker)
|
||||
m_mutexLocker->relock();
|
||||
else
|
||||
m_recursiveMutexLocker->relock();
|
||||
}
|
||||
|
||||
QMutex *mutex() const
|
||||
{
|
||||
return m_mutexLocker ? m_mutexLocker->mutex() : nullptr;
|
||||
}
|
||||
|
||||
QRecursiveMutex *recursiveMutex() const
|
||||
{
|
||||
return m_recursiveMutexLocker ? m_recursiveMutexLocker->mutex() : nullptr;
|
||||
}
|
||||
|
||||
~QMutexLocker()
|
||||
{
|
||||
delete m_mutexLocker;
|
||||
delete m_recursiveMutexLocker;
|
||||
}
|
||||
|
||||
private:
|
||||
MutexLocker *m_mutexLocker = nullptr;
|
||||
RecursiveMutexLocker *m_recursiveMutexLocker = nullptr;
|
||||
};
|
||||
|
||||
class QGenericArgumentData;
|
||||
|
||||
// Return value of function Q_ARG() to be passed to QMetaObject::invokeMethod.
|
||||
// Frees the data if it is an allocated, primitive type.
|
||||
class QGenericArgumentHolder {
|
||||
public:
|
||||
QGenericArgumentHolder();
|
||||
explicit QGenericArgumentHolder(const QMetaType &type, const void *aData);
|
||||
QGenericArgumentHolder(const QGenericArgumentHolder &);
|
||||
QGenericArgumentHolder(QGenericArgumentHolder &&);
|
||||
QGenericArgumentHolder &operator=(const QGenericArgumentHolder &);
|
||||
QGenericArgumentHolder &operator=(QGenericArgumentHolder &&);
|
||||
~QGenericArgumentHolder();
|
||||
|
||||
QGenericArgument toGenericArgument() const;
|
||||
|
||||
QMetaType metaType() const;
|
||||
const void *data() const;
|
||||
|
||||
private:
|
||||
std::shared_ptr<QGenericArgumentData> d;
|
||||
};
|
||||
|
||||
class QGenericReturnArgumentData;
|
||||
|
||||
// Return value of function Q_RETURN_ARG() to be passed to QMetaObject::invokeMethod.
|
||||
// Frees the data if it is an allocated, primitive type.
|
||||
class QGenericReturnArgumentHolder {
|
||||
public:
|
||||
explicit QGenericReturnArgumentHolder(const QMetaType &type, void *aData);
|
||||
QGenericReturnArgumentHolder(const QGenericReturnArgumentHolder &);
|
||||
QGenericReturnArgumentHolder(QGenericReturnArgumentHolder &&);
|
||||
QGenericReturnArgumentHolder &operator=(const QGenericReturnArgumentHolder &);
|
||||
QGenericReturnArgumentHolder &operator=(QGenericReturnArgumentHolder &&);
|
||||
~QGenericReturnArgumentHolder();
|
||||
|
||||
QGenericReturnArgument toGenericReturnArgument() const;
|
||||
|
||||
QMetaType metaType() const;
|
||||
const void *data() const;
|
||||
|
||||
private:
|
||||
std::shared_ptr<QGenericReturnArgumentData> d;
|
||||
};
|
||||
|
||||
struct QDirListingIteratorPrivate;
|
||||
|
||||
class QDirListingIterator
|
||||
{
|
||||
public:
|
||||
explicit QDirListingIterator(const QDirListing &dl);
|
||||
QDirListingIterator();
|
||||
|
||||
QDirListingIterator(const QDirListingIterator &);
|
||||
QDirListingIterator &operator=(const QDirListingIterator &);
|
||||
QDirListingIterator(QDirListingIterator &&) noexcept;
|
||||
QDirListingIterator &operator=(QDirListingIterator &&) noexcept;
|
||||
~QDirListingIterator();
|
||||
|
||||
bool next();
|
||||
const QDirListing::DirEntry &value() const;
|
||||
bool atEnd() const;
|
||||
|
||||
private:
|
||||
std::shared_ptr<QDirListingIteratorPrivate> d;
|
||||
};
|
||||
|
||||
} // namespace QtCoreHelper
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#endif // QTCOREHELPER_H
|
||||
209
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtDBus/pyside6_qtdbus_python.h
vendored
Normal file
209
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtDBus/pyside6_qtdbus_python.h
vendored
Normal file
@@ -0,0 +1,209 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTDBUS_PYTHON_H
|
||||
#define SBK_QTDBUS_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtDBus/qdbusargument.h>
|
||||
#include <QtDBus/qdbusconnection.h>
|
||||
#include <QtDBus/qdbusconnectioninterface.h>
|
||||
#include <QtDBus/qdbuserror.h>
|
||||
#include <QtDBus/qdbusmessage.h>
|
||||
#include <QtDBus/qdbusservicewatcher.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QDBusAbstractAdaptor;
|
||||
class QDBusAbstractInterface;
|
||||
class QDBusAbstractInterfaceBase;
|
||||
class QDBusContext;
|
||||
class QDBusInterface;
|
||||
class QDBusObjectPath;
|
||||
class QDBusPendingCall;
|
||||
class QDBusPendingCallWatcher;
|
||||
class QDBusServer;
|
||||
class QDBusSignature;
|
||||
class QDBusUnixFileDescriptor;
|
||||
class QDBusVariant;
|
||||
class QDBusVirtualObject;
|
||||
|
||||
namespace QtDBusHelper {
|
||||
class QDBusReply;
|
||||
}
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QDBUS_CALLMODE_IDX = 2,
|
||||
SBK_QTDBUSQDBUS_IDX = 0,
|
||||
SBK_QDBUSABSTRACTADAPTOR_IDX = 4,
|
||||
SBK_QDBUSABSTRACTINTERFACE_IDX = 6,
|
||||
SBK_QDBUSABSTRACTINTERFACEBASE_IDX = 8,
|
||||
SBK_QDBUSARGUMENT_ELEMENTTYPE_IDX = 12,
|
||||
SBK_QDBUSARGUMENT_IDX = 10,
|
||||
SBK_QDBUSCONNECTION_BUSTYPE_IDX = 16,
|
||||
SBK_QDBUSCONNECTION_REGISTEROPTION_IDX = 20,
|
||||
SBK_QFLAGS_QDBUSCONNECTION_REGISTEROPTION_IDX = 68,
|
||||
SBK_QDBUSCONNECTION_UNREGISTERMODE_IDX = 22,
|
||||
SBK_QDBUSCONNECTION_VIRTUALOBJECTREGISTEROPTION_IDX = 24,
|
||||
SBK_QFLAGS_QDBUSCONNECTION_VIRTUALOBJECTREGISTEROPTION_IDX = 70,
|
||||
SBK_QDBUSCONNECTION_CONNECTIONCAPABILITY_IDX = 18,
|
||||
SBK_QFLAGS_QDBUSCONNECTION_CONNECTIONCAPABILITY_IDX = 66,
|
||||
SBK_QDBUSCONNECTION_IDX = 14,
|
||||
SBK_QDBUSCONNECTIONINTERFACE_SERVICEQUEUEOPTIONS_IDX = 30,
|
||||
SBK_QDBUSCONNECTIONINTERFACE_SERVICEREPLACEMENTOPTIONS_IDX = 32,
|
||||
SBK_QDBUSCONNECTIONINTERFACE_REGISTERSERVICEREPLY_IDX = 28,
|
||||
SBK_QDBUSCONNECTIONINTERFACE_IDX = 26,
|
||||
SBK_QDBUSCONTEXT_IDX = 34,
|
||||
SBK_QDBUSERROR_ERRORTYPE_IDX = 38,
|
||||
SBK_QDBUSERROR_IDX = 36,
|
||||
SBK_QDBUSINTERFACE_IDX = 40,
|
||||
SBK_QDBUSMESSAGE_MESSAGETYPE_IDX = 44,
|
||||
SBK_QDBUSMESSAGE_IDX = 42,
|
||||
SBK_QDBUSOBJECTPATH_IDX = 46,
|
||||
SBK_QDBUSPENDINGCALL_IDX = 48,
|
||||
SBK_QDBUSPENDINGCALLWATCHER_IDX = 50,
|
||||
SBK_QDBUSSERVER_IDX = 52,
|
||||
SBK_QDBUSSERVICEWATCHER_WATCHMODEFLAG_IDX = 56,
|
||||
SBK_QFLAGS_QDBUSSERVICEWATCHER_WATCHMODEFLAG_IDX = 72,
|
||||
SBK_QDBUSSERVICEWATCHER_IDX = 54,
|
||||
SBK_QDBUSSIGNATURE_IDX = 58,
|
||||
SBK_QDBUSUNIXFILEDESCRIPTOR_IDX = 60,
|
||||
SBK_QDBUSVARIANT_IDX = 62,
|
||||
SBK_QDBUSVIRTUALOBJECT_IDX = 64,
|
||||
SBK_QTDBUSHELPER_QDBUSREPLY_IDX = 76,
|
||||
SBK_QTDBUS_IDX_COUNT = 78,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QDBus_CallMode_IDX = 1,
|
||||
SBK_QtDBusQDBus_IDX = 0,
|
||||
SBK_QDBusAbstractAdaptor_IDX = 2,
|
||||
SBK_QDBusAbstractInterface_IDX = 3,
|
||||
SBK_QDBusAbstractInterfaceBase_IDX = 4,
|
||||
SBK_QDBusArgument_ElementType_IDX = 6,
|
||||
SBK_QDBusArgument_IDX = 5,
|
||||
SBK_QDBusConnection_BusType_IDX = 8,
|
||||
SBK_QDBusConnection_RegisterOption_IDX = 10,
|
||||
SBK_QFlags_QDBusConnection_RegisterOption_IDX = 34,
|
||||
SBK_QDBusConnection_UnregisterMode_IDX = 11,
|
||||
SBK_QDBusConnection_VirtualObjectRegisterOption_IDX = 12,
|
||||
SBK_QFlags_QDBusConnection_VirtualObjectRegisterOption_IDX = 35,
|
||||
SBK_QDBusConnection_ConnectionCapability_IDX = 9,
|
||||
SBK_QFlags_QDBusConnection_ConnectionCapability_IDX = 33,
|
||||
SBK_QDBusConnection_IDX = 7,
|
||||
SBK_QDBusConnectionInterface_ServiceQueueOptions_IDX = 15,
|
||||
SBK_QDBusConnectionInterface_ServiceReplacementOptions_IDX = 16,
|
||||
SBK_QDBusConnectionInterface_RegisterServiceReply_IDX = 14,
|
||||
SBK_QDBusConnectionInterface_IDX = 13,
|
||||
SBK_QDBusContext_IDX = 17,
|
||||
SBK_QDBusError_ErrorType_IDX = 19,
|
||||
SBK_QDBusError_IDX = 18,
|
||||
SBK_QDBusInterface_IDX = 20,
|
||||
SBK_QDBusMessage_MessageType_IDX = 22,
|
||||
SBK_QDBusMessage_IDX = 21,
|
||||
SBK_QDBusObjectPath_IDX = 23,
|
||||
SBK_QDBusPendingCall_IDX = 24,
|
||||
SBK_QDBusPendingCallWatcher_IDX = 25,
|
||||
SBK_QDBusServer_IDX = 26,
|
||||
SBK_QDBusServiceWatcher_WatchModeFlag_IDX = 28,
|
||||
SBK_QFlags_QDBusServiceWatcher_WatchModeFlag_IDX = 36,
|
||||
SBK_QDBusServiceWatcher_IDX = 27,
|
||||
SBK_QDBusSignature_IDX = 29,
|
||||
SBK_QDBusUnixFileDescriptor_IDX = 30,
|
||||
SBK_QDBusVariant_IDX = 31,
|
||||
SBK_QDBusVirtualObject_IDX = 32,
|
||||
SBK_QtDBusHelper_QDBusReply_IDX = 38,
|
||||
SBK_QtDBus_IDX_COUNT = 39,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtDBusTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtDBusTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtDBusModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtDBusTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTDBUS_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTDBUS_QLIST_QVARIANT_IDX = 1, // QList<QVariant>
|
||||
SBK_QTDBUS_QHASH_QSTRING_QVARIANT_IDX = 2, // QHash<QString,QVariant>
|
||||
SBK_QTDBUS_QMAP_QSTRING_QVARIANT_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QTDBUS_QLIST_QSTRING_IDX = 4, // QList<QString>
|
||||
SBK_QTDBUS_CONVERTERS_IDX_COUNT = 5,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtDBus_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtDBus_QList_QVariant_IDX = 1, // QList<QVariant>
|
||||
SBK_QtDBus_QHash_QString_QVariant_IDX = 2, // QHash<QString,QVariant>
|
||||
SBK_QtDBus_QMap_QString_QVariant_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QtDBus_QList_QString_IDX = 4, // QList<QString>
|
||||
SBK_QtDBus_CONVERTERS_IDX_COUNT = 5,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QDBus::CallMode >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBus_CallMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusAbstractAdaptor >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusAbstractAdaptor_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusAbstractInterface >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusAbstractInterface_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusAbstractInterfaceBase >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusAbstractInterfaceBase_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusArgument::ElementType >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusArgument_ElementType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusArgument >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusArgument_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusConnection::BusType >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusConnection_BusType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusConnection::RegisterOption >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusConnection_RegisterOption_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QDBusConnection::RegisterOption> >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QFlags_QDBusConnection_RegisterOption_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusConnection::UnregisterMode >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusConnection_UnregisterMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusConnection::VirtualObjectRegisterOption >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusConnection_VirtualObjectRegisterOption_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QDBusConnection::VirtualObjectRegisterOption> >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QFlags_QDBusConnection_VirtualObjectRegisterOption_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusConnection::ConnectionCapability >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusConnection_ConnectionCapability_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QDBusConnection::ConnectionCapability> >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QFlags_QDBusConnection_ConnectionCapability_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusConnection >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusConnection_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusConnectionInterface::ServiceQueueOptions >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusConnectionInterface_ServiceQueueOptions_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusConnectionInterface::ServiceReplacementOptions >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusConnectionInterface_ServiceReplacementOptions_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusConnectionInterface::RegisterServiceReply >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusConnectionInterface_RegisterServiceReply_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusConnectionInterface >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusConnectionInterface_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusContext >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusContext_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusError::ErrorType >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusError_ErrorType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusError >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusError_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusInterface >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusInterface_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusMessage::MessageType >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusMessage_MessageType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusMessage >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusMessage_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusObjectPath >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusObjectPath_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusPendingCall >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusPendingCall_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusPendingCallWatcher >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusPendingCallWatcher_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusServer >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusServer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusServiceWatcher::WatchModeFlag >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusServiceWatcher_WatchModeFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QDBusServiceWatcher::WatchModeFlag> >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QFlags_QDBusServiceWatcher_WatchModeFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusServiceWatcher >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusServiceWatcher_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusSignature >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusSignature_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusUnixFileDescriptor >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusUnixFileDescriptor_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusVariant >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusVariant_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDBusVirtualObject >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QDBusVirtualObject_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtDBusHelper::QDBusReply >() { return Shiboken::Module::get(SbkPySide6_QtDBusTypeStructs[SBK_QtDBusHelper_QDBusReply_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTDBUS_PYTHON_H
|
||||
|
||||
62
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtDBus/qtdbushelper.h
vendored
Normal file
62
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtDBus/qtdbushelper.h
vendored
Normal file
@@ -0,0 +1,62 @@
|
||||
// Copyright (C) 2021 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef QTDBUSHELPER_H
|
||||
#define QTDBUSHELPER_H
|
||||
|
||||
#include <QtDBus/qdbusmessage.h>
|
||||
#include <QtDBus/qdbuspendingcall.h>
|
||||
#include <QtDBus/qdbusreply.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
namespace QtDBusHelper {
|
||||
|
||||
// A Python-bindings friendly, non-template QDBusReply
|
||||
|
||||
class QDBusReply {
|
||||
public:
|
||||
QDBusReply();
|
||||
|
||||
// Enable constructing QDBusReply from a QDBusMessage which is returned by
|
||||
// call().
|
||||
explicit QDBusReply(const QDBusMessage &reply) :
|
||||
m_error(reply),
|
||||
m_data(reply.arguments().value(0, {}))
|
||||
{
|
||||
}
|
||||
|
||||
// Enable constructing QDBusReply from an original Qt QDBusReply for
|
||||
// the functions we declare (QDBusConnectionInterface::registeredServiceNames())
|
||||
template <class T>
|
||||
explicit QDBusReply(const ::QDBusReply<T> &qr) :
|
||||
m_error(qr.error()),
|
||||
m_data(QVariant(qr.value()))
|
||||
{
|
||||
}
|
||||
|
||||
explicit QDBusReply(const ::QDBusReply<void> &qr) :
|
||||
m_error(qr.error())
|
||||
{
|
||||
}
|
||||
|
||||
bool isValid() const { return !m_error.isValid(); }
|
||||
|
||||
QVariant value() const
|
||||
{
|
||||
return m_data;
|
||||
}
|
||||
|
||||
const QDBusError &error() const { return m_error; }
|
||||
|
||||
private:
|
||||
QDBusError m_error;
|
||||
QVariant m_data;
|
||||
};
|
||||
|
||||
inline QDBusReply::QDBusReply() = default;
|
||||
|
||||
} // namespace QtDBusHelper
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#endif // QTDBUSHELPER_H
|
||||
@@ -0,0 +1,307 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTDATAVISUALIZATION_PYTHON_H
|
||||
#define SBK_QTDATAVISUALIZATION_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtDataVisualization/q3dcamera.h>
|
||||
#include <QtDataVisualization/q3dtheme.h>
|
||||
#include <QtDataVisualization/qabstract3daxis.h>
|
||||
#include <QtDataVisualization/qabstract3dgraph.h>
|
||||
#include <QtDataVisualization/qabstract3dinputhandler.h>
|
||||
#include <QtDataVisualization/qabstract3dseries.h>
|
||||
#include <QtDataVisualization/qabstractdataproxy.h>
|
||||
#include <QtDataVisualization/qitemmodelbardataproxy.h>
|
||||
#include <QtDataVisualization/qitemmodelsurfacedataproxy.h>
|
||||
#include <QtDataVisualization/qsurface3dseries.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class Q3DBars;
|
||||
class Q3DInputHandler;
|
||||
class Q3DLight;
|
||||
class Q3DObject;
|
||||
class Q3DScatter;
|
||||
class Q3DScene;
|
||||
class Q3DSurface;
|
||||
class QBar3DSeries;
|
||||
class QBarDataItem;
|
||||
class QBarDataProxy;
|
||||
class QCategory3DAxis;
|
||||
class QCustom3DItem;
|
||||
class QCustom3DLabel;
|
||||
class QCustom3DVolume;
|
||||
class QHeightMapSurfaceDataProxy;
|
||||
class QItemModelScatterDataProxy;
|
||||
class QLogValue3DAxisFormatter;
|
||||
class QScatter3DSeries;
|
||||
class QScatterDataItem;
|
||||
class QScatterDataProxy;
|
||||
class QSurfaceDataItem;
|
||||
class QSurfaceDataProxy;
|
||||
class QTouch3DInputHandler;
|
||||
class QValue3DAxis;
|
||||
class QValue3DAxisFormatter;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_Q3DBARS_IDX = 0,
|
||||
SBK_Q3DCAMERA_CAMERAPRESET_IDX = 4,
|
||||
SBK_Q3DCAMERA_IDX = 2,
|
||||
SBK_Q3DINPUTHANDLER_IDX = 6,
|
||||
SBK_Q3DLIGHT_IDX = 8,
|
||||
SBK_Q3DOBJECT_IDX = 10,
|
||||
SBK_Q3DSCATTER_IDX = 12,
|
||||
SBK_Q3DSCENE_IDX = 14,
|
||||
SBK_Q3DSURFACE_IDX = 16,
|
||||
SBK_Q3DTHEME_COLORSTYLE_IDX = 20,
|
||||
SBK_Q3DTHEME_THEME_IDX = 22,
|
||||
SBK_Q3DTHEME_IDX = 18,
|
||||
SBK_QABSTRACT3DAXIS_AXISORIENTATION_IDX = 26,
|
||||
SBK_QABSTRACT3DAXIS_AXISTYPE_IDX = 28,
|
||||
SBK_QABSTRACT3DAXIS_IDX = 24,
|
||||
SBK_QABSTRACT3DGRAPH_SELECTIONFLAG_IDX = 36,
|
||||
SBK_QFLAGS_QABSTRACT3DGRAPH_SELECTIONFLAG_IDX = 70,
|
||||
SBK_QABSTRACT3DGRAPH_SHADOWQUALITY_IDX = 38,
|
||||
SBK_QABSTRACT3DGRAPH_ELEMENTTYPE_IDX = 32,
|
||||
SBK_QABSTRACT3DGRAPH_OPTIMIZATIONHINT_IDX = 34,
|
||||
SBK_QFLAGS_QABSTRACT3DGRAPH_OPTIMIZATIONHINT_IDX = 68,
|
||||
SBK_QABSTRACT3DGRAPH_IDX = 30,
|
||||
SBK_QABSTRACT3DINPUTHANDLER_INPUTVIEW_IDX = 42,
|
||||
SBK_QABSTRACT3DINPUTHANDLER_IDX = 40,
|
||||
SBK_QABSTRACT3DSERIES_SERIESTYPE_IDX = 48,
|
||||
SBK_QABSTRACT3DSERIES_MESH_IDX = 46,
|
||||
SBK_QABSTRACT3DSERIES_IDX = 44,
|
||||
SBK_QABSTRACTDATAPROXY_DATATYPE_IDX = 52,
|
||||
SBK_QABSTRACTDATAPROXY_IDX = 50,
|
||||
SBK_QBAR3DSERIES_IDX = 54,
|
||||
SBK_QBARDATAITEM_IDX = 56,
|
||||
SBK_QBARDATAPROXY_IDX = 58,
|
||||
SBK_QCATEGORY3DAXIS_IDX = 60,
|
||||
SBK_QCUSTOM3DITEM_IDX = 62,
|
||||
SBK_QCUSTOM3DLABEL_IDX = 64,
|
||||
SBK_QCUSTOM3DVOLUME_IDX = 66,
|
||||
SBK_QHEIGHTMAPSURFACEDATAPROXY_IDX = 74,
|
||||
SBK_QITEMMODELBARDATAPROXY_MULTIMATCHBEHAVIOR_IDX = 78,
|
||||
SBK_QITEMMODELBARDATAPROXY_IDX = 76,
|
||||
SBK_QITEMMODELSCATTERDATAPROXY_IDX = 80,
|
||||
SBK_QITEMMODELSURFACEDATAPROXY_MULTIMATCHBEHAVIOR_IDX = 84,
|
||||
SBK_QITEMMODELSURFACEDATAPROXY_IDX = 82,
|
||||
SBK_QLOGVALUE3DAXISFORMATTER_IDX = 86,
|
||||
SBK_QSCATTER3DSERIES_IDX = 88,
|
||||
SBK_QSCATTERDATAITEM_IDX = 90,
|
||||
SBK_QSCATTERDATAPROXY_IDX = 92,
|
||||
SBK_QSURFACE3DSERIES_DRAWFLAG_IDX = 96,
|
||||
SBK_QFLAGS_QSURFACE3DSERIES_DRAWFLAG_IDX = 72,
|
||||
SBK_QSURFACE3DSERIES_IDX = 94,
|
||||
SBK_QSURFACEDATAITEM_IDX = 98,
|
||||
SBK_QSURFACEDATAPROXY_IDX = 100,
|
||||
SBK_QTOUCH3DINPUTHANDLER_IDX = 102,
|
||||
SBK_QVALUE3DAXIS_IDX = 104,
|
||||
SBK_QVALUE3DAXISFORMATTER_IDX = 106,
|
||||
SBK_QTDATAVISUALIZATION_IDX_COUNT = 108,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_Q3DBars_IDX = 0,
|
||||
SBK_Q3DCamera_CameraPreset_IDX = 2,
|
||||
SBK_Q3DCamera_IDX = 1,
|
||||
SBK_Q3DInputHandler_IDX = 3,
|
||||
SBK_Q3DLight_IDX = 4,
|
||||
SBK_Q3DObject_IDX = 5,
|
||||
SBK_Q3DScatter_IDX = 6,
|
||||
SBK_Q3DScene_IDX = 7,
|
||||
SBK_Q3DSurface_IDX = 8,
|
||||
SBK_Q3DTheme_ColorStyle_IDX = 10,
|
||||
SBK_Q3DTheme_Theme_IDX = 11,
|
||||
SBK_Q3DTheme_IDX = 9,
|
||||
SBK_QAbstract3DAxis_AxisOrientation_IDX = 13,
|
||||
SBK_QAbstract3DAxis_AxisType_IDX = 14,
|
||||
SBK_QAbstract3DAxis_IDX = 12,
|
||||
SBK_QAbstract3DGraph_SelectionFlag_IDX = 18,
|
||||
SBK_QFlags_QAbstract3DGraph_SelectionFlag_IDX = 35,
|
||||
SBK_QAbstract3DGraph_ShadowQuality_IDX = 19,
|
||||
SBK_QAbstract3DGraph_ElementType_IDX = 16,
|
||||
SBK_QAbstract3DGraph_OptimizationHint_IDX = 17,
|
||||
SBK_QFlags_QAbstract3DGraph_OptimizationHint_IDX = 34,
|
||||
SBK_QAbstract3DGraph_IDX = 15,
|
||||
SBK_QAbstract3DInputHandler_InputView_IDX = 21,
|
||||
SBK_QAbstract3DInputHandler_IDX = 20,
|
||||
SBK_QAbstract3DSeries_SeriesType_IDX = 24,
|
||||
SBK_QAbstract3DSeries_Mesh_IDX = 23,
|
||||
SBK_QAbstract3DSeries_IDX = 22,
|
||||
SBK_QAbstractDataProxy_DataType_IDX = 26,
|
||||
SBK_QAbstractDataProxy_IDX = 25,
|
||||
SBK_QBar3DSeries_IDX = 27,
|
||||
SBK_QBarDataItem_IDX = 28,
|
||||
SBK_QBarDataProxy_IDX = 29,
|
||||
SBK_QCategory3DAxis_IDX = 30,
|
||||
SBK_QCustom3DItem_IDX = 31,
|
||||
SBK_QCustom3DLabel_IDX = 32,
|
||||
SBK_QCustom3DVolume_IDX = 33,
|
||||
SBK_QHeightMapSurfaceDataProxy_IDX = 37,
|
||||
SBK_QItemModelBarDataProxy_MultiMatchBehavior_IDX = 39,
|
||||
SBK_QItemModelBarDataProxy_IDX = 38,
|
||||
SBK_QItemModelScatterDataProxy_IDX = 40,
|
||||
SBK_QItemModelSurfaceDataProxy_MultiMatchBehavior_IDX = 42,
|
||||
SBK_QItemModelSurfaceDataProxy_IDX = 41,
|
||||
SBK_QLogValue3DAxisFormatter_IDX = 43,
|
||||
SBK_QScatter3DSeries_IDX = 44,
|
||||
SBK_QScatterDataItem_IDX = 45,
|
||||
SBK_QScatterDataProxy_IDX = 46,
|
||||
SBK_QSurface3DSeries_DrawFlag_IDX = 48,
|
||||
SBK_QFlags_QSurface3DSeries_DrawFlag_IDX = 36,
|
||||
SBK_QSurface3DSeries_IDX = 47,
|
||||
SBK_QSurfaceDataItem_IDX = 49,
|
||||
SBK_QSurfaceDataProxy_IDX = 50,
|
||||
SBK_QTouch3DInputHandler_IDX = 51,
|
||||
SBK_QValue3DAxis_IDX = 52,
|
||||
SBK_QValue3DAxisFormatter_IDX = 53,
|
||||
SBK_QtDataVisualization_IDX_COUNT = 54,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtDataVisualizationTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtDataVisualizationTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtDataVisualizationModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtDataVisualizationTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QBARDATAARRAY_IDX = 0,
|
||||
SBK_QSURFACEDATAARRAY_IDX = 1,
|
||||
SBK_QTDATAVISUALIZATION_QLIST_INT_IDX = 2, // QList<int>
|
||||
SBK_QTDATAVISUALIZATION_QLIST_QCUSTOM3DITEMPTR_IDX = 3, // QList<QCustom3DItem*>
|
||||
SBK_QTDATAVISUALIZATION_QLIST_QABSTRACT3DINPUTHANDLERPTR_IDX = 4, // QList<QAbstract3DInputHandler*>
|
||||
SBK_QTDATAVISUALIZATION_QLIST_Q3DTHEMEPTR_IDX = 5, // QList<Q3DTheme*>
|
||||
SBK_QTDATAVISUALIZATION_QLIST_QVALUE3DAXISPTR_IDX = 6, // QList<QValue3DAxis*>
|
||||
SBK_QTDATAVISUALIZATION_QLIST_QSURFACE3DSERIESPTR_IDX = 7, // QList<QSurface3DSeries*>
|
||||
SBK_QTDATAVISUALIZATION_QLIST_QSCATTER3DSERIESPTR_IDX = 8, // QList<QScatter3DSeries*>
|
||||
SBK_QTDATAVISUALIZATION_QLIST_QABSTRACT3DAXISPTR_IDX = 9, // QList<QAbstract3DAxis*>
|
||||
SBK_QTDATAVISUALIZATION_QLIST_QBAR3DSERIESPTR_IDX = 10, // QList<QBar3DSeries*>
|
||||
SBK_QTDATAVISUALIZATION_QLIST_FLOAT_IDX = 11, // QList<float>
|
||||
SBK_QTDATAVISUALIZATION_QLIST_UCHAR_IDX = 12, // QList<uchar>
|
||||
SBK_QTDATAVISUALIZATION_QLIST_UNSIGNEDINT_IDX = 13, // QList<unsigned int>
|
||||
SBK_QTDATAVISUALIZATION_QLIST_QIMAGEPTR_IDX = 14, // QList<QImage*>
|
||||
SBK_QTDATAVISUALIZATION_QLIST_QSURFACEDATAITEM_IDX = 15, // QList<QSurfaceDataItem>
|
||||
SBK_QTDATAVISUALIZATION_QLIST_QSCATTERDATAITEM_IDX = 16, // QList<QScatterDataItem>
|
||||
SBK_QTDATAVISUALIZATION_QLIST_QBARDATAITEM_IDX = 17, // QList<QBarDataItem>
|
||||
SBK_QTDATAVISUALIZATION_QLIST_QCOLOR_IDX = 18, // QList<QColor>
|
||||
SBK_QTDATAVISUALIZATION_QLIST_QLINEARGRADIENT_IDX = 19, // QList<QLinearGradient>
|
||||
SBK_QTDATAVISUALIZATION_QLIST_QVARIANT_IDX = 20, // QList<QVariant>
|
||||
SBK_QTDATAVISUALIZATION_QLIST_QSTRING_IDX = 21, // QList<QString>
|
||||
SBK_QTDATAVISUALIZATION_QMAP_QSTRING_QVARIANT_IDX = 22, // QMap<QString,QVariant>
|
||||
SBK_QTDATAVISUALIZATION_CONVERTERS_IDX_COUNT = 23,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QBarDataArray_IDX = 0,
|
||||
SBK_QSurfaceDataArray_IDX = 1,
|
||||
SBK_QtDataVisualization_QList_int_IDX = 2, // QList<int>
|
||||
SBK_QtDataVisualization_QList_QCustom3DItemPTR_IDX = 3, // QList<QCustom3DItem*>
|
||||
SBK_QtDataVisualization_QList_QAbstract3DInputHandlerPTR_IDX = 4, // QList<QAbstract3DInputHandler*>
|
||||
SBK_QtDataVisualization_QList_Q3DThemePTR_IDX = 5, // QList<Q3DTheme*>
|
||||
SBK_QtDataVisualization_QList_QValue3DAxisPTR_IDX = 6, // QList<QValue3DAxis*>
|
||||
SBK_QtDataVisualization_QList_QSurface3DSeriesPTR_IDX = 7, // QList<QSurface3DSeries*>
|
||||
SBK_QtDataVisualization_QList_QScatter3DSeriesPTR_IDX = 8, // QList<QScatter3DSeries*>
|
||||
SBK_QtDataVisualization_QList_QAbstract3DAxisPTR_IDX = 9, // QList<QAbstract3DAxis*>
|
||||
SBK_QtDataVisualization_QList_QBar3DSeriesPTR_IDX = 10, // QList<QBar3DSeries*>
|
||||
SBK_QtDataVisualization_QList_float_IDX = 11, // QList<float>
|
||||
SBK_QtDataVisualization_QList_uchar_IDX = 12, // QList<uchar>
|
||||
SBK_QtDataVisualization_QList_unsignedint_IDX = 13, // QList<unsigned int>
|
||||
SBK_QtDataVisualization_QList_QImagePTR_IDX = 14, // QList<QImage*>
|
||||
SBK_QtDataVisualization_QList_QSurfaceDataItem_IDX = 15, // QList<QSurfaceDataItem>
|
||||
SBK_QtDataVisualization_QList_QScatterDataItem_IDX = 16, // QList<QScatterDataItem>
|
||||
SBK_QtDataVisualization_QList_QBarDataItem_IDX = 17, // QList<QBarDataItem>
|
||||
SBK_QtDataVisualization_QList_QColor_IDX = 18, // QList<QColor>
|
||||
SBK_QtDataVisualization_QList_QLinearGradient_IDX = 19, // QList<QLinearGradient>
|
||||
SBK_QtDataVisualization_QList_QVariant_IDX = 20, // QList<QVariant>
|
||||
SBK_QtDataVisualization_QList_QString_IDX = 21, // QList<QString>
|
||||
SBK_QtDataVisualization_QMap_QString_QVariant_IDX = 22, // QMap<QString,QVariant>
|
||||
SBK_QtDataVisualization_CONVERTERS_IDX_COUNT = 23,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::Q3DBars >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_Q3DBars_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Q3DCamera::CameraPreset >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_Q3DCamera_CameraPreset_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Q3DCamera >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_Q3DCamera_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Q3DInputHandler >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_Q3DInputHandler_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Q3DLight >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_Q3DLight_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Q3DObject >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_Q3DObject_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Q3DScatter >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_Q3DScatter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Q3DScene >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_Q3DScene_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Q3DSurface >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_Q3DSurface_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Q3DTheme::ColorStyle >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_Q3DTheme_ColorStyle_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Q3DTheme::Theme >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_Q3DTheme_Theme_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Q3DTheme >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_Q3DTheme_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstract3DAxis::AxisOrientation >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QAbstract3DAxis_AxisOrientation_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstract3DAxis::AxisType >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QAbstract3DAxis_AxisType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstract3DAxis >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QAbstract3DAxis_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstract3DGraph::SelectionFlag >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QAbstract3DGraph_SelectionFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QAbstract3DGraph::SelectionFlag> >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QFlags_QAbstract3DGraph_SelectionFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstract3DGraph::ShadowQuality >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QAbstract3DGraph_ShadowQuality_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstract3DGraph::ElementType >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QAbstract3DGraph_ElementType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstract3DGraph::OptimizationHint >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QAbstract3DGraph_OptimizationHint_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QAbstract3DGraph::OptimizationHint> >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QFlags_QAbstract3DGraph_OptimizationHint_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstract3DGraph >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QAbstract3DGraph_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstract3DInputHandler::InputView >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QAbstract3DInputHandler_InputView_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstract3DInputHandler >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QAbstract3DInputHandler_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstract3DSeries::SeriesType >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QAbstract3DSeries_SeriesType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstract3DSeries::Mesh >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QAbstract3DSeries_Mesh_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstract3DSeries >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QAbstract3DSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractDataProxy::DataType >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QAbstractDataProxy_DataType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractDataProxy >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QAbstractDataProxy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBar3DSeries >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QBar3DSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBarDataItem >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QBarDataItem_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBarDataProxy >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QBarDataProxy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCategory3DAxis >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QCategory3DAxis_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCustom3DItem >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QCustom3DItem_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCustom3DLabel >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QCustom3DLabel_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCustom3DVolume >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QCustom3DVolume_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHeightMapSurfaceDataProxy >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QHeightMapSurfaceDataProxy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QItemModelBarDataProxy::MultiMatchBehavior >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QItemModelBarDataProxy_MultiMatchBehavior_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QItemModelBarDataProxy >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QItemModelBarDataProxy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QItemModelScatterDataProxy >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QItemModelScatterDataProxy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QItemModelSurfaceDataProxy::MultiMatchBehavior >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QItemModelSurfaceDataProxy_MultiMatchBehavior_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QItemModelSurfaceDataProxy >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QItemModelSurfaceDataProxy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLogValue3DAxisFormatter >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QLogValue3DAxisFormatter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScatter3DSeries >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QScatter3DSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScatterDataItem >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QScatterDataItem_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScatterDataProxy >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QScatterDataProxy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSurface3DSeries::DrawFlag >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QSurface3DSeries_DrawFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QSurface3DSeries::DrawFlag> >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QFlags_QSurface3DSeries_DrawFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSurface3DSeries >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QSurface3DSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSurfaceDataItem >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QSurfaceDataItem_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSurfaceDataProxy >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QSurfaceDataProxy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QTouch3DInputHandler >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QTouch3DInputHandler_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QValue3DAxis >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QValue3DAxis_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QValue3DAxisFormatter >() { return Shiboken::Module::get(SbkPySide6_QtDataVisualizationTypeStructs[SBK_QValue3DAxisFormatter_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTDATAVISUALIZATION_PYTHON_H
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef QTDATAVISUALIZATION_HELPER_H
|
||||
#define QTDATAVISUALIZATION_HELPER_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
|
||||
#include <QtDataVisualization/qsurfacedataproxy.h>
|
||||
#include <QtCore/qlist.h>
|
||||
|
||||
namespace QtDataVisualizationHelper {
|
||||
|
||||
QSurfaceDataArray *surfaceDataFromNp(double x, double deltaX, double z, double deltaZ,
|
||||
PyObject *data);
|
||||
|
||||
} // namespace QtDataVisualizationHelper
|
||||
|
||||
#endif // QTDATAVISUALIZATION_HELPER_H
|
||||
233
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtDesigner/pyside6_qtdesigner_python.h
vendored
Normal file
233
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtDesigner/pyside6_qtdesigner_python.h
vendored
Normal file
@@ -0,0 +1,233 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTDESIGNER_PYTHON_H
|
||||
#define SBK_QTDESIGNER_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtwidgets_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtDesigner/abstractdnditem.h>
|
||||
#include <QtDesigner/abstractformwindow.h>
|
||||
#include <QtDesigner/abstractformwindowcursor.h>
|
||||
#include <QtDesigner/abstractformwindowmanager.h>
|
||||
#include <QtDesigner/abstractwidgetbox.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QAbstractExtensionFactory;
|
||||
class QAbstractExtensionManager;
|
||||
class QAbstractFormBuilder;
|
||||
class QDesignerActionEditorInterface;
|
||||
class QDesignerContainerExtension;
|
||||
class QDesignerCustomWidgetCollectionInterface;
|
||||
class QDesignerCustomWidgetInterface;
|
||||
class QDesignerDynamicPropertySheetExtension;
|
||||
class QDesignerFormEditorInterface;
|
||||
class QDesignerFormWindowToolInterface;
|
||||
class QDesignerMemberSheetExtension;
|
||||
class QDesignerObjectInspectorInterface;
|
||||
class QDesignerPropertyEditorInterface;
|
||||
class QDesignerPropertySheetExtension;
|
||||
class QDesignerTaskMenuExtension;
|
||||
class QExtensionFactory;
|
||||
class QExtensionManager;
|
||||
class QFormBuilder;
|
||||
class QPyDesignerContainerExtension;
|
||||
class QPyDesignerCustomWidgetCollection;
|
||||
class QPyDesignerMemberSheetExtension;
|
||||
class QPyDesignerPropertySheetExtension;
|
||||
class QPyDesignerTaskMenuExtension;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QABSTRACTEXTENSIONFACTORY_IDX = 0,
|
||||
SBK_QABSTRACTEXTENSIONMANAGER_IDX = 2,
|
||||
SBK_QABSTRACTFORMBUILDER_IDX = 4,
|
||||
SBK_QDESIGNERACTIONEDITORINTERFACE_IDX = 6,
|
||||
SBK_QDESIGNERCONTAINEREXTENSION_IDX = 8,
|
||||
SBK_QDESIGNERCUSTOMWIDGETCOLLECTIONINTERFACE_IDX = 10,
|
||||
SBK_QDESIGNERCUSTOMWIDGETINTERFACE_IDX = 12,
|
||||
SBK_QDESIGNERDNDITEMINTERFACE_DROPTYPE_IDX = 16,
|
||||
SBK_QDESIGNERDNDITEMINTERFACE_IDX = 14,
|
||||
SBK_QDESIGNERDYNAMICPROPERTYSHEETEXTENSION_IDX = 18,
|
||||
SBK_QDESIGNERFORMEDITORINTERFACE_IDX = 20,
|
||||
SBK_QDESIGNERFORMWINDOWCURSORINTERFACE_MOVEOPERATION_IDX = 26,
|
||||
SBK_QDESIGNERFORMWINDOWCURSORINTERFACE_MOVEMODE_IDX = 24,
|
||||
SBK_QDESIGNERFORMWINDOWCURSORINTERFACE_IDX = 22,
|
||||
SBK_QDESIGNERFORMWINDOWINTERFACE_FEATUREFLAG_IDX = 30,
|
||||
SBK_QFLAGS_QDESIGNERFORMWINDOWINTERFACE_FEATUREFLAG_IDX = 66,
|
||||
SBK_QDESIGNERFORMWINDOWINTERFACE_RESOURCEFILESAVEMODE_IDX = 32,
|
||||
SBK_QDESIGNERFORMWINDOWINTERFACE_IDX = 28,
|
||||
SBK_QDESIGNERFORMWINDOWMANAGERINTERFACE_ACTION_IDX = 36,
|
||||
SBK_QDESIGNERFORMWINDOWMANAGERINTERFACE_ACTIONGROUP_IDX = 38,
|
||||
SBK_QDESIGNERFORMWINDOWMANAGERINTERFACE_IDX = 34,
|
||||
SBK_QDESIGNERFORMWINDOWTOOLINTERFACE_IDX = 40,
|
||||
SBK_QDESIGNERMEMBERSHEETEXTENSION_IDX = 42,
|
||||
SBK_QDESIGNEROBJECTINSPECTORINTERFACE_IDX = 44,
|
||||
SBK_QDESIGNERPROPERTYEDITORINTERFACE_IDX = 46,
|
||||
SBK_QDESIGNERPROPERTYSHEETEXTENSION_IDX = 48,
|
||||
SBK_QDESIGNERTASKMENUEXTENSION_IDX = 50,
|
||||
SBK_QDESIGNERWIDGETBOXINTERFACE_IDX = 52,
|
||||
SBK_QDESIGNERWIDGETBOXINTERFACE_CATEGORY_TYPE_IDX = 56,
|
||||
SBK_QDESIGNERWIDGETBOXINTERFACE_CATEGORY_IDX = 54,
|
||||
SBK_QDESIGNERWIDGETBOXINTERFACE_WIDGET_TYPE_IDX = 60,
|
||||
SBK_QDESIGNERWIDGETBOXINTERFACE_WIDGET_IDX = 58,
|
||||
SBK_QEXTENSIONFACTORY_IDX = 62,
|
||||
SBK_QEXTENSIONMANAGER_IDX = 64,
|
||||
SBK_QFORMBUILDER_IDX = 68,
|
||||
SBK_QPYDESIGNERCONTAINEREXTENSION_IDX = 70,
|
||||
SBK_QPYDESIGNERCUSTOMWIDGETCOLLECTION_IDX = 72,
|
||||
SBK_QPYDESIGNERMEMBERSHEETEXTENSION_IDX = 74,
|
||||
SBK_QPYDESIGNERPROPERTYSHEETEXTENSION_IDX = 76,
|
||||
SBK_QPYDESIGNERTASKMENUEXTENSION_IDX = 78,
|
||||
SBK_QTDESIGNER_IDX_COUNT = 80,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QAbstractExtensionFactory_IDX = 0,
|
||||
SBK_QAbstractExtensionManager_IDX = 1,
|
||||
SBK_QAbstractFormBuilder_IDX = 2,
|
||||
SBK_QDesignerActionEditorInterface_IDX = 3,
|
||||
SBK_QDesignerContainerExtension_IDX = 4,
|
||||
SBK_QDesignerCustomWidgetCollectionInterface_IDX = 5,
|
||||
SBK_QDesignerCustomWidgetInterface_IDX = 6,
|
||||
SBK_QDesignerDnDItemInterface_DropType_IDX = 8,
|
||||
SBK_QDesignerDnDItemInterface_IDX = 7,
|
||||
SBK_QDesignerDynamicPropertySheetExtension_IDX = 9,
|
||||
SBK_QDesignerFormEditorInterface_IDX = 10,
|
||||
SBK_QDesignerFormWindowCursorInterface_MoveOperation_IDX = 13,
|
||||
SBK_QDesignerFormWindowCursorInterface_MoveMode_IDX = 12,
|
||||
SBK_QDesignerFormWindowCursorInterface_IDX = 11,
|
||||
SBK_QDesignerFormWindowInterface_FeatureFlag_IDX = 15,
|
||||
SBK_QFlags_QDesignerFormWindowInterface_FeatureFlag_IDX = 33,
|
||||
SBK_QDesignerFormWindowInterface_ResourceFileSaveMode_IDX = 16,
|
||||
SBK_QDesignerFormWindowInterface_IDX = 14,
|
||||
SBK_QDesignerFormWindowManagerInterface_Action_IDX = 18,
|
||||
SBK_QDesignerFormWindowManagerInterface_ActionGroup_IDX = 19,
|
||||
SBK_QDesignerFormWindowManagerInterface_IDX = 17,
|
||||
SBK_QDesignerFormWindowToolInterface_IDX = 20,
|
||||
SBK_QDesignerMemberSheetExtension_IDX = 21,
|
||||
SBK_QDesignerObjectInspectorInterface_IDX = 22,
|
||||
SBK_QDesignerPropertyEditorInterface_IDX = 23,
|
||||
SBK_QDesignerPropertySheetExtension_IDX = 24,
|
||||
SBK_QDesignerTaskMenuExtension_IDX = 25,
|
||||
SBK_QDesignerWidgetBoxInterface_IDX = 26,
|
||||
SBK_QDesignerWidgetBoxInterface_Category_Type_IDX = 28,
|
||||
SBK_QDesignerWidgetBoxInterface_Category_IDX = 27,
|
||||
SBK_QDesignerWidgetBoxInterface_Widget_Type_IDX = 30,
|
||||
SBK_QDesignerWidgetBoxInterface_Widget_IDX = 29,
|
||||
SBK_QExtensionFactory_IDX = 31,
|
||||
SBK_QExtensionManager_IDX = 32,
|
||||
SBK_QFormBuilder_IDX = 34,
|
||||
SBK_QPyDesignerContainerExtension_IDX = 35,
|
||||
SBK_QPyDesignerCustomWidgetCollection_IDX = 36,
|
||||
SBK_QPyDesignerMemberSheetExtension_IDX = 37,
|
||||
SBK_QPyDesignerPropertySheetExtension_IDX = 38,
|
||||
SBK_QPyDesignerTaskMenuExtension_IDX = 39,
|
||||
SBK_QtDesigner_IDX_COUNT = 40,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtDesignerTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtDesignerTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtDesignerModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtDesignerTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTDESIGNER_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTDESIGNER_QLIST_QACTIONPTR_IDX = 1, // QList<QAction*>
|
||||
SBK_QTDESIGNER_QLIST_QBYTEARRAY_IDX = 2, // QList<QByteArray>
|
||||
SBK_QTDESIGNER_QLIST_QDESIGNERCUSTOMWIDGETINTERFACEPTR_IDX = 3, // QList<QDesignerCustomWidgetInterface*>
|
||||
SBK_QTDESIGNER_QLIST_QDESIGNERDNDITEMINTERFACEPTR_IDX = 4, // QList<QDesignerDnDItemInterface*>
|
||||
SBK_QTDESIGNER_QLIST_QWIDGETPTR_IDX = 5, // QList<QWidget*>
|
||||
SBK_QTDESIGNER_QLIST_QOBJECTPTR_IDX = 6, // QList<QObject*>
|
||||
SBK_QTDESIGNER_QLIST_QVARIANT_IDX = 7, // QList<QVariant>
|
||||
SBK_QTDESIGNER_QLIST_QSTRING_IDX = 8, // QList<QString>
|
||||
SBK_QTDESIGNER_QMAP_QSTRING_QVARIANT_IDX = 9, // QMap<QString,QVariant>
|
||||
SBK_QTDESIGNER_CONVERTERS_IDX_COUNT = 10,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtDesigner_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtDesigner_QList_QActionPTR_IDX = 1, // QList<QAction*>
|
||||
SBK_QtDesigner_QList_QByteArray_IDX = 2, // QList<QByteArray>
|
||||
SBK_QtDesigner_QList_QDesignerCustomWidgetInterfacePTR_IDX = 3, // QList<QDesignerCustomWidgetInterface*>
|
||||
SBK_QtDesigner_QList_QDesignerDnDItemInterfacePTR_IDX = 4, // QList<QDesignerDnDItemInterface*>
|
||||
SBK_QtDesigner_QList_QWidgetPTR_IDX = 5, // QList<QWidget*>
|
||||
SBK_QtDesigner_QList_QObjectPTR_IDX = 6, // QList<QObject*>
|
||||
SBK_QtDesigner_QList_QVariant_IDX = 7, // QList<QVariant>
|
||||
SBK_QtDesigner_QList_QString_IDX = 8, // QList<QString>
|
||||
SBK_QtDesigner_QMap_QString_QVariant_IDX = 9, // QMap<QString,QVariant>
|
||||
SBK_QtDesigner_CONVERTERS_IDX_COUNT = 10,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractExtensionFactory >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QAbstractExtensionFactory_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractExtensionManager >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QAbstractExtensionManager_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractFormBuilder >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QAbstractFormBuilder_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerActionEditorInterface >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerActionEditorInterface_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerContainerExtension >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerContainerExtension_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerCustomWidgetCollectionInterface >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerCustomWidgetCollectionInterface_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerCustomWidgetInterface >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerCustomWidgetInterface_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerDnDItemInterface::DropType >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerDnDItemInterface_DropType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerDnDItemInterface >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerDnDItemInterface_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerDynamicPropertySheetExtension >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerDynamicPropertySheetExtension_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerFormEditorInterface >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerFormEditorInterface_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerFormWindowCursorInterface::MoveOperation >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerFormWindowCursorInterface_MoveOperation_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerFormWindowCursorInterface::MoveMode >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerFormWindowCursorInterface_MoveMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerFormWindowCursorInterface >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerFormWindowCursorInterface_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerFormWindowInterface::FeatureFlag >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerFormWindowInterface_FeatureFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QDesignerFormWindowInterface::FeatureFlag> >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QFlags_QDesignerFormWindowInterface_FeatureFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerFormWindowInterface::ResourceFileSaveMode >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerFormWindowInterface_ResourceFileSaveMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerFormWindowInterface >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerFormWindowInterface_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerFormWindowManagerInterface::Action >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerFormWindowManagerInterface_Action_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerFormWindowManagerInterface::ActionGroup >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerFormWindowManagerInterface_ActionGroup_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerFormWindowManagerInterface >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerFormWindowManagerInterface_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerFormWindowToolInterface >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerFormWindowToolInterface_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerMemberSheetExtension >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerMemberSheetExtension_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerObjectInspectorInterface >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerObjectInspectorInterface_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerPropertyEditorInterface >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerPropertyEditorInterface_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerPropertySheetExtension >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerPropertySheetExtension_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerTaskMenuExtension >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerTaskMenuExtension_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerWidgetBoxInterface >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerWidgetBoxInterface_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerWidgetBoxInterface::Category::Type >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerWidgetBoxInterface_Category_Type_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerWidgetBoxInterface::Category >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerWidgetBoxInterface_Category_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerWidgetBoxInterface::Widget::Type >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerWidgetBoxInterface_Widget_Type_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDesignerWidgetBoxInterface::Widget >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QDesignerWidgetBoxInterface_Widget_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QExtensionFactory >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QExtensionFactory_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QExtensionManager >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QExtensionManager_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFormBuilder >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QFormBuilder_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPyDesignerContainerExtension >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QPyDesignerContainerExtension_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPyDesignerCustomWidgetCollection >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QPyDesignerCustomWidgetCollection_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPyDesignerMemberSheetExtension >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QPyDesignerMemberSheetExtension_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPyDesignerPropertySheetExtension >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QPyDesignerPropertySheetExtension_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPyDesignerTaskMenuExtension >() { return Shiboken::Module::get(SbkPySide6_QtDesignerTypeStructs[SBK_QPyDesignerTaskMenuExtension_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTDESIGNER_PYTHON_H
|
||||
|
||||
84
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtDesigner/qpydesignerextensions.h
vendored
Normal file
84
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtDesigner/qpydesignerextensions.h
vendored
Normal file
@@ -0,0 +1,84 @@
|
||||
// Copyright (C) 2021 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef QPYDESIGNEREXTENSIONS_H
|
||||
#define QPYDESIGNEREXTENSIONS_H
|
||||
|
||||
#include <QtDesigner/QDesignerContainerExtension>
|
||||
#include <QtDesigner/QDesignerMemberSheetExtension>
|
||||
#include <QtDesigner/QDesignerPropertySheetExtension>
|
||||
#include <QtDesigner/QDesignerTaskMenuExtension>
|
||||
#include <QtUiPlugin/QDesignerCustomWidgetCollectionInterface>
|
||||
#include <QtUiPlugin/QDesignerCustomWidgetInterface>
|
||||
|
||||
// Not automatically found since "find_package(Qt6 COMPONENTS Designer)" is not used
|
||||
|
||||
#ifdef Q_MOC_RUN
|
||||
Q_DECLARE_INTERFACE(QDesignerContainerExtension, "org.qt-project.Qt.Designer.Container")
|
||||
Q_DECLARE_INTERFACE(QDesignerMemberSheetExtension, "org.qt-project.Qt.Designer.MemberSheet")
|
||||
Q_DECLARE_EXTENSION_INTERFACE(QDesignerPropertySheetExtension, "org.qt-project.Qt.Designer.PropertySheet")
|
||||
Q_DECLARE_INTERFACE(QDesignerTaskMenuExtension, "org.qt-project.Qt.Designer.TaskMenu")
|
||||
Q_DECLARE_INTERFACE(QDesignerCustomWidgetCollectionInterface, "org.qt-project.Qt.QDesignerCustomWidgetCollectionInterface")
|
||||
#endif
|
||||
|
||||
struct _object; // PyObject
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
// Extension implementations need to inherit QObject which cannot be done in Python.
|
||||
// Provide a base class (cf QPyTextObject).
|
||||
|
||||
class QPyDesignerContainerExtension : public QObject, public QDesignerContainerExtension
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_INTERFACES(QDesignerContainerExtension)
|
||||
public:
|
||||
explicit QPyDesignerContainerExtension(QObject *parent = nullptr) : QObject(parent) {}
|
||||
};
|
||||
|
||||
class QPyDesignerMemberSheetExtension : public QObject, public QDesignerMemberSheetExtension
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_INTERFACES(QDesignerMemberSheetExtension)
|
||||
public:
|
||||
explicit QPyDesignerMemberSheetExtension(QObject *parent = nullptr) : QObject(parent) {}
|
||||
};
|
||||
|
||||
class QPyDesignerPropertySheetExtension : public QObject, public QDesignerPropertySheetExtension
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_INTERFACES(QDesignerPropertySheetExtension)
|
||||
public:
|
||||
explicit QPyDesignerPropertySheetExtension(QObject *parent = nullptr) : QObject(parent) {}
|
||||
};
|
||||
|
||||
class QPyDesignerTaskMenuExtension : public QObject, public QDesignerTaskMenuExtension
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_INTERFACES(QDesignerTaskMenuExtension)
|
||||
public:
|
||||
explicit QPyDesignerTaskMenuExtension(QObject *parent = nullptr) : QObject(parent) {}
|
||||
};
|
||||
|
||||
class QPyDesignerCustomWidgetCollection : public QDesignerCustomWidgetCollectionInterface
|
||||
{
|
||||
public:
|
||||
~QPyDesignerCustomWidgetCollection();
|
||||
|
||||
static QPyDesignerCustomWidgetCollection *instance();
|
||||
|
||||
QList<QDesignerCustomWidgetInterface *> customWidgets() const override;
|
||||
|
||||
static void addCustomWidget(QDesignerCustomWidgetInterface *c);
|
||||
|
||||
static bool _registerCustomWidgetHelper(_object *typeArg, _object *kwds);
|
||||
|
||||
private:
|
||||
QPyDesignerCustomWidgetCollection();
|
||||
|
||||
QList<QDesignerCustomWidgetInterface *> m_customWidgets;
|
||||
};
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#endif // QPYDESIGNEREXTENSIONS_H
|
||||
398
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtGraphs/pyside6_qtgraphs_python.h
vendored
Normal file
398
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtGraphs/pyside6_qtgraphs_python.h
vendored
Normal file
@@ -0,0 +1,398 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTGRAPHS_PYTHON_H
|
||||
#define SBK_QTGRAPHS_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtquick_python.h>
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtnetwork_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtopengl_python.h>
|
||||
#include <pyside6_qtqml_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtGraphs/qabstract3daxis.h>
|
||||
#include <QtGraphs/qabstract3dseries.h>
|
||||
#include <QtGraphs/qabstractaxis.h>
|
||||
#include <QtGraphs/qabstractdataproxy.h>
|
||||
#include <QtGraphs/qabstractseries.h>
|
||||
#include <QtGraphs/qbardataproxy.h>
|
||||
#include <QtGraphs/qbarseries.h>
|
||||
#include <QtGraphs/qgraphs3dnamespace.h>
|
||||
#include <QtGraphs/qgraphstheme.h>
|
||||
#include <QtGraphs/qitemmodelbardataproxy.h>
|
||||
#include <QtGraphs/qitemmodelsurfacedataproxy.h>
|
||||
#include <QtGraphs/qpieseries.h>
|
||||
#include <QtGraphs/qpieslice.h>
|
||||
#include <QtGraphs/qsurface3dseries.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class Q3DScene;
|
||||
class QAreaSeries;
|
||||
class QBar3DSeries;
|
||||
class QBarCategoryAxis;
|
||||
class QBarDataItem;
|
||||
class QBarModelMapper;
|
||||
class QBarSet;
|
||||
class QCategory3DAxis;
|
||||
class QCustom3DItem;
|
||||
class QCustom3DLabel;
|
||||
class QCustom3DVolume;
|
||||
class QDateTimeAxis;
|
||||
class QGraphsLine;
|
||||
struct QGraphsThemeDirtyBitField;
|
||||
class QHeightMapSurfaceDataProxy;
|
||||
class QItemModelScatterDataProxy;
|
||||
struct QLegendData;
|
||||
class QLineSeries;
|
||||
class QLogValue3DAxisFormatter;
|
||||
class QPieModelMapper;
|
||||
class QScatter3DSeries;
|
||||
class QScatterDataItem;
|
||||
class QScatterDataProxy;
|
||||
class QScatterSeries;
|
||||
class QSpline3DSeries;
|
||||
class QSplineSeries;
|
||||
class QSurfaceDataItem;
|
||||
class QSurfaceDataProxy;
|
||||
class QValue3DAxis;
|
||||
class QValue3DAxisFormatter;
|
||||
class QValueAxis;
|
||||
class QXYModelMapper;
|
||||
class QXYSeries;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_Q3DSCENE_IDX = 0,
|
||||
SBK_QABSTRACT3DAXIS_AXISORIENTATION_IDX = 4,
|
||||
SBK_QABSTRACT3DAXIS_AXISTYPE_IDX = 6,
|
||||
SBK_QABSTRACT3DAXIS_IDX = 2,
|
||||
SBK_QABSTRACT3DSERIES_SERIESTYPE_IDX = 14,
|
||||
SBK_QABSTRACT3DSERIES_MESH_IDX = 12,
|
||||
SBK_QABSTRACT3DSERIES_LIGHTINGMODE_IDX = 10,
|
||||
SBK_QABSTRACT3DSERIES_IDX = 8,
|
||||
SBK_QABSTRACTAXIS_AXISTYPE_IDX = 18,
|
||||
SBK_QABSTRACTAXIS_IDX = 16,
|
||||
SBK_QABSTRACTDATAPROXY_DATATYPE_IDX = 22,
|
||||
SBK_QABSTRACTDATAPROXY_IDX = 20,
|
||||
SBK_QABSTRACTSERIES_SERIESTYPE_IDX = 26,
|
||||
SBK_QABSTRACTSERIES_IDX = 24,
|
||||
SBK_QAREASERIES_IDX = 28,
|
||||
SBK_QBAR3DSERIES_IDX = 30,
|
||||
SBK_QBARCATEGORYAXIS_IDX = 32,
|
||||
SBK_QBARDATAITEM_IDX = 34,
|
||||
SBK_QBARDATAPROXY_REMOVELABELS_IDX = 38,
|
||||
SBK_QBARDATAPROXY_IDX = 36,
|
||||
SBK_QBARMODELMAPPER_IDX = 40,
|
||||
SBK_QBARSERIES_LABELSPOSITION_IDX = 46,
|
||||
SBK_QBARSERIES_BARSTYPE_IDX = 44,
|
||||
SBK_QBARSERIES_IDX = 42,
|
||||
SBK_QBARSET_IDX = 48,
|
||||
SBK_QCATEGORY3DAXIS_IDX = 50,
|
||||
SBK_QCUSTOM3DITEM_IDX = 52,
|
||||
SBK_QCUSTOM3DLABEL_IDX = 54,
|
||||
SBK_QCUSTOM3DVOLUME_IDX = 56,
|
||||
SBK_QDATETIMEAXIS_IDX = 58,
|
||||
SBK_QGRAPHSLINE_IDX = 66,
|
||||
SBK_QGRAPHSTHEME_THEME_IDX = 76,
|
||||
SBK_QGRAPHSTHEME_COLORSTYLE_IDX = 72,
|
||||
SBK_QGRAPHSTHEME_FORCETHEME_IDX = 74,
|
||||
SBK_QGRAPHSTHEME_COLORSCHEME_IDX = 70,
|
||||
SBK_QGRAPHSTHEME_IDX = 68,
|
||||
SBK_QGRAPHSTHEMEDIRTYBITFIELD_IDX = 78,
|
||||
SBK_QHEIGHTMAPSURFACEDATAPROXY_IDX = 80,
|
||||
SBK_QITEMMODELBARDATAPROXY_MULTIMATCHBEHAVIOR_IDX = 84,
|
||||
SBK_QITEMMODELBARDATAPROXY_IDX = 82,
|
||||
SBK_QITEMMODELSCATTERDATAPROXY_IDX = 86,
|
||||
SBK_QITEMMODELSURFACEDATAPROXY_MULTIMATCHBEHAVIOR_IDX = 90,
|
||||
SBK_QITEMMODELSURFACEDATAPROXY_IDX = 88,
|
||||
SBK_QLEGENDDATA_IDX = 92,
|
||||
SBK_QLINESERIES_IDX = 94,
|
||||
SBK_QLOGVALUE3DAXISFORMATTER_IDX = 96,
|
||||
SBK_QPIEMODELMAPPER_IDX = 98,
|
||||
SBK_QPIESERIES_LABELVISIBILITY_IDX = 102,
|
||||
SBK_QPIESERIES_IDX = 100,
|
||||
SBK_QPIESLICE_LABELPOSITION_IDX = 106,
|
||||
SBK_QPIESLICE_IDX = 104,
|
||||
SBK_QSCATTER3DSERIES_IDX = 108,
|
||||
SBK_QSCATTERDATAITEM_IDX = 110,
|
||||
SBK_QSCATTERDATAPROXY_IDX = 112,
|
||||
SBK_QSCATTERSERIES_IDX = 114,
|
||||
SBK_QSPLINE3DSERIES_IDX = 116,
|
||||
SBK_QSPLINESERIES_IDX = 118,
|
||||
SBK_QSURFACE3DSERIES_DRAWFLAG_IDX = 122,
|
||||
SBK_QFLAGS_QSURFACE3DSERIES_DRAWFLAG_IDX = 60,
|
||||
SBK_QSURFACE3DSERIES_SHADING_IDX = 124,
|
||||
SBK_QSURFACE3DSERIES_IDX = 120,
|
||||
SBK_QSURFACEDATAITEM_IDX = 126,
|
||||
SBK_QSURFACEDATAPROXY_IDX = 128,
|
||||
SBK_QVALUE3DAXIS_IDX = 130,
|
||||
SBK_QVALUE3DAXISFORMATTER_IDX = 132,
|
||||
SBK_QVALUEAXIS_IDX = 134,
|
||||
SBK_QXYMODELMAPPER_IDX = 136,
|
||||
SBK_QXYSERIES_IDX = 138,
|
||||
SBK_QTGRAPHS3D_SELECTIONFLAG_IDX = 152,
|
||||
SBK_QFLAGS_QTGRAPHS3D_SELECTIONFLAG_IDX = 64,
|
||||
SBK_QTGRAPHS3D_SLICECAPTURETYPE_IDX = 156,
|
||||
SBK_QTGRAPHS3D_SHADOWQUALITY_IDX = 154,
|
||||
SBK_QTGRAPHS3D_ELEMENTTYPE_IDX = 144,
|
||||
SBK_QTGRAPHS3D_OPTIMIZATIONHINT_IDX = 148,
|
||||
SBK_QFLAGS_QTGRAPHS3D_OPTIMIZATIONHINT_IDX = 62,
|
||||
SBK_QTGRAPHS3D_RENDERINGMODE_IDX = 150,
|
||||
SBK_QTGRAPHS3D_CAMERAPRESET_IDX = 142,
|
||||
SBK_QTGRAPHS3D_GRIDLINETYPE_IDX = 146,
|
||||
SBK_QTGRAPHS3D_TRANSPARENCYTECHNIQUE_IDX = 158,
|
||||
SBK_QTGRAPHSQTGRAPHS3D_IDX = 140,
|
||||
SBK_QTGRAPHS_IDX_COUNT = 160,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_Q3DScene_IDX = 0,
|
||||
SBK_QAbstract3DAxis_AxisOrientation_IDX = 2,
|
||||
SBK_QAbstract3DAxis_AxisType_IDX = 3,
|
||||
SBK_QAbstract3DAxis_IDX = 1,
|
||||
SBK_QAbstract3DSeries_SeriesType_IDX = 7,
|
||||
SBK_QAbstract3DSeries_Mesh_IDX = 6,
|
||||
SBK_QAbstract3DSeries_LightingMode_IDX = 5,
|
||||
SBK_QAbstract3DSeries_IDX = 4,
|
||||
SBK_QAbstractAxis_AxisType_IDX = 9,
|
||||
SBK_QAbstractAxis_IDX = 8,
|
||||
SBK_QAbstractDataProxy_DataType_IDX = 11,
|
||||
SBK_QAbstractDataProxy_IDX = 10,
|
||||
SBK_QAbstractSeries_SeriesType_IDX = 13,
|
||||
SBK_QAbstractSeries_IDX = 12,
|
||||
SBK_QAreaSeries_IDX = 14,
|
||||
SBK_QBar3DSeries_IDX = 15,
|
||||
SBK_QBarCategoryAxis_IDX = 16,
|
||||
SBK_QBarDataItem_IDX = 17,
|
||||
SBK_QBarDataProxy_RemoveLabels_IDX = 19,
|
||||
SBK_QBarDataProxy_IDX = 18,
|
||||
SBK_QBarModelMapper_IDX = 20,
|
||||
SBK_QBarSeries_LabelsPosition_IDX = 23,
|
||||
SBK_QBarSeries_BarsType_IDX = 22,
|
||||
SBK_QBarSeries_IDX = 21,
|
||||
SBK_QBarSet_IDX = 24,
|
||||
SBK_QCategory3DAxis_IDX = 25,
|
||||
SBK_QCustom3DItem_IDX = 26,
|
||||
SBK_QCustom3DLabel_IDX = 27,
|
||||
SBK_QCustom3DVolume_IDX = 28,
|
||||
SBK_QDateTimeAxis_IDX = 29,
|
||||
SBK_QGraphsLine_IDX = 33,
|
||||
SBK_QGraphsTheme_Theme_IDX = 38,
|
||||
SBK_QGraphsTheme_ColorStyle_IDX = 36,
|
||||
SBK_QGraphsTheme_ForceTheme_IDX = 37,
|
||||
SBK_QGraphsTheme_ColorScheme_IDX = 35,
|
||||
SBK_QGraphsTheme_IDX = 34,
|
||||
SBK_QGraphsThemeDirtyBitField_IDX = 39,
|
||||
SBK_QHeightMapSurfaceDataProxy_IDX = 40,
|
||||
SBK_QItemModelBarDataProxy_MultiMatchBehavior_IDX = 42,
|
||||
SBK_QItemModelBarDataProxy_IDX = 41,
|
||||
SBK_QItemModelScatterDataProxy_IDX = 43,
|
||||
SBK_QItemModelSurfaceDataProxy_MultiMatchBehavior_IDX = 45,
|
||||
SBK_QItemModelSurfaceDataProxy_IDX = 44,
|
||||
SBK_QLegendData_IDX = 46,
|
||||
SBK_QLineSeries_IDX = 47,
|
||||
SBK_QLogValue3DAxisFormatter_IDX = 48,
|
||||
SBK_QPieModelMapper_IDX = 49,
|
||||
SBK_QPieSeries_LabelVisibility_IDX = 51,
|
||||
SBK_QPieSeries_IDX = 50,
|
||||
SBK_QPieSlice_LabelPosition_IDX = 53,
|
||||
SBK_QPieSlice_IDX = 52,
|
||||
SBK_QScatter3DSeries_IDX = 54,
|
||||
SBK_QScatterDataItem_IDX = 55,
|
||||
SBK_QScatterDataProxy_IDX = 56,
|
||||
SBK_QScatterSeries_IDX = 57,
|
||||
SBK_QSpline3DSeries_IDX = 58,
|
||||
SBK_QSplineSeries_IDX = 59,
|
||||
SBK_QSurface3DSeries_DrawFlag_IDX = 61,
|
||||
SBK_QFlags_QSurface3DSeries_DrawFlag_IDX = 30,
|
||||
SBK_QSurface3DSeries_Shading_IDX = 62,
|
||||
SBK_QSurface3DSeries_IDX = 60,
|
||||
SBK_QSurfaceDataItem_IDX = 63,
|
||||
SBK_QSurfaceDataProxy_IDX = 64,
|
||||
SBK_QValue3DAxis_IDX = 65,
|
||||
SBK_QValue3DAxisFormatter_IDX = 66,
|
||||
SBK_QValueAxis_IDX = 67,
|
||||
SBK_QXYModelMapper_IDX = 68,
|
||||
SBK_QXYSeries_IDX = 69,
|
||||
SBK_QtGraphs3D_SelectionFlag_IDX = 76,
|
||||
SBK_QFlags_QtGraphs3D_SelectionFlag_IDX = 32,
|
||||
SBK_QtGraphs3D_SliceCaptureType_IDX = 78,
|
||||
SBK_QtGraphs3D_ShadowQuality_IDX = 77,
|
||||
SBK_QtGraphs3D_ElementType_IDX = 72,
|
||||
SBK_QtGraphs3D_OptimizationHint_IDX = 74,
|
||||
SBK_QFlags_QtGraphs3D_OptimizationHint_IDX = 31,
|
||||
SBK_QtGraphs3D_RenderingMode_IDX = 75,
|
||||
SBK_QtGraphs3D_CameraPreset_IDX = 71,
|
||||
SBK_QtGraphs3D_GridLineType_IDX = 73,
|
||||
SBK_QtGraphs3D_TransparencyTechnique_IDX = 79,
|
||||
SBK_QtGraphsQtGraphs3D_IDX = 70,
|
||||
SBK_QtGraphs_IDX_COUNT = 80,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtGraphsTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtGraphsTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtGraphsModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtGraphsTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTGRAPHS_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTGRAPHS_QLIST_FLOAT_IDX = 1, // QList<float>
|
||||
SBK_QTGRAPHS_QLIST_QCOLOR_IDX = 2, // QList<QColor>
|
||||
SBK_QTGRAPHS_QLIST_QLINEARGRADIENT_IDX = 3, // QList<QLinearGradient>
|
||||
SBK_QTGRAPHS_QLIST_UCHAR_IDX = 4, // QList<uchar>
|
||||
SBK_QTGRAPHS_QLIST_UNSIGNEDINT_IDX = 5, // QList<unsigned int>
|
||||
SBK_QTGRAPHS_QLIST_QIMAGEPTR_IDX = 6, // QList<QImage*>
|
||||
SBK_QTGRAPHS_QLIST_QREAL_IDX = 7, // QList<qreal>
|
||||
SBK_QTGRAPHS_QLIST_QSIZETYPE_IDX = 8, // QList<qsizetype>
|
||||
SBK_QTGRAPHS_QLIST_QVARIANT_IDX = 9, // QList<QVariant>
|
||||
SBK_QTGRAPHS_QLIST_QLEGENDDATA_IDX = 10, // QList<QLegendData>
|
||||
SBK_QTGRAPHS_QLIST_QPOINTF_IDX = 11, // QList<QPointF>
|
||||
SBK_QTGRAPHS_QLIST_QPIESLICEPTR_IDX = 12, // QList<QPieSlice*>
|
||||
SBK_QTGRAPHS_QLIST_QBARSETPTR_IDX = 13, // QList<QBarSet*>
|
||||
SBK_QTGRAPHS_QLIST_QSURFACEDATAITEM_IDX = 14, // QList<QSurfaceDataItem>
|
||||
SBK_QTGRAPHS_QLIST_QLIST_QSURFACEDATAITEM_IDX = 15, // QList<QList<QSurfaceDataItem>>
|
||||
SBK_QTGRAPHS_QLIST_QSCATTERDATAITEM_IDX = 16, // QList<QScatterDataItem>
|
||||
SBK_QTGRAPHS_QLIST_QVECTOR3D_IDX = 17, // QList<QVector3D>
|
||||
SBK_QTGRAPHS_QLIST_QBARDATAITEM_IDX = 18, // QList<QBarDataItem>
|
||||
SBK_QTGRAPHS_QLIST_QLIST_QBARDATAITEM_IDX = 19, // QList<QList<QBarDataItem>>
|
||||
SBK_QTGRAPHS_QLIST_QSTRING_IDX = 20, // QList<QString>
|
||||
SBK_QTGRAPHS_QMAP_QSTRING_QVARIANT_IDX = 21, // QMap<QString,QVariant>
|
||||
SBK_QTGRAPHS_CONVERTERS_IDX_COUNT = 22,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtGraphs_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtGraphs_QList_float_IDX = 1, // QList<float>
|
||||
SBK_QtGraphs_QList_QColor_IDX = 2, // QList<QColor>
|
||||
SBK_QtGraphs_QList_QLinearGradient_IDX = 3, // QList<QLinearGradient>
|
||||
SBK_QtGraphs_QList_uchar_IDX = 4, // QList<uchar>
|
||||
SBK_QtGraphs_QList_unsignedint_IDX = 5, // QList<unsigned int>
|
||||
SBK_QtGraphs_QList_QImagePTR_IDX = 6, // QList<QImage*>
|
||||
SBK_QtGraphs_QList_qreal_IDX = 7, // QList<qreal>
|
||||
SBK_QtGraphs_QList_qsizetype_IDX = 8, // QList<qsizetype>
|
||||
SBK_QtGraphs_QList_QVariant_IDX = 9, // QList<QVariant>
|
||||
SBK_QtGraphs_QList_QLegendData_IDX = 10, // QList<QLegendData>
|
||||
SBK_QtGraphs_QList_QPointF_IDX = 11, // QList<QPointF>
|
||||
SBK_QtGraphs_QList_QPieSlicePTR_IDX = 12, // QList<QPieSlice*>
|
||||
SBK_QtGraphs_QList_QBarSetPTR_IDX = 13, // QList<QBarSet*>
|
||||
SBK_QtGraphs_QList_QSurfaceDataItem_IDX = 14, // QList<QSurfaceDataItem>
|
||||
SBK_QtGraphs_QList_QList_QSurfaceDataItem_IDX = 15, // QList<QList<QSurfaceDataItem>>
|
||||
SBK_QtGraphs_QList_QScatterDataItem_IDX = 16, // QList<QScatterDataItem>
|
||||
SBK_QtGraphs_QList_QVector3D_IDX = 17, // QList<QVector3D>
|
||||
SBK_QtGraphs_QList_QBarDataItem_IDX = 18, // QList<QBarDataItem>
|
||||
SBK_QtGraphs_QList_QList_QBarDataItem_IDX = 19, // QList<QList<QBarDataItem>>
|
||||
SBK_QtGraphs_QList_QString_IDX = 20, // QList<QString>
|
||||
SBK_QtGraphs_QMap_QString_QVariant_IDX = 21, // QMap<QString,QVariant>
|
||||
SBK_QtGraphs_CONVERTERS_IDX_COUNT = 22,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::Q3DScene >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_Q3DScene_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstract3DAxis::AxisOrientation >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QAbstract3DAxis_AxisOrientation_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstract3DAxis::AxisType >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QAbstract3DAxis_AxisType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstract3DAxis >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QAbstract3DAxis_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstract3DSeries::SeriesType >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QAbstract3DSeries_SeriesType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstract3DSeries::Mesh >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QAbstract3DSeries_Mesh_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstract3DSeries::LightingMode >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QAbstract3DSeries_LightingMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstract3DSeries >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QAbstract3DSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractAxis::AxisType >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QAbstractAxis_AxisType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractAxis >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QAbstractAxis_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractDataProxy::DataType >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QAbstractDataProxy_DataType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractDataProxy >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QAbstractDataProxy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractSeries::SeriesType >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QAbstractSeries_SeriesType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractSeries >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QAbstractSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAreaSeries >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QAreaSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBar3DSeries >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QBar3DSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBarCategoryAxis >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QBarCategoryAxis_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBarDataItem >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QBarDataItem_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBarDataProxy::RemoveLabels >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QBarDataProxy_RemoveLabels_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBarDataProxy >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QBarDataProxy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBarModelMapper >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QBarModelMapper_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBarSeries::LabelsPosition >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QBarSeries_LabelsPosition_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBarSeries::BarsType >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QBarSeries_BarsType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBarSeries >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QBarSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QBarSet >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QBarSet_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCategory3DAxis >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QCategory3DAxis_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCustom3DItem >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QCustom3DItem_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCustom3DLabel >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QCustom3DLabel_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCustom3DVolume >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QCustom3DVolume_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDateTimeAxis >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QDateTimeAxis_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGraphsLine >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QGraphsLine_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGraphsTheme::Theme >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QGraphsTheme_Theme_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGraphsTheme::ColorStyle >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QGraphsTheme_ColorStyle_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGraphsTheme::ForceTheme >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QGraphsTheme_ForceTheme_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGraphsTheme::ColorScheme >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QGraphsTheme_ColorScheme_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGraphsTheme >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QGraphsTheme_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGraphsThemeDirtyBitField >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QGraphsThemeDirtyBitField_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHeightMapSurfaceDataProxy >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QHeightMapSurfaceDataProxy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QItemModelBarDataProxy::MultiMatchBehavior >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QItemModelBarDataProxy_MultiMatchBehavior_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QItemModelBarDataProxy >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QItemModelBarDataProxy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QItemModelScatterDataProxy >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QItemModelScatterDataProxy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QItemModelSurfaceDataProxy::MultiMatchBehavior >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QItemModelSurfaceDataProxy_MultiMatchBehavior_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QItemModelSurfaceDataProxy >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QItemModelSurfaceDataProxy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLegendData >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QLegendData_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLineSeries >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QLineSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLogValue3DAxisFormatter >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QLogValue3DAxisFormatter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPieModelMapper >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QPieModelMapper_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPieSeries::LabelVisibility >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QPieSeries_LabelVisibility_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPieSeries >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QPieSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPieSlice::LabelPosition >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QPieSlice_LabelPosition_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPieSlice >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QPieSlice_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScatter3DSeries >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QScatter3DSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScatterDataItem >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QScatterDataItem_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScatterDataProxy >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QScatterDataProxy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScatterSeries >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QScatterSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSpline3DSeries >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QSpline3DSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSplineSeries >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QSplineSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSurface3DSeries::DrawFlag >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QSurface3DSeries_DrawFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QSurface3DSeries::DrawFlag> >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QFlags_QSurface3DSeries_DrawFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSurface3DSeries::Shading >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QSurface3DSeries_Shading_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSurface3DSeries >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QSurface3DSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSurfaceDataItem >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QSurfaceDataItem_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSurfaceDataProxy >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QSurfaceDataProxy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QValue3DAxis >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QValue3DAxis_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QValue3DAxisFormatter >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QValue3DAxisFormatter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QValueAxis >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QValueAxis_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QXYModelMapper >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QXYModelMapper_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QXYSeries >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QXYSeries_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtGraphs3D::SelectionFlag >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QtGraphs3D_SelectionFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QtGraphs3D::SelectionFlag> >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QFlags_QtGraphs3D_SelectionFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtGraphs3D::SliceCaptureType >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QtGraphs3D_SliceCaptureType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtGraphs3D::ShadowQuality >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QtGraphs3D_ShadowQuality_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtGraphs3D::ElementType >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QtGraphs3D_ElementType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtGraphs3D::OptimizationHint >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QtGraphs3D_OptimizationHint_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QtGraphs3D::OptimizationHint> >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QFlags_QtGraphs3D_OptimizationHint_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtGraphs3D::RenderingMode >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QtGraphs3D_RenderingMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtGraphs3D::CameraPreset >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QtGraphs3D_CameraPreset_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtGraphs3D::GridLineType >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QtGraphs3D_GridLineType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtGraphs3D::TransparencyTechnique >() { return Shiboken::Module::get(SbkPySide6_QtGraphsTypeStructs[SBK_QtGraphs3D_TransparencyTechnique_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTGRAPHS_PYTHON_H
|
||||
|
||||
19
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtGraphs/qtgraphs_helper.h
vendored
Normal file
19
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtGraphs/qtgraphs_helper.h
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
// Copyright (C) 2023 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef QTGRAPHS_HELPER_H
|
||||
#define QTGRAPHS_HELPER_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
|
||||
#include <QtGraphs/qsurfacedataproxy.h>
|
||||
#include <QtCore/qlist.h>
|
||||
|
||||
namespace QtGraphsHelper {
|
||||
|
||||
QSurfaceDataArray surfaceDataFromNp(double x, double deltaX, double z, double deltaZ,
|
||||
PyObject *data);
|
||||
|
||||
} // namespace QtGraphsHelper
|
||||
|
||||
#endif // QTGRAPHS_HELPER_H
|
||||
@@ -0,0 +1,109 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTGRAPHSWIDGETS_PYTHON_H
|
||||
#define SBK_QTGRAPHSWIDGETS_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtquickwidgets_python.h>
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtquick_python.h>
|
||||
#include <pyside6_qtnetwork_python.h>
|
||||
#include <pyside6_qtopengl_python.h>
|
||||
#include <pyside6_qtqml_python.h>
|
||||
#include <pyside6_qtwidgets_python.h>
|
||||
#include <pyside6_qtgraphs_python.h>
|
||||
|
||||
// Bound library includes
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class Q3DBarsWidgetItem;
|
||||
class Q3DGraphsWidgetItem;
|
||||
class Q3DScatterWidgetItem;
|
||||
class Q3DSurfaceWidgetItem;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_Q3DBARSWIDGETITEM_IDX = 0,
|
||||
SBK_Q3DGRAPHSWIDGETITEM_IDX = 2,
|
||||
SBK_Q3DSCATTERWIDGETITEM_IDX = 4,
|
||||
SBK_Q3DSURFACEWIDGETITEM_IDX = 6,
|
||||
SBK_QTGRAPHSWIDGETS_IDX_COUNT = 8,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_Q3DBarsWidgetItem_IDX = 0,
|
||||
SBK_Q3DGraphsWidgetItem_IDX = 1,
|
||||
SBK_Q3DScatterWidgetItem_IDX = 2,
|
||||
SBK_Q3DSurfaceWidgetItem_IDX = 3,
|
||||
SBK_QtGraphsWidgets_IDX_COUNT = 4,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtGraphsWidgetsTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtGraphsWidgetsTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtGraphsWidgetsModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtGraphsWidgetsTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTGRAPHSWIDGETS_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTGRAPHSWIDGETS_QLIST_QCUSTOM3DITEMPTR_IDX = 1, // QList<QCustom3DItem*>
|
||||
SBK_QTGRAPHSWIDGETS_QLIST_QGRAPHSTHEMEPTR_IDX = 2, // QList<QGraphsTheme*>
|
||||
SBK_QTGRAPHSWIDGETS_QLIST_QVALUE3DAXISPTR_IDX = 3, // QList<QValue3DAxis*>
|
||||
SBK_QTGRAPHSWIDGETS_QLIST_QSURFACE3DSERIESPTR_IDX = 4, // QList<QSurface3DSeries*>
|
||||
SBK_QTGRAPHSWIDGETS_QLIST_QSCATTER3DSERIESPTR_IDX = 5, // QList<QScatter3DSeries*>
|
||||
SBK_QTGRAPHSWIDGETS_QLIST_QABSTRACT3DAXISPTR_IDX = 6, // QList<QAbstract3DAxis*>
|
||||
SBK_QTGRAPHSWIDGETS_QLIST_QBAR3DSERIESPTR_IDX = 7, // QList<QBar3DSeries*>
|
||||
SBK_QTGRAPHSWIDGETS_QLIST_QVARIANT_IDX = 8, // QList<QVariant>
|
||||
SBK_QTGRAPHSWIDGETS_QLIST_QSTRING_IDX = 9, // QList<QString>
|
||||
SBK_QTGRAPHSWIDGETS_QMAP_QSTRING_QVARIANT_IDX = 10, // QMap<QString,QVariant>
|
||||
SBK_QTGRAPHSWIDGETS_CONVERTERS_IDX_COUNT = 11,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtGraphsWidgets_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtGraphsWidgets_QList_QCustom3DItemPTR_IDX = 1, // QList<QCustom3DItem*>
|
||||
SBK_QtGraphsWidgets_QList_QGraphsThemePTR_IDX = 2, // QList<QGraphsTheme*>
|
||||
SBK_QtGraphsWidgets_QList_QValue3DAxisPTR_IDX = 3, // QList<QValue3DAxis*>
|
||||
SBK_QtGraphsWidgets_QList_QSurface3DSeriesPTR_IDX = 4, // QList<QSurface3DSeries*>
|
||||
SBK_QtGraphsWidgets_QList_QScatter3DSeriesPTR_IDX = 5, // QList<QScatter3DSeries*>
|
||||
SBK_QtGraphsWidgets_QList_QAbstract3DAxisPTR_IDX = 6, // QList<QAbstract3DAxis*>
|
||||
SBK_QtGraphsWidgets_QList_QBar3DSeriesPTR_IDX = 7, // QList<QBar3DSeries*>
|
||||
SBK_QtGraphsWidgets_QList_QVariant_IDX = 8, // QList<QVariant>
|
||||
SBK_QtGraphsWidgets_QList_QString_IDX = 9, // QList<QString>
|
||||
SBK_QtGraphsWidgets_QMap_QString_QVariant_IDX = 10, // QMap<QString,QVariant>
|
||||
SBK_QtGraphsWidgets_CONVERTERS_IDX_COUNT = 11,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::Q3DBarsWidgetItem >() { return Shiboken::Module::get(SbkPySide6_QtGraphsWidgetsTypeStructs[SBK_Q3DBarsWidgetItem_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Q3DGraphsWidgetItem >() { return Shiboken::Module::get(SbkPySide6_QtGraphsWidgetsTypeStructs[SBK_Q3DGraphsWidgetItem_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Q3DScatterWidgetItem >() { return Shiboken::Module::get(SbkPySide6_QtGraphsWidgetsTypeStructs[SBK_Q3DScatterWidgetItem_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::Q3DSurfaceWidgetItem >() { return Shiboken::Module::get(SbkPySide6_QtGraphsWidgetsTypeStructs[SBK_Q3DSurfaceWidgetItem_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTGRAPHSWIDGETS_PYTHON_H
|
||||
|
||||
1765
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtGui/pyside6_qtgui_python.h
vendored
Normal file
1765
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtGui/pyside6_qtgui_python.h
vendored
Normal file
File diff suppressed because it is too large
Load Diff
26
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtGui/qpytextobject.h
vendored
Normal file
26
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtGui/qpytextobject.h
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
// Copyright (C) 2021 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef QPYTEXTOBJECT
|
||||
#define QPYTEXTOBJECT
|
||||
|
||||
#include <QtCore/QObject>
|
||||
#include <QtGui/QTextObjectInterface>
|
||||
|
||||
// Qt5: no idea why this definition is not found automatically! It should come
|
||||
// from <QTextObjectInterface> which resolves to qabstracttextdocumentlayout.h
|
||||
#ifdef Q_MOC_RUN
|
||||
Q_DECLARE_INTERFACE(QTextObjectInterface, "org.qt-project.Qt.QTextObjectInterface")
|
||||
#endif
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QPyTextObject : public QObject, public QTextObjectInterface
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_INTERFACES(QTextObjectInterface)
|
||||
public:
|
||||
QPyTextObject(QObject *parent = nullptr) : QObject(parent) {}
|
||||
};
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#endif
|
||||
35
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtGui/qtguihelper.h
vendored
Normal file
35
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtGui/qtguihelper.h
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef QTGUIHELPER_H
|
||||
#define QTGUIHELPER_H
|
||||
|
||||
#include <QtGui/QGuiApplication>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
namespace QtGuiHelper {
|
||||
|
||||
class QOverrideCursorGuard
|
||||
{
|
||||
public:
|
||||
Q_DISABLE_COPY_MOVE(QOverrideCursorGuard)
|
||||
|
||||
QOverrideCursorGuard() = default;
|
||||
~QOverrideCursorGuard() = default;
|
||||
|
||||
void restoreOverrideCursor()
|
||||
{
|
||||
if (m_guard) {
|
||||
QGuiApplication::restoreOverrideCursor();
|
||||
m_guard = false;
|
||||
}
|
||||
}
|
||||
|
||||
private:
|
||||
bool m_guard = true;
|
||||
};
|
||||
|
||||
} // namespace QtGuiHelper
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#endif // QTGUIHELPER_H
|
||||
180
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtHelp/pyside6_qthelp_python.h
vendored
Normal file
180
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtHelp/pyside6_qthelp_python.h
vendored
Normal file
@@ -0,0 +1,180 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTHELP_PYTHON_H
|
||||
#define SBK_QTHELP_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtwidgets_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtHelp/qhelpsearchengine.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QCompressedHelpInfo;
|
||||
class QHelpContentItem;
|
||||
class QHelpContentModel;
|
||||
class QHelpContentWidget;
|
||||
class QHelpEngine;
|
||||
class QHelpEngineCore;
|
||||
class QHelpFilterData;
|
||||
class QHelpFilterEngine;
|
||||
class QHelpFilterSettingsWidget;
|
||||
class QHelpGlobal;
|
||||
class QHelpIndexModel;
|
||||
class QHelpIndexWidget;
|
||||
struct QHelpLink;
|
||||
class QHelpSearchEngine;
|
||||
class QHelpSearchEngineCore;
|
||||
class QHelpSearchQueryWidget;
|
||||
class QHelpSearchResult;
|
||||
class QHelpSearchResultWidget;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QCOMPRESSEDHELPINFO_IDX = 0,
|
||||
SBK_QHELPCONTENTITEM_IDX = 2,
|
||||
SBK_QHELPCONTENTMODEL_IDX = 4,
|
||||
SBK_QHELPCONTENTWIDGET_IDX = 6,
|
||||
SBK_QHELPENGINE_IDX = 8,
|
||||
SBK_QHELPENGINECORE_IDX = 10,
|
||||
SBK_QHELPFILTERDATA_IDX = 12,
|
||||
SBK_QHELPFILTERENGINE_IDX = 14,
|
||||
SBK_QHELPFILTERSETTINGSWIDGET_IDX = 16,
|
||||
SBK_QHELPGLOBAL_IDX = 18,
|
||||
SBK_QHELPINDEXMODEL_IDX = 20,
|
||||
SBK_QHELPINDEXWIDGET_IDX = 22,
|
||||
SBK_QHELPLINK_IDX = 24,
|
||||
SBK_QHELPSEARCHENGINE_IDX = 26,
|
||||
SBK_QHELPSEARCHENGINECORE_IDX = 28,
|
||||
SBK_QHELPSEARCHQUERY_FIELDNAME_IDX = 32,
|
||||
SBK_QHELPSEARCHQUERY_IDX = 30,
|
||||
SBK_QHELPSEARCHQUERYWIDGET_IDX = 34,
|
||||
SBK_QHELPSEARCHRESULT_IDX = 36,
|
||||
SBK_QHELPSEARCHRESULTWIDGET_IDX = 38,
|
||||
SBK_QTHELP_IDX_COUNT = 40,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QCompressedHelpInfo_IDX = 0,
|
||||
SBK_QHelpContentItem_IDX = 1,
|
||||
SBK_QHelpContentModel_IDX = 2,
|
||||
SBK_QHelpContentWidget_IDX = 3,
|
||||
SBK_QHelpEngine_IDX = 4,
|
||||
SBK_QHelpEngineCore_IDX = 5,
|
||||
SBK_QHelpFilterData_IDX = 6,
|
||||
SBK_QHelpFilterEngine_IDX = 7,
|
||||
SBK_QHelpFilterSettingsWidget_IDX = 8,
|
||||
SBK_QHelpGlobal_IDX = 9,
|
||||
SBK_QHelpIndexModel_IDX = 10,
|
||||
SBK_QHelpIndexWidget_IDX = 11,
|
||||
SBK_QHelpLink_IDX = 12,
|
||||
SBK_QHelpSearchEngine_IDX = 13,
|
||||
SBK_QHelpSearchEngineCore_IDX = 14,
|
||||
SBK_QHelpSearchQuery_FieldName_IDX = 16,
|
||||
SBK_QHelpSearchQuery_IDX = 15,
|
||||
SBK_QHelpSearchQueryWidget_IDX = 17,
|
||||
SBK_QHelpSearchResult_IDX = 18,
|
||||
SBK_QHelpSearchResultWidget_IDX = 19,
|
||||
SBK_QtHelp_IDX_COUNT = 20,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtHelpTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtHelpTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtHelpModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtHelpTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTHELP_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTHELP_QLIST_QVERSIONNUMBER_IDX = 1, // QList<QVersionNumber>
|
||||
SBK_QTHELP_QLIST_QMODELINDEX_IDX = 2, // QList<QModelIndex>
|
||||
SBK_QTHELP_QLIST_QHELPLINK_IDX = 3, // QList<QHelpLink>
|
||||
SBK_QTHELP_QMULTIMAP_QSTRING_QURL_IDX = 4, // QMultiMap<QString,QUrl>
|
||||
SBK_QTHELP_QLIST_QHELPSEARCHQUERY_IDX = 5, // QList<QHelpSearchQuery>
|
||||
SBK_QTHELP_QLIST_QHELPSEARCHRESULT_IDX = 6, // QList<QHelpSearchResult>
|
||||
SBK_QTHELP_STD_PAIR_QSTRING_QSTRING_IDX = 7, // std::pair<QString,QString>
|
||||
SBK_QTHELP_QLIST_STD_PAIR_QSTRING_QSTRING_IDX = 8, // QList<std::pair<QString,QString>>
|
||||
SBK_QTHELP_QMAP_QSTRING_QSTRING_IDX = 9, // QMap<QString,QString>
|
||||
SBK_QTHELP_QMAP_QSTRING_QVERSIONNUMBER_IDX = 10, // QMap<QString,QVersionNumber>
|
||||
SBK_QTHELP_QLIST_QURL_IDX = 11, // QList<QUrl>
|
||||
SBK_QTHELP_QLIST_QSTRINGLIST_IDX = 12, // QList<QStringList>
|
||||
SBK_QTHELP_QMAP_INT_QVARIANT_IDX = 13, // QMap<int,QVariant>
|
||||
SBK_QTHELP_QHASH_INT_QBYTEARRAY_IDX = 14, // QHash<int,QByteArray>
|
||||
SBK_QTHELP_QLIST_QVARIANT_IDX = 15, // QList<QVariant>
|
||||
SBK_QTHELP_QLIST_QSTRING_IDX = 16, // QList<QString>
|
||||
SBK_QTHELP_QMAP_QSTRING_QVARIANT_IDX = 17, // QMap<QString,QVariant>
|
||||
SBK_QTHELP_CONVERTERS_IDX_COUNT = 18,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtHelp_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtHelp_QList_QVersionNumber_IDX = 1, // QList<QVersionNumber>
|
||||
SBK_QtHelp_QList_QModelIndex_IDX = 2, // QList<QModelIndex>
|
||||
SBK_QtHelp_QList_QHelpLink_IDX = 3, // QList<QHelpLink>
|
||||
SBK_QtHelp_QMultiMap_QString_QUrl_IDX = 4, // QMultiMap<QString,QUrl>
|
||||
SBK_QtHelp_QList_QHelpSearchQuery_IDX = 5, // QList<QHelpSearchQuery>
|
||||
SBK_QtHelp_QList_QHelpSearchResult_IDX = 6, // QList<QHelpSearchResult>
|
||||
SBK_QtHelp_std_pair_QString_QString_IDX = 7, // std::pair<QString,QString>
|
||||
SBK_QtHelp_QList_std_pair_QString_QString_IDX = 8, // QList<std::pair<QString,QString>>
|
||||
SBK_QtHelp_QMap_QString_QString_IDX = 9, // QMap<QString,QString>
|
||||
SBK_QtHelp_QMap_QString_QVersionNumber_IDX = 10, // QMap<QString,QVersionNumber>
|
||||
SBK_QtHelp_QList_QUrl_IDX = 11, // QList<QUrl>
|
||||
SBK_QtHelp_QList_QStringList_IDX = 12, // QList<QStringList>
|
||||
SBK_QtHelp_QMap_int_QVariant_IDX = 13, // QMap<int,QVariant>
|
||||
SBK_QtHelp_QHash_int_QByteArray_IDX = 14, // QHash<int,QByteArray>
|
||||
SBK_QtHelp_QList_QVariant_IDX = 15, // QList<QVariant>
|
||||
SBK_QtHelp_QList_QString_IDX = 16, // QList<QString>
|
||||
SBK_QtHelp_QMap_QString_QVariant_IDX = 17, // QMap<QString,QVariant>
|
||||
SBK_QtHelp_CONVERTERS_IDX_COUNT = 18,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QCompressedHelpInfo >() { return Shiboken::Module::get(SbkPySide6_QtHelpTypeStructs[SBK_QCompressedHelpInfo_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHelpContentItem >() { return Shiboken::Module::get(SbkPySide6_QtHelpTypeStructs[SBK_QHelpContentItem_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHelpContentModel >() { return Shiboken::Module::get(SbkPySide6_QtHelpTypeStructs[SBK_QHelpContentModel_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHelpContentWidget >() { return Shiboken::Module::get(SbkPySide6_QtHelpTypeStructs[SBK_QHelpContentWidget_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHelpEngine >() { return Shiboken::Module::get(SbkPySide6_QtHelpTypeStructs[SBK_QHelpEngine_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHelpEngineCore >() { return Shiboken::Module::get(SbkPySide6_QtHelpTypeStructs[SBK_QHelpEngineCore_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHelpFilterData >() { return Shiboken::Module::get(SbkPySide6_QtHelpTypeStructs[SBK_QHelpFilterData_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHelpFilterEngine >() { return Shiboken::Module::get(SbkPySide6_QtHelpTypeStructs[SBK_QHelpFilterEngine_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHelpFilterSettingsWidget >() { return Shiboken::Module::get(SbkPySide6_QtHelpTypeStructs[SBK_QHelpFilterSettingsWidget_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHelpGlobal >() { return Shiboken::Module::get(SbkPySide6_QtHelpTypeStructs[SBK_QHelpGlobal_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHelpIndexModel >() { return Shiboken::Module::get(SbkPySide6_QtHelpTypeStructs[SBK_QHelpIndexModel_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHelpIndexWidget >() { return Shiboken::Module::get(SbkPySide6_QtHelpTypeStructs[SBK_QHelpIndexWidget_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHelpLink >() { return Shiboken::Module::get(SbkPySide6_QtHelpTypeStructs[SBK_QHelpLink_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHelpSearchEngine >() { return Shiboken::Module::get(SbkPySide6_QtHelpTypeStructs[SBK_QHelpSearchEngine_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHelpSearchEngineCore >() { return Shiboken::Module::get(SbkPySide6_QtHelpTypeStructs[SBK_QHelpSearchEngineCore_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHelpSearchQuery::FieldName >() { return Shiboken::Module::get(SbkPySide6_QtHelpTypeStructs[SBK_QHelpSearchQuery_FieldName_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHelpSearchQuery >() { return Shiboken::Module::get(SbkPySide6_QtHelpTypeStructs[SBK_QHelpSearchQuery_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHelpSearchQueryWidget >() { return Shiboken::Module::get(SbkPySide6_QtHelpTypeStructs[SBK_QHelpSearchQueryWidget_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHelpSearchResult >() { return Shiboken::Module::get(SbkPySide6_QtHelpTypeStructs[SBK_QHelpSearchResult_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHelpSearchResultWidget >() { return Shiboken::Module::get(SbkPySide6_QtHelpTypeStructs[SBK_QHelpSearchResultWidget_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTHELP_PYTHON_H
|
||||
|
||||
142
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtHttpServer/pyside6_qthttpserver_python.h
vendored
Normal file
142
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtHttpServer/pyside6_qthttpserver_python.h
vendored
Normal file
@@ -0,0 +1,142 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTHTTPSERVER_PYTHON_H
|
||||
#define SBK_QTHTTPSERVER_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtconcurrent_python.h>
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtwebsockets_python.h>
|
||||
#include <pyside6_qtnetwork_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtHttpServer/qhttpserverrequest.h>
|
||||
#include <QtHttpServer/qhttpserverresponder.h>
|
||||
#include <QtHttpServer/qhttpserverwebsocketupgraderesponse.h>
|
||||
#if QT_CONFIG(future)
|
||||
#include <QtCore/qfuture.h>
|
||||
#endif
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QAbstractHttpServer;
|
||||
class QHttpServer;
|
||||
class QHttpServerResponse;
|
||||
class QHttpServerRouter;
|
||||
class QHttpServerRouterRule;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QABSTRACTHTTPSERVER_IDX = 0,
|
||||
SBK_QFUTUREHTTPSERVERRESPONSE_IDX = 4,
|
||||
SBK_QFUTURE_QHTTPSERVERRESPONSE_IDX = 4,
|
||||
SBK_QHTTPSERVER_IDX = 6,
|
||||
SBK_QHTTPSERVERREQUEST_METHOD_IDX = 10,
|
||||
SBK_QFLAGS_QHTTPSERVERREQUEST_METHOD_IDX = 2,
|
||||
SBK_QHTTPSERVERREQUEST_IDX = 8,
|
||||
SBK_QHTTPSERVERRESPONDER_STATUSCODE_IDX = 14,
|
||||
SBK_QHTTPSERVERRESPONDER_IDX = 12,
|
||||
SBK_QHTTPSERVERRESPONSE_IDX = 16,
|
||||
SBK_QHTTPSERVERROUTER_IDX = 18,
|
||||
SBK_QHTTPSERVERROUTERRULE_IDX = 20,
|
||||
SBK_QHTTPSERVERWEBSOCKETUPGRADERESPONSE_RESPONSETYPE_IDX = 24,
|
||||
SBK_QHTTPSERVERWEBSOCKETUPGRADERESPONSE_IDX = 22,
|
||||
SBK_QTHTTPSERVER_IDX_COUNT = 26,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QAbstractHttpServer_IDX = 0,
|
||||
SBK_QFutureHttpServerResponse_IDX = 2,
|
||||
SBK_QFuture_QHttpServerResponse_IDX = 2,
|
||||
SBK_QHttpServer_IDX = 3,
|
||||
SBK_QHttpServerRequest_Method_IDX = 5,
|
||||
SBK_QFlags_QHttpServerRequest_Method_IDX = 1,
|
||||
SBK_QHttpServerRequest_IDX = 4,
|
||||
SBK_QHttpServerResponder_StatusCode_IDX = 7,
|
||||
SBK_QHttpServerResponder_IDX = 6,
|
||||
SBK_QHttpServerResponse_IDX = 8,
|
||||
SBK_QHttpServerRouter_IDX = 9,
|
||||
SBK_QHttpServerRouterRule_IDX = 10,
|
||||
SBK_QHttpServerWebSocketUpgradeResponse_ResponseType_IDX = 12,
|
||||
SBK_QHttpServerWebSocketUpgradeResponse_IDX = 11,
|
||||
SBK_QtHttpServer_IDX_COUNT = 13,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtHttpServerTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtHttpServerTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtHttpServerModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtHttpServerTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTHTTPSERVER_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTHTTPSERVER_QHASH_QMETATYPE_QSTRING_IDX = 1, // QHash<QMetaType,QString>
|
||||
SBK_QTHTTPSERVER_QLIST_QHTTPHEADERS_WELLKNOWNHEADER_IDX = 2, // QList<QHttpHeaders::WellKnownHeader>
|
||||
SBK_QTHTTPSERVER_QLIST_QLOCALSERVERPTR_IDX = 3, // QList<QLocalServer*>
|
||||
SBK_QTHTTPSERVER_QLIST_QUINT16_IDX = 4, // QList<quint16>
|
||||
SBK_QTHTTPSERVER_QLIST_QTCPSERVERPTR_IDX = 5, // QList<QTcpServer*>
|
||||
SBK_QTHTTPSERVER_QLIST_QVARIANT_IDX = 6, // QList<QVariant>
|
||||
SBK_QTHTTPSERVER_QLIST_QSTRING_IDX = 7, // QList<QString>
|
||||
SBK_QTHTTPSERVER_QMAP_QSTRING_QVARIANT_IDX = 8, // QMap<QString,QVariant>
|
||||
SBK_QTHTTPSERVER_CONVERTERS_IDX_COUNT = 9,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtHttpServer_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtHttpServer_QHash_QMetaType_QString_IDX = 1, // QHash<QMetaType,QString>
|
||||
SBK_QtHttpServer_QList_QHttpHeaders_WellKnownHeader_IDX = 2, // QList<QHttpHeaders::WellKnownHeader>
|
||||
SBK_QtHttpServer_QList_QLocalServerPTR_IDX = 3, // QList<QLocalServer*>
|
||||
SBK_QtHttpServer_QList_quint16_IDX = 4, // QList<quint16>
|
||||
SBK_QtHttpServer_QList_QTcpServerPTR_IDX = 5, // QList<QTcpServer*>
|
||||
SBK_QtHttpServer_QList_QVariant_IDX = 6, // QList<QVariant>
|
||||
SBK_QtHttpServer_QList_QString_IDX = 7, // QList<QString>
|
||||
SBK_QtHttpServer_QMap_QString_QVariant_IDX = 8, // QMap<QString,QVariant>
|
||||
SBK_QtHttpServer_CONVERTERS_IDX_COUNT = 9,
|
||||
};
|
||||
|
||||
// typedef entries
|
||||
using QFutureHttpServerResponse = QFuture<QHttpServerResponse>;
|
||||
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractHttpServer >() { return Shiboken::Module::get(SbkPySide6_QtHttpServerTypeStructs[SBK_QAbstractHttpServer_IDX]); }
|
||||
#if QT_CONFIG(future)
|
||||
template<> inline PyTypeObject *SbkType< QFutureHttpServerResponse >() { return Shiboken::Module::get(SbkPySide6_QtHttpServerTypeStructs[SBK_QFutureHttpServerResponse_IDX]); }
|
||||
#endif
|
||||
template<> inline PyTypeObject *SbkType< ::QHttpServer >() { return Shiboken::Module::get(SbkPySide6_QtHttpServerTypeStructs[SBK_QHttpServer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHttpServerRequest::Method >() { return Shiboken::Module::get(SbkPySide6_QtHttpServerTypeStructs[SBK_QHttpServerRequest_Method_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QHttpServerRequest::Method> >() { return Shiboken::Module::get(SbkPySide6_QtHttpServerTypeStructs[SBK_QFlags_QHttpServerRequest_Method_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHttpServerRequest >() { return Shiboken::Module::get(SbkPySide6_QtHttpServerTypeStructs[SBK_QHttpServerRequest_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHttpServerResponder::StatusCode >() { return Shiboken::Module::get(SbkPySide6_QtHttpServerTypeStructs[SBK_QHttpServerResponder_StatusCode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHttpServerResponder >() { return Shiboken::Module::get(SbkPySide6_QtHttpServerTypeStructs[SBK_QHttpServerResponder_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHttpServerResponse >() { return Shiboken::Module::get(SbkPySide6_QtHttpServerTypeStructs[SBK_QHttpServerResponse_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHttpServerRouter >() { return Shiboken::Module::get(SbkPySide6_QtHttpServerTypeStructs[SBK_QHttpServerRouter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHttpServerRouterRule >() { return Shiboken::Module::get(SbkPySide6_QtHttpServerTypeStructs[SBK_QHttpServerRouterRule_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHttpServerWebSocketUpgradeResponse::ResponseType >() { return Shiboken::Module::get(SbkPySide6_QtHttpServerTypeStructs[SBK_QHttpServerWebSocketUpgradeResponse_ResponseType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHttpServerWebSocketUpgradeResponse >() { return Shiboken::Module::get(SbkPySide6_QtHttpServerTypeStructs[SBK_QHttpServerWebSocketUpgradeResponse_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTHTTPSERVER_PYTHON_H
|
||||
|
||||
350
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtLocation/pyside6_qtlocation_python.h
vendored
Normal file
350
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtLocation/pyside6_qtlocation_python.h
vendored
Normal file
@@ -0,0 +1,350 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTLOCATION_PYTHON_H
|
||||
#define SBK_QTLOCATION_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtpositioning_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtLocation/qgeocodereply.h>
|
||||
#include <QtLocation/qgeomaneuver.h>
|
||||
#include <QtLocation/qgeoroutereply.h>
|
||||
#include <QtLocation/qgeorouterequest.h>
|
||||
#include <QtLocation/qgeoserviceprovider.h>
|
||||
#include <QtLocation/qlocation.h>
|
||||
#include <QtLocation/qplacecontent.h>
|
||||
#include <QtLocation/qplaceidreply.h>
|
||||
#include <QtLocation/qplacereply.h>
|
||||
#include <QtLocation/qplacesearchrequest.h>
|
||||
#include <QtLocation/qplacesearchresult.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QGeoCodingManager;
|
||||
class QGeoCodingManagerEngine;
|
||||
class QGeoRoute;
|
||||
class QGeoRouteSegment;
|
||||
class QGeoRoutingManager;
|
||||
class QGeoRoutingManagerEngine;
|
||||
class QGeoServiceProviderFactory;
|
||||
class QPlace;
|
||||
class QPlaceAttribute;
|
||||
class QPlaceCategory;
|
||||
class QPlaceContactDetail;
|
||||
class QPlaceContentReply;
|
||||
class QPlaceContentRequest;
|
||||
class QPlaceDetailsReply;
|
||||
class QPlaceIcon;
|
||||
class QPlaceManager;
|
||||
class QPlaceManagerEngine;
|
||||
class QPlaceMatchReply;
|
||||
class QPlaceMatchRequest;
|
||||
class QPlaceProposedSearchResult;
|
||||
class QPlaceRatings;
|
||||
class QPlaceResult;
|
||||
class QPlaceSearchReply;
|
||||
class QPlaceSearchSuggestionReply;
|
||||
class QPlaceSupplier;
|
||||
class QPlaceUser;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QGEOCODEREPLY_ERROR_IDX = 26,
|
||||
SBK_QGEOCODEREPLY_IDX = 24,
|
||||
SBK_QGEOCODINGMANAGER_IDX = 28,
|
||||
SBK_QGEOCODINGMANAGERENGINE_IDX = 30,
|
||||
SBK_QGEOMANEUVER_INSTRUCTIONDIRECTION_IDX = 34,
|
||||
SBK_QGEOMANEUVER_IDX = 32,
|
||||
SBK_QGEOROUTE_IDX = 36,
|
||||
SBK_QGEOROUTEREPLY_ERROR_IDX = 40,
|
||||
SBK_QGEOROUTEREPLY_IDX = 38,
|
||||
SBK_QGEOROUTEREQUEST_TRAVELMODE_IDX = 54,
|
||||
SBK_QFLAGS_QGEOROUTEREQUEST_TRAVELMODE_IDX = 10,
|
||||
SBK_QGEOROUTEREQUEST_FEATURETYPE_IDX = 44,
|
||||
SBK_QFLAGS_QGEOROUTEREQUEST_FEATURETYPE_IDX = 0,
|
||||
SBK_QGEOROUTEREQUEST_FEATUREWEIGHT_IDX = 46,
|
||||
SBK_QFLAGS_QGEOROUTEREQUEST_FEATUREWEIGHT_IDX = 2,
|
||||
SBK_QGEOROUTEREQUEST_ROUTEOPTIMIZATION_IDX = 50,
|
||||
SBK_QFLAGS_QGEOROUTEREQUEST_ROUTEOPTIMIZATION_IDX = 6,
|
||||
SBK_QGEOROUTEREQUEST_SEGMENTDETAIL_IDX = 52,
|
||||
SBK_QFLAGS_QGEOROUTEREQUEST_SEGMENTDETAIL_IDX = 8,
|
||||
SBK_QGEOROUTEREQUEST_MANEUVERDETAIL_IDX = 48,
|
||||
SBK_QFLAGS_QGEOROUTEREQUEST_MANEUVERDETAIL_IDX = 4,
|
||||
SBK_QGEOROUTEREQUEST_IDX = 42,
|
||||
SBK_QGEOROUTESEGMENT_IDX = 56,
|
||||
SBK_QGEOROUTINGMANAGER_IDX = 58,
|
||||
SBK_QGEOROUTINGMANAGERENGINE_IDX = 60,
|
||||
SBK_QGEOSERVICEPROVIDER_ERROR_IDX = 64,
|
||||
SBK_QGEOSERVICEPROVIDER_ROUTINGFEATURE_IDX = 74,
|
||||
SBK_QFLAGS_QGEOSERVICEPROVIDER_ROUTINGFEATURE_IDX = 20,
|
||||
SBK_QGEOSERVICEPROVIDER_GEOCODINGFEATURE_IDX = 66,
|
||||
SBK_QFLAGS_QGEOSERVICEPROVIDER_GEOCODINGFEATURE_IDX = 12,
|
||||
SBK_QGEOSERVICEPROVIDER_MAPPINGFEATURE_IDX = 68,
|
||||
SBK_QFLAGS_QGEOSERVICEPROVIDER_MAPPINGFEATURE_IDX = 14,
|
||||
SBK_QGEOSERVICEPROVIDER_PLACESFEATURE_IDX = 72,
|
||||
SBK_QFLAGS_QGEOSERVICEPROVIDER_PLACESFEATURE_IDX = 18,
|
||||
SBK_QGEOSERVICEPROVIDER_NAVIGATIONFEATURE_IDX = 70,
|
||||
SBK_QFLAGS_QGEOSERVICEPROVIDER_NAVIGATIONFEATURE_IDX = 16,
|
||||
SBK_QGEOSERVICEPROVIDER_IDX = 62,
|
||||
SBK_QGEOSERVICEPROVIDERFACTORY_IDX = 76,
|
||||
SBK_QLOCATION_VISIBILITY_IDX = 80,
|
||||
SBK_QFLAGS_QLOCATION_VISIBILITY_IDX = 22,
|
||||
SBK_QTLOCATIONQLOCATION_IDX = 78,
|
||||
SBK_QPLACE_IDX = 82,
|
||||
SBK_QPLACEATTRIBUTE_IDX = 84,
|
||||
SBK_QPLACECATEGORY_IDX = 86,
|
||||
SBK_QPLACECONTACTDETAIL_IDX = 88,
|
||||
SBK_QPLACECONTENT_TYPE_IDX = 94,
|
||||
SBK_QPLACECONTENT_DATATAG_IDX = 92,
|
||||
SBK_QPLACECONTENT_IDX = 90,
|
||||
SBK_QPLACECONTENTREPLY_IDX = 96,
|
||||
SBK_QPLACECONTENTREQUEST_IDX = 98,
|
||||
SBK_QPLACEDETAILSREPLY_IDX = 100,
|
||||
SBK_QPLACEICON_IDX = 102,
|
||||
SBK_QPLACEIDREPLY_OPERATIONTYPE_IDX = 106,
|
||||
SBK_QPLACEIDREPLY_IDX = 104,
|
||||
SBK_QPLACEMANAGER_IDX = 108,
|
||||
SBK_QPLACEMANAGERENGINE_IDX = 110,
|
||||
SBK_QPLACEMATCHREPLY_IDX = 112,
|
||||
SBK_QPLACEMATCHREQUEST_IDX = 114,
|
||||
SBK_QPLACEPROPOSEDSEARCHRESULT_IDX = 116,
|
||||
SBK_QPLACERATINGS_IDX = 118,
|
||||
SBK_QPLACEREPLY_ERROR_IDX = 122,
|
||||
SBK_QPLACEREPLY_TYPE_IDX = 124,
|
||||
SBK_QPLACEREPLY_IDX = 120,
|
||||
SBK_QPLACERESULT_IDX = 126,
|
||||
SBK_QPLACESEARCHREPLY_IDX = 128,
|
||||
SBK_QPLACESEARCHREQUEST_RELEVANCEHINT_IDX = 132,
|
||||
SBK_QPLACESEARCHREQUEST_IDX = 130,
|
||||
SBK_QPLACESEARCHRESULT_SEARCHRESULTTYPE_IDX = 136,
|
||||
SBK_QPLACESEARCHRESULT_IDX = 134,
|
||||
SBK_QPLACESEARCHSUGGESTIONREPLY_IDX = 138,
|
||||
SBK_QPLACESUPPLIER_IDX = 140,
|
||||
SBK_QPLACEUSER_IDX = 142,
|
||||
SBK_QTLOCATION_IDX_COUNT = 144,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QGeoCodeReply_Error_IDX = 13,
|
||||
SBK_QGeoCodeReply_IDX = 12,
|
||||
SBK_QGeoCodingManager_IDX = 14,
|
||||
SBK_QGeoCodingManagerEngine_IDX = 15,
|
||||
SBK_QGeoManeuver_InstructionDirection_IDX = 17,
|
||||
SBK_QGeoManeuver_IDX = 16,
|
||||
SBK_QGeoRoute_IDX = 18,
|
||||
SBK_QGeoRouteReply_Error_IDX = 20,
|
||||
SBK_QGeoRouteReply_IDX = 19,
|
||||
SBK_QGeoRouteRequest_TravelMode_IDX = 27,
|
||||
SBK_QFlags_QGeoRouteRequest_TravelMode_IDX = 5,
|
||||
SBK_QGeoRouteRequest_FeatureType_IDX = 22,
|
||||
SBK_QFlags_QGeoRouteRequest_FeatureType_IDX = 0,
|
||||
SBK_QGeoRouteRequest_FeatureWeight_IDX = 23,
|
||||
SBK_QFlags_QGeoRouteRequest_FeatureWeight_IDX = 1,
|
||||
SBK_QGeoRouteRequest_RouteOptimization_IDX = 25,
|
||||
SBK_QFlags_QGeoRouteRequest_RouteOptimization_IDX = 3,
|
||||
SBK_QGeoRouteRequest_SegmentDetail_IDX = 26,
|
||||
SBK_QFlags_QGeoRouteRequest_SegmentDetail_IDX = 4,
|
||||
SBK_QGeoRouteRequest_ManeuverDetail_IDX = 24,
|
||||
SBK_QFlags_QGeoRouteRequest_ManeuverDetail_IDX = 2,
|
||||
SBK_QGeoRouteRequest_IDX = 21,
|
||||
SBK_QGeoRouteSegment_IDX = 28,
|
||||
SBK_QGeoRoutingManager_IDX = 29,
|
||||
SBK_QGeoRoutingManagerEngine_IDX = 30,
|
||||
SBK_QGeoServiceProvider_Error_IDX = 32,
|
||||
SBK_QGeoServiceProvider_RoutingFeature_IDX = 37,
|
||||
SBK_QFlags_QGeoServiceProvider_RoutingFeature_IDX = 10,
|
||||
SBK_QGeoServiceProvider_GeocodingFeature_IDX = 33,
|
||||
SBK_QFlags_QGeoServiceProvider_GeocodingFeature_IDX = 6,
|
||||
SBK_QGeoServiceProvider_MappingFeature_IDX = 34,
|
||||
SBK_QFlags_QGeoServiceProvider_MappingFeature_IDX = 7,
|
||||
SBK_QGeoServiceProvider_PlacesFeature_IDX = 36,
|
||||
SBK_QFlags_QGeoServiceProvider_PlacesFeature_IDX = 9,
|
||||
SBK_QGeoServiceProvider_NavigationFeature_IDX = 35,
|
||||
SBK_QFlags_QGeoServiceProvider_NavigationFeature_IDX = 8,
|
||||
SBK_QGeoServiceProvider_IDX = 31,
|
||||
SBK_QGeoServiceProviderFactory_IDX = 38,
|
||||
SBK_QLocation_Visibility_IDX = 40,
|
||||
SBK_QFlags_QLocation_Visibility_IDX = 11,
|
||||
SBK_QtLocationQLocation_IDX = 39,
|
||||
SBK_QPlace_IDX = 41,
|
||||
SBK_QPlaceAttribute_IDX = 42,
|
||||
SBK_QPlaceCategory_IDX = 43,
|
||||
SBK_QPlaceContactDetail_IDX = 44,
|
||||
SBK_QPlaceContent_Type_IDX = 47,
|
||||
SBK_QPlaceContent_DataTag_IDX = 46,
|
||||
SBK_QPlaceContent_IDX = 45,
|
||||
SBK_QPlaceContentReply_IDX = 48,
|
||||
SBK_QPlaceContentRequest_IDX = 49,
|
||||
SBK_QPlaceDetailsReply_IDX = 50,
|
||||
SBK_QPlaceIcon_IDX = 51,
|
||||
SBK_QPlaceIdReply_OperationType_IDX = 53,
|
||||
SBK_QPlaceIdReply_IDX = 52,
|
||||
SBK_QPlaceManager_IDX = 54,
|
||||
SBK_QPlaceManagerEngine_IDX = 55,
|
||||
SBK_QPlaceMatchReply_IDX = 56,
|
||||
SBK_QPlaceMatchRequest_IDX = 57,
|
||||
SBK_QPlaceProposedSearchResult_IDX = 58,
|
||||
SBK_QPlaceRatings_IDX = 59,
|
||||
SBK_QPlaceReply_Error_IDX = 61,
|
||||
SBK_QPlaceReply_Type_IDX = 62,
|
||||
SBK_QPlaceReply_IDX = 60,
|
||||
SBK_QPlaceResult_IDX = 63,
|
||||
SBK_QPlaceSearchReply_IDX = 64,
|
||||
SBK_QPlaceSearchRequest_RelevanceHint_IDX = 66,
|
||||
SBK_QPlaceSearchRequest_IDX = 65,
|
||||
SBK_QPlaceSearchResult_SearchResultType_IDX = 68,
|
||||
SBK_QPlaceSearchResult_IDX = 67,
|
||||
SBK_QPlaceSearchSuggestionReply_IDX = 69,
|
||||
SBK_QPlaceSupplier_IDX = 70,
|
||||
SBK_QPlaceUser_IDX = 71,
|
||||
SBK_QtLocation_IDX_COUNT = 72,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtLocationTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtLocationTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtLocationModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtLocationTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTLOCATION_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTLOCATION_QLIST_QPLACECATEGORY_IDX = 1, // QList<QPlaceCategory>
|
||||
SBK_QTLOCATION_QMAP_QSTRING_QVARIANT_IDX = 2, // QMap<QString,QVariant>
|
||||
SBK_QTLOCATION_QLIST_QPLACE_IDX = 3, // QList<QPlace>
|
||||
SBK_QTLOCATION_QLIST_QPLACESEARCHRESULT_IDX = 4, // QList<QPlaceSearchResult>
|
||||
SBK_QTLOCATION_QLIST_QPLACECONTENT_DATATAG_IDX = 5, // QList<QPlaceContent::DataTag>
|
||||
SBK_QTLOCATION_QLIST_QPLACECONTACTDETAIL_IDX = 6, // QList<QPlaceContactDetail>
|
||||
SBK_QTLOCATION_QMAP_INT_QPLACECONTENT_IDX = 7, // QMap<int,QPlaceContent>
|
||||
SBK_QTLOCATION_QLIST_QGEOCOORDINATE_IDX = 8, // QList<QGeoCoordinate>
|
||||
SBK_QTLOCATION_QLIST_QGEORECTANGLE_IDX = 9, // QList<QGeoRectangle>
|
||||
SBK_QTLOCATION_QLIST_QGEOROUTEREQUEST_FEATURETYPE_IDX = 10, // QList<QGeoRouteRequest::FeatureType>
|
||||
SBK_QTLOCATION_QLIST_QGEOROUTE_IDX = 11, // QList<QGeoRoute>
|
||||
SBK_QTLOCATION_QLIST_QGEOROUTESEGMENT_IDX = 12, // QList<QGeoRouteSegment>
|
||||
SBK_QTLOCATION_QLIST_QLOCALE_IDX = 13, // QList<QLocale>
|
||||
SBK_QTLOCATION_QLIST_QGEOLOCATION_IDX = 14, // QList<QGeoLocation>
|
||||
SBK_QTLOCATION_QLIST_QVARIANT_IDX = 15, // QList<QVariant>
|
||||
SBK_QTLOCATION_QLIST_QSTRING_IDX = 16, // QList<QString>
|
||||
SBK_QTLOCATION_CONVERTERS_IDX_COUNT = 17,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtLocation_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtLocation_QList_QPlaceCategory_IDX = 1, // QList<QPlaceCategory>
|
||||
SBK_QtLocation_QMap_QString_QVariant_IDX = 2, // QMap<QString,QVariant>
|
||||
SBK_QtLocation_QList_QPlace_IDX = 3, // QList<QPlace>
|
||||
SBK_QtLocation_QList_QPlaceSearchResult_IDX = 4, // QList<QPlaceSearchResult>
|
||||
SBK_QtLocation_QList_QPlaceContent_DataTag_IDX = 5, // QList<QPlaceContent::DataTag>
|
||||
SBK_QtLocation_QList_QPlaceContactDetail_IDX = 6, // QList<QPlaceContactDetail>
|
||||
SBK_QtLocation_QMap_int_QPlaceContent_IDX = 7, // QMap<int,QPlaceContent>
|
||||
SBK_QtLocation_QList_QGeoCoordinate_IDX = 8, // QList<QGeoCoordinate>
|
||||
SBK_QtLocation_QList_QGeoRectangle_IDX = 9, // QList<QGeoRectangle>
|
||||
SBK_QtLocation_QList_QGeoRouteRequest_FeatureType_IDX = 10, // QList<QGeoRouteRequest::FeatureType>
|
||||
SBK_QtLocation_QList_QGeoRoute_IDX = 11, // QList<QGeoRoute>
|
||||
SBK_QtLocation_QList_QGeoRouteSegment_IDX = 12, // QList<QGeoRouteSegment>
|
||||
SBK_QtLocation_QList_QLocale_IDX = 13, // QList<QLocale>
|
||||
SBK_QtLocation_QList_QGeoLocation_IDX = 14, // QList<QGeoLocation>
|
||||
SBK_QtLocation_QList_QVariant_IDX = 15, // QList<QVariant>
|
||||
SBK_QtLocation_QList_QString_IDX = 16, // QList<QString>
|
||||
SBK_QtLocation_CONVERTERS_IDX_COUNT = 17,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoCodeReply::Error >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoCodeReply_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoCodeReply >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoCodeReply_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoCodingManager >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoCodingManager_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoCodingManagerEngine >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoCodingManagerEngine_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoManeuver::InstructionDirection >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoManeuver_InstructionDirection_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoManeuver >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoManeuver_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoRoute >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRoute_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoRouteReply::Error >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRouteReply_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoRouteReply >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRouteReply_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoRouteRequest::TravelMode >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRouteRequest_TravelMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QGeoRouteRequest::TravelMode> >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QFlags_QGeoRouteRequest_TravelMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoRouteRequest::FeatureType >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRouteRequest_FeatureType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QGeoRouteRequest::FeatureType> >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QFlags_QGeoRouteRequest_FeatureType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoRouteRequest::FeatureWeight >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRouteRequest_FeatureWeight_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QGeoRouteRequest::FeatureWeight> >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QFlags_QGeoRouteRequest_FeatureWeight_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoRouteRequest::RouteOptimization >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRouteRequest_RouteOptimization_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QGeoRouteRequest::RouteOptimization> >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QFlags_QGeoRouteRequest_RouteOptimization_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoRouteRequest::SegmentDetail >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRouteRequest_SegmentDetail_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QGeoRouteRequest::SegmentDetail> >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QFlags_QGeoRouteRequest_SegmentDetail_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoRouteRequest::ManeuverDetail >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRouteRequest_ManeuverDetail_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QGeoRouteRequest::ManeuverDetail> >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QFlags_QGeoRouteRequest_ManeuverDetail_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoRouteRequest >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRouteRequest_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoRouteSegment >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRouteSegment_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoRoutingManager >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRoutingManager_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoRoutingManagerEngine >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRoutingManagerEngine_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoServiceProvider::Error >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoServiceProvider_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoServiceProvider::RoutingFeature >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoServiceProvider_RoutingFeature_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QGeoServiceProvider::RoutingFeature> >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QFlags_QGeoServiceProvider_RoutingFeature_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoServiceProvider::GeocodingFeature >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoServiceProvider_GeocodingFeature_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QGeoServiceProvider::GeocodingFeature> >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QFlags_QGeoServiceProvider_GeocodingFeature_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoServiceProvider::MappingFeature >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoServiceProvider_MappingFeature_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QGeoServiceProvider::MappingFeature> >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QFlags_QGeoServiceProvider_MappingFeature_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoServiceProvider::PlacesFeature >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoServiceProvider_PlacesFeature_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QGeoServiceProvider::PlacesFeature> >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QFlags_QGeoServiceProvider_PlacesFeature_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoServiceProvider::NavigationFeature >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoServiceProvider_NavigationFeature_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QGeoServiceProvider::NavigationFeature> >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QFlags_QGeoServiceProvider_NavigationFeature_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoServiceProvider >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoServiceProvider_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoServiceProviderFactory >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoServiceProviderFactory_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLocation::Visibility >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QLocation_Visibility_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QLocation::Visibility> >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QFlags_QLocation_Visibility_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlace >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlace_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceAttribute >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceAttribute_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceCategory >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceCategory_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceContactDetail >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceContactDetail_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceContent::Type >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceContent_Type_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceContent::DataTag >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceContent_DataTag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceContent >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceContent_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceContentReply >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceContentReply_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceContentRequest >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceContentRequest_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceDetailsReply >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceDetailsReply_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceIcon >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceIcon_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceIdReply::OperationType >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceIdReply_OperationType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceIdReply >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceIdReply_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceManager >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceManager_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceManagerEngine >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceManagerEngine_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceMatchReply >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceMatchReply_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceMatchRequest >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceMatchRequest_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceProposedSearchResult >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceProposedSearchResult_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceRatings >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceRatings_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceReply::Error >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceReply_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceReply::Type >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceReply_Type_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceReply >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceReply_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceResult >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceResult_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceSearchReply >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceSearchReply_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceSearchRequest::RelevanceHint >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceSearchRequest_RelevanceHint_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceSearchRequest >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceSearchRequest_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceSearchResult::SearchResultType >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceSearchResult_SearchResultType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceSearchResult >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceSearchResult_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceSearchSuggestionReply >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceSearchSuggestionReply_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceSupplier >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceSupplier_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaceUser >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceUser_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTLOCATION_PYTHON_H
|
||||
|
||||
408
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtMultimedia/pyside6_qtmultimedia_python.h
vendored
Normal file
408
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtMultimedia/pyside6_qtmultimedia_python.h
vendored
Normal file
@@ -0,0 +1,408 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTMULTIMEDIA_PYTHON_H
|
||||
#define SBK_QTMULTIMEDIA_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtnetwork_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtMultimedia/qabstractvideobuffer.h>
|
||||
#include <QtMultimedia/qaudio.h>
|
||||
#include <QtMultimedia/qaudiodecoder.h>
|
||||
#include <QtMultimedia/qaudiodevice.h>
|
||||
#include <QtMultimedia/qaudioformat.h>
|
||||
#include <QtMultimedia/qcamera.h>
|
||||
#include <QtMultimedia/qcameradevice.h>
|
||||
#include <QtMultimedia/qimagecapture.h>
|
||||
#include <QtMultimedia/qmediaformat.h>
|
||||
#include <QtMultimedia/qmediametadata.h>
|
||||
#include <QtMultimedia/qmediaplayer.h>
|
||||
#include <QtMultimedia/qmediarecorder.h>
|
||||
#include <QtMultimedia/qmediatimerange.h>
|
||||
#include <QtMultimedia/qplaybackoptions.h>
|
||||
#include <QtMultimedia/qscreencapture.h>
|
||||
#include <QtMultimedia/qsoundeffect.h>
|
||||
#include <QtMultimedia/qtvideo.h>
|
||||
#include <QtMultimedia/qvideoframe.h>
|
||||
#include <QtMultimedia/qvideoframeformat.h>
|
||||
#include <QtMultimedia/qwavedecoder.h>
|
||||
#include <QtMultimedia/qwindowcapture.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QAudioBuffer;
|
||||
class QAudioBufferInput;
|
||||
class QAudioBufferOutput;
|
||||
class QAudioInput;
|
||||
class QAudioOutput;
|
||||
class QAudioSink;
|
||||
class QAudioSource;
|
||||
class QCameraFormat;
|
||||
class QCapturableWindow;
|
||||
class QMediaCaptureSession;
|
||||
class QMediaDevices;
|
||||
class QVideoFrameInput;
|
||||
class QVideoSink;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QABSTRACTVIDEOBUFFER_IDX = 0,
|
||||
SBK_QABSTRACTVIDEOBUFFER_MAPDATA_IDX = 2,
|
||||
SBK_QAUDIO_ERROR_IDX = 6,
|
||||
SBK_QAUDIO_STATE_IDX = 8,
|
||||
SBK_QAUDIO_VOLUMESCALE_IDX = 10,
|
||||
SBK_QTMULTIMEDIAQAUDIO_IDX = 4,
|
||||
SBK_QAUDIOBUFFER_IDX = 12,
|
||||
SBK_QAUDIOBUFFERINPUT_IDX = 14,
|
||||
SBK_QAUDIOBUFFEROUTPUT_IDX = 16,
|
||||
SBK_QAUDIODECODER_ERROR_IDX = 20,
|
||||
SBK_QAUDIODECODER_IDX = 18,
|
||||
SBK_QAUDIODEVICE_MODE_IDX = 24,
|
||||
SBK_QAUDIODEVICE_IDX = 22,
|
||||
SBK_QAUDIOFORMAT_SAMPLEFORMAT_IDX = 32,
|
||||
SBK_QAUDIOFORMAT_AUDIOCHANNELPOSITION_IDX = 28,
|
||||
SBK_QAUDIOFORMAT_CHANNELCONFIG_IDX = 30,
|
||||
SBK_QAUDIOFORMAT_IDX = 26,
|
||||
SBK_QAUDIOINPUT_IDX = 34,
|
||||
SBK_QAUDIOOUTPUT_IDX = 36,
|
||||
SBK_QAUDIOSINK_IDX = 38,
|
||||
SBK_QAUDIOSOURCE_IDX = 40,
|
||||
SBK_QCAMERA_ERROR_IDX = 44,
|
||||
SBK_QCAMERA_FOCUSMODE_IDX = 52,
|
||||
SBK_QCAMERA_FLASHMODE_IDX = 50,
|
||||
SBK_QCAMERA_TORCHMODE_IDX = 54,
|
||||
SBK_QCAMERA_EXPOSUREMODE_IDX = 46,
|
||||
SBK_QCAMERA_WHITEBALANCEMODE_IDX = 56,
|
||||
SBK_QCAMERA_FEATURE_IDX = 48,
|
||||
SBK_QFLAGS_QCAMERA_FEATURE_IDX = 66,
|
||||
SBK_QCAMERA_IDX = 42,
|
||||
SBK_QCAMERADEVICE_POSITION_IDX = 60,
|
||||
SBK_QCAMERADEVICE_IDX = 58,
|
||||
SBK_QCAMERAFORMAT_IDX = 62,
|
||||
SBK_QCAPTURABLEWINDOW_IDX = 64,
|
||||
SBK_QIMAGECAPTURE_ERROR_IDX = 72,
|
||||
SBK_QIMAGECAPTURE_QUALITY_IDX = 76,
|
||||
SBK_QIMAGECAPTURE_FILEFORMAT_IDX = 74,
|
||||
SBK_QIMAGECAPTURE_IDX = 70,
|
||||
SBK_QMEDIACAPTURESESSION_IDX = 78,
|
||||
SBK_QMEDIADEVICES_IDX = 80,
|
||||
SBK_QMEDIAFORMAT_FILEFORMAT_IDX = 88,
|
||||
SBK_QMEDIAFORMAT_AUDIOCODEC_IDX = 84,
|
||||
SBK_QMEDIAFORMAT_VIDEOCODEC_IDX = 92,
|
||||
SBK_QMEDIAFORMAT_CONVERSIONMODE_IDX = 86,
|
||||
SBK_QMEDIAFORMAT_RESOLVEFLAGS_IDX = 90,
|
||||
SBK_QMEDIAFORMAT_IDX = 82,
|
||||
SBK_QMEDIAMETADATA_KEY_IDX = 96,
|
||||
SBK_QMEDIAMETADATA_IDX = 94,
|
||||
SBK_QMEDIAPLAYER_PLAYBACKSTATE_IDX = 108,
|
||||
SBK_QMEDIAPLAYER_MEDIASTATUS_IDX = 104,
|
||||
SBK_QMEDIAPLAYER_ERROR_IDX = 100,
|
||||
SBK_QMEDIAPLAYER_LOOPS_IDX = 102,
|
||||
SBK_QMEDIAPLAYER_PITCHCOMPENSATIONAVAILABILITY_IDX = 106,
|
||||
SBK_QMEDIAPLAYER_IDX = 98,
|
||||
SBK_QMEDIARECORDER_QUALITY_IDX = 116,
|
||||
SBK_QMEDIARECORDER_ENCODINGMODE_IDX = 112,
|
||||
SBK_QMEDIARECORDER_RECORDERSTATE_IDX = 118,
|
||||
SBK_QMEDIARECORDER_ERROR_IDX = 114,
|
||||
SBK_QMEDIARECORDER_IDX = 110,
|
||||
SBK_QMEDIATIMERANGE_IDX = 120,
|
||||
SBK_QMEDIATIMERANGE_INTERVAL_IDX = 122,
|
||||
SBK_QPLAYBACKOPTIONS_PLAYBACKINTENT_IDX = 126,
|
||||
SBK_QPLAYBACKOPTIONS_IDX = 124,
|
||||
SBK_QSCREENCAPTURE_ERROR_IDX = 130,
|
||||
SBK_QSCREENCAPTURE_IDX = 128,
|
||||
SBK_QSOUNDEFFECT_LOOP_IDX = 134,
|
||||
SBK_QSOUNDEFFECT_STATUS_IDX = 136,
|
||||
SBK_QSOUNDEFFECT_IDX = 132,
|
||||
SBK_QVIDEOFRAME_HANDLETYPE_IDX = 140,
|
||||
SBK_QVIDEOFRAME_MAPMODE_IDX = 142,
|
||||
SBK_QVIDEOFRAME_ROTATIONANGLE_IDX = 148,
|
||||
SBK_QVIDEOFRAME_IDX = 138,
|
||||
SBK_QVIDEOFRAME_PAINTOPTIONS_PAINTFLAG_IDX = 146,
|
||||
SBK_QFLAGS_QVIDEOFRAME_PAINTOPTIONS_PAINTFLAG_IDX = 68,
|
||||
SBK_QVIDEOFRAME_PAINTOPTIONS_IDX = 144,
|
||||
SBK_QVIDEOFRAMEFORMAT_PIXELFORMAT_IDX = 160,
|
||||
SBK_QVIDEOFRAMEFORMAT_DIRECTION_IDX = 158,
|
||||
SBK_QVIDEOFRAMEFORMAT_YCBCRCOLORSPACE_IDX = 162,
|
||||
SBK_QVIDEOFRAMEFORMAT_COLORSPACE_IDX = 154,
|
||||
SBK_QVIDEOFRAMEFORMAT_COLORTRANSFER_IDX = 156,
|
||||
SBK_QVIDEOFRAMEFORMAT_COLORRANGE_IDX = 152,
|
||||
SBK_QVIDEOFRAMEFORMAT_IDX = 150,
|
||||
SBK_QVIDEOFRAMEINPUT_IDX = 164,
|
||||
SBK_QVIDEOSINK_IDX = 166,
|
||||
SBK_QWAVEDECODER_IDX = 168,
|
||||
SBK_QWINDOWCAPTURE_ERROR_IDX = 172,
|
||||
SBK_QWINDOWCAPTURE_IDX = 170,
|
||||
SBK_QTAUDIO_ERROR_IDX = 176,
|
||||
SBK_QTAUDIO_STATE_IDX = 178,
|
||||
SBK_QTAUDIO_VOLUMESCALE_IDX = 180,
|
||||
SBK_QTMULTIMEDIAQTAUDIO_IDX = 174,
|
||||
SBK_QTVIDEO_ROTATION_IDX = 184,
|
||||
SBK_QTMULTIMEDIAQTVIDEO_IDX = 182,
|
||||
SBK_QTMULTIMEDIA_IDX_COUNT = 186,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QAbstractVideoBuffer_IDX = 0,
|
||||
SBK_QAbstractVideoBuffer_MapData_IDX = 1,
|
||||
SBK_QAudio_Error_IDX = 3,
|
||||
SBK_QAudio_State_IDX = 4,
|
||||
SBK_QAudio_VolumeScale_IDX = 5,
|
||||
SBK_QtMultimediaQAudio_IDX = 2,
|
||||
SBK_QAudioBuffer_IDX = 6,
|
||||
SBK_QAudioBufferInput_IDX = 7,
|
||||
SBK_QAudioBufferOutput_IDX = 8,
|
||||
SBK_QAudioDecoder_Error_IDX = 10,
|
||||
SBK_QAudioDecoder_IDX = 9,
|
||||
SBK_QAudioDevice_Mode_IDX = 12,
|
||||
SBK_QAudioDevice_IDX = 11,
|
||||
SBK_QAudioFormat_SampleFormat_IDX = 16,
|
||||
SBK_QAudioFormat_AudioChannelPosition_IDX = 14,
|
||||
SBK_QAudioFormat_ChannelConfig_IDX = 15,
|
||||
SBK_QAudioFormat_IDX = 13,
|
||||
SBK_QAudioInput_IDX = 17,
|
||||
SBK_QAudioOutput_IDX = 18,
|
||||
SBK_QAudioSink_IDX = 19,
|
||||
SBK_QAudioSource_IDX = 20,
|
||||
SBK_QCamera_Error_IDX = 22,
|
||||
SBK_QCamera_FocusMode_IDX = 26,
|
||||
SBK_QCamera_FlashMode_IDX = 25,
|
||||
SBK_QCamera_TorchMode_IDX = 27,
|
||||
SBK_QCamera_ExposureMode_IDX = 23,
|
||||
SBK_QCamera_WhiteBalanceMode_IDX = 28,
|
||||
SBK_QCamera_Feature_IDX = 24,
|
||||
SBK_QFlags_QCamera_Feature_IDX = 33,
|
||||
SBK_QCamera_IDX = 21,
|
||||
SBK_QCameraDevice_Position_IDX = 30,
|
||||
SBK_QCameraDevice_IDX = 29,
|
||||
SBK_QCameraFormat_IDX = 31,
|
||||
SBK_QCapturableWindow_IDX = 32,
|
||||
SBK_QImageCapture_Error_IDX = 36,
|
||||
SBK_QImageCapture_Quality_IDX = 38,
|
||||
SBK_QImageCapture_FileFormat_IDX = 37,
|
||||
SBK_QImageCapture_IDX = 35,
|
||||
SBK_QMediaCaptureSession_IDX = 39,
|
||||
SBK_QMediaDevices_IDX = 40,
|
||||
SBK_QMediaFormat_FileFormat_IDX = 44,
|
||||
SBK_QMediaFormat_AudioCodec_IDX = 42,
|
||||
SBK_QMediaFormat_VideoCodec_IDX = 46,
|
||||
SBK_QMediaFormat_ConversionMode_IDX = 43,
|
||||
SBK_QMediaFormat_ResolveFlags_IDX = 45,
|
||||
SBK_QMediaFormat_IDX = 41,
|
||||
SBK_QMediaMetaData_Key_IDX = 48,
|
||||
SBK_QMediaMetaData_IDX = 47,
|
||||
SBK_QMediaPlayer_PlaybackState_IDX = 54,
|
||||
SBK_QMediaPlayer_MediaStatus_IDX = 52,
|
||||
SBK_QMediaPlayer_Error_IDX = 50,
|
||||
SBK_QMediaPlayer_Loops_IDX = 51,
|
||||
SBK_QMediaPlayer_PitchCompensationAvailability_IDX = 53,
|
||||
SBK_QMediaPlayer_IDX = 49,
|
||||
SBK_QMediaRecorder_Quality_IDX = 58,
|
||||
SBK_QMediaRecorder_EncodingMode_IDX = 56,
|
||||
SBK_QMediaRecorder_RecorderState_IDX = 59,
|
||||
SBK_QMediaRecorder_Error_IDX = 57,
|
||||
SBK_QMediaRecorder_IDX = 55,
|
||||
SBK_QMediaTimeRange_IDX = 60,
|
||||
SBK_QMediaTimeRange_Interval_IDX = 61,
|
||||
SBK_QPlaybackOptions_PlaybackIntent_IDX = 63,
|
||||
SBK_QPlaybackOptions_IDX = 62,
|
||||
SBK_QScreenCapture_Error_IDX = 65,
|
||||
SBK_QScreenCapture_IDX = 64,
|
||||
SBK_QSoundEffect_Loop_IDX = 67,
|
||||
SBK_QSoundEffect_Status_IDX = 68,
|
||||
SBK_QSoundEffect_IDX = 66,
|
||||
SBK_QVideoFrame_HandleType_IDX = 70,
|
||||
SBK_QVideoFrame_MapMode_IDX = 71,
|
||||
SBK_QVideoFrame_RotationAngle_IDX = 74,
|
||||
SBK_QVideoFrame_IDX = 69,
|
||||
SBK_QVideoFrame_PaintOptions_PaintFlag_IDX = 73,
|
||||
SBK_QFlags_QVideoFrame_PaintOptions_PaintFlag_IDX = 34,
|
||||
SBK_QVideoFrame_PaintOptions_IDX = 72,
|
||||
SBK_QVideoFrameFormat_PixelFormat_IDX = 80,
|
||||
SBK_QVideoFrameFormat_Direction_IDX = 79,
|
||||
SBK_QVideoFrameFormat_YCbCrColorSpace_IDX = 81,
|
||||
SBK_QVideoFrameFormat_ColorSpace_IDX = 77,
|
||||
SBK_QVideoFrameFormat_ColorTransfer_IDX = 78,
|
||||
SBK_QVideoFrameFormat_ColorRange_IDX = 76,
|
||||
SBK_QVideoFrameFormat_IDX = 75,
|
||||
SBK_QVideoFrameInput_IDX = 82,
|
||||
SBK_QVideoSink_IDX = 83,
|
||||
SBK_QWaveDecoder_IDX = 84,
|
||||
SBK_QWindowCapture_Error_IDX = 86,
|
||||
SBK_QWindowCapture_IDX = 85,
|
||||
SBK_QtAudio_Error_IDX = 88,
|
||||
SBK_QtAudio_State_IDX = 89,
|
||||
SBK_QtAudio_VolumeScale_IDX = 90,
|
||||
SBK_QtMultimediaQtAudio_IDX = 87,
|
||||
SBK_QtVideo_Rotation_IDX = 92,
|
||||
SBK_QtMultimediaQtVideo_IDX = 91,
|
||||
SBK_QtMultimedia_IDX_COUNT = 93,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtMultimediaTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtMultimediaTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtMultimediaModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtMultimediaTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTMULTIMEDIA_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTMULTIMEDIA_QLIST_QMEDIATIMERANGE_INTERVAL_IDX = 1, // QList<QMediaTimeRange::Interval>
|
||||
SBK_QTMULTIMEDIA_QLIST_QMEDIAMETADATA_KEY_IDX = 2, // QList<QMediaMetaData::Key>
|
||||
SBK_QTMULTIMEDIA_QHASH_QMEDIAMETADATA_KEY_QVARIANT_IDX = 3, // QHash<QMediaMetaData::Key,QVariant>
|
||||
SBK_QTMULTIMEDIA_QLIST_QMEDIAFORMAT_AUDIOCODEC_IDX = 4, // QList<QMediaFormat::AudioCodec>
|
||||
SBK_QTMULTIMEDIA_QLIST_QMEDIAFORMAT_FILEFORMAT_IDX = 5, // QList<QMediaFormat::FileFormat>
|
||||
SBK_QTMULTIMEDIA_QLIST_QMEDIAFORMAT_VIDEOCODEC_IDX = 6, // QList<QMediaFormat::VideoCodec>
|
||||
SBK_QTMULTIMEDIA_QLIST_QSIZE_IDX = 7, // QList<QSize>
|
||||
SBK_QTMULTIMEDIA_QLIST_QCAMERAFORMAT_IDX = 8, // QList<QCameraFormat>
|
||||
SBK_QTMULTIMEDIA_QLIST_QAUDIOFORMAT_SAMPLEFORMAT_IDX = 9, // QList<QAudioFormat::SampleFormat>
|
||||
SBK_QTMULTIMEDIA_QLIST_QCAPTURABLEWINDOW_IDX = 10, // QList<QCapturableWindow>
|
||||
SBK_QTMULTIMEDIA_QLIST_QAUDIODEVICE_IDX = 11, // QList<QAudioDevice>
|
||||
SBK_QTMULTIMEDIA_QLIST_QCAMERADEVICE_IDX = 12, // QList<QCameraDevice>
|
||||
SBK_QTMULTIMEDIA_QLIST_QIMAGECAPTURE_FILEFORMAT_IDX = 13, // QList<QImageCapture::FileFormat>
|
||||
SBK_QTMULTIMEDIA_QLIST_QMEDIAMETADATA_IDX = 14, // QList<QMediaMetaData>
|
||||
SBK_QTMULTIMEDIA_QLIST_QVARIANT_IDX = 15, // QList<QVariant>
|
||||
SBK_QTMULTIMEDIA_QLIST_QSTRING_IDX = 16, // QList<QString>
|
||||
SBK_QTMULTIMEDIA_QMAP_QSTRING_QVARIANT_IDX = 17, // QMap<QString,QVariant>
|
||||
SBK_QTMULTIMEDIA_CONVERTERS_IDX_COUNT = 18,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtMultimedia_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtMultimedia_QList_QMediaTimeRange_Interval_IDX = 1, // QList<QMediaTimeRange::Interval>
|
||||
SBK_QtMultimedia_QList_QMediaMetaData_Key_IDX = 2, // QList<QMediaMetaData::Key>
|
||||
SBK_QtMultimedia_QHash_QMediaMetaData_Key_QVariant_IDX = 3, // QHash<QMediaMetaData::Key,QVariant>
|
||||
SBK_QtMultimedia_QList_QMediaFormat_AudioCodec_IDX = 4, // QList<QMediaFormat::AudioCodec>
|
||||
SBK_QtMultimedia_QList_QMediaFormat_FileFormat_IDX = 5, // QList<QMediaFormat::FileFormat>
|
||||
SBK_QtMultimedia_QList_QMediaFormat_VideoCodec_IDX = 6, // QList<QMediaFormat::VideoCodec>
|
||||
SBK_QtMultimedia_QList_QSize_IDX = 7, // QList<QSize>
|
||||
SBK_QtMultimedia_QList_QCameraFormat_IDX = 8, // QList<QCameraFormat>
|
||||
SBK_QtMultimedia_QList_QAudioFormat_SampleFormat_IDX = 9, // QList<QAudioFormat::SampleFormat>
|
||||
SBK_QtMultimedia_QList_QCapturableWindow_IDX = 10, // QList<QCapturableWindow>
|
||||
SBK_QtMultimedia_QList_QAudioDevice_IDX = 11, // QList<QAudioDevice>
|
||||
SBK_QtMultimedia_QList_QCameraDevice_IDX = 12, // QList<QCameraDevice>
|
||||
SBK_QtMultimedia_QList_QImageCapture_FileFormat_IDX = 13, // QList<QImageCapture::FileFormat>
|
||||
SBK_QtMultimedia_QList_QMediaMetaData_IDX = 14, // QList<QMediaMetaData>
|
||||
SBK_QtMultimedia_QList_QVariant_IDX = 15, // QList<QVariant>
|
||||
SBK_QtMultimedia_QList_QString_IDX = 16, // QList<QString>
|
||||
SBK_QtMultimedia_QMap_QString_QVariant_IDX = 17, // QMap<QString,QVariant>
|
||||
SBK_QtMultimedia_CONVERTERS_IDX_COUNT = 18,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractVideoBuffer >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QAbstractVideoBuffer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractVideoBuffer::MapData >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QAbstractVideoBuffer_MapData_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAudioBuffer >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QAudioBuffer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAudioBufferInput >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QAudioBufferInput_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAudioBufferOutput >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QAudioBufferOutput_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAudioDecoder::Error >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QAudioDecoder_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAudioDecoder >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QAudioDecoder_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAudioDevice::Mode >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QAudioDevice_Mode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAudioDevice >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QAudioDevice_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAudioFormat::SampleFormat >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QAudioFormat_SampleFormat_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAudioFormat::AudioChannelPosition >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QAudioFormat_AudioChannelPosition_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAudioFormat::ChannelConfig >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QAudioFormat_ChannelConfig_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAudioFormat >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QAudioFormat_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAudioInput >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QAudioInput_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAudioOutput >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QAudioOutput_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAudioSink >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QAudioSink_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAudioSource >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QAudioSource_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCamera::Error >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QCamera_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCamera::FocusMode >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QCamera_FocusMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCamera::FlashMode >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QCamera_FlashMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCamera::TorchMode >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QCamera_TorchMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCamera::ExposureMode >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QCamera_ExposureMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCamera::WhiteBalanceMode >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QCamera_WhiteBalanceMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCamera::Feature >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QCamera_Feature_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QCamera::Feature> >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QFlags_QCamera_Feature_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCamera >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QCamera_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCameraDevice::Position >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QCameraDevice_Position_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCameraDevice >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QCameraDevice_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCameraFormat >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QCameraFormat_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCapturableWindow >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QCapturableWindow_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QImageCapture::Error >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QImageCapture_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QImageCapture::Quality >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QImageCapture_Quality_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QImageCapture::FileFormat >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QImageCapture_FileFormat_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QImageCapture >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QImageCapture_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMediaCaptureSession >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QMediaCaptureSession_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMediaDevices >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QMediaDevices_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMediaFormat::FileFormat >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QMediaFormat_FileFormat_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMediaFormat::AudioCodec >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QMediaFormat_AudioCodec_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMediaFormat::VideoCodec >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QMediaFormat_VideoCodec_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMediaFormat::ConversionMode >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QMediaFormat_ConversionMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMediaFormat::ResolveFlags >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QMediaFormat_ResolveFlags_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMediaFormat >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QMediaFormat_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMediaMetaData::Key >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QMediaMetaData_Key_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMediaMetaData >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QMediaMetaData_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMediaPlayer::PlaybackState >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QMediaPlayer_PlaybackState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMediaPlayer::MediaStatus >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QMediaPlayer_MediaStatus_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMediaPlayer::Error >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QMediaPlayer_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMediaPlayer::Loops >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QMediaPlayer_Loops_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMediaPlayer::PitchCompensationAvailability >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QMediaPlayer_PitchCompensationAvailability_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMediaPlayer >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QMediaPlayer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMediaRecorder::Quality >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QMediaRecorder_Quality_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMediaRecorder::EncodingMode >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QMediaRecorder_EncodingMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMediaRecorder::RecorderState >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QMediaRecorder_RecorderState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMediaRecorder::Error >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QMediaRecorder_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMediaRecorder >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QMediaRecorder_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMediaTimeRange >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QMediaTimeRange_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMediaTimeRange::Interval >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QMediaTimeRange_Interval_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaybackOptions::PlaybackIntent >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QPlaybackOptions_PlaybackIntent_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPlaybackOptions >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QPlaybackOptions_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScreenCapture::Error >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QScreenCapture_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScreenCapture >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QScreenCapture_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSoundEffect::Loop >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QSoundEffect_Loop_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSoundEffect::Status >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QSoundEffect_Status_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSoundEffect >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QSoundEffect_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QVideoFrame::HandleType >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QVideoFrame_HandleType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QVideoFrame::MapMode >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QVideoFrame_MapMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QVideoFrame::RotationAngle >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QVideoFrame_RotationAngle_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QVideoFrame >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QVideoFrame_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QVideoFrame::PaintOptions::PaintFlag >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QVideoFrame_PaintOptions_PaintFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QVideoFrame::PaintOptions::PaintFlag> >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QFlags_QVideoFrame_PaintOptions_PaintFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QVideoFrame::PaintOptions >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QVideoFrame_PaintOptions_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QVideoFrameFormat::PixelFormat >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QVideoFrameFormat_PixelFormat_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QVideoFrameFormat::Direction >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QVideoFrameFormat_Direction_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QVideoFrameFormat::YCbCrColorSpace >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QVideoFrameFormat_YCbCrColorSpace_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QVideoFrameFormat::ColorSpace >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QVideoFrameFormat_ColorSpace_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QVideoFrameFormat::ColorTransfer >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QVideoFrameFormat_ColorTransfer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QVideoFrameFormat::ColorRange >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QVideoFrameFormat_ColorRange_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QVideoFrameFormat >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QVideoFrameFormat_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QVideoFrameInput >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QVideoFrameInput_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QVideoSink >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QVideoSink_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWaveDecoder >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QWaveDecoder_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWindowCapture::Error >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QWindowCapture_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWindowCapture >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QWindowCapture_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtAudio::Error >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QtAudio_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtAudio::State >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QtAudio_State_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtAudio::VolumeScale >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QtAudio_VolumeScale_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtVideo::Rotation >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaTypeStructs[SBK_QtVideo_Rotation_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTMULTIMEDIA_PYTHON_H
|
||||
|
||||
@@ -0,0 +1,83 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTMULTIMEDIAWIDGETS_PYTHON_H
|
||||
#define SBK_QTMULTIMEDIAWIDGETS_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtmultimedia_python.h>
|
||||
#include <pyside6_qtnetwork_python.h>
|
||||
#include <pyside6_qtwidgets_python.h>
|
||||
|
||||
// Bound library includes
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QGraphicsVideoItem;
|
||||
class QVideoWidget;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QGRAPHICSVIDEOITEM_IDX = 0,
|
||||
SBK_QVIDEOWIDGET_IDX = 2,
|
||||
SBK_QTMULTIMEDIAWIDGETS_IDX_COUNT = 4,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QGraphicsVideoItem_IDX = 0,
|
||||
SBK_QVideoWidget_IDX = 1,
|
||||
SBK_QtMultimediaWidgets_IDX_COUNT = 2,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtMultimediaWidgetsTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtMultimediaWidgetsTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtMultimediaWidgetsModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtMultimediaWidgetsTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTMULTIMEDIAWIDGETS_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTMULTIMEDIAWIDGETS_QLIST_QVARIANT_IDX = 1, // QList<QVariant>
|
||||
SBK_QTMULTIMEDIAWIDGETS_QLIST_QSTRING_IDX = 2, // QList<QString>
|
||||
SBK_QTMULTIMEDIAWIDGETS_QMAP_QSTRING_QVARIANT_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QTMULTIMEDIAWIDGETS_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtMultimediaWidgets_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtMultimediaWidgets_QList_QVariant_IDX = 1, // QList<QVariant>
|
||||
SBK_QtMultimediaWidgets_QList_QString_IDX = 2, // QList<QString>
|
||||
SBK_QtMultimediaWidgets_QMap_QString_QVariant_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QtMultimediaWidgets_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QGraphicsVideoItem >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaWidgetsTypeStructs[SBK_QGraphicsVideoItem_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QVideoWidget >() { return Shiboken::Module::get(SbkPySide6_QtMultimediaWidgetsTypeStructs[SBK_QVideoWidget_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTMULTIMEDIAWIDGETS_PYTHON_H
|
||||
|
||||
640
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtNetwork/pyside6_qtnetwork_python.h
vendored
Normal file
640
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtNetwork/pyside6_qtnetwork_python.h
vendored
Normal file
@@ -0,0 +1,640 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTNETWORK_PYTHON_H
|
||||
#define SBK_QTNETWORK_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtNetwork/qabstractsocket.h>
|
||||
#include <QtNetwork/qdnslookup.h>
|
||||
#include <QtNetwork/qformdatabuilder.h>
|
||||
#include <QtNetwork/qhostaddress.h>
|
||||
#include <QtNetwork/qhostinfo.h>
|
||||
#include <QtNetwork/qhstspolicy.h>
|
||||
#include <QtNetwork/qhttpheaders.h>
|
||||
#include <QtNetwork/qhttpmultipart.h>
|
||||
#include <QtNetwork/qlocalserver.h>
|
||||
#include <QtNetwork/qlocalsocket.h>
|
||||
#include <QtNetwork/qnetworkaccessmanager.h>
|
||||
#include <QtNetwork/qnetworkcookie.h>
|
||||
#include <QtNetwork/qnetworkinformation.h>
|
||||
#include <QtNetwork/qnetworkproxy.h>
|
||||
#include <QtNetwork/qnetworkreply.h>
|
||||
#include <QtNetwork/qnetworkrequest.h>
|
||||
#include <QtNetwork/qpassworddigestor.h>
|
||||
#include <QtNetwork/qssl.h>
|
||||
#if QT_CONFIG(dtls)
|
||||
#include <QtNetwork/qdtls.h>
|
||||
#endif
|
||||
#if QT_CONFIG(networkinterface)
|
||||
#include <QtNetwork/qnetworkinterface.h>
|
||||
#endif
|
||||
#if QT_CONFIG(ssl)
|
||||
#include <QtNetwork/qdtls.h>
|
||||
#include <QtNetwork/qocspresponse.h>
|
||||
#include <QtNetwork/qsslcertificate.h>
|
||||
#include <QtNetwork/qsslconfiguration.h>
|
||||
#include <QtNetwork/qssldiffiehellmanparameters.h>
|
||||
#include <QtNetwork/qsslerror.h>
|
||||
#include <QtNetwork/qsslsocket.h>
|
||||
#endif
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QAbstractNetworkCache;
|
||||
class QAuthenticator;
|
||||
class QDnsDomainNameRecord;
|
||||
class QDnsHostAddressRecord;
|
||||
class QDnsMailExchangeRecord;
|
||||
class QDnsServiceRecord;
|
||||
class QDnsTextRecord;
|
||||
class QFormDataPartBuilder;
|
||||
class QHttp1Configuration;
|
||||
class QHttp2Configuration;
|
||||
class QHttpPart;
|
||||
class QIPv6Address;
|
||||
class QNetworkCacheMetaData;
|
||||
class QNetworkCookieJar;
|
||||
class QNetworkDatagram;
|
||||
class QNetworkDiskCache;
|
||||
class QNetworkProxyFactory;
|
||||
class QNetworkRequestFactory;
|
||||
class QOcspResponse;
|
||||
class QRestAccessManager;
|
||||
class QRestReply;
|
||||
class QSslCertificateExtension;
|
||||
class QSslCipher;
|
||||
class QSslEllipticCurve;
|
||||
class QSslKey;
|
||||
class QSslPreSharedKeyAuthenticator;
|
||||
class QSslServer;
|
||||
class QTcpServer;
|
||||
class QTcpSocket;
|
||||
class QUdpSocket;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QABSTRACTNETWORKCACHE_IDX = 0,
|
||||
SBK_QABSTRACTSOCKET_SOCKETTYPE_IDX = 16,
|
||||
SBK_QABSTRACTSOCKET_NETWORKLAYERPROTOCOL_IDX = 6,
|
||||
SBK_QABSTRACTSOCKET_SOCKETERROR_IDX = 10,
|
||||
SBK_QABSTRACTSOCKET_SOCKETSTATE_IDX = 14,
|
||||
SBK_QABSTRACTSOCKET_SOCKETOPTION_IDX = 12,
|
||||
SBK_QABSTRACTSOCKET_BINDFLAG_IDX = 4,
|
||||
SBK_QFLAGS_QABSTRACTSOCKET_BINDFLAG_IDX = 56,
|
||||
SBK_QABSTRACTSOCKET_PAUSEMODE_IDX = 8,
|
||||
SBK_QFLAGS_QABSTRACTSOCKET_PAUSEMODE_IDX = 58,
|
||||
SBK_QABSTRACTSOCKET_IDX = 2,
|
||||
SBK_QAUTHENTICATOR_IDX = 18,
|
||||
SBK_QDNSDOMAINNAMERECORD_IDX = 20,
|
||||
SBK_QDNSHOSTADDRESSRECORD_IDX = 22,
|
||||
SBK_QDNSLOOKUP_ERROR_IDX = 26,
|
||||
SBK_QDNSLOOKUP_TYPE_IDX = 30,
|
||||
SBK_QDNSLOOKUP_PROTOCOL_IDX = 28,
|
||||
SBK_QDNSLOOKUP_IDX = 24,
|
||||
SBK_QDNSMAILEXCHANGERECORD_IDX = 32,
|
||||
SBK_QDNSSERVICERECORD_IDX = 34,
|
||||
SBK_QDNSTEXTRECORD_IDX = 36,
|
||||
SBK_QDNSTLSASSOCIATIONRECORD_CERTIFICATEUSAGE_IDX = 40,
|
||||
SBK_QDNSTLSASSOCIATIONRECORD_SELECTOR_IDX = 44,
|
||||
SBK_QDNSTLSASSOCIATIONRECORD_MATCHINGTYPE_IDX = 42,
|
||||
SBK_QDNSTLSASSOCIATIONRECORD_IDX = 38,
|
||||
SBK_QDTLS_HANDSHAKESTATE_IDX = 48,
|
||||
SBK_QDTLS_IDX = 46,
|
||||
SBK_QDTLSCLIENTVERIFIER_IDX = 50,
|
||||
SBK_QDTLSCLIENTVERIFIER_GENERATORPARAMETERS_IDX = 52,
|
||||
SBK_QFORMDATABUILDER_OPTION_IDX = 80,
|
||||
SBK_QFLAGS_QFORMDATABUILDER_OPTION_IDX = 60,
|
||||
SBK_QFORMDATABUILDER_IDX = 78,
|
||||
SBK_QFORMDATAPARTBUILDER_IDX = 82,
|
||||
SBK_QHOSTADDRESS_SPECIALADDRESS_IDX = 88,
|
||||
SBK_QHOSTADDRESS_CONVERSIONMODEFLAG_IDX = 86,
|
||||
SBK_QFLAGS_QHOSTADDRESS_CONVERSIONMODEFLAG_IDX = 62,
|
||||
SBK_QHOSTADDRESS_IDX = 84,
|
||||
SBK_QHOSTINFO_HOSTINFOERROR_IDX = 92,
|
||||
SBK_QHOSTINFO_IDX = 90,
|
||||
SBK_QHSTSPOLICY_POLICYFLAG_IDX = 96,
|
||||
SBK_QFLAGS_QHSTSPOLICY_POLICYFLAG_IDX = 64,
|
||||
SBK_QHSTSPOLICY_IDX = 94,
|
||||
SBK_QHTTP1CONFIGURATION_IDX = 98,
|
||||
SBK_QHTTP2CONFIGURATION_IDX = 100,
|
||||
SBK_QHTTPHEADERS_WELLKNOWNHEADER_IDX = 104,
|
||||
SBK_QHTTPHEADERS_IDX = 102,
|
||||
SBK_QHTTPMULTIPART_CONTENTTYPE_IDX = 108,
|
||||
SBK_QHTTPMULTIPART_IDX = 106,
|
||||
SBK_QHTTPPART_IDX = 110,
|
||||
SBK_QIPV6ADDRESS_IDX = 112,
|
||||
SBK_QLOCALSERVER_SOCKETOPTION_IDX = 116,
|
||||
SBK_QFLAGS_QLOCALSERVER_SOCKETOPTION_IDX = 66,
|
||||
SBK_QLOCALSERVER_IDX = 114,
|
||||
SBK_QLOCALSOCKET_LOCALSOCKETERROR_IDX = 120,
|
||||
SBK_QLOCALSOCKET_LOCALSOCKETSTATE_IDX = 122,
|
||||
SBK_QLOCALSOCKET_SOCKETOPTION_IDX = 124,
|
||||
SBK_QFLAGS_QLOCALSOCKET_SOCKETOPTION_IDX = 68,
|
||||
SBK_QLOCALSOCKET_IDX = 118,
|
||||
SBK_QNETWORKACCESSMANAGER_OPERATION_IDX = 128,
|
||||
SBK_QNETWORKACCESSMANAGER_IDX = 126,
|
||||
SBK_QNETWORKADDRESSENTRY_DNSELIGIBILITYSTATUS_IDX = 132,
|
||||
SBK_QNETWORKADDRESSENTRY_IDX = 130,
|
||||
SBK_QNETWORKCACHEMETADATA_IDX = 134,
|
||||
SBK_QNETWORKCOOKIE_RAWFORM_IDX = 138,
|
||||
SBK_QNETWORKCOOKIE_SAMESITE_IDX = 140,
|
||||
SBK_QNETWORKCOOKIE_IDX = 136,
|
||||
SBK_QNETWORKCOOKIEJAR_IDX = 142,
|
||||
SBK_QNETWORKDATAGRAM_IDX = 144,
|
||||
SBK_QNETWORKDISKCACHE_IDX = 146,
|
||||
SBK_QNETWORKINFORMATION_REACHABILITY_IDX = 152,
|
||||
SBK_QNETWORKINFORMATION_TRANSPORTMEDIUM_IDX = 154,
|
||||
SBK_QNETWORKINFORMATION_FEATURE_IDX = 150,
|
||||
SBK_QFLAGS_QNETWORKINFORMATION_FEATURE_IDX = 70,
|
||||
SBK_QNETWORKINFORMATION_IDX = 148,
|
||||
SBK_QNETWORKINTERFACE_INTERFACEFLAG_IDX = 158,
|
||||
SBK_QFLAGS_QNETWORKINTERFACE_INTERFACEFLAG_IDX = 72,
|
||||
SBK_QNETWORKINTERFACE_INTERFACETYPE_IDX = 160,
|
||||
SBK_QNETWORKINTERFACE_IDX = 156,
|
||||
SBK_QNETWORKPROXY_PROXYTYPE_IDX = 166,
|
||||
SBK_QNETWORKPROXY_CAPABILITY_IDX = 164,
|
||||
SBK_QFLAGS_QNETWORKPROXY_CAPABILITY_IDX = 74,
|
||||
SBK_QNETWORKPROXY_IDX = 162,
|
||||
SBK_QNETWORKPROXYFACTORY_IDX = 168,
|
||||
SBK_QNETWORKPROXYQUERY_QUERYTYPE_IDX = 172,
|
||||
SBK_QNETWORKPROXYQUERY_IDX = 170,
|
||||
SBK_QNETWORKREPLY_NETWORKERROR_IDX = 176,
|
||||
SBK_QNETWORKREPLY_IDX = 174,
|
||||
SBK_QNETWORKREQUEST_KNOWNHEADERS_IDX = 184,
|
||||
SBK_QNETWORKREQUEST_ATTRIBUTE_IDX = 180,
|
||||
SBK_QNETWORKREQUEST_CACHELOADCONTROL_IDX = 182,
|
||||
SBK_QNETWORKREQUEST_LOADCONTROL_IDX = 186,
|
||||
SBK_QNETWORKREQUEST_PRIORITY_IDX = 188,
|
||||
SBK_QNETWORKREQUEST_REDIRECTPOLICY_IDX = 190,
|
||||
SBK_QNETWORKREQUEST_TRANSFERTIMEOUTCONSTANT_IDX = 192,
|
||||
SBK_QNETWORKREQUEST_IDX = 178,
|
||||
SBK_QNETWORKREQUESTFACTORY_IDX = 194,
|
||||
SBK_QOCSPRESPONSE_IDX = 198,
|
||||
SBK_QTNETWORKQPASSWORDDIGESTOR_IDX = 202,
|
||||
SBK_QRESTACCESSMANAGER_IDX = 204,
|
||||
SBK_QRESTREPLY_IDX = 206,
|
||||
SBK_QSSL_KEYTYPE_IDX = 222,
|
||||
SBK_QSSL_ENCODINGFORMAT_IDX = 216,
|
||||
SBK_QSSL_KEYALGORITHM_IDX = 220,
|
||||
SBK_QSSL_ALTERNATIVENAMEENTRYTYPE_IDX = 214,
|
||||
SBK_QSSL_SSLPROTOCOL_IDX = 226,
|
||||
SBK_QSSL_SSLOPTION_IDX = 224,
|
||||
SBK_QFLAGS_QSSL_SSLOPTION_IDX = 76,
|
||||
SBK_QSSL_ALERTLEVEL_IDX = 210,
|
||||
SBK_QSSL_ALERTTYPE_IDX = 212,
|
||||
SBK_QSSL_IMPLEMENTEDCLASS_IDX = 218,
|
||||
SBK_QSSL_SUPPORTEDFEATURE_IDX = 228,
|
||||
SBK_QTNETWORKQSSL_IDX = 208,
|
||||
SBK_QSSLCERTIFICATE_SUBJECTINFO_IDX = 234,
|
||||
SBK_QSSLCERTIFICATE_PATTERNSYNTAX_IDX = 232,
|
||||
SBK_QSSLCERTIFICATE_IDX = 230,
|
||||
SBK_QSSLCERTIFICATEEXTENSION_IDX = 236,
|
||||
SBK_QSSLCIPHER_IDX = 238,
|
||||
SBK_QSSLCONFIGURATION_NEXTPROTOCOLNEGOTIATIONSTATUS_IDX = 242,
|
||||
SBK_QSSLCONFIGURATION_IDX = 240,
|
||||
SBK_QSSLDIFFIEHELLMANPARAMETERS_ERROR_IDX = 246,
|
||||
SBK_QSSLDIFFIEHELLMANPARAMETERS_IDX = 244,
|
||||
SBK_QSSLELLIPTICCURVE_IDX = 248,
|
||||
SBK_QSSLERROR_SSLERROR_IDX = 252,
|
||||
SBK_QSSLERROR_IDX = 250,
|
||||
SBK_QSSLKEY_IDX = 254,
|
||||
SBK_QSSLPRESHAREDKEYAUTHENTICATOR_IDX = 256,
|
||||
SBK_QSSLSERVER_IDX = 258,
|
||||
SBK_QSSLSOCKET_SSLMODE_IDX = 264,
|
||||
SBK_QSSLSOCKET_PEERVERIFYMODE_IDX = 262,
|
||||
SBK_QSSLSOCKET_IDX = 260,
|
||||
SBK_QTCPSERVER_IDX = 266,
|
||||
SBK_QTCPSOCKET_IDX = 268,
|
||||
SBK_QUDPSOCKET_IDX = 270,
|
||||
SBK_QDTLSERROR_IDX = 54,
|
||||
SBK_QOCSPCERTIFICATESTATUS_IDX = 196,
|
||||
SBK_QOCSPREVOCATIONREASON_IDX = 200,
|
||||
SBK_QTNETWORK_IDX_COUNT = 272,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QAbstractNetworkCache_IDX = 0,
|
||||
SBK_QAbstractSocket_SocketType_IDX = 8,
|
||||
SBK_QAbstractSocket_NetworkLayerProtocol_IDX = 3,
|
||||
SBK_QAbstractSocket_SocketError_IDX = 5,
|
||||
SBK_QAbstractSocket_SocketState_IDX = 7,
|
||||
SBK_QAbstractSocket_SocketOption_IDX = 6,
|
||||
SBK_QAbstractSocket_BindFlag_IDX = 2,
|
||||
SBK_QFlags_QAbstractSocket_BindFlag_IDX = 28,
|
||||
SBK_QAbstractSocket_PauseMode_IDX = 4,
|
||||
SBK_QFlags_QAbstractSocket_PauseMode_IDX = 29,
|
||||
SBK_QAbstractSocket_IDX = 1,
|
||||
SBK_QAuthenticator_IDX = 9,
|
||||
SBK_QDnsDomainNameRecord_IDX = 10,
|
||||
SBK_QDnsHostAddressRecord_IDX = 11,
|
||||
SBK_QDnsLookup_Error_IDX = 13,
|
||||
SBK_QDnsLookup_Type_IDX = 15,
|
||||
SBK_QDnsLookup_Protocol_IDX = 14,
|
||||
SBK_QDnsLookup_IDX = 12,
|
||||
SBK_QDnsMailExchangeRecord_IDX = 16,
|
||||
SBK_QDnsServiceRecord_IDX = 17,
|
||||
SBK_QDnsTextRecord_IDX = 18,
|
||||
SBK_QDnsTlsAssociationRecord_CertificateUsage_IDX = 20,
|
||||
SBK_QDnsTlsAssociationRecord_Selector_IDX = 22,
|
||||
SBK_QDnsTlsAssociationRecord_MatchingType_IDX = 21,
|
||||
SBK_QDnsTlsAssociationRecord_IDX = 19,
|
||||
SBK_QDtls_HandshakeState_IDX = 24,
|
||||
SBK_QDtls_IDX = 23,
|
||||
SBK_QDtlsClientVerifier_IDX = 25,
|
||||
SBK_QDtlsClientVerifier_GeneratorParameters_IDX = 26,
|
||||
SBK_QFormDataBuilder_Option_IDX = 40,
|
||||
SBK_QFlags_QFormDataBuilder_Option_IDX = 30,
|
||||
SBK_QFormDataBuilder_IDX = 39,
|
||||
SBK_QFormDataPartBuilder_IDX = 41,
|
||||
SBK_QHostAddress_SpecialAddress_IDX = 44,
|
||||
SBK_QHostAddress_ConversionModeFlag_IDX = 43,
|
||||
SBK_QFlags_QHostAddress_ConversionModeFlag_IDX = 31,
|
||||
SBK_QHostAddress_IDX = 42,
|
||||
SBK_QHostInfo_HostInfoError_IDX = 46,
|
||||
SBK_QHostInfo_IDX = 45,
|
||||
SBK_QHstsPolicy_PolicyFlag_IDX = 48,
|
||||
SBK_QFlags_QHstsPolicy_PolicyFlag_IDX = 32,
|
||||
SBK_QHstsPolicy_IDX = 47,
|
||||
SBK_QHttp1Configuration_IDX = 49,
|
||||
SBK_QHttp2Configuration_IDX = 50,
|
||||
SBK_QHttpHeaders_WellKnownHeader_IDX = 52,
|
||||
SBK_QHttpHeaders_IDX = 51,
|
||||
SBK_QHttpMultiPart_ContentType_IDX = 54,
|
||||
SBK_QHttpMultiPart_IDX = 53,
|
||||
SBK_QHttpPart_IDX = 55,
|
||||
SBK_QIPv6Address_IDX = 56,
|
||||
SBK_QLocalServer_SocketOption_IDX = 58,
|
||||
SBK_QFlags_QLocalServer_SocketOption_IDX = 33,
|
||||
SBK_QLocalServer_IDX = 57,
|
||||
SBK_QLocalSocket_LocalSocketError_IDX = 60,
|
||||
SBK_QLocalSocket_LocalSocketState_IDX = 61,
|
||||
SBK_QLocalSocket_SocketOption_IDX = 62,
|
||||
SBK_QFlags_QLocalSocket_SocketOption_IDX = 34,
|
||||
SBK_QLocalSocket_IDX = 59,
|
||||
SBK_QNetworkAccessManager_Operation_IDX = 64,
|
||||
SBK_QNetworkAccessManager_IDX = 63,
|
||||
SBK_QNetworkAddressEntry_DnsEligibilityStatus_IDX = 66,
|
||||
SBK_QNetworkAddressEntry_IDX = 65,
|
||||
SBK_QNetworkCacheMetaData_IDX = 67,
|
||||
SBK_QNetworkCookie_RawForm_IDX = 69,
|
||||
SBK_QNetworkCookie_SameSite_IDX = 70,
|
||||
SBK_QNetworkCookie_IDX = 68,
|
||||
SBK_QNetworkCookieJar_IDX = 71,
|
||||
SBK_QNetworkDatagram_IDX = 72,
|
||||
SBK_QNetworkDiskCache_IDX = 73,
|
||||
SBK_QNetworkInformation_Reachability_IDX = 76,
|
||||
SBK_QNetworkInformation_TransportMedium_IDX = 77,
|
||||
SBK_QNetworkInformation_Feature_IDX = 75,
|
||||
SBK_QFlags_QNetworkInformation_Feature_IDX = 35,
|
||||
SBK_QNetworkInformation_IDX = 74,
|
||||
SBK_QNetworkInterface_InterfaceFlag_IDX = 79,
|
||||
SBK_QFlags_QNetworkInterface_InterfaceFlag_IDX = 36,
|
||||
SBK_QNetworkInterface_InterfaceType_IDX = 80,
|
||||
SBK_QNetworkInterface_IDX = 78,
|
||||
SBK_QNetworkProxy_ProxyType_IDX = 83,
|
||||
SBK_QNetworkProxy_Capability_IDX = 82,
|
||||
SBK_QFlags_QNetworkProxy_Capability_IDX = 37,
|
||||
SBK_QNetworkProxy_IDX = 81,
|
||||
SBK_QNetworkProxyFactory_IDX = 84,
|
||||
SBK_QNetworkProxyQuery_QueryType_IDX = 86,
|
||||
SBK_QNetworkProxyQuery_IDX = 85,
|
||||
SBK_QNetworkReply_NetworkError_IDX = 88,
|
||||
SBK_QNetworkReply_IDX = 87,
|
||||
SBK_QNetworkRequest_KnownHeaders_IDX = 92,
|
||||
SBK_QNetworkRequest_Attribute_IDX = 90,
|
||||
SBK_QNetworkRequest_CacheLoadControl_IDX = 91,
|
||||
SBK_QNetworkRequest_LoadControl_IDX = 93,
|
||||
SBK_QNetworkRequest_Priority_IDX = 94,
|
||||
SBK_QNetworkRequest_RedirectPolicy_IDX = 95,
|
||||
SBK_QNetworkRequest_TransferTimeoutConstant_IDX = 96,
|
||||
SBK_QNetworkRequest_IDX = 89,
|
||||
SBK_QNetworkRequestFactory_IDX = 97,
|
||||
SBK_QOcspResponse_IDX = 99,
|
||||
SBK_QtNetworkQPasswordDigestor_IDX = 101,
|
||||
SBK_QRestAccessManager_IDX = 102,
|
||||
SBK_QRestReply_IDX = 103,
|
||||
SBK_QSsl_KeyType_IDX = 111,
|
||||
SBK_QSsl_EncodingFormat_IDX = 108,
|
||||
SBK_QSsl_KeyAlgorithm_IDX = 110,
|
||||
SBK_QSsl_AlternativeNameEntryType_IDX = 107,
|
||||
SBK_QSsl_SslProtocol_IDX = 113,
|
||||
SBK_QSsl_SslOption_IDX = 112,
|
||||
SBK_QFlags_QSsl_SslOption_IDX = 38,
|
||||
SBK_QSsl_AlertLevel_IDX = 105,
|
||||
SBK_QSsl_AlertType_IDX = 106,
|
||||
SBK_QSsl_ImplementedClass_IDX = 109,
|
||||
SBK_QSsl_SupportedFeature_IDX = 114,
|
||||
SBK_QtNetworkQSsl_IDX = 104,
|
||||
SBK_QSslCertificate_SubjectInfo_IDX = 117,
|
||||
SBK_QSslCertificate_PatternSyntax_IDX = 116,
|
||||
SBK_QSslCertificate_IDX = 115,
|
||||
SBK_QSslCertificateExtension_IDX = 118,
|
||||
SBK_QSslCipher_IDX = 119,
|
||||
SBK_QSslConfiguration_NextProtocolNegotiationStatus_IDX = 121,
|
||||
SBK_QSslConfiguration_IDX = 120,
|
||||
SBK_QSslDiffieHellmanParameters_Error_IDX = 123,
|
||||
SBK_QSslDiffieHellmanParameters_IDX = 122,
|
||||
SBK_QSslEllipticCurve_IDX = 124,
|
||||
SBK_QSslError_SslError_IDX = 126,
|
||||
SBK_QSslError_IDX = 125,
|
||||
SBK_QSslKey_IDX = 127,
|
||||
SBK_QSslPreSharedKeyAuthenticator_IDX = 128,
|
||||
SBK_QSslServer_IDX = 129,
|
||||
SBK_QSslSocket_SslMode_IDX = 132,
|
||||
SBK_QSslSocket_PeerVerifyMode_IDX = 131,
|
||||
SBK_QSslSocket_IDX = 130,
|
||||
SBK_QTcpServer_IDX = 133,
|
||||
SBK_QTcpSocket_IDX = 134,
|
||||
SBK_QUdpSocket_IDX = 135,
|
||||
SBK_QDtlsError_IDX = 27,
|
||||
SBK_QOcspCertificateStatus_IDX = 98,
|
||||
SBK_QOcspRevocationReason_IDX = 100,
|
||||
SBK_QtNetwork_IDX_COUNT = 136,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtNetworkTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtNetworkTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtNetworkModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtNetworkTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTNETWORK_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTNETWORK_QLIST_QSSLCERTIFICATE_IDX = 1, // QList<QSslCertificate>
|
||||
SBK_QTNETWORK_QLIST_QBYTEARRAY_IDX = 2, // QList<QByteArray>
|
||||
SBK_QTNETWORK_QMAP_QBYTEARRAY_QVARIANT_IDX = 3, // QMap<QByteArray,QVariant>
|
||||
SBK_QTNETWORK_QLIST_QSSLCIPHER_IDX = 4, // QList<QSslCipher>
|
||||
SBK_QTNETWORK_QLIST_QSSLELLIPTICCURVE_IDX = 5, // QList<QSslEllipticCurve>
|
||||
SBK_QTNETWORK_QLIST_QNETWORKPROXY_IDX = 6, // QList<QNetworkProxy>
|
||||
SBK_QTNETWORK_QLIST_QNETWORKADDRESSENTRY_IDX = 7, // QList<QNetworkAddressEntry>
|
||||
SBK_QTNETWORK_QLIST_QHOSTADDRESS_IDX = 8, // QList<QHostAddress>
|
||||
SBK_QTNETWORK_QLIST_QNETWORKINTERFACE_IDX = 9, // QList<QNetworkInterface>
|
||||
SBK_QTNETWORK_QHASH_QNETWORKREQUEST_ATTRIBUTE_QVARIANT_IDX = 10, // QHash<QNetworkRequest::Attribute,QVariant>
|
||||
SBK_QTNETWORK_STD_PAIR_QBYTEARRAY_QBYTEARRAY_IDX = 11, // std::pair<QByteArray,QByteArray>
|
||||
SBK_QTNETWORK_QLIST_STD_PAIR_QBYTEARRAY_QBYTEARRAY_IDX = 12, // QList<std::pair<QByteArray,QByteArray>>
|
||||
SBK_QTNETWORK_QMULTIHASH_QBYTEARRAY_QBYTEARRAY_IDX = 13, // QMultiHash<QByteArray,QByteArray>
|
||||
SBK_QTNETWORK_QMULTIMAP_QBYTEARRAY_QBYTEARRAY_IDX = 14, // QMultiMap<QByteArray,QByteArray>
|
||||
SBK_QTNETWORK_QHASH_QSTRING_QVARIANT_IDX = 15, // QHash<QString,QVariant>
|
||||
SBK_QTNETWORK_QMAP_QSTRING_QVARIANT_IDX = 16, // QMap<QString,QVariant>
|
||||
SBK_QTNETWORK_QLIST_QNETWORKCOOKIE_IDX = 17, // QList<QNetworkCookie>
|
||||
SBK_QTNETWORK_QLIST_QHSTSPOLICY_IDX = 18, // QList<QHstsPolicy>
|
||||
SBK_QTNETWORK_QLIST_QSSLERROR_IDX = 19, // QList<QSslError>
|
||||
SBK_QTNETWORK_QLIST_QDNSDOMAINNAMERECORD_IDX = 20, // QList<QDnsDomainNameRecord>
|
||||
SBK_QTNETWORK_QLIST_QDNSHOSTADDRESSRECORD_IDX = 21, // QList<QDnsHostAddressRecord>
|
||||
SBK_QTNETWORK_QLIST_QDNSMAILEXCHANGERECORD_IDX = 22, // QList<QDnsMailExchangeRecord>
|
||||
SBK_QTNETWORK_QLIST_QDNSSERVICERECORD_IDX = 23, // QList<QDnsServiceRecord>
|
||||
SBK_QTNETWORK_QLIST_QDNSTEXTRECORD_IDX = 24, // QList<QDnsTextRecord>
|
||||
SBK_QTNETWORK_QLIST_QDNSTLSASSOCIATIONRECORD_IDX = 25, // QList<QDnsTlsAssociationRecord>
|
||||
SBK_QTNETWORK_STD_PAIR_QHOSTADDRESS_INT_IDX = 26, // std::pair<QHostAddress,int>
|
||||
SBK_QTNETWORK_QLIST_QSTRING_IDX = 27, // QList<QString>
|
||||
SBK_QTNETWORK_QLIST_QSSL_IMPLEMENTEDCLASS_IDX = 28, // QList<QSsl::ImplementedClass>
|
||||
SBK_QTNETWORK_QLIST_QOCSPRESPONSE_IDX = 29, // QList<QOcspResponse>
|
||||
SBK_QTNETWORK_QLIST_QSSL_SUPPORTEDFEATURE_IDX = 30, // QList<QSsl::SupportedFeature>
|
||||
SBK_QTNETWORK_QLIST_QSSL_SSLPROTOCOL_IDX = 31, // QList<QSsl::SslProtocol>
|
||||
SBK_QTNETWORK_QLIST_QSSLCERTIFICATEEXTENSION_IDX = 32, // QList<QSslCertificateExtension>
|
||||
SBK_QTNETWORK_QMULTIMAP_QSSL_ALTERNATIVENAMEENTRYTYPE_QSTRING_IDX = 33, // QMultiMap<QSsl::AlternativeNameEntryType,QString>
|
||||
SBK_QTNETWORK_QLIST_QVARIANT_IDX = 34, // QList<QVariant>
|
||||
SBK_QTNETWORK_CONVERTERS_IDX_COUNT = 35,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtNetwork_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtNetwork_QList_QSslCertificate_IDX = 1, // QList<QSslCertificate>
|
||||
SBK_QtNetwork_QList_QByteArray_IDX = 2, // QList<QByteArray>
|
||||
SBK_QtNetwork_QMap_QByteArray_QVariant_IDX = 3, // QMap<QByteArray,QVariant>
|
||||
SBK_QtNetwork_QList_QSslCipher_IDX = 4, // QList<QSslCipher>
|
||||
SBK_QtNetwork_QList_QSslEllipticCurve_IDX = 5, // QList<QSslEllipticCurve>
|
||||
SBK_QtNetwork_QList_QNetworkProxy_IDX = 6, // QList<QNetworkProxy>
|
||||
SBK_QtNetwork_QList_QNetworkAddressEntry_IDX = 7, // QList<QNetworkAddressEntry>
|
||||
SBK_QtNetwork_QList_QHostAddress_IDX = 8, // QList<QHostAddress>
|
||||
SBK_QtNetwork_QList_QNetworkInterface_IDX = 9, // QList<QNetworkInterface>
|
||||
SBK_QtNetwork_QHash_QNetworkRequest_Attribute_QVariant_IDX = 10, // QHash<QNetworkRequest::Attribute,QVariant>
|
||||
SBK_QtNetwork_std_pair_QByteArray_QByteArray_IDX = 11, // std::pair<QByteArray,QByteArray>
|
||||
SBK_QtNetwork_QList_std_pair_QByteArray_QByteArray_IDX = 12, // QList<std::pair<QByteArray,QByteArray>>
|
||||
SBK_QtNetwork_QMultiHash_QByteArray_QByteArray_IDX = 13, // QMultiHash<QByteArray,QByteArray>
|
||||
SBK_QtNetwork_QMultiMap_QByteArray_QByteArray_IDX = 14, // QMultiMap<QByteArray,QByteArray>
|
||||
SBK_QtNetwork_QHash_QString_QVariant_IDX = 15, // QHash<QString,QVariant>
|
||||
SBK_QtNetwork_QMap_QString_QVariant_IDX = 16, // QMap<QString,QVariant>
|
||||
SBK_QtNetwork_QList_QNetworkCookie_IDX = 17, // QList<QNetworkCookie>
|
||||
SBK_QtNetwork_QList_QHstsPolicy_IDX = 18, // QList<QHstsPolicy>
|
||||
SBK_QtNetwork_QList_QSslError_IDX = 19, // QList<QSslError>
|
||||
SBK_QtNetwork_QList_QDnsDomainNameRecord_IDX = 20, // QList<QDnsDomainNameRecord>
|
||||
SBK_QtNetwork_QList_QDnsHostAddressRecord_IDX = 21, // QList<QDnsHostAddressRecord>
|
||||
SBK_QtNetwork_QList_QDnsMailExchangeRecord_IDX = 22, // QList<QDnsMailExchangeRecord>
|
||||
SBK_QtNetwork_QList_QDnsServiceRecord_IDX = 23, // QList<QDnsServiceRecord>
|
||||
SBK_QtNetwork_QList_QDnsTextRecord_IDX = 24, // QList<QDnsTextRecord>
|
||||
SBK_QtNetwork_QList_QDnsTlsAssociationRecord_IDX = 25, // QList<QDnsTlsAssociationRecord>
|
||||
SBK_QtNetwork_std_pair_QHostAddress_int_IDX = 26, // std::pair<QHostAddress,int>
|
||||
SBK_QtNetwork_QList_QString_IDX = 27, // QList<QString>
|
||||
SBK_QtNetwork_QList_QSsl_ImplementedClass_IDX = 28, // QList<QSsl::ImplementedClass>
|
||||
SBK_QtNetwork_QList_QOcspResponse_IDX = 29, // QList<QOcspResponse>
|
||||
SBK_QtNetwork_QList_QSsl_SupportedFeature_IDX = 30, // QList<QSsl::SupportedFeature>
|
||||
SBK_QtNetwork_QList_QSsl_SslProtocol_IDX = 31, // QList<QSsl::SslProtocol>
|
||||
SBK_QtNetwork_QList_QSslCertificateExtension_IDX = 32, // QList<QSslCertificateExtension>
|
||||
SBK_QtNetwork_QMultiMap_QSsl_AlternativeNameEntryType_QString_IDX = 33, // QMultiMap<QSsl::AlternativeNameEntryType,QString>
|
||||
SBK_QtNetwork_QList_QVariant_IDX = 34, // QList<QVariant>
|
||||
SBK_QtNetwork_CONVERTERS_IDX_COUNT = 35,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
#if QT_CONFIG(ssl)
|
||||
template<> inline PyTypeObject *SbkType< ::QDtlsError >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QDtlsError_IDX]); }
|
||||
#endif
|
||||
#if QT_CONFIG(ssl)
|
||||
template<> inline PyTypeObject *SbkType< ::QOcspCertificateStatus >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QOcspCertificateStatus_IDX]); }
|
||||
#endif
|
||||
#if QT_CONFIG(ssl)
|
||||
template<> inline PyTypeObject *SbkType< ::QOcspRevocationReason >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QOcspRevocationReason_IDX]); }
|
||||
#endif
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractNetworkCache >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QAbstractNetworkCache_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractSocket::SocketType >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QAbstractSocket_SocketType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractSocket::NetworkLayerProtocol >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QAbstractSocket_NetworkLayerProtocol_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractSocket::SocketError >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QAbstractSocket_SocketError_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractSocket::SocketState >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QAbstractSocket_SocketState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractSocket::SocketOption >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QAbstractSocket_SocketOption_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractSocket::BindFlag >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QAbstractSocket_BindFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QAbstractSocket::BindFlag> >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QFlags_QAbstractSocket_BindFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractSocket::PauseMode >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QAbstractSocket_PauseMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QAbstractSocket::PauseMode> >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QFlags_QAbstractSocket_PauseMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractSocket >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QAbstractSocket_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAuthenticator >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QAuthenticator_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDnsDomainNameRecord >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QDnsDomainNameRecord_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDnsHostAddressRecord >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QDnsHostAddressRecord_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDnsLookup::Error >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QDnsLookup_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDnsLookup::Type >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QDnsLookup_Type_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDnsLookup::Protocol >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QDnsLookup_Protocol_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDnsLookup >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QDnsLookup_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDnsMailExchangeRecord >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QDnsMailExchangeRecord_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDnsServiceRecord >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QDnsServiceRecord_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDnsTextRecord >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QDnsTextRecord_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDnsTlsAssociationRecord::CertificateUsage >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QDnsTlsAssociationRecord_CertificateUsage_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDnsTlsAssociationRecord::Selector >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QDnsTlsAssociationRecord_Selector_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDnsTlsAssociationRecord::MatchingType >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QDnsTlsAssociationRecord_MatchingType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDnsTlsAssociationRecord >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QDnsTlsAssociationRecord_IDX]); }
|
||||
#if QT_CONFIG(dtls)
|
||||
template<> inline PyTypeObject *SbkType< ::QDtls::HandshakeState >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QDtls_HandshakeState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDtls >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QDtls_IDX]); }
|
||||
#endif
|
||||
#if QT_CONFIG(dtls)
|
||||
template<> inline PyTypeObject *SbkType< ::QDtlsClientVerifier >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QDtlsClientVerifier_IDX]); }
|
||||
#endif
|
||||
#if QT_CONFIG(dtls)
|
||||
template<> inline PyTypeObject *SbkType< ::QDtlsClientVerifier::GeneratorParameters >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QDtlsClientVerifier_GeneratorParameters_IDX]); }
|
||||
#endif
|
||||
template<> inline PyTypeObject *SbkType< ::QFormDataBuilder::Option >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QFormDataBuilder_Option_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QFormDataBuilder::Option> >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QFlags_QFormDataBuilder_Option_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFormDataBuilder >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QFormDataBuilder_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFormDataPartBuilder >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QFormDataPartBuilder_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHostAddress::SpecialAddress >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QHostAddress_SpecialAddress_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHostAddress::ConversionModeFlag >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QHostAddress_ConversionModeFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QHostAddress::ConversionModeFlag> >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QFlags_QHostAddress_ConversionModeFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHostAddress >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QHostAddress_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHostInfo::HostInfoError >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QHostInfo_HostInfoError_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHostInfo >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QHostInfo_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHstsPolicy::PolicyFlag >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QHstsPolicy_PolicyFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QHstsPolicy::PolicyFlag> >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QFlags_QHstsPolicy_PolicyFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHstsPolicy >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QHstsPolicy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHttp1Configuration >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QHttp1Configuration_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHttp2Configuration >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QHttp2Configuration_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHttpHeaders::WellKnownHeader >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QHttpHeaders_WellKnownHeader_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHttpHeaders >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QHttpHeaders_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHttpMultiPart::ContentType >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QHttpMultiPart_ContentType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHttpMultiPart >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QHttpMultiPart_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHttpPart >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QHttpPart_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QIPv6Address >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QIPv6Address_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLocalServer::SocketOption >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QLocalServer_SocketOption_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QLocalServer::SocketOption> >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QFlags_QLocalServer_SocketOption_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLocalServer >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QLocalServer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLocalSocket::LocalSocketError >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QLocalSocket_LocalSocketError_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLocalSocket::LocalSocketState >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QLocalSocket_LocalSocketState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLocalSocket::SocketOption >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QLocalSocket_SocketOption_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QLocalSocket::SocketOption> >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QFlags_QLocalSocket_SocketOption_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLocalSocket >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QLocalSocket_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkAccessManager::Operation >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkAccessManager_Operation_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkAccessManager >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkAccessManager_IDX]); }
|
||||
#if QT_CONFIG(networkinterface)
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkAddressEntry::DnsEligibilityStatus >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkAddressEntry_DnsEligibilityStatus_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkAddressEntry >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkAddressEntry_IDX]); }
|
||||
#endif
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkCacheMetaData >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkCacheMetaData_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkCookie::RawForm >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkCookie_RawForm_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkCookie::SameSite >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkCookie_SameSite_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkCookie >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkCookie_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkCookieJar >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkCookieJar_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkDatagram >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkDatagram_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkDiskCache >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkDiskCache_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkInformation::Reachability >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkInformation_Reachability_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkInformation::TransportMedium >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkInformation_TransportMedium_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkInformation::Feature >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkInformation_Feature_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QNetworkInformation::Feature> >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QFlags_QNetworkInformation_Feature_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkInformation >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkInformation_IDX]); }
|
||||
#if QT_CONFIG(networkinterface)
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkInterface::InterfaceFlag >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkInterface_InterfaceFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QNetworkInterface::InterfaceFlag> >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QFlags_QNetworkInterface_InterfaceFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkInterface::InterfaceType >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkInterface_InterfaceType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkInterface >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkInterface_IDX]); }
|
||||
#endif
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkProxy::ProxyType >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkProxy_ProxyType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkProxy::Capability >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkProxy_Capability_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QNetworkProxy::Capability> >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QFlags_QNetworkProxy_Capability_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkProxy >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkProxy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkProxyFactory >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkProxyFactory_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkProxyQuery::QueryType >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkProxyQuery_QueryType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkProxyQuery >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkProxyQuery_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkReply::NetworkError >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkReply_NetworkError_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkReply >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkReply_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkRequest::KnownHeaders >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkRequest_KnownHeaders_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkRequest::Attribute >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkRequest_Attribute_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkRequest::CacheLoadControl >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkRequest_CacheLoadControl_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkRequest::LoadControl >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkRequest_LoadControl_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkRequest::Priority >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkRequest_Priority_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkRequest::RedirectPolicy >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkRequest_RedirectPolicy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkRequest::TransferTimeoutConstant >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkRequest_TransferTimeoutConstant_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkRequest >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkRequest_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNetworkRequestFactory >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QNetworkRequestFactory_IDX]); }
|
||||
#if QT_CONFIG(ssl)
|
||||
template<> inline PyTypeObject *SbkType< ::QOcspResponse >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QOcspResponse_IDX]); }
|
||||
#endif
|
||||
template<> inline PyTypeObject *SbkType< ::QRestAccessManager >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QRestAccessManager_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QRestReply >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QRestReply_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSsl::KeyType >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSsl_KeyType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSsl::EncodingFormat >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSsl_EncodingFormat_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSsl::KeyAlgorithm >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSsl_KeyAlgorithm_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSsl::AlternativeNameEntryType >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSsl_AlternativeNameEntryType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSsl::SslProtocol >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSsl_SslProtocol_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSsl::SslOption >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSsl_SslOption_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QSsl::SslOption> >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QFlags_QSsl_SslOption_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSsl::AlertLevel >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSsl_AlertLevel_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSsl::AlertType >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSsl_AlertType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSsl::ImplementedClass >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSsl_ImplementedClass_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSsl::SupportedFeature >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSsl_SupportedFeature_IDX]); }
|
||||
#if QT_CONFIG(ssl)
|
||||
template<> inline PyTypeObject *SbkType< ::QSslCertificate::SubjectInfo >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSslCertificate_SubjectInfo_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSslCertificate::PatternSyntax >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSslCertificate_PatternSyntax_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSslCertificate >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSslCertificate_IDX]); }
|
||||
#endif
|
||||
#if QT_CONFIG(ssl)
|
||||
template<> inline PyTypeObject *SbkType< ::QSslCertificateExtension >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSslCertificateExtension_IDX]); }
|
||||
#endif
|
||||
#if QT_CONFIG(ssl)
|
||||
template<> inline PyTypeObject *SbkType< ::QSslCipher >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSslCipher_IDX]); }
|
||||
#endif
|
||||
#if QT_CONFIG(ssl)
|
||||
template<> inline PyTypeObject *SbkType< ::QSslConfiguration::NextProtocolNegotiationStatus >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSslConfiguration_NextProtocolNegotiationStatus_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSslConfiguration >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSslConfiguration_IDX]); }
|
||||
#endif
|
||||
#if QT_CONFIG(ssl)
|
||||
template<> inline PyTypeObject *SbkType< ::QSslDiffieHellmanParameters::Error >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSslDiffieHellmanParameters_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSslDiffieHellmanParameters >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSslDiffieHellmanParameters_IDX]); }
|
||||
#endif
|
||||
#if QT_CONFIG(ssl)
|
||||
template<> inline PyTypeObject *SbkType< ::QSslEllipticCurve >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSslEllipticCurve_IDX]); }
|
||||
#endif
|
||||
#if QT_CONFIG(ssl)
|
||||
template<> inline PyTypeObject *SbkType< ::QSslError::SslError >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSslError_SslError_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSslError >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSslError_IDX]); }
|
||||
#endif
|
||||
template<> inline PyTypeObject *SbkType< ::QSslKey >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSslKey_IDX]); }
|
||||
#if QT_CONFIG(ssl)
|
||||
template<> inline PyTypeObject *SbkType< ::QSslPreSharedKeyAuthenticator >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSslPreSharedKeyAuthenticator_IDX]); }
|
||||
#endif
|
||||
#if QT_CONFIG(ssl)
|
||||
template<> inline PyTypeObject *SbkType< ::QSslServer >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSslServer_IDX]); }
|
||||
#endif
|
||||
#if QT_CONFIG(ssl)
|
||||
template<> inline PyTypeObject *SbkType< ::QSslSocket::SslMode >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSslSocket_SslMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSslSocket::PeerVerifyMode >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSslSocket_PeerVerifyMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSslSocket >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QSslSocket_IDX]); }
|
||||
#endif
|
||||
template<> inline PyTypeObject *SbkType< ::QTcpServer >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QTcpServer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QTcpSocket >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QTcpSocket_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QUdpSocket >() { return Shiboken::Module::get(SbkPySide6_QtNetworkTypeStructs[SBK_QUdpSocket_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTNETWORK_PYTHON_H
|
||||
|
||||
@@ -0,0 +1,142 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTNETWORKAUTH_PYTHON_H
|
||||
#define SBK_QTNETWORKAUTH_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtnetwork_python.h>
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtNetworkAuth/qabstractoauth.h>
|
||||
#include <QtNetworkAuth/qabstractoauth2.h>
|
||||
#include <QtNetworkAuth/qoauth1.h>
|
||||
#include <QtNetworkAuth/qoauth1signature.h>
|
||||
#include <QtNetworkAuth/qoauth2authorizationcodeflow.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QAbstractOAuthReplyHandler;
|
||||
class QOAuth2DeviceAuthorizationFlow;
|
||||
class QOAuthHttpServerReplyHandler;
|
||||
class QOAuthOobReplyHandler;
|
||||
class QOAuthUriSchemeReplyHandler;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QABSTRACTOAUTH_STATUS_IDX = 12,
|
||||
SBK_QABSTRACTOAUTH_STAGE_IDX = 10,
|
||||
SBK_QABSTRACTOAUTH_ERROR_IDX = 8,
|
||||
SBK_QABSTRACTOAUTH_CONTENTTYPE_IDX = 6,
|
||||
SBK_QABSTRACTOAUTH_IDX = 0,
|
||||
SBK_QABSTRACTOAUTH2_NONCEMODE_IDX = 4,
|
||||
SBK_QABSTRACTOAUTH2_IDX = 2,
|
||||
SBK_QABSTRACTOAUTHREPLYHANDLER_IDX = 14,
|
||||
SBK_QOAUTH1_SIGNATUREMETHOD_IDX = 18,
|
||||
SBK_QOAUTH1_IDX = 16,
|
||||
SBK_QOAUTH1SIGNATURE_HTTPREQUESTMETHOD_IDX = 22,
|
||||
SBK_QOAUTH1SIGNATURE_IDX = 20,
|
||||
SBK_QOAUTH2AUTHORIZATIONCODEFLOW_PKCEMETHOD_IDX = 26,
|
||||
SBK_QOAUTH2AUTHORIZATIONCODEFLOW_IDX = 24,
|
||||
SBK_QOAUTH2DEVICEAUTHORIZATIONFLOW_IDX = 28,
|
||||
SBK_QOAUTHHTTPSERVERREPLYHANDLER_IDX = 30,
|
||||
SBK_QOAUTHOOBREPLYHANDLER_IDX = 32,
|
||||
SBK_QOAUTHURISCHEMEREPLYHANDLER_IDX = 34,
|
||||
SBK_QTNETWORKAUTH_IDX_COUNT = 36,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QAbstractOAuth_Status_IDX = 6,
|
||||
SBK_QAbstractOAuth_Stage_IDX = 5,
|
||||
SBK_QAbstractOAuth_Error_IDX = 4,
|
||||
SBK_QAbstractOAuth_ContentType_IDX = 3,
|
||||
SBK_QAbstractOAuth_IDX = 0,
|
||||
SBK_QAbstractOAuth2_NonceMode_IDX = 2,
|
||||
SBK_QAbstractOAuth2_IDX = 1,
|
||||
SBK_QAbstractOAuthReplyHandler_IDX = 7,
|
||||
SBK_QOAuth1_SignatureMethod_IDX = 9,
|
||||
SBK_QOAuth1_IDX = 8,
|
||||
SBK_QOAuth1Signature_HttpRequestMethod_IDX = 11,
|
||||
SBK_QOAuth1Signature_IDX = 10,
|
||||
SBK_QOAuth2AuthorizationCodeFlow_PkceMethod_IDX = 13,
|
||||
SBK_QOAuth2AuthorizationCodeFlow_IDX = 12,
|
||||
SBK_QOAuth2DeviceAuthorizationFlow_IDX = 14,
|
||||
SBK_QOAuthHttpServerReplyHandler_IDX = 15,
|
||||
SBK_QOAuthOobReplyHandler_IDX = 16,
|
||||
SBK_QOAuthUriSchemeReplyHandler_IDX = 17,
|
||||
SBK_QtNetworkAuth_IDX_COUNT = 18,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtNetworkAuthTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtNetworkAuthTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtNetworkAuthModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtNetworkAuthTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTNETWORKAUTH_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTNETWORKAUTH_QMAP_QSTRING_QVARIANT_IDX = 1, // QMap<QString,QVariant>
|
||||
SBK_QTNETWORKAUTH_QMULTIMAP_QSTRING_QVARIANT_IDX = 2, // QMultiMap<QString,QVariant>
|
||||
SBK_QTNETWORKAUTH_STD_PAIR_QSTRING_QSTRING_IDX = 3, // std::pair<QString,QString>
|
||||
SBK_QTNETWORKAUTH_QSET_QBYTEARRAY_IDX = 4, // QSet<QByteArray>
|
||||
SBK_QTNETWORKAUTH_QLIST_QSTRING_IDX = 5, // QList<QString>
|
||||
SBK_QTNETWORKAUTH_QLIST_QVARIANT_IDX = 6, // QList<QVariant>
|
||||
SBK_QTNETWORKAUTH_CONVERTERS_IDX_COUNT = 7,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtNetworkAuth_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtNetworkAuth_QMap_QString_QVariant_IDX = 1, // QMap<QString,QVariant>
|
||||
SBK_QtNetworkAuth_QMultiMap_QString_QVariant_IDX = 2, // QMultiMap<QString,QVariant>
|
||||
SBK_QtNetworkAuth_std_pair_QString_QString_IDX = 3, // std::pair<QString,QString>
|
||||
SBK_QtNetworkAuth_QSet_QByteArray_IDX = 4, // QSet<QByteArray>
|
||||
SBK_QtNetworkAuth_QList_QString_IDX = 5, // QList<QString>
|
||||
SBK_QtNetworkAuth_QList_QVariant_IDX = 6, // QList<QVariant>
|
||||
SBK_QtNetworkAuth_CONVERTERS_IDX_COUNT = 7,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractOAuth::Status >() { return Shiboken::Module::get(SbkPySide6_QtNetworkAuthTypeStructs[SBK_QAbstractOAuth_Status_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractOAuth::Stage >() { return Shiboken::Module::get(SbkPySide6_QtNetworkAuthTypeStructs[SBK_QAbstractOAuth_Stage_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractOAuth::Error >() { return Shiboken::Module::get(SbkPySide6_QtNetworkAuthTypeStructs[SBK_QAbstractOAuth_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractOAuth::ContentType >() { return Shiboken::Module::get(SbkPySide6_QtNetworkAuthTypeStructs[SBK_QAbstractOAuth_ContentType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractOAuth >() { return Shiboken::Module::get(SbkPySide6_QtNetworkAuthTypeStructs[SBK_QAbstractOAuth_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractOAuth2::NonceMode >() { return Shiboken::Module::get(SbkPySide6_QtNetworkAuthTypeStructs[SBK_QAbstractOAuth2_NonceMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractOAuth2 >() { return Shiboken::Module::get(SbkPySide6_QtNetworkAuthTypeStructs[SBK_QAbstractOAuth2_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractOAuthReplyHandler >() { return Shiboken::Module::get(SbkPySide6_QtNetworkAuthTypeStructs[SBK_QAbstractOAuthReplyHandler_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOAuth1::SignatureMethod >() { return Shiboken::Module::get(SbkPySide6_QtNetworkAuthTypeStructs[SBK_QOAuth1_SignatureMethod_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOAuth1 >() { return Shiboken::Module::get(SbkPySide6_QtNetworkAuthTypeStructs[SBK_QOAuth1_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOAuth1Signature::HttpRequestMethod >() { return Shiboken::Module::get(SbkPySide6_QtNetworkAuthTypeStructs[SBK_QOAuth1Signature_HttpRequestMethod_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOAuth1Signature >() { return Shiboken::Module::get(SbkPySide6_QtNetworkAuthTypeStructs[SBK_QOAuth1Signature_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOAuth2AuthorizationCodeFlow::PkceMethod >() { return Shiboken::Module::get(SbkPySide6_QtNetworkAuthTypeStructs[SBK_QOAuth2AuthorizationCodeFlow_PkceMethod_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOAuth2AuthorizationCodeFlow >() { return Shiboken::Module::get(SbkPySide6_QtNetworkAuthTypeStructs[SBK_QOAuth2AuthorizationCodeFlow_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOAuth2DeviceAuthorizationFlow >() { return Shiboken::Module::get(SbkPySide6_QtNetworkAuthTypeStructs[SBK_QOAuth2DeviceAuthorizationFlow_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOAuthHttpServerReplyHandler >() { return Shiboken::Module::get(SbkPySide6_QtNetworkAuthTypeStructs[SBK_QOAuthHttpServerReplyHandler_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOAuthOobReplyHandler >() { return Shiboken::Module::get(SbkPySide6_QtNetworkAuthTypeStructs[SBK_QOAuthOobReplyHandler_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOAuthUriSchemeReplyHandler >() { return Shiboken::Module::get(SbkPySide6_QtNetworkAuthTypeStructs[SBK_QOAuthUriSchemeReplyHandler_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTNETWORKAUTH_PYTHON_H
|
||||
|
||||
145
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtNfc/pyside6_qtnfc_python.h
vendored
Normal file
145
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtNfc/pyside6_qtnfc_python.h
vendored
Normal file
@@ -0,0 +1,145 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTNFC_PYTHON_H
|
||||
#define SBK_QTNFC_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtNfc/qndeffilter.h>
|
||||
#include <QtNfc/qndefnfcsmartposterrecord.h>
|
||||
#include <QtNfc/qndefnfctextrecord.h>
|
||||
#include <QtNfc/qndefrecord.h>
|
||||
#include <QtNfc/qnearfieldmanager.h>
|
||||
#include <QtNfc/qnearfieldtarget.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QNdefMessage;
|
||||
class QNdefNfcIconRecord;
|
||||
class QNdefNfcUriRecord;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QNDEFFILTER_IDX = 2,
|
||||
SBK_QNDEFFILTER_RECORD_IDX = 4,
|
||||
SBK_QNDEFMESSAGE_IDX = 6,
|
||||
SBK_QNDEFNFCICONRECORD_IDX = 8,
|
||||
SBK_QNDEFNFCSMARTPOSTERRECORD_ACTION_IDX = 12,
|
||||
SBK_QNDEFNFCSMARTPOSTERRECORD_IDX = 10,
|
||||
SBK_QNDEFNFCTEXTRECORD_ENCODING_IDX = 16,
|
||||
SBK_QNDEFNFCTEXTRECORD_IDX = 14,
|
||||
SBK_QNDEFNFCURIRECORD_IDX = 18,
|
||||
SBK_QNDEFRECORD_TYPENAMEFORMAT_IDX = 22,
|
||||
SBK_QNDEFRECORD_IDX = 20,
|
||||
SBK_QNEARFIELDMANAGER_ADAPTERSTATE_IDX = 26,
|
||||
SBK_QNEARFIELDMANAGER_IDX = 24,
|
||||
SBK_QNEARFIELDTARGET_TYPE_IDX = 36,
|
||||
SBK_QNEARFIELDTARGET_ACCESSMETHOD_IDX = 30,
|
||||
SBK_QFLAGS_QNEARFIELDTARGET_ACCESSMETHOD_IDX = 0,
|
||||
SBK_QNEARFIELDTARGET_ERROR_IDX = 32,
|
||||
SBK_QNEARFIELDTARGET_IDX = 28,
|
||||
SBK_QNEARFIELDTARGET_REQUESTID_IDX = 34,
|
||||
SBK_QTNFC_IDX_COUNT = 38,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QNdefFilter_IDX = 1,
|
||||
SBK_QNdefFilter_Record_IDX = 2,
|
||||
SBK_QNdefMessage_IDX = 3,
|
||||
SBK_QNdefNfcIconRecord_IDX = 4,
|
||||
SBK_QNdefNfcSmartPosterRecord_Action_IDX = 6,
|
||||
SBK_QNdefNfcSmartPosterRecord_IDX = 5,
|
||||
SBK_QNdefNfcTextRecord_Encoding_IDX = 8,
|
||||
SBK_QNdefNfcTextRecord_IDX = 7,
|
||||
SBK_QNdefNfcUriRecord_IDX = 9,
|
||||
SBK_QNdefRecord_TypeNameFormat_IDX = 11,
|
||||
SBK_QNdefRecord_IDX = 10,
|
||||
SBK_QNearFieldManager_AdapterState_IDX = 13,
|
||||
SBK_QNearFieldManager_IDX = 12,
|
||||
SBK_QNearFieldTarget_Type_IDX = 18,
|
||||
SBK_QNearFieldTarget_AccessMethod_IDX = 15,
|
||||
SBK_QFlags_QNearFieldTarget_AccessMethod_IDX = 0,
|
||||
SBK_QNearFieldTarget_Error_IDX = 16,
|
||||
SBK_QNearFieldTarget_IDX = 14,
|
||||
SBK_QNearFieldTarget_RequestId_IDX = 17,
|
||||
SBK_QtNfc_IDX_COUNT = 19,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtNfcTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtNfcTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtNfcModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtNfcTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTNFC_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTNFC_QLIST_QNDEFRECORD_IDX = 1, // QList<QNdefRecord>
|
||||
SBK_QTNFC_QLIST_QNDEFMESSAGE_IDX = 2, // QList<QNdefMessage>
|
||||
SBK_QTNFC_QLIST_QNDEFNFCICONRECORD_IDX = 3, // QList<QNdefNfcIconRecord>
|
||||
SBK_QTNFC_QLIST_QNDEFNFCTEXTRECORD_IDX = 4, // QList<QNdefNfcTextRecord>
|
||||
SBK_QTNFC_QLIST_QVARIANT_IDX = 5, // QList<QVariant>
|
||||
SBK_QTNFC_QLIST_QSTRING_IDX = 6, // QList<QString>
|
||||
SBK_QTNFC_QMAP_QSTRING_QVARIANT_IDX = 7, // QMap<QString,QVariant>
|
||||
SBK_QTNFC_CONVERTERS_IDX_COUNT = 8,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtNfc_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtNfc_QList_QNdefRecord_IDX = 1, // QList<QNdefRecord>
|
||||
SBK_QtNfc_QList_QNdefMessage_IDX = 2, // QList<QNdefMessage>
|
||||
SBK_QtNfc_QList_QNdefNfcIconRecord_IDX = 3, // QList<QNdefNfcIconRecord>
|
||||
SBK_QtNfc_QList_QNdefNfcTextRecord_IDX = 4, // QList<QNdefNfcTextRecord>
|
||||
SBK_QtNfc_QList_QVariant_IDX = 5, // QList<QVariant>
|
||||
SBK_QtNfc_QList_QString_IDX = 6, // QList<QString>
|
||||
SBK_QtNfc_QMap_QString_QVariant_IDX = 7, // QMap<QString,QVariant>
|
||||
SBK_QtNfc_CONVERTERS_IDX_COUNT = 8,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QNdefFilter >() { return Shiboken::Module::get(SbkPySide6_QtNfcTypeStructs[SBK_QNdefFilter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNdefFilter::Record >() { return Shiboken::Module::get(SbkPySide6_QtNfcTypeStructs[SBK_QNdefFilter_Record_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNdefMessage >() { return Shiboken::Module::get(SbkPySide6_QtNfcTypeStructs[SBK_QNdefMessage_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNdefNfcIconRecord >() { return Shiboken::Module::get(SbkPySide6_QtNfcTypeStructs[SBK_QNdefNfcIconRecord_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNdefNfcSmartPosterRecord::Action >() { return Shiboken::Module::get(SbkPySide6_QtNfcTypeStructs[SBK_QNdefNfcSmartPosterRecord_Action_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNdefNfcSmartPosterRecord >() { return Shiboken::Module::get(SbkPySide6_QtNfcTypeStructs[SBK_QNdefNfcSmartPosterRecord_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNdefNfcTextRecord::Encoding >() { return Shiboken::Module::get(SbkPySide6_QtNfcTypeStructs[SBK_QNdefNfcTextRecord_Encoding_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNdefNfcTextRecord >() { return Shiboken::Module::get(SbkPySide6_QtNfcTypeStructs[SBK_QNdefNfcTextRecord_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNdefNfcUriRecord >() { return Shiboken::Module::get(SbkPySide6_QtNfcTypeStructs[SBK_QNdefNfcUriRecord_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNdefRecord::TypeNameFormat >() { return Shiboken::Module::get(SbkPySide6_QtNfcTypeStructs[SBK_QNdefRecord_TypeNameFormat_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNdefRecord >() { return Shiboken::Module::get(SbkPySide6_QtNfcTypeStructs[SBK_QNdefRecord_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNearFieldManager::AdapterState >() { return Shiboken::Module::get(SbkPySide6_QtNfcTypeStructs[SBK_QNearFieldManager_AdapterState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNearFieldManager >() { return Shiboken::Module::get(SbkPySide6_QtNfcTypeStructs[SBK_QNearFieldManager_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNearFieldTarget::Type >() { return Shiboken::Module::get(SbkPySide6_QtNfcTypeStructs[SBK_QNearFieldTarget_Type_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNearFieldTarget::AccessMethod >() { return Shiboken::Module::get(SbkPySide6_QtNfcTypeStructs[SBK_QNearFieldTarget_AccessMethod_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QNearFieldTarget::AccessMethod> >() { return Shiboken::Module::get(SbkPySide6_QtNfcTypeStructs[SBK_QFlags_QNearFieldTarget_AccessMethod_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNearFieldTarget::Error >() { return Shiboken::Module::get(SbkPySide6_QtNfcTypeStructs[SBK_QNearFieldTarget_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNearFieldTarget >() { return Shiboken::Module::get(SbkPySide6_QtNfcTypeStructs[SBK_QNearFieldTarget_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNearFieldTarget::RequestId >() { return Shiboken::Module::get(SbkPySide6_QtNfcTypeStructs[SBK_QNearFieldTarget_RequestId_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTNFC_PYTHON_H
|
||||
|
||||
379
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtOpenGL/pyside6_qtopengl_python.h
vendored
Normal file
379
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtOpenGL/pyside6_qtopengl_python.h
vendored
Normal file
@@ -0,0 +1,379 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTOPENGL_PYTHON_H
|
||||
#define SBK_QTOPENGL_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtOpenGL/qopenglbuffer.h>
|
||||
#include <QtOpenGL/qopengldebug.h>
|
||||
#include <QtOpenGL/qopenglframebufferobject.h>
|
||||
#include <QtOpenGL/qopenglshaderprogram.h>
|
||||
#include <QtOpenGL/qopengltexture.h>
|
||||
#include <QtOpenGL/qopengltextureblitter.h>
|
||||
#include <QtOpenGL/qopenglvertexarrayobject.h>
|
||||
#include <QtOpenGL/qopenglwindow.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QAbstractOpenGLFunctions;
|
||||
class QOpenGLFramebufferObjectFormat;
|
||||
class QOpenGLFunctions_1_0;
|
||||
class QOpenGLFunctions_1_1;
|
||||
class QOpenGLFunctions_1_2;
|
||||
class QOpenGLFunctions_1_3;
|
||||
class QOpenGLFunctions_1_4;
|
||||
class QOpenGLFunctions_1_5;
|
||||
class QOpenGLFunctions_2_0;
|
||||
class QOpenGLFunctions_2_1;
|
||||
class QOpenGLFunctions_3_0;
|
||||
class QOpenGLFunctions_3_1;
|
||||
class QOpenGLFunctions_3_2_Compatibility;
|
||||
class QOpenGLFunctions_3_2_Core;
|
||||
class QOpenGLFunctions_3_3_Compatibility;
|
||||
class QOpenGLFunctions_3_3_Core;
|
||||
class QOpenGLFunctions_4_0_Compatibility;
|
||||
class QOpenGLFunctions_4_0_Core;
|
||||
class QOpenGLFunctions_4_1_Compatibility;
|
||||
class QOpenGLFunctions_4_1_Core;
|
||||
class QOpenGLFunctions_4_2_Compatibility;
|
||||
class QOpenGLFunctions_4_2_Core;
|
||||
class QOpenGLFunctions_4_3_Compatibility;
|
||||
class QOpenGLFunctions_4_3_Core;
|
||||
class QOpenGLFunctions_4_4_Compatibility;
|
||||
class QOpenGLFunctions_4_4_Core;
|
||||
class QOpenGLFunctions_4_5_Compatibility;
|
||||
class QOpenGLFunctions_4_5_Core;
|
||||
class QOpenGLPaintDevice;
|
||||
class QOpenGLPixelTransferOptions;
|
||||
class QOpenGLShaderProgram;
|
||||
class QOpenGLTimeMonitor;
|
||||
class QOpenGLTimerQuery;
|
||||
class QOpenGLVersionFunctionsFactory;
|
||||
class QOpenGLVersionProfile;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QABSTRACTOPENGLFUNCTIONS_IDX = 0,
|
||||
SBK_QOPENGLBUFFER_TYPE_IDX = 20,
|
||||
SBK_QOPENGLBUFFER_USAGEPATTERN_IDX = 22,
|
||||
SBK_QOPENGLBUFFER_ACCESS_IDX = 16,
|
||||
SBK_QOPENGLBUFFER_RANGEACCESSFLAG_IDX = 18,
|
||||
SBK_QFLAGS_QOPENGLBUFFER_RANGEACCESSFLAG_IDX = 2,
|
||||
SBK_QOPENGLBUFFER_IDX = 14,
|
||||
SBK_QOPENGLDEBUGLOGGER_LOGGINGMODE_IDX = 26,
|
||||
SBK_QOPENGLDEBUGLOGGER_IDX = 24,
|
||||
SBK_QOPENGLDEBUGMESSAGE_SOURCE_IDX = 32,
|
||||
SBK_QFLAGS_QOPENGLDEBUGMESSAGE_SOURCE_IDX = 6,
|
||||
SBK_QOPENGLDEBUGMESSAGE_TYPE_IDX = 34,
|
||||
SBK_QFLAGS_QOPENGLDEBUGMESSAGE_TYPE_IDX = 8,
|
||||
SBK_QOPENGLDEBUGMESSAGE_SEVERITY_IDX = 30,
|
||||
SBK_QFLAGS_QOPENGLDEBUGMESSAGE_SEVERITY_IDX = 4,
|
||||
SBK_QOPENGLDEBUGMESSAGE_IDX = 28,
|
||||
SBK_QOPENGLFRAMEBUFFEROBJECT_ATTACHMENT_IDX = 38,
|
||||
SBK_QOPENGLFRAMEBUFFEROBJECT_FRAMEBUFFERRESTOREPOLICY_IDX = 40,
|
||||
SBK_QOPENGLFRAMEBUFFEROBJECT_IDX = 36,
|
||||
SBK_QOPENGLFRAMEBUFFEROBJECTFORMAT_IDX = 42,
|
||||
SBK_QOPENGLFUNCTIONS_1_0_IDX = 44,
|
||||
SBK_QOPENGLFUNCTIONS_1_1_IDX = 46,
|
||||
SBK_QOPENGLFUNCTIONS_1_2_IDX = 48,
|
||||
SBK_QOPENGLFUNCTIONS_1_3_IDX = 50,
|
||||
SBK_QOPENGLFUNCTIONS_1_4_IDX = 52,
|
||||
SBK_QOPENGLFUNCTIONS_1_5_IDX = 54,
|
||||
SBK_QOPENGLFUNCTIONS_2_0_IDX = 56,
|
||||
SBK_QOPENGLFUNCTIONS_2_1_IDX = 58,
|
||||
SBK_QOPENGLFUNCTIONS_3_0_IDX = 60,
|
||||
SBK_QOPENGLFUNCTIONS_3_1_IDX = 62,
|
||||
SBK_QOPENGLFUNCTIONS_3_2_COMPATIBILITY_IDX = 64,
|
||||
SBK_QOPENGLFUNCTIONS_3_2_CORE_IDX = 66,
|
||||
SBK_QOPENGLFUNCTIONS_3_3_COMPATIBILITY_IDX = 68,
|
||||
SBK_QOPENGLFUNCTIONS_3_3_CORE_IDX = 70,
|
||||
SBK_QOPENGLFUNCTIONS_4_0_COMPATIBILITY_IDX = 72,
|
||||
SBK_QOPENGLFUNCTIONS_4_0_CORE_IDX = 74,
|
||||
SBK_QOPENGLFUNCTIONS_4_1_COMPATIBILITY_IDX = 76,
|
||||
SBK_QOPENGLFUNCTIONS_4_1_CORE_IDX = 78,
|
||||
SBK_QOPENGLFUNCTIONS_4_2_COMPATIBILITY_IDX = 80,
|
||||
SBK_QOPENGLFUNCTIONS_4_2_CORE_IDX = 82,
|
||||
SBK_QOPENGLFUNCTIONS_4_3_COMPATIBILITY_IDX = 84,
|
||||
SBK_QOPENGLFUNCTIONS_4_3_CORE_IDX = 86,
|
||||
SBK_QOPENGLFUNCTIONS_4_4_COMPATIBILITY_IDX = 88,
|
||||
SBK_QOPENGLFUNCTIONS_4_4_CORE_IDX = 90,
|
||||
SBK_QOPENGLFUNCTIONS_4_5_COMPATIBILITY_IDX = 92,
|
||||
SBK_QOPENGLFUNCTIONS_4_5_CORE_IDX = 94,
|
||||
SBK_QOPENGLPAINTDEVICE_IDX = 96,
|
||||
SBK_QOPENGLPIXELTRANSFEROPTIONS_IDX = 98,
|
||||
SBK_QOPENGLSHADER_SHADERTYPEBIT_IDX = 102,
|
||||
SBK_QFLAGS_QOPENGLSHADER_SHADERTYPEBIT_IDX = 10,
|
||||
SBK_QOPENGLSHADER_IDX = 100,
|
||||
SBK_QOPENGLSHADERPROGRAM_IDX = 104,
|
||||
SBK_QOPENGLTEXTURE_TARGET_IDX = 134,
|
||||
SBK_QOPENGLTEXTURE_BINDINGTARGET_IDX = 108,
|
||||
SBK_QOPENGLTEXTURE_MIPMAPGENERATION_IDX = 124,
|
||||
SBK_QOPENGLTEXTURE_TEXTUREUNITRESET_IDX = 140,
|
||||
SBK_QOPENGLTEXTURE_TEXTUREFORMAT_IDX = 136,
|
||||
SBK_QOPENGLTEXTURE_TEXTUREFORMATCLASS_IDX = 138,
|
||||
SBK_QOPENGLTEXTURE_CUBEMAPFACE_IDX = 116,
|
||||
SBK_QOPENGLTEXTURE_PIXELFORMAT_IDX = 126,
|
||||
SBK_QOPENGLTEXTURE_PIXELTYPE_IDX = 128,
|
||||
SBK_QOPENGLTEXTURE_SWIZZLECOMPONENT_IDX = 130,
|
||||
SBK_QOPENGLTEXTURE_SWIZZLEVALUE_IDX = 132,
|
||||
SBK_QOPENGLTEXTURE_WRAPMODE_IDX = 142,
|
||||
SBK_QOPENGLTEXTURE_COORDINATEDIRECTION_IDX = 114,
|
||||
SBK_QOPENGLTEXTURE_FEATURE_IDX = 120,
|
||||
SBK_QFLAGS_QOPENGLTEXTURE_FEATURE_IDX = 12,
|
||||
SBK_QOPENGLTEXTURE_DEPTHSTENCILMODE_IDX = 118,
|
||||
SBK_QOPENGLTEXTURE_COMPARISONFUNCTION_IDX = 110,
|
||||
SBK_QOPENGLTEXTURE_COMPARISONMODE_IDX = 112,
|
||||
SBK_QOPENGLTEXTURE_FILTER_IDX = 122,
|
||||
SBK_QOPENGLTEXTURE_IDX = 106,
|
||||
SBK_QOPENGLTEXTUREBLITTER_ORIGIN_IDX = 146,
|
||||
SBK_QOPENGLTEXTUREBLITTER_IDX = 144,
|
||||
SBK_QOPENGLTIMEMONITOR_IDX = 148,
|
||||
SBK_QOPENGLTIMERQUERY_IDX = 150,
|
||||
SBK_QOPENGLVERSIONFUNCTIONSFACTORY_IDX = 152,
|
||||
SBK_QOPENGLVERSIONPROFILE_IDX = 154,
|
||||
SBK_QOPENGLVERTEXARRAYOBJECT_IDX = 156,
|
||||
SBK_QOPENGLVERTEXARRAYOBJECT_BINDER_IDX = 158,
|
||||
SBK_QOPENGLWINDOW_UPDATEBEHAVIOR_IDX = 162,
|
||||
SBK_QOPENGLWINDOW_IDX = 160,
|
||||
SBK_QTOPENGL_IDX_COUNT = 164,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QAbstractOpenGLFunctions_IDX = 0,
|
||||
SBK_QOpenGLBuffer_Type_IDX = 10,
|
||||
SBK_QOpenGLBuffer_UsagePattern_IDX = 11,
|
||||
SBK_QOpenGLBuffer_Access_IDX = 8,
|
||||
SBK_QOpenGLBuffer_RangeAccessFlag_IDX = 9,
|
||||
SBK_QFlags_QOpenGLBuffer_RangeAccessFlag_IDX = 1,
|
||||
SBK_QOpenGLBuffer_IDX = 7,
|
||||
SBK_QOpenGLDebugLogger_LoggingMode_IDX = 13,
|
||||
SBK_QOpenGLDebugLogger_IDX = 12,
|
||||
SBK_QOpenGLDebugMessage_Source_IDX = 16,
|
||||
SBK_QFlags_QOpenGLDebugMessage_Source_IDX = 3,
|
||||
SBK_QOpenGLDebugMessage_Type_IDX = 17,
|
||||
SBK_QFlags_QOpenGLDebugMessage_Type_IDX = 4,
|
||||
SBK_QOpenGLDebugMessage_Severity_IDX = 15,
|
||||
SBK_QFlags_QOpenGLDebugMessage_Severity_IDX = 2,
|
||||
SBK_QOpenGLDebugMessage_IDX = 14,
|
||||
SBK_QOpenGLFramebufferObject_Attachment_IDX = 19,
|
||||
SBK_QOpenGLFramebufferObject_FramebufferRestorePolicy_IDX = 20,
|
||||
SBK_QOpenGLFramebufferObject_IDX = 18,
|
||||
SBK_QOpenGLFramebufferObjectFormat_IDX = 21,
|
||||
SBK_QOpenGLFunctions_1_0_IDX = 22,
|
||||
SBK_QOpenGLFunctions_1_1_IDX = 23,
|
||||
SBK_QOpenGLFunctions_1_2_IDX = 24,
|
||||
SBK_QOpenGLFunctions_1_3_IDX = 25,
|
||||
SBK_QOpenGLFunctions_1_4_IDX = 26,
|
||||
SBK_QOpenGLFunctions_1_5_IDX = 27,
|
||||
SBK_QOpenGLFunctions_2_0_IDX = 28,
|
||||
SBK_QOpenGLFunctions_2_1_IDX = 29,
|
||||
SBK_QOpenGLFunctions_3_0_IDX = 30,
|
||||
SBK_QOpenGLFunctions_3_1_IDX = 31,
|
||||
SBK_QOpenGLFunctions_3_2_Compatibility_IDX = 32,
|
||||
SBK_QOpenGLFunctions_3_2_Core_IDX = 33,
|
||||
SBK_QOpenGLFunctions_3_3_Compatibility_IDX = 34,
|
||||
SBK_QOpenGLFunctions_3_3_Core_IDX = 35,
|
||||
SBK_QOpenGLFunctions_4_0_Compatibility_IDX = 36,
|
||||
SBK_QOpenGLFunctions_4_0_Core_IDX = 37,
|
||||
SBK_QOpenGLFunctions_4_1_Compatibility_IDX = 38,
|
||||
SBK_QOpenGLFunctions_4_1_Core_IDX = 39,
|
||||
SBK_QOpenGLFunctions_4_2_Compatibility_IDX = 40,
|
||||
SBK_QOpenGLFunctions_4_2_Core_IDX = 41,
|
||||
SBK_QOpenGLFunctions_4_3_Compatibility_IDX = 42,
|
||||
SBK_QOpenGLFunctions_4_3_Core_IDX = 43,
|
||||
SBK_QOpenGLFunctions_4_4_Compatibility_IDX = 44,
|
||||
SBK_QOpenGLFunctions_4_4_Core_IDX = 45,
|
||||
SBK_QOpenGLFunctions_4_5_Compatibility_IDX = 46,
|
||||
SBK_QOpenGLFunctions_4_5_Core_IDX = 47,
|
||||
SBK_QOpenGLPaintDevice_IDX = 48,
|
||||
SBK_QOpenGLPixelTransferOptions_IDX = 49,
|
||||
SBK_QOpenGLShader_ShaderTypeBit_IDX = 51,
|
||||
SBK_QFlags_QOpenGLShader_ShaderTypeBit_IDX = 5,
|
||||
SBK_QOpenGLShader_IDX = 50,
|
||||
SBK_QOpenGLShaderProgram_IDX = 52,
|
||||
SBK_QOpenGLTexture_Target_IDX = 67,
|
||||
SBK_QOpenGLTexture_BindingTarget_IDX = 54,
|
||||
SBK_QOpenGLTexture_MipMapGeneration_IDX = 62,
|
||||
SBK_QOpenGLTexture_TextureUnitReset_IDX = 70,
|
||||
SBK_QOpenGLTexture_TextureFormat_IDX = 68,
|
||||
SBK_QOpenGLTexture_TextureFormatClass_IDX = 69,
|
||||
SBK_QOpenGLTexture_CubeMapFace_IDX = 58,
|
||||
SBK_QOpenGLTexture_PixelFormat_IDX = 63,
|
||||
SBK_QOpenGLTexture_PixelType_IDX = 64,
|
||||
SBK_QOpenGLTexture_SwizzleComponent_IDX = 65,
|
||||
SBK_QOpenGLTexture_SwizzleValue_IDX = 66,
|
||||
SBK_QOpenGLTexture_WrapMode_IDX = 71,
|
||||
SBK_QOpenGLTexture_CoordinateDirection_IDX = 57,
|
||||
SBK_QOpenGLTexture_Feature_IDX = 60,
|
||||
SBK_QFlags_QOpenGLTexture_Feature_IDX = 6,
|
||||
SBK_QOpenGLTexture_DepthStencilMode_IDX = 59,
|
||||
SBK_QOpenGLTexture_ComparisonFunction_IDX = 55,
|
||||
SBK_QOpenGLTexture_ComparisonMode_IDX = 56,
|
||||
SBK_QOpenGLTexture_Filter_IDX = 61,
|
||||
SBK_QOpenGLTexture_IDX = 53,
|
||||
SBK_QOpenGLTextureBlitter_Origin_IDX = 73,
|
||||
SBK_QOpenGLTextureBlitter_IDX = 72,
|
||||
SBK_QOpenGLTimeMonitor_IDX = 74,
|
||||
SBK_QOpenGLTimerQuery_IDX = 75,
|
||||
SBK_QOpenGLVersionFunctionsFactory_IDX = 76,
|
||||
SBK_QOpenGLVersionProfile_IDX = 77,
|
||||
SBK_QOpenGLVertexArrayObject_IDX = 78,
|
||||
SBK_QOpenGLVertexArrayObject_Binder_IDX = 79,
|
||||
SBK_QOpenGLWindow_UpdateBehavior_IDX = 81,
|
||||
SBK_QOpenGLWindow_IDX = 80,
|
||||
SBK_QtOpenGL_IDX_COUNT = 82,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtOpenGLTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtOpenGLTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtOpenGLModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtOpenGLTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTOPENGL_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTOPENGL_STD_PAIR_INT_INT_IDX = 1, // std::pair<int,int>
|
||||
SBK_QTOPENGL_STD_PAIR_FLOAT_FLOAT_IDX = 2, // std::pair<float,float>
|
||||
SBK_QTOPENGL_STD_PAIR_QOPENGLTEXTURE_FILTER_QOPENGLTEXTURE_FILTER_IDX = 3, // std::pair<QOpenGLTexture::Filter,QOpenGLTexture::Filter>
|
||||
SBK_QTOPENGL_QLIST_QSIZE_IDX = 4, // QList<QSize>
|
||||
SBK_QTOPENGL_QLIST_UNSIGNEDINT_IDX = 5, // QList<unsigned int>
|
||||
SBK_QTOPENGL_QLIST_UINT64_T_IDX = 6, // QList<uint64_t>
|
||||
SBK_QTOPENGL_QLIST_FLOAT_IDX = 7, // QList<float>
|
||||
SBK_QTOPENGL_QLIST_QOPENGLSHADERPTR_IDX = 8, // QList<QOpenGLShader*>
|
||||
SBK_QTOPENGL_QLIST_QOPENGLDEBUGMESSAGE_IDX = 9, // QList<QOpenGLDebugMessage>
|
||||
SBK_QTOPENGL_QLIST_QVARIANT_IDX = 10, // QList<QVariant>
|
||||
SBK_QTOPENGL_QLIST_QSTRING_IDX = 11, // QList<QString>
|
||||
SBK_QTOPENGL_QMAP_QSTRING_QVARIANT_IDX = 12, // QMap<QString,QVariant>
|
||||
SBK_QTOPENGL_CONVERTERS_IDX_COUNT = 13,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtOpenGL_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtOpenGL_std_pair_int_int_IDX = 1, // std::pair<int,int>
|
||||
SBK_QtOpenGL_std_pair_float_float_IDX = 2, // std::pair<float,float>
|
||||
SBK_QtOpenGL_std_pair_QOpenGLTexture_Filter_QOpenGLTexture_Filter_IDX = 3, // std::pair<QOpenGLTexture::Filter,QOpenGLTexture::Filter>
|
||||
SBK_QtOpenGL_QList_QSize_IDX = 4, // QList<QSize>
|
||||
SBK_QtOpenGL_QList_unsignedint_IDX = 5, // QList<unsigned int>
|
||||
SBK_QtOpenGL_QList_uint64_t_IDX = 6, // QList<uint64_t>
|
||||
SBK_QtOpenGL_QList_float_IDX = 7, // QList<float>
|
||||
SBK_QtOpenGL_QList_QOpenGLShaderPTR_IDX = 8, // QList<QOpenGLShader*>
|
||||
SBK_QtOpenGL_QList_QOpenGLDebugMessage_IDX = 9, // QList<QOpenGLDebugMessage>
|
||||
SBK_QtOpenGL_QList_QVariant_IDX = 10, // QList<QVariant>
|
||||
SBK_QtOpenGL_QList_QString_IDX = 11, // QList<QString>
|
||||
SBK_QtOpenGL_QMap_QString_QVariant_IDX = 12, // QMap<QString,QVariant>
|
||||
SBK_QtOpenGL_CONVERTERS_IDX_COUNT = 13,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractOpenGLFunctions >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QAbstractOpenGLFunctions_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLBuffer::Type >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLBuffer_Type_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLBuffer::UsagePattern >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLBuffer_UsagePattern_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLBuffer::Access >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLBuffer_Access_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLBuffer::RangeAccessFlag >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLBuffer_RangeAccessFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QOpenGLBuffer::RangeAccessFlag> >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QFlags_QOpenGLBuffer_RangeAccessFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLBuffer >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLBuffer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLDebugLogger::LoggingMode >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLDebugLogger_LoggingMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLDebugLogger >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLDebugLogger_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLDebugMessage::Source >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLDebugMessage_Source_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QOpenGLDebugMessage::Source> >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QFlags_QOpenGLDebugMessage_Source_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLDebugMessage::Type >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLDebugMessage_Type_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QOpenGLDebugMessage::Type> >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QFlags_QOpenGLDebugMessage_Type_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLDebugMessage::Severity >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLDebugMessage_Severity_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QOpenGLDebugMessage::Severity> >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QFlags_QOpenGLDebugMessage_Severity_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLDebugMessage >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLDebugMessage_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFramebufferObject::Attachment >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFramebufferObject_Attachment_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFramebufferObject::FramebufferRestorePolicy >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFramebufferObject_FramebufferRestorePolicy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFramebufferObject >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFramebufferObject_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFramebufferObjectFormat >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFramebufferObjectFormat_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_1_0 >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_1_0_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_1_1 >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_1_1_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_1_2 >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_1_2_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_1_3 >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_1_3_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_1_4 >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_1_4_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_1_5 >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_1_5_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_2_0 >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_2_0_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_2_1 >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_2_1_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_3_0 >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_3_0_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_3_1 >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_3_1_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_3_2_Compatibility >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_3_2_Compatibility_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_3_2_Core >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_3_2_Core_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_3_3_Compatibility >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_3_3_Compatibility_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_3_3_Core >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_3_3_Core_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_4_0_Compatibility >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_4_0_Compatibility_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_4_0_Core >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_4_0_Core_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_4_1_Compatibility >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_4_1_Compatibility_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_4_1_Core >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_4_1_Core_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_4_2_Compatibility >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_4_2_Compatibility_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_4_2_Core >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_4_2_Core_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_4_3_Compatibility >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_4_3_Compatibility_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_4_3_Core >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_4_3_Core_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_4_4_Compatibility >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_4_4_Compatibility_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_4_4_Core >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_4_4_Core_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_4_5_Compatibility >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_4_5_Compatibility_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLFunctions_4_5_Core >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLFunctions_4_5_Core_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLPaintDevice >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLPaintDevice_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLPixelTransferOptions >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLPixelTransferOptions_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLShader::ShaderTypeBit >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLShader_ShaderTypeBit_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QOpenGLShader::ShaderTypeBit> >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QFlags_QOpenGLShader_ShaderTypeBit_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLShader >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLShader_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLShaderProgram >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLShaderProgram_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLTexture::Target >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLTexture_Target_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLTexture::BindingTarget >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLTexture_BindingTarget_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLTexture::MipMapGeneration >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLTexture_MipMapGeneration_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLTexture::TextureUnitReset >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLTexture_TextureUnitReset_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLTexture::TextureFormat >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLTexture_TextureFormat_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLTexture::TextureFormatClass >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLTexture_TextureFormatClass_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLTexture::CubeMapFace >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLTexture_CubeMapFace_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLTexture::PixelFormat >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLTexture_PixelFormat_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLTexture::PixelType >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLTexture_PixelType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLTexture::SwizzleComponent >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLTexture_SwizzleComponent_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLTexture::SwizzleValue >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLTexture_SwizzleValue_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLTexture::WrapMode >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLTexture_WrapMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLTexture::CoordinateDirection >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLTexture_CoordinateDirection_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLTexture::Feature >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLTexture_Feature_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QOpenGLTexture::Feature> >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QFlags_QOpenGLTexture_Feature_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLTexture::DepthStencilMode >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLTexture_DepthStencilMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLTexture::ComparisonFunction >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLTexture_ComparisonFunction_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLTexture::ComparisonMode >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLTexture_ComparisonMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLTexture::Filter >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLTexture_Filter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLTexture >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLTexture_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLTextureBlitter::Origin >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLTextureBlitter_Origin_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLTextureBlitter >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLTextureBlitter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLTimeMonitor >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLTimeMonitor_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLTimerQuery >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLTimerQuery_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLVersionFunctionsFactory >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLVersionFunctionsFactory_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLVersionProfile >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLVersionProfile_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLVertexArrayObject >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLVertexArrayObject_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLVertexArrayObject::Binder >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLVertexArrayObject_Binder_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLWindow::UpdateBehavior >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLWindow_UpdateBehavior_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLWindow >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLTypeStructs[SBK_QOpenGLWindow_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTOPENGL_PYTHON_H
|
||||
|
||||
@@ -0,0 +1,83 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTOPENGLWIDGETS_PYTHON_H
|
||||
#define SBK_QTOPENGLWIDGETS_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtwidgets_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtOpenGLWidgets/qopenglwidget.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QOPENGLWIDGET_UPDATEBEHAVIOR_IDX = 4,
|
||||
SBK_QOPENGLWIDGET_TARGETBUFFER_IDX = 2,
|
||||
SBK_QOPENGLWIDGET_IDX = 0,
|
||||
SBK_QTOPENGLWIDGETS_IDX_COUNT = 6,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QOpenGLWidget_UpdateBehavior_IDX = 2,
|
||||
SBK_QOpenGLWidget_TargetBuffer_IDX = 1,
|
||||
SBK_QOpenGLWidget_IDX = 0,
|
||||
SBK_QtOpenGLWidgets_IDX_COUNT = 3,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtOpenGLWidgetsTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtOpenGLWidgetsTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtOpenGLWidgetsModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtOpenGLWidgetsTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTOPENGLWIDGETS_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTOPENGLWIDGETS_QLIST_QVARIANT_IDX = 1, // QList<QVariant>
|
||||
SBK_QTOPENGLWIDGETS_QLIST_QSTRING_IDX = 2, // QList<QString>
|
||||
SBK_QTOPENGLWIDGETS_QMAP_QSTRING_QVARIANT_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QTOPENGLWIDGETS_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtOpenGLWidgets_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtOpenGLWidgets_QList_QVariant_IDX = 1, // QList<QVariant>
|
||||
SBK_QtOpenGLWidgets_QList_QString_IDX = 2, // QList<QString>
|
||||
SBK_QtOpenGLWidgets_QMap_QString_QVariant_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QtOpenGLWidgets_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLWidget::UpdateBehavior >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLWidgetsTypeStructs[SBK_QOpenGLWidget_UpdateBehavior_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLWidget::TargetBuffer >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLWidgetsTypeStructs[SBK_QOpenGLWidget_TargetBuffer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOpenGLWidget >() { return Shiboken::Module::get(SbkPySide6_QtOpenGLWidgetsTypeStructs[SBK_QOpenGLWidget_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTOPENGLWIDGETS_PYTHON_H
|
||||
|
||||
153
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtPdf/pyside6_qtpdf_python.h
vendored
Normal file
153
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtPdf/pyside6_qtpdf_python.h
vendored
Normal file
@@ -0,0 +1,153 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTPDF_PYTHON_H
|
||||
#define SBK_QTPDF_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtPdf/qpdfbookmarkmodel.h>
|
||||
#include <QtPdf/qpdfdocument.h>
|
||||
#include <QtPdf/qpdfdocumentrenderoptions.h>
|
||||
#include <QtPdf/qpdflinkmodel.h>
|
||||
#include <QtPdf/qpdfpagerenderer.h>
|
||||
#include <QtPdf/qpdfsearchmodel.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QPdfLink;
|
||||
class QPdfPageNavigator;
|
||||
class QPdfSelection;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QPDFBOOKMARKMODEL_ROLE_IDX = 4,
|
||||
SBK_QPDFBOOKMARKMODEL_IDX = 2,
|
||||
SBK_QPDFDOCUMENT_STATUS_IDX = 14,
|
||||
SBK_QPDFDOCUMENT_ERROR_IDX = 8,
|
||||
SBK_QPDFDOCUMENT_METADATAFIELD_IDX = 10,
|
||||
SBK_QPDFDOCUMENT_PAGEMODELROLE_IDX = 12,
|
||||
SBK_QPDFDOCUMENT_IDX = 6,
|
||||
SBK_QPDFDOCUMENTRENDEROPTIONS_ROTATION_IDX = 20,
|
||||
SBK_QPDFDOCUMENTRENDEROPTIONS_RENDERFLAG_IDX = 18,
|
||||
SBK_QFLAGS_QPDFDOCUMENTRENDEROPTIONS_RENDERFLAG_IDX = 0,
|
||||
SBK_QPDFDOCUMENTRENDEROPTIONS_IDX = 16,
|
||||
SBK_QPDFLINK_IDX = 22,
|
||||
SBK_QPDFLINKMODEL_ROLE_IDX = 26,
|
||||
SBK_QPDFLINKMODEL_IDX = 24,
|
||||
SBK_QPDFPAGENAVIGATOR_IDX = 28,
|
||||
SBK_QPDFPAGERENDERER_RENDERMODE_IDX = 32,
|
||||
SBK_QPDFPAGERENDERER_IDX = 30,
|
||||
SBK_QPDFSEARCHMODEL_ROLE_IDX = 36,
|
||||
SBK_QPDFSEARCHMODEL_IDX = 34,
|
||||
SBK_QPDFSELECTION_IDX = 38,
|
||||
SBK_QTPDF_IDX_COUNT = 40,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QPdfBookmarkModel_Role_IDX = 2,
|
||||
SBK_QPdfBookmarkModel_IDX = 1,
|
||||
SBK_QPdfDocument_Status_IDX = 7,
|
||||
SBK_QPdfDocument_Error_IDX = 4,
|
||||
SBK_QPdfDocument_MetaDataField_IDX = 5,
|
||||
SBK_QPdfDocument_PageModelRole_IDX = 6,
|
||||
SBK_QPdfDocument_IDX = 3,
|
||||
SBK_QPdfDocumentRenderOptions_Rotation_IDX = 10,
|
||||
SBK_QPdfDocumentRenderOptions_RenderFlag_IDX = 9,
|
||||
SBK_QFlags_QPdfDocumentRenderOptions_RenderFlag_IDX = 0,
|
||||
SBK_QPdfDocumentRenderOptions_IDX = 8,
|
||||
SBK_QPdfLink_IDX = 11,
|
||||
SBK_QPdfLinkModel_Role_IDX = 13,
|
||||
SBK_QPdfLinkModel_IDX = 12,
|
||||
SBK_QPdfPageNavigator_IDX = 14,
|
||||
SBK_QPdfPageRenderer_RenderMode_IDX = 16,
|
||||
SBK_QPdfPageRenderer_IDX = 15,
|
||||
SBK_QPdfSearchModel_Role_IDX = 18,
|
||||
SBK_QPdfSearchModel_IDX = 17,
|
||||
SBK_QPdfSelection_IDX = 19,
|
||||
SBK_QtPdf_IDX_COUNT = 20,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtPdfTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtPdfTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtPdfModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtPdfTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTPDF_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTPDF_QLIST_QPOLYGONF_IDX = 1, // QList<QPolygonF>
|
||||
SBK_QTPDF_QLIST_QRECTF_IDX = 2, // QList<QRectF>
|
||||
SBK_QTPDF_QMAP_INT_QVARIANT_IDX = 3, // QMap<int,QVariant>
|
||||
SBK_QTPDF_QLIST_QMODELINDEX_IDX = 4, // QList<QModelIndex>
|
||||
SBK_QTPDF_QHASH_INT_QBYTEARRAY_IDX = 5, // QHash<int,QByteArray>
|
||||
SBK_QTPDF_QLIST_QPDFLINK_IDX = 6, // QList<QPdfLink>
|
||||
SBK_QTPDF_QLIST_QVARIANT_IDX = 7, // QList<QVariant>
|
||||
SBK_QTPDF_QLIST_QSTRING_IDX = 8, // QList<QString>
|
||||
SBK_QTPDF_QMAP_QSTRING_QVARIANT_IDX = 9, // QMap<QString,QVariant>
|
||||
SBK_QTPDF_CONVERTERS_IDX_COUNT = 10,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtPdf_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtPdf_QList_QPolygonF_IDX = 1, // QList<QPolygonF>
|
||||
SBK_QtPdf_QList_QRectF_IDX = 2, // QList<QRectF>
|
||||
SBK_QtPdf_QMap_int_QVariant_IDX = 3, // QMap<int,QVariant>
|
||||
SBK_QtPdf_QList_QModelIndex_IDX = 4, // QList<QModelIndex>
|
||||
SBK_QtPdf_QHash_int_QByteArray_IDX = 5, // QHash<int,QByteArray>
|
||||
SBK_QtPdf_QList_QPdfLink_IDX = 6, // QList<QPdfLink>
|
||||
SBK_QtPdf_QList_QVariant_IDX = 7, // QList<QVariant>
|
||||
SBK_QtPdf_QList_QString_IDX = 8, // QList<QString>
|
||||
SBK_QtPdf_QMap_QString_QVariant_IDX = 9, // QMap<QString,QVariant>
|
||||
SBK_QtPdf_CONVERTERS_IDX_COUNT = 10,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QPdfBookmarkModel::Role >() { return Shiboken::Module::get(SbkPySide6_QtPdfTypeStructs[SBK_QPdfBookmarkModel_Role_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPdfBookmarkModel >() { return Shiboken::Module::get(SbkPySide6_QtPdfTypeStructs[SBK_QPdfBookmarkModel_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPdfDocument::Status >() { return Shiboken::Module::get(SbkPySide6_QtPdfTypeStructs[SBK_QPdfDocument_Status_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPdfDocument::Error >() { return Shiboken::Module::get(SbkPySide6_QtPdfTypeStructs[SBK_QPdfDocument_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPdfDocument::MetaDataField >() { return Shiboken::Module::get(SbkPySide6_QtPdfTypeStructs[SBK_QPdfDocument_MetaDataField_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPdfDocument::PageModelRole >() { return Shiboken::Module::get(SbkPySide6_QtPdfTypeStructs[SBK_QPdfDocument_PageModelRole_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPdfDocument >() { return Shiboken::Module::get(SbkPySide6_QtPdfTypeStructs[SBK_QPdfDocument_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPdfDocumentRenderOptions::Rotation >() { return Shiboken::Module::get(SbkPySide6_QtPdfTypeStructs[SBK_QPdfDocumentRenderOptions_Rotation_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPdfDocumentRenderOptions::RenderFlag >() { return Shiboken::Module::get(SbkPySide6_QtPdfTypeStructs[SBK_QPdfDocumentRenderOptions_RenderFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QPdfDocumentRenderOptions::RenderFlag> >() { return Shiboken::Module::get(SbkPySide6_QtPdfTypeStructs[SBK_QFlags_QPdfDocumentRenderOptions_RenderFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPdfDocumentRenderOptions >() { return Shiboken::Module::get(SbkPySide6_QtPdfTypeStructs[SBK_QPdfDocumentRenderOptions_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPdfLink >() { return Shiboken::Module::get(SbkPySide6_QtPdfTypeStructs[SBK_QPdfLink_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPdfLinkModel::Role >() { return Shiboken::Module::get(SbkPySide6_QtPdfTypeStructs[SBK_QPdfLinkModel_Role_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPdfLinkModel >() { return Shiboken::Module::get(SbkPySide6_QtPdfTypeStructs[SBK_QPdfLinkModel_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPdfPageNavigator >() { return Shiboken::Module::get(SbkPySide6_QtPdfTypeStructs[SBK_QPdfPageNavigator_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPdfPageRenderer::RenderMode >() { return Shiboken::Module::get(SbkPySide6_QtPdfTypeStructs[SBK_QPdfPageRenderer_RenderMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPdfPageRenderer >() { return Shiboken::Module::get(SbkPySide6_QtPdfTypeStructs[SBK_QPdfPageRenderer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPdfSearchModel::Role >() { return Shiboken::Module::get(SbkPySide6_QtPdfTypeStructs[SBK_QPdfSearchModel_Role_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPdfSearchModel >() { return Shiboken::Module::get(SbkPySide6_QtPdfTypeStructs[SBK_QPdfSearchModel_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPdfSelection >() { return Shiboken::Module::get(SbkPySide6_QtPdfTypeStructs[SBK_QPdfSelection_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTPDF_PYTHON_H
|
||||
|
||||
@@ -0,0 +1,88 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTPDFWIDGETS_PYTHON_H
|
||||
#define SBK_QTPDFWIDGETS_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtwidgets_python.h>
|
||||
#include <pyside6_qtpdf_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtPdfWidgets/qpdfview.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QPdfPageSelector;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QPDFPAGESELECTOR_IDX = 0,
|
||||
SBK_QPDFVIEW_PAGEMODE_IDX = 4,
|
||||
SBK_QPDFVIEW_ZOOMMODE_IDX = 6,
|
||||
SBK_QPDFVIEW_IDX = 2,
|
||||
SBK_QTPDFWIDGETS_IDX_COUNT = 8,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QPdfPageSelector_IDX = 0,
|
||||
SBK_QPdfView_PageMode_IDX = 2,
|
||||
SBK_QPdfView_ZoomMode_IDX = 3,
|
||||
SBK_QPdfView_IDX = 1,
|
||||
SBK_QtPdfWidgets_IDX_COUNT = 4,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtPdfWidgetsTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtPdfWidgetsTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtPdfWidgetsModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtPdfWidgetsTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTPDFWIDGETS_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTPDFWIDGETS_QLIST_QVARIANT_IDX = 1, // QList<QVariant>
|
||||
SBK_QTPDFWIDGETS_QLIST_QSTRING_IDX = 2, // QList<QString>
|
||||
SBK_QTPDFWIDGETS_QMAP_QSTRING_QVARIANT_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QTPDFWIDGETS_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtPdfWidgets_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtPdfWidgets_QList_QVariant_IDX = 1, // QList<QVariant>
|
||||
SBK_QtPdfWidgets_QList_QString_IDX = 2, // QList<QString>
|
||||
SBK_QtPdfWidgets_QMap_QString_QVariant_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QtPdfWidgets_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QPdfPageSelector >() { return Shiboken::Module::get(SbkPySide6_QtPdfWidgetsTypeStructs[SBK_QPdfPageSelector_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPdfView::PageMode >() { return Shiboken::Module::get(SbkPySide6_QtPdfWidgetsTypeStructs[SBK_QPdfView_PageMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPdfView::ZoomMode >() { return Shiboken::Module::get(SbkPySide6_QtPdfWidgetsTypeStructs[SBK_QPdfView_ZoomMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPdfView >() { return Shiboken::Module::get(SbkPySide6_QtPdfWidgetsTypeStructs[SBK_QPdfView_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTPDFWIDGETS_PYTHON_H
|
||||
|
||||
@@ -0,0 +1,196 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTPOSITIONING_PYTHON_H
|
||||
#define SBK_QTPOSITIONING_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtPositioning/qgeoareamonitorsource.h>
|
||||
#include <QtPositioning/qgeocoordinate.h>
|
||||
#include <QtPositioning/qgeopositioninfo.h>
|
||||
#include <QtPositioning/qgeopositioninfosource.h>
|
||||
#include <QtPositioning/qgeosatelliteinfo.h>
|
||||
#include <QtPositioning/qgeosatelliteinfosource.h>
|
||||
#include <QtPositioning/qgeoshape.h>
|
||||
#include <QtPositioning/qnmeapositioninfosource.h>
|
||||
#include <QtPositioning/qnmeasatelliteinfosource.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QGeoAddress;
|
||||
class QGeoAreaMonitorInfo;
|
||||
class QGeoCircle;
|
||||
class QGeoLocation;
|
||||
class QGeoPath;
|
||||
class QGeoPolygon;
|
||||
class QGeoPositionInfoSourceFactory;
|
||||
class QGeoRectangle;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QGEOADDRESS_IDX = 4,
|
||||
SBK_QGEOAREAMONITORINFO_IDX = 6,
|
||||
SBK_QGEOAREAMONITORSOURCE_ERROR_IDX = 12,
|
||||
SBK_QGEOAREAMONITORSOURCE_AREAMONITORFEATURE_IDX = 10,
|
||||
SBK_QFLAGS_QGEOAREAMONITORSOURCE_AREAMONITORFEATURE_IDX = 0,
|
||||
SBK_QGEOAREAMONITORSOURCE_IDX = 8,
|
||||
SBK_QGEOCIRCLE_IDX = 14,
|
||||
SBK_QGEOCOORDINATE_COORDINATETYPE_IDX = 20,
|
||||
SBK_QGEOCOORDINATE_COORDINATEFORMAT_IDX = 18,
|
||||
SBK_QGEOCOORDINATE_IDX = 16,
|
||||
SBK_QGEOLOCATION_IDX = 22,
|
||||
SBK_QGEOPATH_IDX = 24,
|
||||
SBK_QGEOPOLYGON_IDX = 26,
|
||||
SBK_QGEOPOSITIONINFO_ATTRIBUTE_IDX = 30,
|
||||
SBK_QGEOPOSITIONINFO_IDX = 28,
|
||||
SBK_QGEOPOSITIONINFOSOURCE_ERROR_IDX = 34,
|
||||
SBK_QGEOPOSITIONINFOSOURCE_POSITIONINGMETHOD_IDX = 36,
|
||||
SBK_QFLAGS_QGEOPOSITIONINFOSOURCE_POSITIONINGMETHOD_IDX = 2,
|
||||
SBK_QGEOPOSITIONINFOSOURCE_IDX = 32,
|
||||
SBK_QGEOPOSITIONINFOSOURCEFACTORY_IDX = 38,
|
||||
SBK_QGEORECTANGLE_IDX = 40,
|
||||
SBK_QGEOSATELLITEINFO_ATTRIBUTE_IDX = 44,
|
||||
SBK_QGEOSATELLITEINFO_SATELLITESYSTEM_IDX = 46,
|
||||
SBK_QGEOSATELLITEINFO_IDX = 42,
|
||||
SBK_QGEOSATELLITEINFOSOURCE_ERROR_IDX = 50,
|
||||
SBK_QGEOSATELLITEINFOSOURCE_IDX = 48,
|
||||
SBK_QGEOSHAPE_SHAPETYPE_IDX = 54,
|
||||
SBK_QGEOSHAPE_IDX = 52,
|
||||
SBK_QNMEAPOSITIONINFOSOURCE_UPDATEMODE_IDX = 58,
|
||||
SBK_QNMEAPOSITIONINFOSOURCE_IDX = 56,
|
||||
SBK_QNMEASATELLITEINFOSOURCE_UPDATEMODE_IDX = 64,
|
||||
SBK_QNMEASATELLITEINFOSOURCE_SATELLITEINFOPARSESTATUS_IDX = 62,
|
||||
SBK_QNMEASATELLITEINFOSOURCE_IDX = 60,
|
||||
SBK_QTPOSITIONING_IDX_COUNT = 66,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QGeoAddress_IDX = 2,
|
||||
SBK_QGeoAreaMonitorInfo_IDX = 3,
|
||||
SBK_QGeoAreaMonitorSource_Error_IDX = 6,
|
||||
SBK_QGeoAreaMonitorSource_AreaMonitorFeature_IDX = 5,
|
||||
SBK_QFlags_QGeoAreaMonitorSource_AreaMonitorFeature_IDX = 0,
|
||||
SBK_QGeoAreaMonitorSource_IDX = 4,
|
||||
SBK_QGeoCircle_IDX = 7,
|
||||
SBK_QGeoCoordinate_CoordinateType_IDX = 10,
|
||||
SBK_QGeoCoordinate_CoordinateFormat_IDX = 9,
|
||||
SBK_QGeoCoordinate_IDX = 8,
|
||||
SBK_QGeoLocation_IDX = 11,
|
||||
SBK_QGeoPath_IDX = 12,
|
||||
SBK_QGeoPolygon_IDX = 13,
|
||||
SBK_QGeoPositionInfo_Attribute_IDX = 15,
|
||||
SBK_QGeoPositionInfo_IDX = 14,
|
||||
SBK_QGeoPositionInfoSource_Error_IDX = 17,
|
||||
SBK_QGeoPositionInfoSource_PositioningMethod_IDX = 18,
|
||||
SBK_QFlags_QGeoPositionInfoSource_PositioningMethod_IDX = 1,
|
||||
SBK_QGeoPositionInfoSource_IDX = 16,
|
||||
SBK_QGeoPositionInfoSourceFactory_IDX = 19,
|
||||
SBK_QGeoRectangle_IDX = 20,
|
||||
SBK_QGeoSatelliteInfo_Attribute_IDX = 22,
|
||||
SBK_QGeoSatelliteInfo_SatelliteSystem_IDX = 23,
|
||||
SBK_QGeoSatelliteInfo_IDX = 21,
|
||||
SBK_QGeoSatelliteInfoSource_Error_IDX = 25,
|
||||
SBK_QGeoSatelliteInfoSource_IDX = 24,
|
||||
SBK_QGeoShape_ShapeType_IDX = 27,
|
||||
SBK_QGeoShape_IDX = 26,
|
||||
SBK_QNmeaPositionInfoSource_UpdateMode_IDX = 29,
|
||||
SBK_QNmeaPositionInfoSource_IDX = 28,
|
||||
SBK_QNmeaSatelliteInfoSource_UpdateMode_IDX = 32,
|
||||
SBK_QNmeaSatelliteInfoSource_SatelliteInfoParseStatus_IDX = 31,
|
||||
SBK_QNmeaSatelliteInfoSource_IDX = 30,
|
||||
SBK_QtPositioning_IDX_COUNT = 33,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtPositioningTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtPositioningTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtPositioningModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtPositioningTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTPOSITIONING_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTPOSITIONING_QLIST_QGEOCOORDINATE_IDX = 1, // QList<QGeoCoordinate>
|
||||
SBK_QTPOSITIONING_QMAP_QSTRING_QVARIANT_IDX = 2, // QMap<QString,QVariant>
|
||||
SBK_QTPOSITIONING_QLIST_QVARIANT_IDX = 3, // QList<QVariant>
|
||||
SBK_QTPOSITIONING_QLIST_QGEOSATELLITEINFO_IDX = 4, // QList<QGeoSatelliteInfo>
|
||||
SBK_QTPOSITIONING_QLIST_QGEOAREAMONITORINFO_IDX = 5, // QList<QGeoAreaMonitorInfo>
|
||||
SBK_QTPOSITIONING_QLIST_QSTRING_IDX = 6, // QList<QString>
|
||||
SBK_QTPOSITIONING_CONVERTERS_IDX_COUNT = 7,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtPositioning_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtPositioning_QList_QGeoCoordinate_IDX = 1, // QList<QGeoCoordinate>
|
||||
SBK_QtPositioning_QMap_QString_QVariant_IDX = 2, // QMap<QString,QVariant>
|
||||
SBK_QtPositioning_QList_QVariant_IDX = 3, // QList<QVariant>
|
||||
SBK_QtPositioning_QList_QGeoSatelliteInfo_IDX = 4, // QList<QGeoSatelliteInfo>
|
||||
SBK_QtPositioning_QList_QGeoAreaMonitorInfo_IDX = 5, // QList<QGeoAreaMonitorInfo>
|
||||
SBK_QtPositioning_QList_QString_IDX = 6, // QList<QString>
|
||||
SBK_QtPositioning_CONVERTERS_IDX_COUNT = 7,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
// Protected enum surrogates
|
||||
enum PySide6_QtPositioning_QNmeaSatelliteInfoSource_SatelliteInfoParseStatus_Surrogate : int {};
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoAddress >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoAddress_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoAreaMonitorInfo >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoAreaMonitorInfo_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoAreaMonitorSource::Error >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoAreaMonitorSource_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoAreaMonitorSource::AreaMonitorFeature >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoAreaMonitorSource_AreaMonitorFeature_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QGeoAreaMonitorSource::AreaMonitorFeature> >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QFlags_QGeoAreaMonitorSource_AreaMonitorFeature_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoAreaMonitorSource >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoAreaMonitorSource_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoCircle >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoCircle_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoCoordinate::CoordinateType >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoCoordinate_CoordinateType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoCoordinate::CoordinateFormat >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoCoordinate_CoordinateFormat_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoCoordinate >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoCoordinate_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoLocation >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoLocation_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoPath >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoPath_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoPolygon >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoPolygon_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoPositionInfo::Attribute >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoPositionInfo_Attribute_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoPositionInfo >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoPositionInfo_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoPositionInfoSource::Error >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoPositionInfoSource_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoPositionInfoSource::PositioningMethod >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoPositionInfoSource_PositioningMethod_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QGeoPositionInfoSource::PositioningMethod> >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QFlags_QGeoPositionInfoSource_PositioningMethod_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoPositionInfoSource >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoPositionInfoSource_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoPositionInfoSourceFactory >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoPositionInfoSourceFactory_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoRectangle >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoRectangle_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoSatelliteInfo::Attribute >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoSatelliteInfo_Attribute_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoSatelliteInfo::SatelliteSystem >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoSatelliteInfo_SatelliteSystem_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoSatelliteInfo >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoSatelliteInfo_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoSatelliteInfoSource::Error >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoSatelliteInfoSource_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoSatelliteInfoSource >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoSatelliteInfoSource_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoShape::ShapeType >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoShape_ShapeType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGeoShape >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QGeoShape_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNmeaPositionInfoSource::UpdateMode >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QNmeaPositionInfoSource_UpdateMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNmeaPositionInfoSource >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QNmeaPositionInfoSource_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNmeaSatelliteInfoSource::UpdateMode >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QNmeaSatelliteInfoSource_UpdateMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::PySide6_QtPositioning_QNmeaSatelliteInfoSource_SatelliteInfoParseStatus_Surrogate >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QNmeaSatelliteInfoSource_SatelliteInfoParseStatus_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QNmeaSatelliteInfoSource >() { return Shiboken::Module::get(SbkPySide6_QtPositioningTypeStructs[SBK_QNmeaSatelliteInfoSource_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTPOSITIONING_PYTHON_H
|
||||
|
||||
@@ -0,0 +1,162 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTPRINTSUPPORT_PYTHON_H
|
||||
#define SBK_QTPRINTSUPPORT_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtwidgets_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtPrintSupport/qabstractprintdialog.h>
|
||||
#include <QtPrintSupport/qprintengine.h>
|
||||
#include <QtPrintSupport/qprinter.h>
|
||||
#include <QtPrintSupport/qprintpreviewwidget.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QPageSetupDialog;
|
||||
class QPrintDialog;
|
||||
class QPrintPreviewDialog;
|
||||
class QPrinterInfo;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QABSTRACTPRINTDIALOG_PRINTRANGE_IDX = 4,
|
||||
SBK_QABSTRACTPRINTDIALOG_PRINTDIALOGOPTION_IDX = 2,
|
||||
SBK_QFLAGS_QABSTRACTPRINTDIALOG_PRINTDIALOGOPTION_IDX = 6,
|
||||
SBK_QABSTRACTPRINTDIALOG_IDX = 0,
|
||||
SBK_QPAGESETUPDIALOG_IDX = 8,
|
||||
SBK_QPRINTDIALOG_IDX = 10,
|
||||
SBK_QPRINTENGINE_PRINTENGINEPROPERTYKEY_IDX = 14,
|
||||
SBK_QPRINTENGINE_IDX = 12,
|
||||
SBK_QPRINTPREVIEWDIALOG_IDX = 16,
|
||||
SBK_QPRINTPREVIEWWIDGET_VIEWMODE_IDX = 20,
|
||||
SBK_QPRINTPREVIEWWIDGET_ZOOMMODE_IDX = 22,
|
||||
SBK_QPRINTPREVIEWWIDGET_IDX = 18,
|
||||
SBK_QPRINTER_PRINTERMODE_IDX = 38,
|
||||
SBK_QPRINTER_PAGEORDER_IDX = 32,
|
||||
SBK_QPRINTER_COLORMODE_IDX = 26,
|
||||
SBK_QPRINTER_PAPERSOURCE_IDX = 34,
|
||||
SBK_QPRINTER_PRINTERSTATE_IDX = 40,
|
||||
SBK_QPRINTER_OUTPUTFORMAT_IDX = 30,
|
||||
SBK_QPRINTER_PRINTRANGE_IDX = 36,
|
||||
SBK_QPRINTER_UNIT_IDX = 42,
|
||||
SBK_QPRINTER_DUPLEXMODE_IDX = 28,
|
||||
SBK_QPRINTER_IDX = 24,
|
||||
SBK_QPRINTERINFO_IDX = 44,
|
||||
SBK_QTPRINTSUPPORT_IDX_COUNT = 46,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QAbstractPrintDialog_PrintRange_IDX = 2,
|
||||
SBK_QAbstractPrintDialog_PrintDialogOption_IDX = 1,
|
||||
SBK_QFlags_QAbstractPrintDialog_PrintDialogOption_IDX = 3,
|
||||
SBK_QAbstractPrintDialog_IDX = 0,
|
||||
SBK_QPageSetupDialog_IDX = 4,
|
||||
SBK_QPrintDialog_IDX = 5,
|
||||
SBK_QPrintEngine_PrintEnginePropertyKey_IDX = 7,
|
||||
SBK_QPrintEngine_IDX = 6,
|
||||
SBK_QPrintPreviewDialog_IDX = 8,
|
||||
SBK_QPrintPreviewWidget_ViewMode_IDX = 10,
|
||||
SBK_QPrintPreviewWidget_ZoomMode_IDX = 11,
|
||||
SBK_QPrintPreviewWidget_IDX = 9,
|
||||
SBK_QPrinter_PrinterMode_IDX = 19,
|
||||
SBK_QPrinter_PageOrder_IDX = 16,
|
||||
SBK_QPrinter_ColorMode_IDX = 13,
|
||||
SBK_QPrinter_PaperSource_IDX = 17,
|
||||
SBK_QPrinter_PrinterState_IDX = 20,
|
||||
SBK_QPrinter_OutputFormat_IDX = 15,
|
||||
SBK_QPrinter_PrintRange_IDX = 18,
|
||||
SBK_QPrinter_Unit_IDX = 21,
|
||||
SBK_QPrinter_DuplexMode_IDX = 14,
|
||||
SBK_QPrinter_IDX = 12,
|
||||
SBK_QPrinterInfo_IDX = 22,
|
||||
SBK_QtPrintSupport_IDX_COUNT = 23,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtPrintSupportTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtPrintSupportTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtPrintSupportModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtPrintSupportTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTPRINTSUPPORT_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTPRINTSUPPORT_QLIST_QPRINTERINFO_IDX = 1, // QList<QPrinterInfo>
|
||||
SBK_QTPRINTSUPPORT_QLIST_QPRINTER_COLORMODE_IDX = 2, // QList<QPrinter::ColorMode>
|
||||
SBK_QTPRINTSUPPORT_QLIST_QPRINTER_DUPLEXMODE_IDX = 3, // QList<QPrinter::DuplexMode>
|
||||
SBK_QTPRINTSUPPORT_QLIST_QPAGESIZE_IDX = 4, // QList<QPageSize>
|
||||
SBK_QTPRINTSUPPORT_QLIST_QPRINTER_PAPERSOURCE_IDX = 5, // QList<QPrinter::PaperSource>
|
||||
SBK_QTPRINTSUPPORT_QLIST_QWIDGETPTR_IDX = 6, // QList<QWidget*>
|
||||
SBK_QTPRINTSUPPORT_QLIST_QVARIANT_IDX = 7, // QList<QVariant>
|
||||
SBK_QTPRINTSUPPORT_QLIST_QSTRING_IDX = 8, // QList<QString>
|
||||
SBK_QTPRINTSUPPORT_QMAP_QSTRING_QVARIANT_IDX = 9, // QMap<QString,QVariant>
|
||||
SBK_QTPRINTSUPPORT_CONVERTERS_IDX_COUNT = 10,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtPrintSupport_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtPrintSupport_QList_QPrinterInfo_IDX = 1, // QList<QPrinterInfo>
|
||||
SBK_QtPrintSupport_QList_QPrinter_ColorMode_IDX = 2, // QList<QPrinter::ColorMode>
|
||||
SBK_QtPrintSupport_QList_QPrinter_DuplexMode_IDX = 3, // QList<QPrinter::DuplexMode>
|
||||
SBK_QtPrintSupport_QList_QPageSize_IDX = 4, // QList<QPageSize>
|
||||
SBK_QtPrintSupport_QList_QPrinter_PaperSource_IDX = 5, // QList<QPrinter::PaperSource>
|
||||
SBK_QtPrintSupport_QList_QWidgetPTR_IDX = 6, // QList<QWidget*>
|
||||
SBK_QtPrintSupport_QList_QVariant_IDX = 7, // QList<QVariant>
|
||||
SBK_QtPrintSupport_QList_QString_IDX = 8, // QList<QString>
|
||||
SBK_QtPrintSupport_QMap_QString_QVariant_IDX = 9, // QMap<QString,QVariant>
|
||||
SBK_QtPrintSupport_CONVERTERS_IDX_COUNT = 10,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractPrintDialog::PrintRange >() { return Shiboken::Module::get(SbkPySide6_QtPrintSupportTypeStructs[SBK_QAbstractPrintDialog_PrintRange_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractPrintDialog::PrintDialogOption >() { return Shiboken::Module::get(SbkPySide6_QtPrintSupportTypeStructs[SBK_QAbstractPrintDialog_PrintDialogOption_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QAbstractPrintDialog::PrintDialogOption> >() { return Shiboken::Module::get(SbkPySide6_QtPrintSupportTypeStructs[SBK_QFlags_QAbstractPrintDialog_PrintDialogOption_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractPrintDialog >() { return Shiboken::Module::get(SbkPySide6_QtPrintSupportTypeStructs[SBK_QAbstractPrintDialog_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPageSetupDialog >() { return Shiboken::Module::get(SbkPySide6_QtPrintSupportTypeStructs[SBK_QPageSetupDialog_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPrintDialog >() { return Shiboken::Module::get(SbkPySide6_QtPrintSupportTypeStructs[SBK_QPrintDialog_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPrintEngine::PrintEnginePropertyKey >() { return Shiboken::Module::get(SbkPySide6_QtPrintSupportTypeStructs[SBK_QPrintEngine_PrintEnginePropertyKey_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPrintEngine >() { return Shiboken::Module::get(SbkPySide6_QtPrintSupportTypeStructs[SBK_QPrintEngine_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPrintPreviewDialog >() { return Shiboken::Module::get(SbkPySide6_QtPrintSupportTypeStructs[SBK_QPrintPreviewDialog_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPrintPreviewWidget::ViewMode >() { return Shiboken::Module::get(SbkPySide6_QtPrintSupportTypeStructs[SBK_QPrintPreviewWidget_ViewMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPrintPreviewWidget::ZoomMode >() { return Shiboken::Module::get(SbkPySide6_QtPrintSupportTypeStructs[SBK_QPrintPreviewWidget_ZoomMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPrintPreviewWidget >() { return Shiboken::Module::get(SbkPySide6_QtPrintSupportTypeStructs[SBK_QPrintPreviewWidget_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPrinter::PrinterMode >() { return Shiboken::Module::get(SbkPySide6_QtPrintSupportTypeStructs[SBK_QPrinter_PrinterMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPrinter::PageOrder >() { return Shiboken::Module::get(SbkPySide6_QtPrintSupportTypeStructs[SBK_QPrinter_PageOrder_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPrinter::ColorMode >() { return Shiboken::Module::get(SbkPySide6_QtPrintSupportTypeStructs[SBK_QPrinter_ColorMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPrinter::PaperSource >() { return Shiboken::Module::get(SbkPySide6_QtPrintSupportTypeStructs[SBK_QPrinter_PaperSource_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPrinter::PrinterState >() { return Shiboken::Module::get(SbkPySide6_QtPrintSupportTypeStructs[SBK_QPrinter_PrinterState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPrinter::OutputFormat >() { return Shiboken::Module::get(SbkPySide6_QtPrintSupportTypeStructs[SBK_QPrinter_OutputFormat_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPrinter::PrintRange >() { return Shiboken::Module::get(SbkPySide6_QtPrintSupportTypeStructs[SBK_QPrinter_PrintRange_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPrinter::Unit >() { return Shiboken::Module::get(SbkPySide6_QtPrintSupportTypeStructs[SBK_QPrinter_Unit_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPrinter::DuplexMode >() { return Shiboken::Module::get(SbkPySide6_QtPrintSupportTypeStructs[SBK_QPrinter_DuplexMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPrinter >() { return Shiboken::Module::get(SbkPySide6_QtPrintSupportTypeStructs[SBK_QPrinter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPrinterInfo >() { return Shiboken::Module::get(SbkPySide6_QtPrintSupportTypeStructs[SBK_QPrinterInfo_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTPRINTSUPPORT_PYTHON_H
|
||||
|
||||
285
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtQml/pyside6_qtqml_python.h
vendored
Normal file
285
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtQml/pyside6_qtqml_python.h
vendored
Normal file
@@ -0,0 +1,285 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTQML_PYTHON_H
|
||||
#define SBK_QTQML_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtnetwork_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtQml/qjsengine.h>
|
||||
#include <QtQml/qjsmanagedvalue.h>
|
||||
#include <QtQml/qjsprimitivevalue.h>
|
||||
#include <QtQml/qjsvalue.h>
|
||||
#include <QtQml/qqml.h>
|
||||
#include <QtQml/qqmlabstracturlinterceptor.h>
|
||||
#include <QtQml/qqmlcomponent.h>
|
||||
#include <QtQml/qqmlcontext.h>
|
||||
#include <QtQml/qqmldebug.h>
|
||||
#include <QtQml/qqmlengine.h>
|
||||
#include <QtQml/qqmlfile.h>
|
||||
#include <QtQml/qqmlincubator.h>
|
||||
#include <QtQml/qqmlproperty.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QJSValueIterator;
|
||||
class QPyQmlParserStatus;
|
||||
class QPyQmlPropertyValueSource;
|
||||
class QQmlApplicationEngine;
|
||||
class QQmlEngine;
|
||||
class QQmlError;
|
||||
class QQmlExpression;
|
||||
class QQmlExtensionInterface;
|
||||
class QQmlExtensionPlugin;
|
||||
class QQmlFileSelector;
|
||||
class QQmlIncubationController;
|
||||
class QQmlListReference;
|
||||
class QQmlNetworkAccessManagerFactory;
|
||||
class QQmlParserStatus;
|
||||
class QQmlPropertyMap;
|
||||
class QQmlPropertyValueSource;
|
||||
class QQmlScriptString;
|
||||
class QQmlTypesExtensionInterface;
|
||||
QT_END_NAMESPACE
|
||||
// Begin code injection
|
||||
// Volatile Bool Ptr type definition for QQmlIncubationController::incubateWhile(std::atomic<bool> *, int)
|
||||
#include <atomic>
|
||||
|
||||
using AtomicBool = std::atomic<bool>;
|
||||
|
||||
struct QtQml_VolatileBoolObject {
|
||||
PyObject_HEAD
|
||||
AtomicBool *flag;
|
||||
};
|
||||
// End of code injection
|
||||
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QJSENGINE_OBJECTOWNERSHIP_IDX = 8,
|
||||
SBK_QJSENGINE_EXTENSION_IDX = 6,
|
||||
SBK_QFLAGS_QJSENGINE_EXTENSION_IDX = 0,
|
||||
SBK_QJSENGINE_IDX = 4,
|
||||
SBK_QJSMANAGEDVALUE_TYPE_IDX = 12,
|
||||
SBK_QJSMANAGEDVALUE_IDX = 10,
|
||||
SBK_QJSPRIMITIVEVALUE_TYPE_IDX = 16,
|
||||
SBK_QJSPRIMITIVEVALUE_IDX = 14,
|
||||
SBK_QJSVALUE_SPECIALVALUE_IDX = 24,
|
||||
SBK_QJSVALUE_ERRORTYPE_IDX = 20,
|
||||
SBK_QJSVALUE_OBJECTCONVERSIONBEHAVIOR_IDX = 22,
|
||||
SBK_QJSVALUE_IDX = 18,
|
||||
SBK_QJSVALUEITERATOR_IDX = 26,
|
||||
SBK_QPYQMLPARSERSTATUS_IDX = 30,
|
||||
SBK_QPYQMLPROPERTYVALUESOURCE_IDX = 32,
|
||||
SBK_QQMLABSTRACTURLINTERCEPTOR_DATATYPE_IDX = 36,
|
||||
SBK_QQMLABSTRACTURLINTERCEPTOR_IDX = 34,
|
||||
SBK_QQMLAPPLICATIONENGINE_IDX = 38,
|
||||
SBK_QQMLCOMPONENT_COMPILATIONMODE_IDX = 42,
|
||||
SBK_QQMLCOMPONENT_STATUS_IDX = 44,
|
||||
SBK_QQMLCOMPONENT_IDX = 40,
|
||||
SBK_QQMLCONTEXT_IDX = 46,
|
||||
SBK_QQMLCONTEXT_PROPERTYPAIR_IDX = 48,
|
||||
SBK_QQMLDEBUGGINGENABLER_STARTMODE_IDX = 52,
|
||||
SBK_QQMLDEBUGGINGENABLER_IDX = 50,
|
||||
SBK_QQMLENGINE_IDX = 54,
|
||||
SBK_QQMLERROR_IDX = 56,
|
||||
SBK_QQMLEXPRESSION_IDX = 58,
|
||||
SBK_QQMLEXTENSIONINTERFACE_IDX = 60,
|
||||
SBK_QQMLEXTENSIONPLUGIN_IDX = 62,
|
||||
SBK_QQMLFILE_STATUS_IDX = 66,
|
||||
SBK_QQMLFILE_IDX = 64,
|
||||
SBK_QQMLFILESELECTOR_IDX = 68,
|
||||
SBK_QQMLIMAGEPROVIDERBASE_IMAGETYPE_IDX = 74,
|
||||
SBK_QQMLIMAGEPROVIDERBASE_FLAG_IDX = 72,
|
||||
SBK_QFLAGS_QQMLIMAGEPROVIDERBASE_FLAG_IDX = 2,
|
||||
SBK_QQMLIMAGEPROVIDERBASE_IDX = 70,
|
||||
SBK_QQMLINCUBATIONCONTROLLER_IDX = 76,
|
||||
SBK_QQMLINCUBATOR_INCUBATIONMODE_IDX = 80,
|
||||
SBK_QQMLINCUBATOR_STATUS_IDX = 82,
|
||||
SBK_QQMLINCUBATOR_IDX = 78,
|
||||
SBK_QQMLLISTREFERENCE_IDX = 84,
|
||||
SBK_QQMLNETWORKACCESSMANAGERFACTORY_IDX = 88,
|
||||
SBK_QQMLPARSERSTATUS_IDX = 90,
|
||||
SBK_QQMLPROPERTY_PROPERTYTYPECATEGORY_IDX = 94,
|
||||
SBK_QQMLPROPERTY_TYPE_IDX = 96,
|
||||
SBK_QQMLPROPERTY_IDX = 92,
|
||||
SBK_QQMLPROPERTYMAP_IDX = 98,
|
||||
SBK_QQMLPROPERTYVALUESOURCE_IDX = 100,
|
||||
SBK_QQMLSCRIPTSTRING_IDX = 102,
|
||||
SBK_QQMLTYPESEXTENSIONINTERFACE_IDX = 104,
|
||||
// SBK_QML_HAS_ATTACHED_PROPERTIES_IDX = 28,
|
||||
SBK_QQMLMODULEIMPORTSPECIALVERSIONS_IDX = 86,
|
||||
SBK_QTQML_IDX_COUNT = 108,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QJSEngine_ObjectOwnership_IDX = 4,
|
||||
SBK_QJSEngine_Extension_IDX = 3,
|
||||
SBK_QFlags_QJSEngine_Extension_IDX = 0,
|
||||
SBK_QJSEngine_IDX = 2,
|
||||
SBK_QJSManagedValue_Type_IDX = 6,
|
||||
SBK_QJSManagedValue_IDX = 5,
|
||||
SBK_QJSPrimitiveValue_Type_IDX = 8,
|
||||
SBK_QJSPrimitiveValue_IDX = 7,
|
||||
SBK_QJSValue_SpecialValue_IDX = 12,
|
||||
SBK_QJSValue_ErrorType_IDX = 10,
|
||||
SBK_QJSValue_ObjectConversionBehavior_IDX = 11,
|
||||
SBK_QJSValue_IDX = 9,
|
||||
SBK_QJSValueIterator_IDX = 13,
|
||||
SBK_QPyQmlParserStatus_IDX = 15,
|
||||
SBK_QPyQmlPropertyValueSource_IDX = 16,
|
||||
SBK_QQmlAbstractUrlInterceptor_DataType_IDX = 18,
|
||||
SBK_QQmlAbstractUrlInterceptor_IDX = 17,
|
||||
SBK_QQmlApplicationEngine_IDX = 19,
|
||||
SBK_QQmlComponent_CompilationMode_IDX = 21,
|
||||
SBK_QQmlComponent_Status_IDX = 22,
|
||||
SBK_QQmlComponent_IDX = 20,
|
||||
SBK_QQmlContext_IDX = 23,
|
||||
SBK_QQmlContext_PropertyPair_IDX = 24,
|
||||
SBK_QQmlDebuggingEnabler_StartMode_IDX = 26,
|
||||
SBK_QQmlDebuggingEnabler_IDX = 25,
|
||||
SBK_QQmlEngine_IDX = 27,
|
||||
SBK_QQmlError_IDX = 28,
|
||||
SBK_QQmlExpression_IDX = 29,
|
||||
SBK_QQmlExtensionInterface_IDX = 30,
|
||||
SBK_QQmlExtensionPlugin_IDX = 31,
|
||||
SBK_QQmlFile_Status_IDX = 33,
|
||||
SBK_QQmlFile_IDX = 32,
|
||||
SBK_QQmlFileSelector_IDX = 34,
|
||||
SBK_QQmlImageProviderBase_ImageType_IDX = 37,
|
||||
SBK_QQmlImageProviderBase_Flag_IDX = 36,
|
||||
SBK_QFlags_QQmlImageProviderBase_Flag_IDX = 1,
|
||||
SBK_QQmlImageProviderBase_IDX = 35,
|
||||
SBK_QQmlIncubationController_IDX = 38,
|
||||
SBK_QQmlIncubator_IncubationMode_IDX = 40,
|
||||
SBK_QQmlIncubator_Status_IDX = 41,
|
||||
SBK_QQmlIncubator_IDX = 39,
|
||||
SBK_QQmlListReference_IDX = 42,
|
||||
SBK_QQmlNetworkAccessManagerFactory_IDX = 44,
|
||||
SBK_QQmlParserStatus_IDX = 45,
|
||||
SBK_QQmlProperty_PropertyTypeCategory_IDX = 47,
|
||||
SBK_QQmlProperty_Type_IDX = 48,
|
||||
SBK_QQmlProperty_IDX = 46,
|
||||
SBK_QQmlPropertyMap_IDX = 49,
|
||||
SBK_QQmlPropertyValueSource_IDX = 50,
|
||||
SBK_QQmlScriptString_IDX = 51,
|
||||
SBK_QQmlTypesExtensionInterface_IDX = 52,
|
||||
SBK_QML_HAS_ATTACHED_PROPERTIES_IDX = 14,
|
||||
SBK_QQmlModuleImportSpecialVersions_IDX = 43,
|
||||
SBK_QtQml_IDX_COUNT = 54,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtQmlTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtQmlTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtQmlModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtQmlTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTQML_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTQML_QLIST_QQMLERROR_IDX = 1, // QList<QQmlError>
|
||||
SBK_QTQML_QMAP_QSTRING_QVARIANT_IDX = 2, // QMap<QString,QVariant>
|
||||
SBK_QTQML_QHASH_QSTRING_QVARIANT_IDX = 3, // QHash<QString,QVariant>
|
||||
SBK_QTQML_QLIST_QJSVALUE_IDX = 4, // QList<QJSValue>
|
||||
SBK_QTQML_QLIST_QQMLCONTEXT_PROPERTYPAIR_IDX = 5, // QList<QQmlContext::PropertyPair>
|
||||
SBK_QTQML_QLIST_QQMLABSTRACTURLINTERCEPTORPTR_IDX = 6, // QList<QQmlAbstractUrlInterceptor*>
|
||||
SBK_QTQML_QLIST_QOBJECTPTR_IDX = 7, // QList<QObject*>
|
||||
SBK_QTQML_QLIST_QVARIANT_IDX = 8, // QList<QVariant>
|
||||
SBK_QTQML_QLIST_QSTRING_IDX = 9, // QList<QString>
|
||||
SBK_QTQML_CONVERTERS_IDX_COUNT = 10,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtQml_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtQml_QList_QQmlError_IDX = 1, // QList<QQmlError>
|
||||
SBK_QtQml_QMap_QString_QVariant_IDX = 2, // QMap<QString,QVariant>
|
||||
SBK_QtQml_QHash_QString_QVariant_IDX = 3, // QHash<QString,QVariant>
|
||||
SBK_QtQml_QList_QJSValue_IDX = 4, // QList<QJSValue>
|
||||
SBK_QtQml_QList_QQmlContext_PropertyPair_IDX = 5, // QList<QQmlContext::PropertyPair>
|
||||
SBK_QtQml_QList_QQmlAbstractUrlInterceptorPTR_IDX = 6, // QList<QQmlAbstractUrlInterceptor*>
|
||||
SBK_QtQml_QList_QObjectPTR_IDX = 7, // QList<QObject*>
|
||||
SBK_QtQml_QList_QVariant_IDX = 8, // QList<QVariant>
|
||||
SBK_QtQml_QList_QString_IDX = 9, // QList<QString>
|
||||
SBK_QtQml_CONVERTERS_IDX_COUNT = 10,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlModuleImportSpecialVersions >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlModuleImportSpecialVersions_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QJSEngine::ObjectOwnership >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QJSEngine_ObjectOwnership_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QJSEngine::Extension >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QJSEngine_Extension_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QJSEngine::Extension> >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QFlags_QJSEngine_Extension_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QJSEngine >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QJSEngine_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QJSManagedValue::Type >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QJSManagedValue_Type_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QJSManagedValue >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QJSManagedValue_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QJSPrimitiveValue::Type >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QJSPrimitiveValue_Type_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QJSPrimitiveValue >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QJSPrimitiveValue_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QJSValue::SpecialValue >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QJSValue_SpecialValue_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QJSValue::ErrorType >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QJSValue_ErrorType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QJSValue::ObjectConversionBehavior >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QJSValue_ObjectConversionBehavior_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QJSValue >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QJSValue_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QJSValueIterator >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QJSValueIterator_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPyQmlParserStatus >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QPyQmlParserStatus_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPyQmlPropertyValueSource >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QPyQmlPropertyValueSource_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlAbstractUrlInterceptor::DataType >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlAbstractUrlInterceptor_DataType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlAbstractUrlInterceptor >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlAbstractUrlInterceptor_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlApplicationEngine >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlApplicationEngine_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlComponent::CompilationMode >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlComponent_CompilationMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlComponent::Status >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlComponent_Status_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlComponent >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlComponent_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlContext >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlContext_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlContext::PropertyPair >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlContext_PropertyPair_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlDebuggingEnabler::StartMode >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlDebuggingEnabler_StartMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlDebuggingEnabler >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlDebuggingEnabler_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlEngine >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlEngine_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlError >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlError_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlExpression >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlExpression_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlExtensionInterface >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlExtensionInterface_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlExtensionPlugin >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlExtensionPlugin_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlFile::Status >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlFile_Status_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlFile >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlFile_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlFileSelector >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlFileSelector_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlImageProviderBase::ImageType >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlImageProviderBase_ImageType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlImageProviderBase::Flag >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlImageProviderBase_Flag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QQmlImageProviderBase::Flag> >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QFlags_QQmlImageProviderBase_Flag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlImageProviderBase >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlImageProviderBase_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlIncubationController >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlIncubationController_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlIncubator::IncubationMode >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlIncubator_IncubationMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlIncubator::Status >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlIncubator_Status_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlIncubator >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlIncubator_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlListReference >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlListReference_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlNetworkAccessManagerFactory >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlNetworkAccessManagerFactory_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlParserStatus >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlParserStatus_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlProperty::PropertyTypeCategory >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlProperty_PropertyTypeCategory_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlProperty::Type >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlProperty_Type_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlProperty >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlProperty_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlPropertyMap >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlPropertyMap_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlPropertyValueSource >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlPropertyValueSource_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlScriptString >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlScriptString_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQmlTypesExtensionInterface >() { return Shiboken::Module::get(SbkPySide6_QtQmlTypeStructs[SBK_QQmlTypesExtensionInterface_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTQML_PYTHON_H
|
||||
|
||||
488
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtQuick/pyside6_qtquick_python.h
vendored
Normal file
488
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtQuick/pyside6_qtquick_python.h
vendored
Normal file
@@ -0,0 +1,488 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTQUICK_PYTHON_H
|
||||
#define SBK_QTQUICK_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtnetwork_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtopengl_python.h>
|
||||
#include <pyside6_qtqml_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtQuick/qquickframebufferobject.h>
|
||||
#include <QtQuick/qquickitem.h>
|
||||
#include <QtQuick/qquickopenglutils.h>
|
||||
#include <QtQuick/qquickpainteditem.h>
|
||||
#include <QtQuick/qquickrendertarget.h>
|
||||
#include <QtQuick/qquickrhiitem.h>
|
||||
#include <QtQuick/qquicktextdocument.h>
|
||||
#include <QtQuick/qquickview.h>
|
||||
#include <QtQuick/qquickwindow.h>
|
||||
#include <QtQuick/qsggeometry.h>
|
||||
#include <QtQuick/qsgimagenode.h>
|
||||
#include <QtQuick/qsgmaterial.h>
|
||||
#include <QtQuick/qsgmaterialshader.h>
|
||||
#include <QtQuick/qsgnode.h>
|
||||
#include <QtQuick/qsgrendererinterface.h>
|
||||
#include <QtQuick/qsgrendernode.h>
|
||||
#include <QtQuick/qsgsimpletexturenode.h>
|
||||
#include <QtQuick/qsgtextnode.h>
|
||||
#include <QtQuick/qsgtexture.h>
|
||||
#include <qsharedpointer.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QQuickAsyncImageProvider;
|
||||
class QQuickGraphicsConfiguration;
|
||||
class QQuickGraphicsDevice;
|
||||
class QQuickImageProvider;
|
||||
class QQuickImageResponse;
|
||||
class QQuickItemGrabResult;
|
||||
class QQuickRenderControl;
|
||||
class QQuickRhiItemRenderer;
|
||||
class QQuickTextureFactory;
|
||||
class QQuickTransform;
|
||||
class QSGBasicGeometryNode;
|
||||
class QSGClipNode;
|
||||
class QSGDynamicTexture;
|
||||
class QSGFlatColorMaterial;
|
||||
class QSGGeometryNode;
|
||||
struct QSGMaterialType;
|
||||
class QSGNinePatchNode;
|
||||
class QSGNodeVisitor;
|
||||
class QSGOpacityNode;
|
||||
class QSGOpaqueTextureMaterial;
|
||||
class QSGRectangleNode;
|
||||
class QSGRootNode;
|
||||
class QSGSimpleRectNode;
|
||||
class QSGTextureMaterial;
|
||||
class QSGTextureProvider;
|
||||
class QSGTransformNode;
|
||||
class QSGVertexColorMaterial;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QQUICKASYNCIMAGEPROVIDER_IDX = 32,
|
||||
SBK_QQUICKFRAMEBUFFEROBJECT_IDX = 34,
|
||||
SBK_QQUICKFRAMEBUFFEROBJECT_RENDERER_IDX = 36,
|
||||
SBK_QQUICKGRAPHICSCONFIGURATION_IDX = 38,
|
||||
SBK_QQUICKGRAPHICSDEVICE_IDX = 40,
|
||||
SBK_QQUICKIMAGEPROVIDER_IDX = 42,
|
||||
SBK_QQUICKIMAGERESPONSE_IDX = 44,
|
||||
SBK_QQUICKITEM_FLAG_IDX = 48,
|
||||
SBK_QFLAGS_QQUICKITEM_FLAG_IDX = 0,
|
||||
SBK_QQUICKITEM_ITEMCHANGE_IDX = 50,
|
||||
SBK_QQUICKITEM_TRANSFORMORIGIN_IDX = 52,
|
||||
SBK_QQUICKITEM_IDX = 46,
|
||||
SBK_QQUICKITEM_UPDATEPAINTNODEDATA_IDX = 54,
|
||||
SBK_QQUICKITEMGRABRESULT_IDX = 56,
|
||||
SBK_QTQUICKQQUICKOPENGLUTILS_IDX = 58,
|
||||
SBK_QQUICKPAINTEDITEM_RENDERTARGET_IDX = 64,
|
||||
SBK_QQUICKPAINTEDITEM_PERFORMANCEHINT_IDX = 62,
|
||||
SBK_QFLAGS_QQUICKPAINTEDITEM_PERFORMANCEHINT_IDX = 2,
|
||||
SBK_QQUICKPAINTEDITEM_IDX = 60,
|
||||
SBK_QQUICKRENDERCONTROL_IDX = 66,
|
||||
SBK_QQUICKRENDERTARGET_FLAG_IDX = 70,
|
||||
SBK_QFLAGS_QQUICKRENDERTARGET_FLAG_IDX = 4,
|
||||
SBK_QQUICKRENDERTARGET_IDX = 68,
|
||||
SBK_QQUICKRHIITEM_TEXTUREFORMAT_IDX = 74,
|
||||
SBK_QQUICKRHIITEM_IDX = 72,
|
||||
SBK_QQUICKRHIITEMRENDERER_IDX = 76,
|
||||
SBK_QQUICKTEXTDOCUMENT_STATUS_IDX = 80,
|
||||
SBK_QQUICKTEXTDOCUMENT_IDX = 78,
|
||||
SBK_QQUICKTEXTUREFACTORY_IDX = 82,
|
||||
SBK_QQUICKTRANSFORM_IDX = 84,
|
||||
SBK_QQUICKVIEW_RESIZEMODE_IDX = 88,
|
||||
SBK_QQUICKVIEW_STATUS_IDX = 90,
|
||||
SBK_QQUICKVIEW_IDX = 86,
|
||||
SBK_QQUICKWINDOW_CREATETEXTUREOPTION_IDX = 94,
|
||||
SBK_QFLAGS_QQUICKWINDOW_CREATETEXTUREOPTION_IDX = 6,
|
||||
SBK_QQUICKWINDOW_RENDERSTAGE_IDX = 98,
|
||||
SBK_QQUICKWINDOW_SCENEGRAPHERROR_IDX = 100,
|
||||
SBK_QQUICKWINDOW_TEXTRENDERTYPE_IDX = 102,
|
||||
SBK_QQUICKWINDOW_IDX = 92,
|
||||
SBK_QQUICKWINDOW_GRAPHICSSTATEINFO_IDX = 96,
|
||||
SBK_QSGBASICGEOMETRYNODE_IDX = 104,
|
||||
SBK_QSGCLIPNODE_IDX = 106,
|
||||
SBK_QSGDYNAMICTEXTURE_IDX = 108,
|
||||
SBK_QSGFLATCOLORMATERIAL_IDX = 110,
|
||||
SBK_QSGGEOMETRY_ATTRIBUTETYPE_IDX = 118,
|
||||
SBK_QSGGEOMETRY_DATAPATTERN_IDX = 122,
|
||||
SBK_QSGGEOMETRY_DRAWINGMODE_IDX = 124,
|
||||
SBK_QSGGEOMETRY_TYPE_IDX = 130,
|
||||
SBK_QSGGEOMETRY_IDX = 112,
|
||||
SBK_QSGGEOMETRY_ATTRIBUTE_IDX = 114,
|
||||
SBK_QSGGEOMETRY_ATTRIBUTESET_IDX = 116,
|
||||
SBK_QSGGEOMETRY_COLOREDPOINT2D_IDX = 120,
|
||||
SBK_QSGGEOMETRY_POINT2D_IDX = 126,
|
||||
SBK_QSGGEOMETRY_TEXTUREDPOINT2D_IDX = 128,
|
||||
SBK_QSGGEOMETRYNODE_IDX = 132,
|
||||
SBK_QSGIMAGENODE_TEXTURECOORDINATESTRANSFORMFLAG_IDX = 136,
|
||||
SBK_QFLAGS_QSGIMAGENODE_TEXTURECOORDINATESTRANSFORMFLAG_IDX = 8,
|
||||
SBK_QSGIMAGENODE_IDX = 134,
|
||||
SBK_QSGMATERIAL_FLAG_IDX = 140,
|
||||
SBK_QFLAGS_QSGMATERIAL_FLAG_IDX = 10,
|
||||
SBK_QSGMATERIAL_IDX = 138,
|
||||
SBK_QSGMATERIALSHADER_FLAG_IDX = 144,
|
||||
SBK_QFLAGS_QSGMATERIALSHADER_FLAG_IDX = 12,
|
||||
SBK_QSGMATERIALSHADER_STAGE_IDX = 162,
|
||||
SBK_QSGMATERIALSHADER_IDX = 142,
|
||||
SBK_QSGMATERIALSHADER_GRAPHICSPIPELINESTATE_BLENDFACTOR_IDX = 148,
|
||||
SBK_QSGMATERIALSHADER_GRAPHICSPIPELINESTATE_BLENDOP_IDX = 150,
|
||||
SBK_QSGMATERIALSHADER_GRAPHICSPIPELINESTATE_COLORMASKCOMPONENT_IDX = 152,
|
||||
SBK_QFLAGS_QSGMATERIALSHADER_GRAPHICSPIPELINESTATE_COLORMASKCOMPONENT_IDX = 14,
|
||||
SBK_QSGMATERIALSHADER_GRAPHICSPIPELINESTATE_CULLMODE_IDX = 154,
|
||||
SBK_QSGMATERIALSHADER_GRAPHICSPIPELINESTATE_POLYGONMODE_IDX = 156,
|
||||
SBK_QSGMATERIALSHADER_GRAPHICSPIPELINESTATE_IDX = 146,
|
||||
SBK_QSGMATERIALSHADER_RENDERSTATE_DIRTYSTATE_IDX = 160,
|
||||
SBK_QFLAGS_QSGMATERIALSHADER_RENDERSTATE_DIRTYSTATE_IDX = 16,
|
||||
SBK_QSGMATERIALSHADER_RENDERSTATE_IDX = 158,
|
||||
SBK_QSGMATERIALTYPE_IDX = 164,
|
||||
SBK_QSGNINEPATCHNODE_IDX = 166,
|
||||
SBK_QSGNODE_NODETYPE_IDX = 174,
|
||||
SBK_QSGNODE_FLAG_IDX = 172,
|
||||
SBK_QFLAGS_QSGNODE_FLAG_IDX = 20,
|
||||
SBK_QSGNODE_DIRTYSTATEBIT_IDX = 170,
|
||||
SBK_QFLAGS_QSGNODE_DIRTYSTATEBIT_IDX = 18,
|
||||
SBK_QSGNODE_IDX = 168,
|
||||
SBK_QSGNODEVISITOR_IDX = 176,
|
||||
SBK_QSGOPACITYNODE_IDX = 178,
|
||||
SBK_QSGOPAQUETEXTUREMATERIAL_IDX = 180,
|
||||
SBK_QSGRECTANGLENODE_IDX = 182,
|
||||
SBK_QSGRENDERNODE_STATEFLAG_IDX = 190,
|
||||
SBK_QFLAGS_QSGRENDERNODE_STATEFLAG_IDX = 24,
|
||||
SBK_QSGRENDERNODE_RENDERINGFLAG_IDX = 188,
|
||||
SBK_QFLAGS_QSGRENDERNODE_RENDERINGFLAG_IDX = 22,
|
||||
SBK_QSGRENDERNODE_IDX = 184,
|
||||
SBK_QSGRENDERNODE_RENDERSTATE_IDX = 186,
|
||||
SBK_QSGRENDERERINTERFACE_GRAPHICSAPI_IDX = 194,
|
||||
SBK_QSGRENDERERINTERFACE_RESOURCE_IDX = 198,
|
||||
SBK_QSGRENDERERINTERFACE_SHADERTYPE_IDX = 204,
|
||||
SBK_QSGRENDERERINTERFACE_SHADERCOMPILATIONTYPE_IDX = 200,
|
||||
SBK_QFLAGS_QSGRENDERERINTERFACE_SHADERCOMPILATIONTYPE_IDX = 26,
|
||||
SBK_QSGRENDERERINTERFACE_SHADERSOURCETYPE_IDX = 202,
|
||||
SBK_QFLAGS_QSGRENDERERINTERFACE_SHADERSOURCETYPE_IDX = 28,
|
||||
SBK_QSGRENDERERINTERFACE_RENDERMODE_IDX = 196,
|
||||
SBK_QSGRENDERERINTERFACE_IDX = 192,
|
||||
SBK_QSGROOTNODE_IDX = 206,
|
||||
SBK_QSGSIMPLERECTNODE_IDX = 208,
|
||||
SBK_QSGSIMPLETEXTURENODE_TEXTURECOORDINATESTRANSFORMFLAG_IDX = 212,
|
||||
SBK_QFLAGS_QSGSIMPLETEXTURENODE_TEXTURECOORDINATESTRANSFORMFLAG_IDX = 30,
|
||||
SBK_QSGSIMPLETEXTURENODE_IDX = 210,
|
||||
SBK_QSGTEXTNODE_TEXTSTYLE_IDX = 218,
|
||||
SBK_QSGTEXTNODE_RENDERTYPE_IDX = 216,
|
||||
SBK_QSGTEXTNODE_IDX = 214,
|
||||
SBK_QSGTEXTURE_WRAPMODE_IDX = 226,
|
||||
SBK_QSGTEXTURE_FILTERING_IDX = 224,
|
||||
SBK_QSGTEXTURE_ANISOTROPYLEVEL_IDX = 222,
|
||||
SBK_QSGTEXTURE_IDX = 220,
|
||||
SBK_QSGTEXTUREMATERIAL_IDX = 228,
|
||||
SBK_QSGTEXTUREPROVIDER_IDX = 230,
|
||||
SBK_QSGTRANSFORMNODE_IDX = 232,
|
||||
SBK_QSGVERTEXCOLORMATERIAL_IDX = 234,
|
||||
SBK_QSHAREDPOINTER_QQUICKITEMGRABRESULT_IDX = 238, // QSharedPointer<QQuickItemGrabResult>
|
||||
SBK_QSHAREDPOINTER_CONSTQQUICKITEMGRABRESULT_IDX = 238, // (const)
|
||||
SBK_QTQUICK_IDX_COUNT = 240,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QQuickAsyncImageProvider_IDX = 16,
|
||||
SBK_QQuickFramebufferObject_IDX = 17,
|
||||
SBK_QQuickFramebufferObject_Renderer_IDX = 18,
|
||||
SBK_QQuickGraphicsConfiguration_IDX = 19,
|
||||
SBK_QQuickGraphicsDevice_IDX = 20,
|
||||
SBK_QQuickImageProvider_IDX = 21,
|
||||
SBK_QQuickImageResponse_IDX = 22,
|
||||
SBK_QQuickItem_Flag_IDX = 24,
|
||||
SBK_QFlags_QQuickItem_Flag_IDX = 0,
|
||||
SBK_QQuickItem_ItemChange_IDX = 25,
|
||||
SBK_QQuickItem_TransformOrigin_IDX = 26,
|
||||
SBK_QQuickItem_IDX = 23,
|
||||
SBK_QQuickItem_UpdatePaintNodeData_IDX = 27,
|
||||
SBK_QQuickItemGrabResult_IDX = 28,
|
||||
SBK_QtQuickQQuickOpenGLUtils_IDX = 29,
|
||||
SBK_QQuickPaintedItem_RenderTarget_IDX = 32,
|
||||
SBK_QQuickPaintedItem_PerformanceHint_IDX = 31,
|
||||
SBK_QFlags_QQuickPaintedItem_PerformanceHint_IDX = 1,
|
||||
SBK_QQuickPaintedItem_IDX = 30,
|
||||
SBK_QQuickRenderControl_IDX = 33,
|
||||
SBK_QQuickRenderTarget_Flag_IDX = 35,
|
||||
SBK_QFlags_QQuickRenderTarget_Flag_IDX = 2,
|
||||
SBK_QQuickRenderTarget_IDX = 34,
|
||||
SBK_QQuickRhiItem_TextureFormat_IDX = 37,
|
||||
SBK_QQuickRhiItem_IDX = 36,
|
||||
SBK_QQuickRhiItemRenderer_IDX = 38,
|
||||
SBK_QQuickTextDocument_Status_IDX = 40,
|
||||
SBK_QQuickTextDocument_IDX = 39,
|
||||
SBK_QQuickTextureFactory_IDX = 41,
|
||||
SBK_QQuickTransform_IDX = 42,
|
||||
SBK_QQuickView_ResizeMode_IDX = 44,
|
||||
SBK_QQuickView_Status_IDX = 45,
|
||||
SBK_QQuickView_IDX = 43,
|
||||
SBK_QQuickWindow_CreateTextureOption_IDX = 47,
|
||||
SBK_QFlags_QQuickWindow_CreateTextureOption_IDX = 3,
|
||||
SBK_QQuickWindow_RenderStage_IDX = 49,
|
||||
SBK_QQuickWindow_SceneGraphError_IDX = 50,
|
||||
SBK_QQuickWindow_TextRenderType_IDX = 51,
|
||||
SBK_QQuickWindow_IDX = 46,
|
||||
SBK_QQuickWindow_GraphicsStateInfo_IDX = 48,
|
||||
SBK_QSGBasicGeometryNode_IDX = 52,
|
||||
SBK_QSGClipNode_IDX = 53,
|
||||
SBK_QSGDynamicTexture_IDX = 54,
|
||||
SBK_QSGFlatColorMaterial_IDX = 55,
|
||||
SBK_QSGGeometry_AttributeType_IDX = 59,
|
||||
SBK_QSGGeometry_DataPattern_IDX = 61,
|
||||
SBK_QSGGeometry_DrawingMode_IDX = 62,
|
||||
SBK_QSGGeometry_Type_IDX = 65,
|
||||
SBK_QSGGeometry_IDX = 56,
|
||||
SBK_QSGGeometry_Attribute_IDX = 57,
|
||||
SBK_QSGGeometry_AttributeSet_IDX = 58,
|
||||
SBK_QSGGeometry_ColoredPoint2D_IDX = 60,
|
||||
SBK_QSGGeometry_Point2D_IDX = 63,
|
||||
SBK_QSGGeometry_TexturedPoint2D_IDX = 64,
|
||||
SBK_QSGGeometryNode_IDX = 66,
|
||||
SBK_QSGImageNode_TextureCoordinatesTransformFlag_IDX = 68,
|
||||
SBK_QFlags_QSGImageNode_TextureCoordinatesTransformFlag_IDX = 4,
|
||||
SBK_QSGImageNode_IDX = 67,
|
||||
SBK_QSGMaterial_Flag_IDX = 70,
|
||||
SBK_QFlags_QSGMaterial_Flag_IDX = 5,
|
||||
SBK_QSGMaterial_IDX = 69,
|
||||
SBK_QSGMaterialShader_Flag_IDX = 72,
|
||||
SBK_QFlags_QSGMaterialShader_Flag_IDX = 6,
|
||||
SBK_QSGMaterialShader_Stage_IDX = 81,
|
||||
SBK_QSGMaterialShader_IDX = 71,
|
||||
SBK_QSGMaterialShader_GraphicsPipelineState_BlendFactor_IDX = 74,
|
||||
SBK_QSGMaterialShader_GraphicsPipelineState_BlendOp_IDX = 75,
|
||||
SBK_QSGMaterialShader_GraphicsPipelineState_ColorMaskComponent_IDX = 76,
|
||||
SBK_QFlags_QSGMaterialShader_GraphicsPipelineState_ColorMaskComponent_IDX = 7,
|
||||
SBK_QSGMaterialShader_GraphicsPipelineState_CullMode_IDX = 77,
|
||||
SBK_QSGMaterialShader_GraphicsPipelineState_PolygonMode_IDX = 78,
|
||||
SBK_QSGMaterialShader_GraphicsPipelineState_IDX = 73,
|
||||
SBK_QSGMaterialShader_RenderState_DirtyState_IDX = 80,
|
||||
SBK_QFlags_QSGMaterialShader_RenderState_DirtyState_IDX = 8,
|
||||
SBK_QSGMaterialShader_RenderState_IDX = 79,
|
||||
SBK_QSGMaterialType_IDX = 82,
|
||||
SBK_QSGNinePatchNode_IDX = 83,
|
||||
SBK_QSGNode_NodeType_IDX = 87,
|
||||
SBK_QSGNode_Flag_IDX = 86,
|
||||
SBK_QFlags_QSGNode_Flag_IDX = 10,
|
||||
SBK_QSGNode_DirtyStateBit_IDX = 85,
|
||||
SBK_QFlags_QSGNode_DirtyStateBit_IDX = 9,
|
||||
SBK_QSGNode_IDX = 84,
|
||||
SBK_QSGNodeVisitor_IDX = 88,
|
||||
SBK_QSGOpacityNode_IDX = 89,
|
||||
SBK_QSGOpaqueTextureMaterial_IDX = 90,
|
||||
SBK_QSGRectangleNode_IDX = 91,
|
||||
SBK_QSGRenderNode_StateFlag_IDX = 95,
|
||||
SBK_QFlags_QSGRenderNode_StateFlag_IDX = 12,
|
||||
SBK_QSGRenderNode_RenderingFlag_IDX = 94,
|
||||
SBK_QFlags_QSGRenderNode_RenderingFlag_IDX = 11,
|
||||
SBK_QSGRenderNode_IDX = 92,
|
||||
SBK_QSGRenderNode_RenderState_IDX = 93,
|
||||
SBK_QSGRendererInterface_GraphicsApi_IDX = 97,
|
||||
SBK_QSGRendererInterface_Resource_IDX = 99,
|
||||
SBK_QSGRendererInterface_ShaderType_IDX = 102,
|
||||
SBK_QSGRendererInterface_ShaderCompilationType_IDX = 100,
|
||||
SBK_QFlags_QSGRendererInterface_ShaderCompilationType_IDX = 13,
|
||||
SBK_QSGRendererInterface_ShaderSourceType_IDX = 101,
|
||||
SBK_QFlags_QSGRendererInterface_ShaderSourceType_IDX = 14,
|
||||
SBK_QSGRendererInterface_RenderMode_IDX = 98,
|
||||
SBK_QSGRendererInterface_IDX = 96,
|
||||
SBK_QSGRootNode_IDX = 103,
|
||||
SBK_QSGSimpleRectNode_IDX = 104,
|
||||
SBK_QSGSimpleTextureNode_TextureCoordinatesTransformFlag_IDX = 106,
|
||||
SBK_QFlags_QSGSimpleTextureNode_TextureCoordinatesTransformFlag_IDX = 15,
|
||||
SBK_QSGSimpleTextureNode_IDX = 105,
|
||||
SBK_QSGTextNode_TextStyle_IDX = 109,
|
||||
SBK_QSGTextNode_RenderType_IDX = 108,
|
||||
SBK_QSGTextNode_IDX = 107,
|
||||
SBK_QSGTexture_WrapMode_IDX = 113,
|
||||
SBK_QSGTexture_Filtering_IDX = 112,
|
||||
SBK_QSGTexture_AnisotropyLevel_IDX = 111,
|
||||
SBK_QSGTexture_IDX = 110,
|
||||
SBK_QSGTextureMaterial_IDX = 114,
|
||||
SBK_QSGTextureProvider_IDX = 115,
|
||||
SBK_QSGTransformNode_IDX = 116,
|
||||
SBK_QSGVertexColorMaterial_IDX = 117,
|
||||
SBK_QSharedPointer_QQuickItemGrabResult_IDX = 119, // QSharedPointer<QQuickItemGrabResult>
|
||||
SBK_QSharedPointer_constQQuickItemGrabResult_IDX = 119, // (const)
|
||||
SBK_QtQuick_IDX_COUNT = 120,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtQuickTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtQuickTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtQuickModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtQuickTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTQUICK_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTQUICK_QLIST_QSGGEOMETRY_POINT2D_IDX = 1, // QList<QSGGeometry::Point2D>
|
||||
SBK_QTQUICK_QLIST_QBYTEARRAY_IDX = 2, // QList<QByteArray>
|
||||
SBK_QTQUICK_QLIST_QQUICKITEMPTR_IDX = 3, // QList<QQuickItem*>
|
||||
SBK_QTQUICK_QLIST_QQMLERROR_IDX = 4, // QList<QQmlError>
|
||||
SBK_QTQUICK_QMAP_QSTRING_QVARIANT_IDX = 5, // QMap<QString,QVariant>
|
||||
SBK_QTQUICK_QLIST_QVARIANT_IDX = 6, // QList<QVariant>
|
||||
SBK_QTQUICK_QLIST_QSTRING_IDX = 7, // QList<QString>
|
||||
SBK_QTQUICK_CONVERTERS_IDX_COUNT = 8,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtQuick_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtQuick_QList_QSGGeometry_Point2D_IDX = 1, // QList<QSGGeometry::Point2D>
|
||||
SBK_QtQuick_QList_QByteArray_IDX = 2, // QList<QByteArray>
|
||||
SBK_QtQuick_QList_QQuickItemPTR_IDX = 3, // QList<QQuickItem*>
|
||||
SBK_QtQuick_QList_QQmlError_IDX = 4, // QList<QQmlError>
|
||||
SBK_QtQuick_QMap_QString_QVariant_IDX = 5, // QMap<QString,QVariant>
|
||||
SBK_QtQuick_QList_QVariant_IDX = 6, // QList<QVariant>
|
||||
SBK_QtQuick_QList_QString_IDX = 7, // QList<QString>
|
||||
SBK_QtQuick_CONVERTERS_IDX_COUNT = 8,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickAsyncImageProvider >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickAsyncImageProvider_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickFramebufferObject >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickFramebufferObject_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickFramebufferObject::Renderer >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickFramebufferObject_Renderer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickGraphicsConfiguration >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickGraphicsConfiguration_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickGraphicsDevice >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickGraphicsDevice_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickImageProvider >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickImageProvider_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickImageResponse >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickImageResponse_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickItem::Flag >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickItem_Flag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QQuickItem::Flag> >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QFlags_QQuickItem_Flag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickItem::ItemChange >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickItem_ItemChange_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickItem::TransformOrigin >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickItem_TransformOrigin_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickItem >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickItem_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickItem::UpdatePaintNodeData >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickItem_UpdatePaintNodeData_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickItemGrabResult >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickItemGrabResult_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickPaintedItem::RenderTarget >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickPaintedItem_RenderTarget_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickPaintedItem::PerformanceHint >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickPaintedItem_PerformanceHint_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QQuickPaintedItem::PerformanceHint> >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QFlags_QQuickPaintedItem_PerformanceHint_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickPaintedItem >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickPaintedItem_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickRenderControl >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickRenderControl_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickRenderTarget::Flag >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickRenderTarget_Flag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QQuickRenderTarget::Flag> >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QFlags_QQuickRenderTarget_Flag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickRenderTarget >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickRenderTarget_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickRhiItem::TextureFormat >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickRhiItem_TextureFormat_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickRhiItem >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickRhiItem_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickRhiItemRenderer >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickRhiItemRenderer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickTextDocument::Status >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickTextDocument_Status_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickTextDocument >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickTextDocument_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickTextureFactory >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickTextureFactory_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickTransform >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickTransform_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickView::ResizeMode >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickView_ResizeMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickView::Status >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickView_Status_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickView >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickView_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickWindow::CreateTextureOption >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickWindow_CreateTextureOption_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QQuickWindow::CreateTextureOption> >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QFlags_QQuickWindow_CreateTextureOption_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickWindow::RenderStage >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickWindow_RenderStage_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickWindow::SceneGraphError >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickWindow_SceneGraphError_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickWindow::TextRenderType >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickWindow_TextRenderType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickWindow >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickWindow_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickWindow::GraphicsStateInfo >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QQuickWindow_GraphicsStateInfo_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGBasicGeometryNode >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGBasicGeometryNode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGClipNode >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGClipNode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGDynamicTexture >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGDynamicTexture_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGFlatColorMaterial >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGFlatColorMaterial_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGGeometry::AttributeType >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGGeometry_AttributeType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGGeometry::DataPattern >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGGeometry_DataPattern_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGGeometry::DrawingMode >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGGeometry_DrawingMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGGeometry::Type >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGGeometry_Type_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGGeometry >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGGeometry_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGGeometry::Attribute >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGGeometry_Attribute_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGGeometry::AttributeSet >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGGeometry_AttributeSet_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGGeometry::ColoredPoint2D >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGGeometry_ColoredPoint2D_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGGeometry::Point2D >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGGeometry_Point2D_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGGeometry::TexturedPoint2D >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGGeometry_TexturedPoint2D_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGGeometryNode >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGGeometryNode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGImageNode::TextureCoordinatesTransformFlag >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGImageNode_TextureCoordinatesTransformFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QSGImageNode::TextureCoordinatesTransformFlag> >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QFlags_QSGImageNode_TextureCoordinatesTransformFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGImageNode >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGImageNode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGMaterial::Flag >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGMaterial_Flag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QSGMaterial::Flag> >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QFlags_QSGMaterial_Flag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGMaterial >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGMaterial_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGMaterialShader::Flag >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGMaterialShader_Flag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QSGMaterialShader::Flag> >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QFlags_QSGMaterialShader_Flag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGMaterialShader::Stage >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGMaterialShader_Stage_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGMaterialShader >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGMaterialShader_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGMaterialShader::GraphicsPipelineState::BlendFactor >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGMaterialShader_GraphicsPipelineState_BlendFactor_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGMaterialShader::GraphicsPipelineState::BlendOp >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGMaterialShader_GraphicsPipelineState_BlendOp_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGMaterialShader::GraphicsPipelineState::ColorMaskComponent >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGMaterialShader_GraphicsPipelineState_ColorMaskComponent_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QSGMaterialShader::GraphicsPipelineState::ColorMaskComponent> >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QFlags_QSGMaterialShader_GraphicsPipelineState_ColorMaskComponent_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGMaterialShader::GraphicsPipelineState::CullMode >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGMaterialShader_GraphicsPipelineState_CullMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGMaterialShader::GraphicsPipelineState::PolygonMode >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGMaterialShader_GraphicsPipelineState_PolygonMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGMaterialShader::GraphicsPipelineState >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGMaterialShader_GraphicsPipelineState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGMaterialShader::RenderState::DirtyState >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGMaterialShader_RenderState_DirtyState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QSGMaterialShader::RenderState::DirtyState> >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QFlags_QSGMaterialShader_RenderState_DirtyState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGMaterialShader::RenderState >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGMaterialShader_RenderState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGMaterialType >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGMaterialType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGNinePatchNode >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGNinePatchNode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGNode::NodeType >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGNode_NodeType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGNode::Flag >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGNode_Flag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QSGNode::Flag> >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QFlags_QSGNode_Flag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGNode::DirtyStateBit >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGNode_DirtyStateBit_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QSGNode::DirtyStateBit> >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QFlags_QSGNode_DirtyStateBit_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGNode >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGNode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGNodeVisitor >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGNodeVisitor_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGOpacityNode >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGOpacityNode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGOpaqueTextureMaterial >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGOpaqueTextureMaterial_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGRectangleNode >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGRectangleNode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGRenderNode::StateFlag >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGRenderNode_StateFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QSGRenderNode::StateFlag> >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QFlags_QSGRenderNode_StateFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGRenderNode::RenderingFlag >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGRenderNode_RenderingFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QSGRenderNode::RenderingFlag> >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QFlags_QSGRenderNode_RenderingFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGRenderNode >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGRenderNode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGRenderNode::RenderState >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGRenderNode_RenderState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGRendererInterface::GraphicsApi >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGRendererInterface_GraphicsApi_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGRendererInterface::Resource >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGRendererInterface_Resource_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGRendererInterface::ShaderType >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGRendererInterface_ShaderType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGRendererInterface::ShaderCompilationType >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGRendererInterface_ShaderCompilationType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QSGRendererInterface::ShaderCompilationType> >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QFlags_QSGRendererInterface_ShaderCompilationType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGRendererInterface::ShaderSourceType >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGRendererInterface_ShaderSourceType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QSGRendererInterface::ShaderSourceType> >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QFlags_QSGRendererInterface_ShaderSourceType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGRendererInterface::RenderMode >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGRendererInterface_RenderMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGRendererInterface >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGRendererInterface_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGRootNode >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGRootNode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGSimpleRectNode >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGSimpleRectNode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGSimpleTextureNode::TextureCoordinatesTransformFlag >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGSimpleTextureNode_TextureCoordinatesTransformFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QSGSimpleTextureNode::TextureCoordinatesTransformFlag> >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QFlags_QSGSimpleTextureNode_TextureCoordinatesTransformFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGSimpleTextureNode >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGSimpleTextureNode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGTextNode::TextStyle >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGTextNode_TextStyle_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGTextNode::RenderType >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGTextNode_RenderType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGTextNode >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGTextNode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGTexture::WrapMode >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGTexture_WrapMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGTexture::Filtering >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGTexture_Filtering_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGTexture::AnisotropyLevel >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGTexture_AnisotropyLevel_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGTexture >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGTexture_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGTextureMaterial >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGTextureMaterial_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGTextureProvider >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGTextureProvider_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGTransformNode >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGTransformNode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSGVertexColorMaterial >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSGVertexColorMaterial_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSharedPointer<QQuickItemGrabResult> >() { return Shiboken::Module::get(SbkPySide6_QtQuickTypeStructs[SBK_QSharedPointer_QQuickItemGrabResult_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTQUICK_PYTHON_H
|
||||
|
||||
128
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtQuick3D/pyside6_qtquick3d_python.h
vendored
Normal file
128
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtQuick3D/pyside6_qtquick3d_python.h
vendored
Normal file
@@ -0,0 +1,128 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTQUICK3D_PYTHON_H
|
||||
#define SBK_QTQUICK3D_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtquick_python.h>
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtnetwork_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtopengl_python.h>
|
||||
#include <pyside6_qtqml_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtQuick3D/qquick3dgeometry.h>
|
||||
#include <QtQuick3D/qquick3dinstancing.h>
|
||||
#include <QtQuick3D/qquick3dobject.h>
|
||||
#include <QtQuick3D/qquick3dtexturedata.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QQuick3D;
|
||||
class QQuick3DRenderExtension;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QQUICK3D_IDX = 0,
|
||||
SBK_QQUICK3DGEOMETRY_PRIMITIVETYPE_IDX = 10,
|
||||
SBK_QQUICK3DGEOMETRY_IDX = 2,
|
||||
SBK_QQUICK3DGEOMETRY_ATTRIBUTE_SEMANTIC_IDX = 8,
|
||||
SBK_QQUICK3DGEOMETRY_ATTRIBUTE_COMPONENTTYPE_IDX = 6,
|
||||
SBK_QQUICK3DGEOMETRY_ATTRIBUTE_IDX = 4,
|
||||
SBK_QQUICK3DGEOMETRY_TARGETATTRIBUTE_IDX = 12,
|
||||
SBK_QQUICK3DINSTANCING_IDX = 14,
|
||||
SBK_QQUICK3DINSTANCING_INSTANCETABLEENTRY_IDX = 16,
|
||||
SBK_QQUICK3DOBJECT_ITEMCHANGE_IDX = 20,
|
||||
SBK_QQUICK3DOBJECT_IDX = 18,
|
||||
SBK_QQUICK3DRENDEREXTENSION_IDX = 22,
|
||||
SBK_QQUICK3DTEXTUREDATA_FORMAT_IDX = 26,
|
||||
SBK_QQUICK3DTEXTUREDATA_IDX = 24,
|
||||
SBK_QTQUICK3D_IDX_COUNT = 28,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QQuick3D_IDX = 0,
|
||||
SBK_QQuick3DGeometry_PrimitiveType_IDX = 5,
|
||||
SBK_QQuick3DGeometry_IDX = 1,
|
||||
SBK_QQuick3DGeometry_Attribute_Semantic_IDX = 4,
|
||||
SBK_QQuick3DGeometry_Attribute_ComponentType_IDX = 3,
|
||||
SBK_QQuick3DGeometry_Attribute_IDX = 2,
|
||||
SBK_QQuick3DGeometry_TargetAttribute_IDX = 6,
|
||||
SBK_QQuick3DInstancing_IDX = 7,
|
||||
SBK_QQuick3DInstancing_InstanceTableEntry_IDX = 8,
|
||||
SBK_QQuick3DObject_ItemChange_IDX = 10,
|
||||
SBK_QQuick3DObject_IDX = 9,
|
||||
SBK_QQuick3DRenderExtension_IDX = 11,
|
||||
SBK_QQuick3DTextureData_Format_IDX = 13,
|
||||
SBK_QQuick3DTextureData_IDX = 12,
|
||||
SBK_QtQuick3D_IDX_COUNT = 14,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtQuick3DTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtQuick3DTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtQuick3DModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtQuick3DTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTQUICK3D_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTQUICK3D_QLIST_QQUICK3DOBJECTPTR_IDX = 1, // QList<QQuick3DObject*>
|
||||
SBK_QTQUICK3D_STD_PAIR_QBYTEARRAY_INT_IDX = 2, // std::pair<QByteArray,int>
|
||||
SBK_QTQUICK3D_QLIST_QVARIANT_IDX = 3, // QList<QVariant>
|
||||
SBK_QTQUICK3D_QLIST_QSTRING_IDX = 4, // QList<QString>
|
||||
SBK_QTQUICK3D_QMAP_QSTRING_QVARIANT_IDX = 5, // QMap<QString,QVariant>
|
||||
SBK_QTQUICK3D_CONVERTERS_IDX_COUNT = 6,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtQuick3D_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtQuick3D_QList_QQuick3DObjectPTR_IDX = 1, // QList<QQuick3DObject*>
|
||||
SBK_QtQuick3D_std_pair_QByteArray_int_IDX = 2, // std::pair<QByteArray,int>
|
||||
SBK_QtQuick3D_QList_QVariant_IDX = 3, // QList<QVariant>
|
||||
SBK_QtQuick3D_QList_QString_IDX = 4, // QList<QString>
|
||||
SBK_QtQuick3D_QMap_QString_QVariant_IDX = 5, // QMap<QString,QVariant>
|
||||
SBK_QtQuick3D_CONVERTERS_IDX_COUNT = 6,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QQuick3D >() { return Shiboken::Module::get(SbkPySide6_QtQuick3DTypeStructs[SBK_QQuick3D_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuick3DGeometry::PrimitiveType >() { return Shiboken::Module::get(SbkPySide6_QtQuick3DTypeStructs[SBK_QQuick3DGeometry_PrimitiveType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuick3DGeometry >() { return Shiboken::Module::get(SbkPySide6_QtQuick3DTypeStructs[SBK_QQuick3DGeometry_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuick3DGeometry::Attribute::Semantic >() { return Shiboken::Module::get(SbkPySide6_QtQuick3DTypeStructs[SBK_QQuick3DGeometry_Attribute_Semantic_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuick3DGeometry::Attribute::ComponentType >() { return Shiboken::Module::get(SbkPySide6_QtQuick3DTypeStructs[SBK_QQuick3DGeometry_Attribute_ComponentType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuick3DGeometry::Attribute >() { return Shiboken::Module::get(SbkPySide6_QtQuick3DTypeStructs[SBK_QQuick3DGeometry_Attribute_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuick3DGeometry::TargetAttribute >() { return Shiboken::Module::get(SbkPySide6_QtQuick3DTypeStructs[SBK_QQuick3DGeometry_TargetAttribute_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuick3DInstancing >() { return Shiboken::Module::get(SbkPySide6_QtQuick3DTypeStructs[SBK_QQuick3DInstancing_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuick3DInstancing::InstanceTableEntry >() { return Shiboken::Module::get(SbkPySide6_QtQuick3DTypeStructs[SBK_QQuick3DInstancing_InstanceTableEntry_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuick3DObject::ItemChange >() { return Shiboken::Module::get(SbkPySide6_QtQuick3DTypeStructs[SBK_QQuick3DObject_ItemChange_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuick3DObject >() { return Shiboken::Module::get(SbkPySide6_QtQuick3DTypeStructs[SBK_QQuick3DObject_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuick3DRenderExtension >() { return Shiboken::Module::get(SbkPySide6_QtQuick3DTypeStructs[SBK_QQuick3DRenderExtension_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuick3DTextureData::Format >() { return Shiboken::Module::get(SbkPySide6_QtQuick3DTypeStructs[SBK_QQuick3DTextureData_Format_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuick3DTextureData >() { return Shiboken::Module::get(SbkPySide6_QtQuick3DTypeStructs[SBK_QQuick3DTextureData_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTQUICK3D_PYTHON_H
|
||||
|
||||
@@ -0,0 +1,86 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTQUICKCONTROLS2_PYTHON_H
|
||||
#define SBK_QTQUICKCONTROLS2_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtquick_python.h>
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtnetwork_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtopengl_python.h>
|
||||
#include <pyside6_qtqml_python.h>
|
||||
|
||||
// Bound library includes
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QQuickAttachedPropertyPropagator;
|
||||
class QQuickStyle;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QQUICKATTACHEDPROPERTYPROPAGATOR_IDX = 0,
|
||||
SBK_QQUICKSTYLE_IDX = 2,
|
||||
SBK_QTQUICKCONTROLS2_IDX_COUNT = 4,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QQuickAttachedPropertyPropagator_IDX = 0,
|
||||
SBK_QQuickStyle_IDX = 1,
|
||||
SBK_QtQuickControls2_IDX_COUNT = 2,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtQuickControls2TypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtQuickControls2Types;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtQuickControls2ModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtQuickControls2TypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTQUICKCONTROLS2_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTQUICKCONTROLS2_QLIST_QQUICKATTACHEDPROPERTYPROPAGATORPTR_IDX = 1, // QList<QQuickAttachedPropertyPropagator*>
|
||||
SBK_QTQUICKCONTROLS2_QLIST_QVARIANT_IDX = 2, // QList<QVariant>
|
||||
SBK_QTQUICKCONTROLS2_QLIST_QSTRING_IDX = 3, // QList<QString>
|
||||
SBK_QTQUICKCONTROLS2_QMAP_QSTRING_QVARIANT_IDX = 4, // QMap<QString,QVariant>
|
||||
SBK_QTQUICKCONTROLS2_CONVERTERS_IDX_COUNT = 5,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtQuickControls2_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtQuickControls2_QList_QQuickAttachedPropertyPropagatorPTR_IDX = 1, // QList<QQuickAttachedPropertyPropagator*>
|
||||
SBK_QtQuickControls2_QList_QVariant_IDX = 2, // QList<QVariant>
|
||||
SBK_QtQuickControls2_QList_QString_IDX = 3, // QList<QString>
|
||||
SBK_QtQuickControls2_QMap_QString_QVariant_IDX = 4, // QMap<QString,QVariant>
|
||||
SBK_QtQuickControls2_CONVERTERS_IDX_COUNT = 5,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickAttachedPropertyPropagator >() { return Shiboken::Module::get(SbkPySide6_QtQuickControls2TypeStructs[SBK_QQuickAttachedPropertyPropagator_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickStyle >() { return Shiboken::Module::get(SbkPySide6_QtQuickControls2TypeStructs[SBK_QQuickStyle_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTQUICKCONTROLS2_PYTHON_H
|
||||
|
||||
@@ -0,0 +1,61 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTQUICKTEST_PYTHON_H
|
||||
#define SBK_QTQUICKTEST_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTQUICKTEST_IDX_COUNT = 0,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QtQuickTest_IDX_COUNT = 0,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtQuickTestTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtQuickTestTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtQuickTestModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtQuickTestTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTQUICKTEST_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTQUICKTEST_QLIST_QVARIANT_IDX = 1, // QList<QVariant>
|
||||
SBK_QTQUICKTEST_QLIST_QSTRING_IDX = 2, // QList<QString>
|
||||
SBK_QTQUICKTEST_QMAP_QSTRING_QVARIANT_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QTQUICKTEST_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtQuickTest_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtQuickTest_QList_QVariant_IDX = 1, // QList<QVariant>
|
||||
SBK_QtQuickTest_QList_QString_IDX = 2, // QList<QString>
|
||||
SBK_QtQuickTest_QMap_QString_QVariant_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QtQuickTest_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
#endif // SBK_QTQUICKTEST_PYTHON_H
|
||||
|
||||
@@ -0,0 +1,89 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTQUICKWIDGETS_PYTHON_H
|
||||
#define SBK_QTQUICKWIDGETS_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtquick_python.h>
|
||||
#include <pyside6_qtnetwork_python.h>
|
||||
#include <pyside6_qtopengl_python.h>
|
||||
#include <pyside6_qtqml_python.h>
|
||||
#include <pyside6_qtwidgets_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtQuickWidgets/qquickwidget.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QQUICKWIDGET_RESIZEMODE_IDX = 2,
|
||||
SBK_QQUICKWIDGET_STATUS_IDX = 4,
|
||||
SBK_QQUICKWIDGET_IDX = 0,
|
||||
SBK_QTQUICKWIDGETS_IDX_COUNT = 6,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QQuickWidget_ResizeMode_IDX = 1,
|
||||
SBK_QQuickWidget_Status_IDX = 2,
|
||||
SBK_QQuickWidget_IDX = 0,
|
||||
SBK_QtQuickWidgets_IDX_COUNT = 3,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtQuickWidgetsTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtQuickWidgetsTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtQuickWidgetsModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtQuickWidgetsTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTQUICKWIDGETS_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTQUICKWIDGETS_QLIST_QQMLERROR_IDX = 1, // QList<QQmlError>
|
||||
SBK_QTQUICKWIDGETS_QMAP_QSTRING_QVARIANT_IDX = 2, // QMap<QString,QVariant>
|
||||
SBK_QTQUICKWIDGETS_QLIST_QVARIANT_IDX = 3, // QList<QVariant>
|
||||
SBK_QTQUICKWIDGETS_QLIST_QSTRING_IDX = 4, // QList<QString>
|
||||
SBK_QTQUICKWIDGETS_CONVERTERS_IDX_COUNT = 5,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtQuickWidgets_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtQuickWidgets_QList_QQmlError_IDX = 1, // QList<QQmlError>
|
||||
SBK_QtQuickWidgets_QMap_QString_QVariant_IDX = 2, // QMap<QString,QVariant>
|
||||
SBK_QtQuickWidgets_QList_QVariant_IDX = 3, // QList<QVariant>
|
||||
SBK_QtQuickWidgets_QList_QString_IDX = 4, // QList<QString>
|
||||
SBK_QtQuickWidgets_CONVERTERS_IDX_COUNT = 5,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickWidget::ResizeMode >() { return Shiboken::Module::get(SbkPySide6_QtQuickWidgetsTypeStructs[SBK_QQuickWidget_ResizeMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickWidget::Status >() { return Shiboken::Module::get(SbkPySide6_QtQuickWidgetsTypeStructs[SBK_QQuickWidget_Status_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickWidget >() { return Shiboken::Module::get(SbkPySide6_QtQuickWidgetsTypeStructs[SBK_QQuickWidget_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTQUICKWIDGETS_PYTHON_H
|
||||
|
||||
@@ -0,0 +1,186 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTREMOTEOBJECTS_PYTHON_H
|
||||
#define SBK_QTREMOTEOBJECTS_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtnetwork_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtRemoteObjects/qremoteobjectnode.h>
|
||||
#include <QtRemoteObjects/qremoteobjectpendingcall.h>
|
||||
#include <QtRemoteObjects/qremoteobjectreplica.h>
|
||||
#include <QtRemoteObjects/qtremoteobjectglobal.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QAbstractItemModelReplica;
|
||||
class QConnectionAbstractServer;
|
||||
class QRemoteObjectAbstractPersistedStore;
|
||||
class QRemoteObjectDynamicReplica;
|
||||
class QRemoteObjectHost;
|
||||
class QRemoteObjectPendingCallWatcher;
|
||||
class QRemoteObjectRegistry;
|
||||
class QRemoteObjectRegistryHost;
|
||||
class QRemoteObjectSettingsStore;
|
||||
struct QRemoteObjectSourceLocationInfo;
|
||||
class QtROClientFactory;
|
||||
class QtROClientIoDevice;
|
||||
class QtROIoDeviceBase;
|
||||
class QtROServerFactory;
|
||||
class QtROServerIoDevice;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QABSTRACTITEMMODELREPLICA_IDX = 0,
|
||||
SBK_QCONNECTIONABSTRACTSERVER_IDX = 2,
|
||||
SBK_QREMOTEOBJECTABSTRACTPERSISTEDSTORE_IDX = 4,
|
||||
SBK_QREMOTEOBJECTDYNAMICREPLICA_IDX = 6,
|
||||
SBK_QREMOTEOBJECTHOST_IDX = 8,
|
||||
SBK_QREMOTEOBJECTHOSTBASE_ALLOWEDSCHEMAS_IDX = 12,
|
||||
SBK_QREMOTEOBJECTHOSTBASE_IDX = 10,
|
||||
SBK_QREMOTEOBJECTNODE_ERRORCODE_IDX = 16,
|
||||
SBK_QREMOTEOBJECTNODE_IDX = 14,
|
||||
SBK_QREMOTEOBJECTPENDINGCALL_ERROR_IDX = 20,
|
||||
SBK_QREMOTEOBJECTPENDINGCALL_IDX = 18,
|
||||
SBK_QREMOTEOBJECTPENDINGCALLWATCHER_IDX = 22,
|
||||
SBK_QREMOTEOBJECTREGISTRY_IDX = 24,
|
||||
SBK_QREMOTEOBJECTREGISTRYHOST_IDX = 26,
|
||||
SBK_QREMOTEOBJECTREPLICA_STATE_IDX = 32,
|
||||
SBK_QREMOTEOBJECTREPLICA_CONSTRUCTORTYPE_IDX = 30,
|
||||
SBK_QREMOTEOBJECTREPLICA_IDX = 28,
|
||||
SBK_QREMOTEOBJECTSETTINGSSTORE_IDX = 34,
|
||||
SBK_QREMOTEOBJECTSOURCELOCATIONINFO_IDX = 36,
|
||||
SBK_QTROCLIENTFACTORY_IDX = 38,
|
||||
SBK_QTROCLIENTIODEVICE_IDX = 40,
|
||||
SBK_QTROIODEVICEBASE_IDX = 42,
|
||||
SBK_QTROSERVERFACTORY_IDX = 44,
|
||||
SBK_QTROSERVERIODEVICE_IDX = 46,
|
||||
SBK_QTREMOTEOBJECTS_QREMOTEOBJECTPACKETTYPEENUM_IDX = 52,
|
||||
SBK_QTREMOTEOBJECTS_INITIALACTION_IDX = 50,
|
||||
SBK_QTREMOTEOBJECTSQTREMOTEOBJECTS_IDX = 48,
|
||||
SBK_QTREMOTEOBJECTS_IDX_COUNT = 54,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QAbstractItemModelReplica_IDX = 0,
|
||||
SBK_QConnectionAbstractServer_IDX = 1,
|
||||
SBK_QRemoteObjectAbstractPersistedStore_IDX = 2,
|
||||
SBK_QRemoteObjectDynamicReplica_IDX = 3,
|
||||
SBK_QRemoteObjectHost_IDX = 4,
|
||||
SBK_QRemoteObjectHostBase_AllowedSchemas_IDX = 6,
|
||||
SBK_QRemoteObjectHostBase_IDX = 5,
|
||||
SBK_QRemoteObjectNode_ErrorCode_IDX = 8,
|
||||
SBK_QRemoteObjectNode_IDX = 7,
|
||||
SBK_QRemoteObjectPendingCall_Error_IDX = 10,
|
||||
SBK_QRemoteObjectPendingCall_IDX = 9,
|
||||
SBK_QRemoteObjectPendingCallWatcher_IDX = 11,
|
||||
SBK_QRemoteObjectRegistry_IDX = 12,
|
||||
SBK_QRemoteObjectRegistryHost_IDX = 13,
|
||||
SBK_QRemoteObjectReplica_State_IDX = 16,
|
||||
SBK_QRemoteObjectReplica_ConstructorType_IDX = 15,
|
||||
SBK_QRemoteObjectReplica_IDX = 14,
|
||||
SBK_QRemoteObjectSettingsStore_IDX = 17,
|
||||
SBK_QRemoteObjectSourceLocationInfo_IDX = 18,
|
||||
SBK_QtROClientFactory_IDX = 19,
|
||||
SBK_QtROClientIoDevice_IDX = 20,
|
||||
SBK_QtROIoDeviceBase_IDX = 21,
|
||||
SBK_QtROServerFactory_IDX = 22,
|
||||
SBK_QtROServerIoDevice_IDX = 23,
|
||||
SBK_QtRemoteObjects_QRemoteObjectPacketTypeEnum_IDX = 26,
|
||||
SBK_QtRemoteObjects_InitialAction_IDX = 25,
|
||||
SBK_QtRemoteObjectsQtRemoteObjects_IDX = 24,
|
||||
SBK_QtRemoteObjects_IDX_COUNT = 27,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtRemoteObjectsTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtRemoteObjectsTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtRemoteObjectsModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtRemoteObjectsTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTREMOTEOBJECTS_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTREMOTEOBJECTS_QSET_QSTRING_IDX = 1, // QSet<QString>
|
||||
SBK_QTREMOTEOBJECTS_QLIST_QVARIANT_IDX = 2, // QList<QVariant>
|
||||
SBK_QTREMOTEOBJECTS_STD_PAIR_QSTRING_QREMOTEOBJECTSOURCELOCATIONINFO_IDX = 3, // std::pair<QString,QRemoteObjectSourceLocationInfo>
|
||||
SBK_QTREMOTEOBJECTS_QHASH_QSTRING_QREMOTEOBJECTSOURCELOCATIONINFO_IDX = 4, // QHash<QString,QRemoteObjectSourceLocationInfo>
|
||||
SBK_QTREMOTEOBJECTS_QMAP_INT_QVARIANT_IDX = 5, // QMap<int,QVariant>
|
||||
SBK_QTREMOTEOBJECTS_QLIST_QMODELINDEX_IDX = 6, // QList<QModelIndex>
|
||||
SBK_QTREMOTEOBJECTS_QHASH_INT_QBYTEARRAY_IDX = 7, // QHash<int,QByteArray>
|
||||
SBK_QTREMOTEOBJECTS_QLIST_QSTRING_IDX = 8, // QList<QString>
|
||||
SBK_QTREMOTEOBJECTS_QMAP_QSTRING_QVARIANT_IDX = 9, // QMap<QString,QVariant>
|
||||
SBK_QTREMOTEOBJECTS_CONVERTERS_IDX_COUNT = 10,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtRemoteObjects_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtRemoteObjects_QSet_QString_IDX = 1, // QSet<QString>
|
||||
SBK_QtRemoteObjects_QList_QVariant_IDX = 2, // QList<QVariant>
|
||||
SBK_QtRemoteObjects_std_pair_QString_QRemoteObjectSourceLocationInfo_IDX = 3, // std::pair<QString,QRemoteObjectSourceLocationInfo>
|
||||
SBK_QtRemoteObjects_QHash_QString_QRemoteObjectSourceLocationInfo_IDX = 4, // QHash<QString,QRemoteObjectSourceLocationInfo>
|
||||
SBK_QtRemoteObjects_QMap_int_QVariant_IDX = 5, // QMap<int,QVariant>
|
||||
SBK_QtRemoteObjects_QList_QModelIndex_IDX = 6, // QList<QModelIndex>
|
||||
SBK_QtRemoteObjects_QHash_int_QByteArray_IDX = 7, // QHash<int,QByteArray>
|
||||
SBK_QtRemoteObjects_QList_QString_IDX = 8, // QList<QString>
|
||||
SBK_QtRemoteObjects_QMap_QString_QVariant_IDX = 9, // QMap<QString,QVariant>
|
||||
SBK_QtRemoteObjects_CONVERTERS_IDX_COUNT = 10,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
// Protected enum surrogates
|
||||
enum PySide6_QtRemoteObjects_QRemoteObjectReplica_ConstructorType_Surrogate : int {};
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractItemModelReplica >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QAbstractItemModelReplica_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QConnectionAbstractServer >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QConnectionAbstractServer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QRemoteObjectAbstractPersistedStore >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QRemoteObjectAbstractPersistedStore_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QRemoteObjectDynamicReplica >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QRemoteObjectDynamicReplica_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QRemoteObjectHost >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QRemoteObjectHost_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QRemoteObjectHostBase::AllowedSchemas >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QRemoteObjectHostBase_AllowedSchemas_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QRemoteObjectHostBase >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QRemoteObjectHostBase_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QRemoteObjectNode::ErrorCode >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QRemoteObjectNode_ErrorCode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QRemoteObjectNode >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QRemoteObjectNode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QRemoteObjectPendingCall::Error >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QRemoteObjectPendingCall_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QRemoteObjectPendingCall >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QRemoteObjectPendingCall_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QRemoteObjectPendingCallWatcher >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QRemoteObjectPendingCallWatcher_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QRemoteObjectRegistry >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QRemoteObjectRegistry_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QRemoteObjectRegistryHost >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QRemoteObjectRegistryHost_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QRemoteObjectReplica::State >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QRemoteObjectReplica_State_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::PySide6_QtRemoteObjects_QRemoteObjectReplica_ConstructorType_Surrogate >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QRemoteObjectReplica_ConstructorType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QRemoteObjectReplica >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QRemoteObjectReplica_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QRemoteObjectSettingsStore >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QRemoteObjectSettingsStore_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QRemoteObjectSourceLocationInfo >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QRemoteObjectSourceLocationInfo_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtROClientFactory >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QtROClientFactory_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtROClientIoDevice >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QtROClientIoDevice_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtROIoDeviceBase >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QtROIoDeviceBase_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtROServerFactory >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QtROServerFactory_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtROServerIoDevice >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QtROServerIoDevice_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtRemoteObjects::QRemoteObjectPacketTypeEnum >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QtRemoteObjects_QRemoteObjectPacketTypeEnum_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtRemoteObjects::InitialAction >() { return Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QtRemoteObjects_InitialAction_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTREMOTEOBJECTS_PYTHON_H
|
||||
|
||||
160
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtScxml/pyside6_qtscxml_python.h
vendored
Normal file
160
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtScxml/pyside6_qtscxml_python.h
vendored
Normal file
@@ -0,0 +1,160 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTSCXML_PYTHON_H
|
||||
#define SBK_QTSCXML_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtScxml/qscxmlcompiler.h>
|
||||
#include <QtScxml/qscxmldatamodel.h>
|
||||
#include <QtScxml/qscxmlevent.h>
|
||||
#include <QtScxml/qscxmlexecutablecontent.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QScxmlCppDataModel;
|
||||
class QScxmlDynamicScxmlServiceFactory;
|
||||
class QScxmlError;
|
||||
class QScxmlInvokableService;
|
||||
class QScxmlInvokableServiceFactory;
|
||||
class QScxmlNullDataModel;
|
||||
class QScxmlStateMachine;
|
||||
class QScxmlStaticScxmlServiceFactory;
|
||||
class QScxmlTableData;
|
||||
|
||||
namespace QScxmlExecutableContent {
|
||||
struct AssignmentInfo;
|
||||
struct EvaluatorInfo;
|
||||
struct ForeachInfo;
|
||||
struct InvokeInfo;
|
||||
struct ParameterInfo;
|
||||
}
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QSCXMLCOMPILER_IDX = 0,
|
||||
SBK_QSCXMLCOMPILER_LOADER_IDX = 2,
|
||||
SBK_QSCXMLCPPDATAMODEL_IDX = 4,
|
||||
SBK_QSCXMLDATAMODEL_IDX = 6,
|
||||
SBK_QSCXMLDATAMODEL_FOREACHLOOPBODY_IDX = 8,
|
||||
SBK_QSCXMLDYNAMICSCXMLSERVICEFACTORY_IDX = 10,
|
||||
SBK_QSCXMLERROR_IDX = 12,
|
||||
SBK_QSCXMLEVENT_EVENTTYPE_IDX = 16,
|
||||
SBK_QSCXMLEVENT_IDX = 14,
|
||||
SBK_QTSCXMLQSCXMLEXECUTABLECONTENT_IDX = 18,
|
||||
SBK_QSCXMLEXECUTABLECONTENT_ASSIGNMENTINFO_IDX = 20,
|
||||
SBK_QSCXMLEXECUTABLECONTENT_EVALUATORINFO_IDX = 22,
|
||||
SBK_QSCXMLEXECUTABLECONTENT_FOREACHINFO_IDX = 24,
|
||||
SBK_QSCXMLEXECUTABLECONTENT_INVOKEINFO_IDX = 26,
|
||||
SBK_QSCXMLEXECUTABLECONTENT_PARAMETERINFO_IDX = 28,
|
||||
SBK_QSCXMLINVOKABLESERVICE_IDX = 30,
|
||||
SBK_QSCXMLINVOKABLESERVICEFACTORY_IDX = 32,
|
||||
SBK_QSCXMLNULLDATAMODEL_IDX = 34,
|
||||
SBK_QSCXMLSTATEMACHINE_IDX = 36,
|
||||
SBK_QSCXMLSTATICSCXMLSERVICEFACTORY_IDX = 38,
|
||||
SBK_QSCXMLTABLEDATA_IDX = 40,
|
||||
SBK_QTSCXML_IDX_COUNT = 42,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QScxmlCompiler_IDX = 0,
|
||||
SBK_QScxmlCompiler_Loader_IDX = 1,
|
||||
SBK_QScxmlCppDataModel_IDX = 2,
|
||||
SBK_QScxmlDataModel_IDX = 3,
|
||||
SBK_QScxmlDataModel_ForeachLoopBody_IDX = 4,
|
||||
SBK_QScxmlDynamicScxmlServiceFactory_IDX = 5,
|
||||
SBK_QScxmlError_IDX = 6,
|
||||
SBK_QScxmlEvent_EventType_IDX = 8,
|
||||
SBK_QScxmlEvent_IDX = 7,
|
||||
SBK_QtScxmlQScxmlExecutableContent_IDX = 9,
|
||||
SBK_QScxmlExecutableContent_AssignmentInfo_IDX = 10,
|
||||
SBK_QScxmlExecutableContent_EvaluatorInfo_IDX = 11,
|
||||
SBK_QScxmlExecutableContent_ForeachInfo_IDX = 12,
|
||||
SBK_QScxmlExecutableContent_InvokeInfo_IDX = 13,
|
||||
SBK_QScxmlExecutableContent_ParameterInfo_IDX = 14,
|
||||
SBK_QScxmlInvokableService_IDX = 15,
|
||||
SBK_QScxmlInvokableServiceFactory_IDX = 16,
|
||||
SBK_QScxmlNullDataModel_IDX = 17,
|
||||
SBK_QScxmlStateMachine_IDX = 18,
|
||||
SBK_QScxmlStaticScxmlServiceFactory_IDX = 19,
|
||||
SBK_QScxmlTableData_IDX = 20,
|
||||
SBK_QtScxml_IDX_COUNT = 21,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtScxmlTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtScxmlTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtScxmlModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtScxmlTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTSCXML_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTSCXML_QLIST_QSCXMLERROR_IDX = 1, // QList<QScxmlError>
|
||||
SBK_QTSCXML_QMAP_QSTRING_QVARIANT_IDX = 2, // QMap<QString,QVariant>
|
||||
SBK_QTSCXML_QLIST_QSCXMLINVOKABLESERVICEPTR_IDX = 3, // QList<QScxmlInvokableService*>
|
||||
SBK_QTSCXML_QLIST_QSCXMLEXECUTABLECONTENT_PARAMETERINFO_IDX = 4, // QList<QScxmlExecutableContent::ParameterInfo>
|
||||
SBK_QTSCXML_QLIST_QVARIANT_IDX = 5, // QList<QVariant>
|
||||
SBK_QTSCXML_QLIST_QSTRING_IDX = 6, // QList<QString>
|
||||
SBK_QTSCXML_CONVERTERS_IDX_COUNT = 7,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtScxml_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtScxml_QList_QScxmlError_IDX = 1, // QList<QScxmlError>
|
||||
SBK_QtScxml_QMap_QString_QVariant_IDX = 2, // QMap<QString,QVariant>
|
||||
SBK_QtScxml_QList_QScxmlInvokableServicePTR_IDX = 3, // QList<QScxmlInvokableService*>
|
||||
SBK_QtScxml_QList_QScxmlExecutableContent_ParameterInfo_IDX = 4, // QList<QScxmlExecutableContent::ParameterInfo>
|
||||
SBK_QtScxml_QList_QVariant_IDX = 5, // QList<QVariant>
|
||||
SBK_QtScxml_QList_QString_IDX = 6, // QList<QString>
|
||||
SBK_QtScxml_CONVERTERS_IDX_COUNT = 7,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QScxmlCompiler >() { return Shiboken::Module::get(SbkPySide6_QtScxmlTypeStructs[SBK_QScxmlCompiler_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScxmlCompiler::Loader >() { return Shiboken::Module::get(SbkPySide6_QtScxmlTypeStructs[SBK_QScxmlCompiler_Loader_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScxmlCppDataModel >() { return Shiboken::Module::get(SbkPySide6_QtScxmlTypeStructs[SBK_QScxmlCppDataModel_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScxmlDataModel >() { return Shiboken::Module::get(SbkPySide6_QtScxmlTypeStructs[SBK_QScxmlDataModel_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScxmlDataModel::ForeachLoopBody >() { return Shiboken::Module::get(SbkPySide6_QtScxmlTypeStructs[SBK_QScxmlDataModel_ForeachLoopBody_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScxmlDynamicScxmlServiceFactory >() { return Shiboken::Module::get(SbkPySide6_QtScxmlTypeStructs[SBK_QScxmlDynamicScxmlServiceFactory_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScxmlError >() { return Shiboken::Module::get(SbkPySide6_QtScxmlTypeStructs[SBK_QScxmlError_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScxmlEvent::EventType >() { return Shiboken::Module::get(SbkPySide6_QtScxmlTypeStructs[SBK_QScxmlEvent_EventType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScxmlEvent >() { return Shiboken::Module::get(SbkPySide6_QtScxmlTypeStructs[SBK_QScxmlEvent_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScxmlExecutableContent::AssignmentInfo >() { return Shiboken::Module::get(SbkPySide6_QtScxmlTypeStructs[SBK_QScxmlExecutableContent_AssignmentInfo_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScxmlExecutableContent::EvaluatorInfo >() { return Shiboken::Module::get(SbkPySide6_QtScxmlTypeStructs[SBK_QScxmlExecutableContent_EvaluatorInfo_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScxmlExecutableContent::ForeachInfo >() { return Shiboken::Module::get(SbkPySide6_QtScxmlTypeStructs[SBK_QScxmlExecutableContent_ForeachInfo_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScxmlExecutableContent::InvokeInfo >() { return Shiboken::Module::get(SbkPySide6_QtScxmlTypeStructs[SBK_QScxmlExecutableContent_InvokeInfo_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScxmlExecutableContent::ParameterInfo >() { return Shiboken::Module::get(SbkPySide6_QtScxmlTypeStructs[SBK_QScxmlExecutableContent_ParameterInfo_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScxmlInvokableService >() { return Shiboken::Module::get(SbkPySide6_QtScxmlTypeStructs[SBK_QScxmlInvokableService_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScxmlInvokableServiceFactory >() { return Shiboken::Module::get(SbkPySide6_QtScxmlTypeStructs[SBK_QScxmlInvokableServiceFactory_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScxmlNullDataModel >() { return Shiboken::Module::get(SbkPySide6_QtScxmlTypeStructs[SBK_QScxmlNullDataModel_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScxmlStateMachine >() { return Shiboken::Module::get(SbkPySide6_QtScxmlTypeStructs[SBK_QScxmlStateMachine_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScxmlStaticScxmlServiceFactory >() { return Shiboken::Module::get(SbkPySide6_QtScxmlTypeStructs[SBK_QScxmlStaticScxmlServiceFactory_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QScxmlTableData >() { return Shiboken::Module::get(SbkPySide6_QtScxmlTypeStructs[SBK_QScxmlTableData_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTSCXML_PYTHON_H
|
||||
|
||||
327
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtSensors/pyside6_qtsensors_python.h
vendored
Normal file
327
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtSensors/pyside6_qtsensors_python.h
vendored
Normal file
@@ -0,0 +1,327 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTSENSORS_PYTHON_H
|
||||
#define SBK_QTSENSORS_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtSensors/qaccelerometer.h>
|
||||
#include <QtSensors/qambientlightsensor.h>
|
||||
#include <QtSensors/qorientationsensor.h>
|
||||
#include <QtSensors/qsensor.h>
|
||||
#include <QtSensors/qtapsensor.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QAccelerometerFilter;
|
||||
class QAccelerometerReading;
|
||||
class QAmbientLightFilter;
|
||||
class QAmbientLightSensor;
|
||||
class QAmbientTemperatureFilter;
|
||||
class QAmbientTemperatureReading;
|
||||
class QAmbientTemperatureSensor;
|
||||
class QCompass;
|
||||
class QCompassFilter;
|
||||
class QCompassReading;
|
||||
class QGyroscope;
|
||||
class QGyroscopeFilter;
|
||||
class QGyroscopeReading;
|
||||
class QHumidityFilter;
|
||||
class QHumidityReading;
|
||||
class QHumiditySensor;
|
||||
class QIRProximityFilter;
|
||||
class QIRProximityReading;
|
||||
class QIRProximitySensor;
|
||||
class QLidFilter;
|
||||
class QLidReading;
|
||||
class QLidSensor;
|
||||
class QLightFilter;
|
||||
class QLightReading;
|
||||
class QLightSensor;
|
||||
class QMagnetometer;
|
||||
class QMagnetometerFilter;
|
||||
class QMagnetometerReading;
|
||||
class QOrientationFilter;
|
||||
class QOrientationSensor;
|
||||
class QPressureFilter;
|
||||
class QPressureReading;
|
||||
class QPressureSensor;
|
||||
class QProximityFilter;
|
||||
class QProximityReading;
|
||||
class QProximitySensor;
|
||||
class QRotationFilter;
|
||||
class QRotationReading;
|
||||
class QRotationSensor;
|
||||
class QSensorBackend;
|
||||
class QSensorBackendFactory;
|
||||
class QSensorChangesInterface;
|
||||
class QSensorFilter;
|
||||
class QSensorManager;
|
||||
class QSensorPluginInterface;
|
||||
class QSensorReading;
|
||||
class QTapFilter;
|
||||
class QTapSensor;
|
||||
class QTiltFilter;
|
||||
class QTiltReading;
|
||||
class QTiltSensor;
|
||||
struct qoutputrange;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QACCELEROMETER_ACCELERATIONMODE_IDX = 2,
|
||||
SBK_QACCELEROMETER_IDX = 0,
|
||||
SBK_QACCELEROMETERFILTER_IDX = 4,
|
||||
SBK_QACCELEROMETERREADING_IDX = 6,
|
||||
SBK_QAMBIENTLIGHTFILTER_IDX = 8,
|
||||
SBK_QAMBIENTLIGHTREADING_LIGHTLEVEL_IDX = 12,
|
||||
SBK_QAMBIENTLIGHTREADING_IDX = 10,
|
||||
SBK_QAMBIENTLIGHTSENSOR_IDX = 14,
|
||||
SBK_QAMBIENTTEMPERATUREFILTER_IDX = 16,
|
||||
SBK_QAMBIENTTEMPERATUREREADING_IDX = 18,
|
||||
SBK_QAMBIENTTEMPERATURESENSOR_IDX = 20,
|
||||
SBK_QCOMPASS_IDX = 22,
|
||||
SBK_QCOMPASSFILTER_IDX = 24,
|
||||
SBK_QCOMPASSREADING_IDX = 26,
|
||||
SBK_QGYROSCOPE_IDX = 28,
|
||||
SBK_QGYROSCOPEFILTER_IDX = 30,
|
||||
SBK_QGYROSCOPEREADING_IDX = 32,
|
||||
SBK_QHUMIDITYFILTER_IDX = 34,
|
||||
SBK_QHUMIDITYREADING_IDX = 36,
|
||||
SBK_QHUMIDITYSENSOR_IDX = 38,
|
||||
SBK_QIRPROXIMITYFILTER_IDX = 40,
|
||||
SBK_QIRPROXIMITYREADING_IDX = 42,
|
||||
SBK_QIRPROXIMITYSENSOR_IDX = 44,
|
||||
SBK_QLIDFILTER_IDX = 46,
|
||||
SBK_QLIDREADING_IDX = 48,
|
||||
SBK_QLIDSENSOR_IDX = 50,
|
||||
SBK_QLIGHTFILTER_IDX = 52,
|
||||
SBK_QLIGHTREADING_IDX = 54,
|
||||
SBK_QLIGHTSENSOR_IDX = 56,
|
||||
SBK_QMAGNETOMETER_IDX = 58,
|
||||
SBK_QMAGNETOMETERFILTER_IDX = 60,
|
||||
SBK_QMAGNETOMETERREADING_IDX = 62,
|
||||
SBK_QORIENTATIONFILTER_IDX = 64,
|
||||
SBK_QORIENTATIONREADING_ORIENTATION_IDX = 68,
|
||||
SBK_QORIENTATIONREADING_IDX = 66,
|
||||
SBK_QORIENTATIONSENSOR_IDX = 70,
|
||||
SBK_QPRESSUREFILTER_IDX = 72,
|
||||
SBK_QPRESSUREREADING_IDX = 74,
|
||||
SBK_QPRESSURESENSOR_IDX = 76,
|
||||
SBK_QPROXIMITYFILTER_IDX = 78,
|
||||
SBK_QPROXIMITYREADING_IDX = 80,
|
||||
SBK_QPROXIMITYSENSOR_IDX = 82,
|
||||
SBK_QROTATIONFILTER_IDX = 84,
|
||||
SBK_QROTATIONREADING_IDX = 86,
|
||||
SBK_QROTATIONSENSOR_IDX = 88,
|
||||
SBK_QSENSOR_FEATURE_IDX = 94,
|
||||
SBK_QSENSOR_AXESORIENTATIONMODE_IDX = 92,
|
||||
SBK_QSENSOR_IDX = 90,
|
||||
SBK_QSENSORBACKEND_IDX = 96,
|
||||
SBK_QSENSORBACKENDFACTORY_IDX = 98,
|
||||
SBK_QSENSORCHANGESINTERFACE_IDX = 100,
|
||||
SBK_QSENSORFILTER_IDX = 102,
|
||||
SBK_QSENSORMANAGER_IDX = 104,
|
||||
SBK_QSENSORPLUGININTERFACE_IDX = 106,
|
||||
SBK_QSENSORREADING_IDX = 108,
|
||||
SBK_QTAPFILTER_IDX = 110,
|
||||
SBK_QTAPREADING_TAPDIRECTION_IDX = 114,
|
||||
SBK_QTAPREADING_IDX = 112,
|
||||
SBK_QTAPSENSOR_IDX = 116,
|
||||
SBK_QTILTFILTER_IDX = 118,
|
||||
SBK_QTILTREADING_IDX = 120,
|
||||
SBK_QTILTSENSOR_IDX = 122,
|
||||
SBK_QOUTPUTRANGE_IDX = 124,
|
||||
SBK_QTSENSORS_IDX_COUNT = 126,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QAccelerometer_AccelerationMode_IDX = 1,
|
||||
SBK_QAccelerometer_IDX = 0,
|
||||
SBK_QAccelerometerFilter_IDX = 2,
|
||||
SBK_QAccelerometerReading_IDX = 3,
|
||||
SBK_QAmbientLightFilter_IDX = 4,
|
||||
SBK_QAmbientLightReading_LightLevel_IDX = 6,
|
||||
SBK_QAmbientLightReading_IDX = 5,
|
||||
SBK_QAmbientLightSensor_IDX = 7,
|
||||
SBK_QAmbientTemperatureFilter_IDX = 8,
|
||||
SBK_QAmbientTemperatureReading_IDX = 9,
|
||||
SBK_QAmbientTemperatureSensor_IDX = 10,
|
||||
SBK_QCompass_IDX = 11,
|
||||
SBK_QCompassFilter_IDX = 12,
|
||||
SBK_QCompassReading_IDX = 13,
|
||||
SBK_QGyroscope_IDX = 14,
|
||||
SBK_QGyroscopeFilter_IDX = 15,
|
||||
SBK_QGyroscopeReading_IDX = 16,
|
||||
SBK_QHumidityFilter_IDX = 17,
|
||||
SBK_QHumidityReading_IDX = 18,
|
||||
SBK_QHumiditySensor_IDX = 19,
|
||||
SBK_QIRProximityFilter_IDX = 20,
|
||||
SBK_QIRProximityReading_IDX = 21,
|
||||
SBK_QIRProximitySensor_IDX = 22,
|
||||
SBK_QLidFilter_IDX = 23,
|
||||
SBK_QLidReading_IDX = 24,
|
||||
SBK_QLidSensor_IDX = 25,
|
||||
SBK_QLightFilter_IDX = 26,
|
||||
SBK_QLightReading_IDX = 27,
|
||||
SBK_QLightSensor_IDX = 28,
|
||||
SBK_QMagnetometer_IDX = 29,
|
||||
SBK_QMagnetometerFilter_IDX = 30,
|
||||
SBK_QMagnetometerReading_IDX = 31,
|
||||
SBK_QOrientationFilter_IDX = 32,
|
||||
SBK_QOrientationReading_Orientation_IDX = 34,
|
||||
SBK_QOrientationReading_IDX = 33,
|
||||
SBK_QOrientationSensor_IDX = 35,
|
||||
SBK_QPressureFilter_IDX = 36,
|
||||
SBK_QPressureReading_IDX = 37,
|
||||
SBK_QPressureSensor_IDX = 38,
|
||||
SBK_QProximityFilter_IDX = 39,
|
||||
SBK_QProximityReading_IDX = 40,
|
||||
SBK_QProximitySensor_IDX = 41,
|
||||
SBK_QRotationFilter_IDX = 42,
|
||||
SBK_QRotationReading_IDX = 43,
|
||||
SBK_QRotationSensor_IDX = 44,
|
||||
SBK_QSensor_Feature_IDX = 47,
|
||||
SBK_QSensor_AxesOrientationMode_IDX = 46,
|
||||
SBK_QSensor_IDX = 45,
|
||||
SBK_QSensorBackend_IDX = 48,
|
||||
SBK_QSensorBackendFactory_IDX = 49,
|
||||
SBK_QSensorChangesInterface_IDX = 50,
|
||||
SBK_QSensorFilter_IDX = 51,
|
||||
SBK_QSensorManager_IDX = 52,
|
||||
SBK_QSensorPluginInterface_IDX = 53,
|
||||
SBK_QSensorReading_IDX = 54,
|
||||
SBK_QTapFilter_IDX = 55,
|
||||
SBK_QTapReading_TapDirection_IDX = 57,
|
||||
SBK_QTapReading_IDX = 56,
|
||||
SBK_QTapSensor_IDX = 58,
|
||||
SBK_QTiltFilter_IDX = 59,
|
||||
SBK_QTiltReading_IDX = 60,
|
||||
SBK_QTiltSensor_IDX = 61,
|
||||
SBK_qoutputrange_IDX = 62,
|
||||
SBK_QtSensors_IDX_COUNT = 63,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtSensorsTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtSensorsTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtSensorsModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtSensorsTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTSENSORS_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTSENSORS_STD_PAIR_INT_INT_IDX = 1, // std::pair<int,int>
|
||||
SBK_QTSENSORS_QLIST_STD_PAIR_INT_INT_IDX = 2, // QList<std::pair<int,int>>
|
||||
SBK_QTSENSORS_QLIST_QSENSORFILTERPTR_IDX = 3, // QList<QSensorFilter*>
|
||||
SBK_QTSENSORS_QLIST_QOUTPUTRANGE_IDX = 4, // QList<qoutputrange>
|
||||
SBK_QTSENSORS_QLIST_QBYTEARRAY_IDX = 5, // QList<QByteArray>
|
||||
SBK_QTSENSORS_QLIST_QVARIANT_IDX = 6, // QList<QVariant>
|
||||
SBK_QTSENSORS_QLIST_QSTRING_IDX = 7, // QList<QString>
|
||||
SBK_QTSENSORS_QMAP_QSTRING_QVARIANT_IDX = 8, // QMap<QString,QVariant>
|
||||
SBK_QTSENSORS_CONVERTERS_IDX_COUNT = 9,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtSensors_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtSensors_std_pair_int_int_IDX = 1, // std::pair<int,int>
|
||||
SBK_QtSensors_QList_std_pair_int_int_IDX = 2, // QList<std::pair<int,int>>
|
||||
SBK_QtSensors_QList_QSensorFilterPTR_IDX = 3, // QList<QSensorFilter*>
|
||||
SBK_QtSensors_QList_qoutputrange_IDX = 4, // QList<qoutputrange>
|
||||
SBK_QtSensors_QList_QByteArray_IDX = 5, // QList<QByteArray>
|
||||
SBK_QtSensors_QList_QVariant_IDX = 6, // QList<QVariant>
|
||||
SBK_QtSensors_QList_QString_IDX = 7, // QList<QString>
|
||||
SBK_QtSensors_QMap_QString_QVariant_IDX = 8, // QMap<QString,QVariant>
|
||||
SBK_QtSensors_CONVERTERS_IDX_COUNT = 9,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QAccelerometer::AccelerationMode >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QAccelerometer_AccelerationMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAccelerometer >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QAccelerometer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAccelerometerFilter >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QAccelerometerFilter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAccelerometerReading >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QAccelerometerReading_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAmbientLightFilter >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QAmbientLightFilter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAmbientLightReading::LightLevel >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QAmbientLightReading_LightLevel_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAmbientLightReading >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QAmbientLightReading_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAmbientLightSensor >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QAmbientLightSensor_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAmbientTemperatureFilter >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QAmbientTemperatureFilter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAmbientTemperatureReading >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QAmbientTemperatureReading_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAmbientTemperatureSensor >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QAmbientTemperatureSensor_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCompass >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QCompass_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCompassFilter >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QCompassFilter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCompassReading >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QCompassReading_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGyroscope >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QGyroscope_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGyroscopeFilter >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QGyroscopeFilter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QGyroscopeReading >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QGyroscopeReading_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHumidityFilter >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QHumidityFilter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHumidityReading >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QHumidityReading_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHumiditySensor >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QHumiditySensor_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QIRProximityFilter >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QIRProximityFilter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QIRProximityReading >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QIRProximityReading_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QIRProximitySensor >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QIRProximitySensor_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLidFilter >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QLidFilter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLidReading >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QLidReading_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLidSensor >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QLidSensor_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLightFilter >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QLightFilter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLightReading >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QLightReading_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QLightSensor >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QLightSensor_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMagnetometer >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QMagnetometer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMagnetometerFilter >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QMagnetometerFilter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMagnetometerReading >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QMagnetometerReading_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOrientationFilter >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QOrientationFilter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOrientationReading::Orientation >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QOrientationReading_Orientation_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOrientationReading >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QOrientationReading_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QOrientationSensor >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QOrientationSensor_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPressureFilter >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QPressureFilter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPressureReading >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QPressureReading_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QPressureSensor >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QPressureSensor_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QProximityFilter >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QProximityFilter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QProximityReading >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QProximityReading_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QProximitySensor >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QProximitySensor_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QRotationFilter >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QRotationFilter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QRotationReading >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QRotationReading_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QRotationSensor >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QRotationSensor_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSensor::Feature >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QSensor_Feature_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSensor::AxesOrientationMode >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QSensor_AxesOrientationMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSensor >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QSensor_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSensorBackend >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QSensorBackend_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSensorBackendFactory >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QSensorBackendFactory_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSensorChangesInterface >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QSensorChangesInterface_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSensorFilter >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QSensorFilter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSensorManager >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QSensorManager_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSensorPluginInterface >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QSensorPluginInterface_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSensorReading >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QSensorReading_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QTapFilter >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QTapFilter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QTapReading::TapDirection >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QTapReading_TapDirection_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QTapReading >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QTapReading_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QTapSensor >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QTapSensor_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QTiltFilter >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QTiltFilter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QTiltReading >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QTiltReading_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QTiltSensor >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_QTiltSensor_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::qoutputrange >() { return Shiboken::Module::get(SbkPySide6_QtSensorsTypeStructs[SBK_qoutputrange_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTSENSORS_PYTHON_H
|
||||
|
||||
301
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtSerialBus/pyside6_qtserialbus_python.h
vendored
Normal file
301
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtSerialBus/pyside6_qtserialbus_python.h
vendored
Normal file
@@ -0,0 +1,301 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTSERIALBUS_PYTHON_H
|
||||
#define SBK_QTSERIALBUS_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtnetwork_python.h>
|
||||
#include <pyside6_qtserialport_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtSerialBus/qcanbusdevice.h>
|
||||
#include <QtSerialBus/qcanbusframe.h>
|
||||
#include <QtSerialBus/qcancommondefinitions.h>
|
||||
#include <QtSerialBus/qcandbcfileparser.h>
|
||||
#include <QtSerialBus/qcanframeprocessor.h>
|
||||
#include <QtSerialBus/qcansignaldescription.h>
|
||||
#include <QtSerialBus/qmodbusdataunit.h>
|
||||
#include <QtSerialBus/qmodbusdevice.h>
|
||||
#include <QtSerialBus/qmodbusdeviceidentification.h>
|
||||
#include <QtSerialBus/qmodbuspdu.h>
|
||||
#include <QtSerialBus/qmodbusreply.h>
|
||||
#include <QtSerialBus/qmodbusserver.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QCanBus;
|
||||
class QCanBusDeviceInfo;
|
||||
class QCanBusFactory;
|
||||
class QCanMessageDescription;
|
||||
class QCanUniqueIdDescription;
|
||||
class QModbusClient;
|
||||
class QModbusExceptionResponse;
|
||||
class QModbusRequest;
|
||||
class QModbusResponse;
|
||||
class QModbusRtuSerialClient;
|
||||
class QModbusRtuSerialServer;
|
||||
class QModbusTcpClient;
|
||||
class QModbusTcpConnectionObserver;
|
||||
class QModbusTcpServer;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QCANBUS_IDX = 0,
|
||||
SBK_QCANBUSDEVICE_CANBUSERROR_IDX = 6,
|
||||
SBK_QCANBUSDEVICE_CANBUSDEVICESTATE_IDX = 4,
|
||||
SBK_QCANBUSDEVICE_CANBUSSTATUS_IDX = 8,
|
||||
SBK_QCANBUSDEVICE_CONFIGURATIONKEY_IDX = 10,
|
||||
SBK_QCANBUSDEVICE_DIRECTION_IDX = 12,
|
||||
SBK_QFLAGS_QCANBUSDEVICE_DIRECTION_IDX = 48,
|
||||
SBK_QCANBUSDEVICE_IDX = 2,
|
||||
SBK_QCANBUSDEVICE_FILTER_FORMATFILTER_IDX = 16,
|
||||
SBK_QFLAGS_QCANBUSDEVICE_FILTER_FORMATFILTER_IDX = 50,
|
||||
SBK_QCANBUSDEVICE_FILTER_IDX = 14,
|
||||
SBK_QCANBUSDEVICEINFO_IDX = 18,
|
||||
SBK_QCANBUSFACTORY_IDX = 20,
|
||||
SBK_QCANBUSFRAME_FRAMETYPE_IDX = 26,
|
||||
SBK_QCANBUSFRAME_FRAMEERROR_IDX = 24,
|
||||
SBK_QFLAGS_QCANBUSFRAME_FRAMEERROR_IDX = 52,
|
||||
SBK_QCANBUSFRAME_IDX = 22,
|
||||
SBK_QCANBUSFRAME_TIMESTAMP_IDX = 28,
|
||||
SBK_QCANDBCFILEPARSER_ERROR_IDX = 32,
|
||||
SBK_QCANDBCFILEPARSER_IDX = 30,
|
||||
SBK_QCANFRAMEPROCESSOR_ERROR_IDX = 36,
|
||||
SBK_QCANFRAMEPROCESSOR_IDX = 34,
|
||||
SBK_QCANFRAMEPROCESSOR_PARSERESULT_IDX = 38,
|
||||
SBK_QCANMESSAGEDESCRIPTION_IDX = 40,
|
||||
SBK_QCANSIGNALDESCRIPTION_IDX = 42,
|
||||
SBK_QCANSIGNALDESCRIPTION_MULTIPLEXVALUERANGE_IDX = 44,
|
||||
SBK_QCANUNIQUEIDDESCRIPTION_IDX = 46,
|
||||
SBK_QMODBUSCLIENT_IDX = 54,
|
||||
SBK_QMODBUSDATAUNIT_REGISTERTYPE_IDX = 58,
|
||||
SBK_QMODBUSDATAUNIT_IDX = 56,
|
||||
SBK_QMODBUSDEVICE_ERROR_IDX = 64,
|
||||
SBK_QMODBUSDEVICE_STATE_IDX = 68,
|
||||
SBK_QMODBUSDEVICE_CONNECTIONPARAMETER_IDX = 62,
|
||||
SBK_QMODBUSDEVICE_INTERMEDIATEERROR_IDX = 66,
|
||||
SBK_QMODBUSDEVICE_IDX = 60,
|
||||
SBK_QMODBUSDEVICEIDENTIFICATION_OBJECTID_IDX = 74,
|
||||
SBK_QMODBUSDEVICEIDENTIFICATION_READDEVICEIDCODE_IDX = 76,
|
||||
SBK_QMODBUSDEVICEIDENTIFICATION_CONFORMITYLEVEL_IDX = 72,
|
||||
SBK_QMODBUSDEVICEIDENTIFICATION_IDX = 70,
|
||||
SBK_QMODBUSEXCEPTIONRESPONSE_IDX = 78,
|
||||
SBK_QMODBUSPDU_EXCEPTIONCODE_IDX = 82,
|
||||
SBK_QMODBUSPDU_FUNCTIONCODE_IDX = 84,
|
||||
SBK_QMODBUSPDU_IDX = 80,
|
||||
SBK_QMODBUSREPLY_REPLYTYPE_IDX = 88,
|
||||
SBK_QMODBUSREPLY_IDX = 86,
|
||||
SBK_QMODBUSREQUEST_IDX = 90,
|
||||
SBK_QMODBUSRESPONSE_IDX = 92,
|
||||
SBK_QMODBUSRTUSERIALCLIENT_IDX = 94,
|
||||
SBK_QMODBUSRTUSERIALSERVER_IDX = 96,
|
||||
SBK_QMODBUSSERVER_OPTION_IDX = 100,
|
||||
SBK_QMODBUSSERVER_IDX = 98,
|
||||
SBK_QMODBUSTCPCLIENT_IDX = 102,
|
||||
SBK_QMODBUSTCPCONNECTIONOBSERVER_IDX = 104,
|
||||
SBK_QMODBUSTCPSERVER_IDX = 106,
|
||||
SBK_QTCANBUS_DATASOURCE_IDX = 112,
|
||||
SBK_QTCANBUS_DATAFORMAT_IDX = 110,
|
||||
SBK_QTCANBUS_MULTIPLEXSTATE_IDX = 114,
|
||||
SBK_QTCANBUS_UNIQUEID_IDX = 116,
|
||||
SBK_QTSERIALBUSQTCANBUS_IDX = 108,
|
||||
SBK_QTSERIALBUS_IDX_COUNT = 118,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QCanBus_IDX = 0,
|
||||
SBK_QCanBusDevice_CanBusError_IDX = 3,
|
||||
SBK_QCanBusDevice_CanBusDeviceState_IDX = 2,
|
||||
SBK_QCanBusDevice_CanBusStatus_IDX = 4,
|
||||
SBK_QCanBusDevice_ConfigurationKey_IDX = 5,
|
||||
SBK_QCanBusDevice_Direction_IDX = 6,
|
||||
SBK_QFlags_QCanBusDevice_Direction_IDX = 24,
|
||||
SBK_QCanBusDevice_IDX = 1,
|
||||
SBK_QCanBusDevice_Filter_FormatFilter_IDX = 8,
|
||||
SBK_QFlags_QCanBusDevice_Filter_FormatFilter_IDX = 25,
|
||||
SBK_QCanBusDevice_Filter_IDX = 7,
|
||||
SBK_QCanBusDeviceInfo_IDX = 9,
|
||||
SBK_QCanBusFactory_IDX = 10,
|
||||
SBK_QCanBusFrame_FrameType_IDX = 13,
|
||||
SBK_QCanBusFrame_FrameError_IDX = 12,
|
||||
SBK_QFlags_QCanBusFrame_FrameError_IDX = 26,
|
||||
SBK_QCanBusFrame_IDX = 11,
|
||||
SBK_QCanBusFrame_TimeStamp_IDX = 14,
|
||||
SBK_QCanDbcFileParser_Error_IDX = 16,
|
||||
SBK_QCanDbcFileParser_IDX = 15,
|
||||
SBK_QCanFrameProcessor_Error_IDX = 18,
|
||||
SBK_QCanFrameProcessor_IDX = 17,
|
||||
SBK_QCanFrameProcessor_ParseResult_IDX = 19,
|
||||
SBK_QCanMessageDescription_IDX = 20,
|
||||
SBK_QCanSignalDescription_IDX = 21,
|
||||
SBK_QCanSignalDescription_MultiplexValueRange_IDX = 22,
|
||||
SBK_QCanUniqueIdDescription_IDX = 23,
|
||||
SBK_QModbusClient_IDX = 27,
|
||||
SBK_QModbusDataUnit_RegisterType_IDX = 29,
|
||||
SBK_QModbusDataUnit_IDX = 28,
|
||||
SBK_QModbusDevice_Error_IDX = 32,
|
||||
SBK_QModbusDevice_State_IDX = 34,
|
||||
SBK_QModbusDevice_ConnectionParameter_IDX = 31,
|
||||
SBK_QModbusDevice_IntermediateError_IDX = 33,
|
||||
SBK_QModbusDevice_IDX = 30,
|
||||
SBK_QModbusDeviceIdentification_ObjectId_IDX = 37,
|
||||
SBK_QModbusDeviceIdentification_ReadDeviceIdCode_IDX = 38,
|
||||
SBK_QModbusDeviceIdentification_ConformityLevel_IDX = 36,
|
||||
SBK_QModbusDeviceIdentification_IDX = 35,
|
||||
SBK_QModbusExceptionResponse_IDX = 39,
|
||||
SBK_QModbusPdu_ExceptionCode_IDX = 41,
|
||||
SBK_QModbusPdu_FunctionCode_IDX = 42,
|
||||
SBK_QModbusPdu_IDX = 40,
|
||||
SBK_QModbusReply_ReplyType_IDX = 44,
|
||||
SBK_QModbusReply_IDX = 43,
|
||||
SBK_QModbusRequest_IDX = 45,
|
||||
SBK_QModbusResponse_IDX = 46,
|
||||
SBK_QModbusRtuSerialClient_IDX = 47,
|
||||
SBK_QModbusRtuSerialServer_IDX = 48,
|
||||
SBK_QModbusServer_Option_IDX = 50,
|
||||
SBK_QModbusServer_IDX = 49,
|
||||
SBK_QModbusTcpClient_IDX = 51,
|
||||
SBK_QModbusTcpConnectionObserver_IDX = 52,
|
||||
SBK_QModbusTcpServer_IDX = 53,
|
||||
SBK_QtCanBus_DataSource_IDX = 56,
|
||||
SBK_QtCanBus_DataFormat_IDX = 55,
|
||||
SBK_QtCanBus_MultiplexState_IDX = 57,
|
||||
SBK_QtCanBus_UniqueId_IDX = 58,
|
||||
SBK_QtSerialBusQtCanBus_IDX = 54,
|
||||
SBK_QtSerialBus_IDX_COUNT = 59,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtSerialBusTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtSerialBusTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtSerialBusModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtSerialBusTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTSERIALBUS_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTSERIALBUS_QLIST_QUINT16_IDX = 1, // QList<quint16>
|
||||
SBK_QTSERIALBUS_QLIST_QCANSIGNALDESCRIPTION_MULTIPLEXVALUERANGE_IDX = 2, // QList<QCanSignalDescription::MultiplexValueRange>
|
||||
SBK_QTSERIALBUS_QHASH_QSTRING_QLIST_QCANSIGNALDESCRIPTION_MULTIPLEXVALUERANGE_IDX = 3, // QHash<QString,QList<QCanSignalDescription::MultiplexValueRange>>
|
||||
SBK_QTSERIALBUS_QLIST_QCANSIGNALDESCRIPTION_IDX = 4, // QList<QCanSignalDescription>
|
||||
SBK_QTSERIALBUS_QLIST_QCANMESSAGEDESCRIPTION_IDX = 5, // QList<QCanMessageDescription>
|
||||
SBK_QTSERIALBUS_QMAP_QSTRING_QVARIANT_IDX = 6, // QMap<QString,QVariant>
|
||||
SBK_QTSERIALBUS_QHASH_UNSIGNEDINT_QSTRING_IDX = 7, // QHash<unsigned int,QString>
|
||||
SBK_QTSERIALBUS_QHASH_QSTRING_QHASH_UNSIGNEDINT_QSTRING_IDX = 8, // QHash<QString,QHash<unsigned int,QString>>
|
||||
SBK_QTSERIALBUS_QHASH_QTCANBUS_UNIQUEID_QHASH_QSTRING_QHASH_UNSIGNEDINT_QSTRING_IDX = 9, // QHash<QtCanBus::UniqueId,QHash<QString,QHash<unsigned int,QString>>>
|
||||
SBK_QTSERIALBUS_QLIST_QCANBUSDEVICEINFO_IDX = 10, // QList<QCanBusDeviceInfo>
|
||||
SBK_QTSERIALBUS_QLIST_QMODBUSDEVICE_INTERMEDIATEERROR_IDX = 11, // QList<QModbusDevice::IntermediateError>
|
||||
SBK_QTSERIALBUS_QMAP_QMODBUSDATAUNIT_REGISTERTYPE_QMODBUSDATAUNIT_IDX = 12, // QMap<QModbusDataUnit::RegisterType,QModbusDataUnit>
|
||||
SBK_QTSERIALBUS_QLIST_QCANBUSDEVICE_CONFIGURATIONKEY_IDX = 13, // QList<QCanBusDevice::ConfigurationKey>
|
||||
SBK_QTSERIALBUS_QLIST_QCANBUSFRAME_IDX = 14, // QList<QCanBusFrame>
|
||||
SBK_QTSERIALBUS_QLIST_QVARIANT_IDX = 15, // QList<QVariant>
|
||||
SBK_QTSERIALBUS_QLIST_QSTRING_IDX = 16, // QList<QString>
|
||||
SBK_QTSERIALBUS_CONVERTERS_IDX_COUNT = 17,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtSerialBus_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtSerialBus_QList_quint16_IDX = 1, // QList<quint16>
|
||||
SBK_QtSerialBus_QList_QCanSignalDescription_MultiplexValueRange_IDX = 2, // QList<QCanSignalDescription::MultiplexValueRange>
|
||||
SBK_QtSerialBus_QHash_QString_QList_QCanSignalDescription_MultiplexValueRange_IDX = 3, // QHash<QString,QList<QCanSignalDescription::MultiplexValueRange>>
|
||||
SBK_QtSerialBus_QList_QCanSignalDescription_IDX = 4, // QList<QCanSignalDescription>
|
||||
SBK_QtSerialBus_QList_QCanMessageDescription_IDX = 5, // QList<QCanMessageDescription>
|
||||
SBK_QtSerialBus_QMap_QString_QVariant_IDX = 6, // QMap<QString,QVariant>
|
||||
SBK_QtSerialBus_QHash_unsignedint_QString_IDX = 7, // QHash<unsigned int,QString>
|
||||
SBK_QtSerialBus_QHash_QString_QHash_unsignedint_QString_IDX = 8, // QHash<QString,QHash<unsigned int,QString>>
|
||||
SBK_QtSerialBus_QHash_QtCanBus_UniqueId_QHash_QString_QHash_unsignedint_QString_IDX = 9, // QHash<QtCanBus::UniqueId,QHash<QString,QHash<unsigned int,QString>>>
|
||||
SBK_QtSerialBus_QList_QCanBusDeviceInfo_IDX = 10, // QList<QCanBusDeviceInfo>
|
||||
SBK_QtSerialBus_QList_QModbusDevice_IntermediateError_IDX = 11, // QList<QModbusDevice::IntermediateError>
|
||||
SBK_QtSerialBus_QMap_QModbusDataUnit_RegisterType_QModbusDataUnit_IDX = 12, // QMap<QModbusDataUnit::RegisterType,QModbusDataUnit>
|
||||
SBK_QtSerialBus_QList_QCanBusDevice_ConfigurationKey_IDX = 13, // QList<QCanBusDevice::ConfigurationKey>
|
||||
SBK_QtSerialBus_QList_QCanBusFrame_IDX = 14, // QList<QCanBusFrame>
|
||||
SBK_QtSerialBus_QList_QVariant_IDX = 15, // QList<QVariant>
|
||||
SBK_QtSerialBus_QList_QString_IDX = 16, // QList<QString>
|
||||
SBK_QtSerialBus_CONVERTERS_IDX_COUNT = 17,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QCanBus >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QCanBus_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCanBusDevice::CanBusError >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QCanBusDevice_CanBusError_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCanBusDevice::CanBusDeviceState >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QCanBusDevice_CanBusDeviceState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCanBusDevice::CanBusStatus >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QCanBusDevice_CanBusStatus_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCanBusDevice::ConfigurationKey >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QCanBusDevice_ConfigurationKey_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCanBusDevice::Direction >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QCanBusDevice_Direction_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QCanBusDevice::Direction> >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QFlags_QCanBusDevice_Direction_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCanBusDevice >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QCanBusDevice_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCanBusDevice::Filter::FormatFilter >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QCanBusDevice_Filter_FormatFilter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QCanBusDevice::Filter::FormatFilter> >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QFlags_QCanBusDevice_Filter_FormatFilter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCanBusDevice::Filter >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QCanBusDevice_Filter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCanBusDeviceInfo >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QCanBusDeviceInfo_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCanBusFactory >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QCanBusFactory_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCanBusFrame::FrameType >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QCanBusFrame_FrameType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCanBusFrame::FrameError >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QCanBusFrame_FrameError_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QCanBusFrame::FrameError> >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QFlags_QCanBusFrame_FrameError_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCanBusFrame >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QCanBusFrame_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCanBusFrame::TimeStamp >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QCanBusFrame_TimeStamp_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCanDbcFileParser::Error >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QCanDbcFileParser_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCanDbcFileParser >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QCanDbcFileParser_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCanFrameProcessor::Error >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QCanFrameProcessor_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCanFrameProcessor >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QCanFrameProcessor_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCanFrameProcessor::ParseResult >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QCanFrameProcessor_ParseResult_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCanMessageDescription >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QCanMessageDescription_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCanSignalDescription >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QCanSignalDescription_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCanSignalDescription::MultiplexValueRange >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QCanSignalDescription_MultiplexValueRange_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QCanUniqueIdDescription >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QCanUniqueIdDescription_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusClient >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusClient_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusDataUnit::RegisterType >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusDataUnit_RegisterType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusDataUnit >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusDataUnit_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusDevice::Error >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusDevice_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusDevice::State >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusDevice_State_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusDevice::ConnectionParameter >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusDevice_ConnectionParameter_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusDevice::IntermediateError >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusDevice_IntermediateError_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusDevice >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusDevice_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusDeviceIdentification::ObjectId >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusDeviceIdentification_ObjectId_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusDeviceIdentification::ReadDeviceIdCode >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusDeviceIdentification_ReadDeviceIdCode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusDeviceIdentification::ConformityLevel >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusDeviceIdentification_ConformityLevel_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusDeviceIdentification >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusDeviceIdentification_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusExceptionResponse >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusExceptionResponse_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusPdu::ExceptionCode >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusPdu_ExceptionCode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusPdu::FunctionCode >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusPdu_FunctionCode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusPdu >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusPdu_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusReply::ReplyType >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusReply_ReplyType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusReply >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusReply_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusRequest >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusRequest_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusResponse >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusResponse_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusRtuSerialClient >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusRtuSerialClient_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusRtuSerialServer >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusRtuSerialServer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusServer::Option >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusServer_Option_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusServer >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusServer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusTcpClient >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusTcpClient_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusTcpConnectionObserver >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusTcpConnectionObserver_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QModbusTcpServer >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QModbusTcpServer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtCanBus::DataSource >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QtCanBus_DataSource_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtCanBus::DataFormat >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QtCanBus_DataFormat_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtCanBus::MultiplexState >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QtCanBus_MultiplexState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtCanBus::UniqueId >() { return Shiboken::Module::get(SbkPySide6_QtSerialBusTypeStructs[SBK_QtCanBus_UniqueId_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTSERIALBUS_PYTHON_H
|
||||
|
||||
113
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtSerialPort/pyside6_qtserialport_python.h
vendored
Normal file
113
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtSerialPort/pyside6_qtserialport_python.h
vendored
Normal file
@@ -0,0 +1,113 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTSERIALPORT_PYTHON_H
|
||||
#define SBK_QTSERIALPORT_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtSerialPort/qserialport.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QSerialPortInfo;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QSERIALPORT_DIRECTION_IDX = 10,
|
||||
SBK_QFLAGS_QSERIALPORT_DIRECTION_IDX = 0,
|
||||
SBK_QSERIALPORT_BAUDRATE_IDX = 6,
|
||||
SBK_QSERIALPORT_DATABITS_IDX = 8,
|
||||
SBK_QSERIALPORT_PARITY_IDX = 14,
|
||||
SBK_QSERIALPORT_STOPBITS_IDX = 20,
|
||||
SBK_QSERIALPORT_FLOWCONTROL_IDX = 12,
|
||||
SBK_QSERIALPORT_PINOUTSIGNAL_IDX = 16,
|
||||
SBK_QFLAGS_QSERIALPORT_PINOUTSIGNAL_IDX = 2,
|
||||
SBK_QSERIALPORT_SERIALPORTERROR_IDX = 18,
|
||||
SBK_QSERIALPORT_IDX = 4,
|
||||
SBK_QSERIALPORTINFO_IDX = 22,
|
||||
SBK_QTSERIALPORT_IDX_COUNT = 24,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QSerialPort_Direction_IDX = 5,
|
||||
SBK_QFlags_QSerialPort_Direction_IDX = 0,
|
||||
SBK_QSerialPort_BaudRate_IDX = 3,
|
||||
SBK_QSerialPort_DataBits_IDX = 4,
|
||||
SBK_QSerialPort_Parity_IDX = 7,
|
||||
SBK_QSerialPort_StopBits_IDX = 10,
|
||||
SBK_QSerialPort_FlowControl_IDX = 6,
|
||||
SBK_QSerialPort_PinoutSignal_IDX = 8,
|
||||
SBK_QFlags_QSerialPort_PinoutSignal_IDX = 1,
|
||||
SBK_QSerialPort_SerialPortError_IDX = 9,
|
||||
SBK_QSerialPort_IDX = 2,
|
||||
SBK_QSerialPortInfo_IDX = 11,
|
||||
SBK_QtSerialPort_IDX_COUNT = 12,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtSerialPortTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtSerialPortTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtSerialPortModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtSerialPortTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTSERIALPORT_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTSERIALPORT_QLIST_QSERIALPORTINFO_IDX = 1, // QList<QSerialPortInfo>
|
||||
SBK_QTSERIALPORT_QLIST_QINT32_IDX = 2, // QList<qint32>
|
||||
SBK_QTSERIALPORT_QLIST_QVARIANT_IDX = 3, // QList<QVariant>
|
||||
SBK_QTSERIALPORT_QLIST_QSTRING_IDX = 4, // QList<QString>
|
||||
SBK_QTSERIALPORT_QMAP_QSTRING_QVARIANT_IDX = 5, // QMap<QString,QVariant>
|
||||
SBK_QTSERIALPORT_CONVERTERS_IDX_COUNT = 6,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtSerialPort_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtSerialPort_QList_QSerialPortInfo_IDX = 1, // QList<QSerialPortInfo>
|
||||
SBK_QtSerialPort_QList_qint32_IDX = 2, // QList<qint32>
|
||||
SBK_QtSerialPort_QList_QVariant_IDX = 3, // QList<QVariant>
|
||||
SBK_QtSerialPort_QList_QString_IDX = 4, // QList<QString>
|
||||
SBK_QtSerialPort_QMap_QString_QVariant_IDX = 5, // QMap<QString,QVariant>
|
||||
SBK_QtSerialPort_CONVERTERS_IDX_COUNT = 6,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QSerialPort::Direction >() { return Shiboken::Module::get(SbkPySide6_QtSerialPortTypeStructs[SBK_QSerialPort_Direction_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QSerialPort::Direction> >() { return Shiboken::Module::get(SbkPySide6_QtSerialPortTypeStructs[SBK_QFlags_QSerialPort_Direction_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSerialPort::BaudRate >() { return Shiboken::Module::get(SbkPySide6_QtSerialPortTypeStructs[SBK_QSerialPort_BaudRate_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSerialPort::DataBits >() { return Shiboken::Module::get(SbkPySide6_QtSerialPortTypeStructs[SBK_QSerialPort_DataBits_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSerialPort::Parity >() { return Shiboken::Module::get(SbkPySide6_QtSerialPortTypeStructs[SBK_QSerialPort_Parity_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSerialPort::StopBits >() { return Shiboken::Module::get(SbkPySide6_QtSerialPortTypeStructs[SBK_QSerialPort_StopBits_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSerialPort::FlowControl >() { return Shiboken::Module::get(SbkPySide6_QtSerialPortTypeStructs[SBK_QSerialPort_FlowControl_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSerialPort::PinoutSignal >() { return Shiboken::Module::get(SbkPySide6_QtSerialPortTypeStructs[SBK_QSerialPort_PinoutSignal_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QSerialPort::PinoutSignal> >() { return Shiboken::Module::get(SbkPySide6_QtSerialPortTypeStructs[SBK_QFlags_QSerialPort_PinoutSignal_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSerialPort::SerialPortError >() { return Shiboken::Module::get(SbkPySide6_QtSerialPortTypeStructs[SBK_QSerialPort_SerialPortError_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSerialPort >() { return Shiboken::Module::get(SbkPySide6_QtSerialPortTypeStructs[SBK_QSerialPort_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSerialPortInfo >() { return Shiboken::Module::get(SbkPySide6_QtSerialPortTypeStructs[SBK_QSerialPortInfo_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTSERIALPORT_PYTHON_H
|
||||
|
||||
@@ -0,0 +1,112 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTSPATIALAUDIO_PYTHON_H
|
||||
#define SBK_QTSPATIALAUDIO_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtnetwork_python.h>
|
||||
#include <pyside6_qtmultimedia_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtSpatialAudio/qambientsound.h>
|
||||
#include <QtSpatialAudio/qaudioengine.h>
|
||||
#include <QtSpatialAudio/qaudioroom.h>
|
||||
#include <QtSpatialAudio/qspatialsound.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QAudioListener;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QAMBIENTSOUND_LOOPS_IDX = 2,
|
||||
SBK_QAMBIENTSOUND_IDX = 0,
|
||||
SBK_QAUDIOENGINE_OUTPUTMODE_IDX = 6,
|
||||
SBK_QAUDIOENGINE_IDX = 4,
|
||||
SBK_QAUDIOLISTENER_IDX = 8,
|
||||
SBK_QAUDIOROOM_MATERIAL_IDX = 12,
|
||||
SBK_QAUDIOROOM_WALL_IDX = 14,
|
||||
SBK_QAUDIOROOM_IDX = 10,
|
||||
SBK_QSPATIALSOUND_LOOPS_IDX = 20,
|
||||
SBK_QSPATIALSOUND_DISTANCEMODEL_IDX = 18,
|
||||
SBK_QSPATIALSOUND_IDX = 16,
|
||||
SBK_QTSPATIALAUDIO_IDX_COUNT = 22,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QAmbientSound_Loops_IDX = 1,
|
||||
SBK_QAmbientSound_IDX = 0,
|
||||
SBK_QAudioEngine_OutputMode_IDX = 3,
|
||||
SBK_QAudioEngine_IDX = 2,
|
||||
SBK_QAudioListener_IDX = 4,
|
||||
SBK_QAudioRoom_Material_IDX = 6,
|
||||
SBK_QAudioRoom_Wall_IDX = 7,
|
||||
SBK_QAudioRoom_IDX = 5,
|
||||
SBK_QSpatialSound_Loops_IDX = 10,
|
||||
SBK_QSpatialSound_DistanceModel_IDX = 9,
|
||||
SBK_QSpatialSound_IDX = 8,
|
||||
SBK_QtSpatialAudio_IDX_COUNT = 11,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtSpatialAudioTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtSpatialAudioTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtSpatialAudioModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtSpatialAudioTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTSPATIALAUDIO_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTSPATIALAUDIO_QLIST_QVARIANT_IDX = 1, // QList<QVariant>
|
||||
SBK_QTSPATIALAUDIO_QLIST_QSTRING_IDX = 2, // QList<QString>
|
||||
SBK_QTSPATIALAUDIO_QMAP_QSTRING_QVARIANT_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QTSPATIALAUDIO_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtSpatialAudio_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtSpatialAudio_QList_QVariant_IDX = 1, // QList<QVariant>
|
||||
SBK_QtSpatialAudio_QList_QString_IDX = 2, // QList<QString>
|
||||
SBK_QtSpatialAudio_QMap_QString_QVariant_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QtSpatialAudio_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QAmbientSound::Loops >() { return Shiboken::Module::get(SbkPySide6_QtSpatialAudioTypeStructs[SBK_QAmbientSound_Loops_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAmbientSound >() { return Shiboken::Module::get(SbkPySide6_QtSpatialAudioTypeStructs[SBK_QAmbientSound_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAudioEngine::OutputMode >() { return Shiboken::Module::get(SbkPySide6_QtSpatialAudioTypeStructs[SBK_QAudioEngine_OutputMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAudioEngine >() { return Shiboken::Module::get(SbkPySide6_QtSpatialAudioTypeStructs[SBK_QAudioEngine_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAudioListener >() { return Shiboken::Module::get(SbkPySide6_QtSpatialAudioTypeStructs[SBK_QAudioListener_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAudioRoom::Material >() { return Shiboken::Module::get(SbkPySide6_QtSpatialAudioTypeStructs[SBK_QAudioRoom_Material_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAudioRoom::Wall >() { return Shiboken::Module::get(SbkPySide6_QtSpatialAudioTypeStructs[SBK_QAudioRoom_Wall_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAudioRoom >() { return Shiboken::Module::get(SbkPySide6_QtSpatialAudioTypeStructs[SBK_QAudioRoom_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSpatialSound::Loops >() { return Shiboken::Module::get(SbkPySide6_QtSpatialAudioTypeStructs[SBK_QSpatialSound_Loops_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSpatialSound::DistanceModel >() { return Shiboken::Module::get(SbkPySide6_QtSpatialAudioTypeStructs[SBK_QSpatialSound_DistanceModel_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSpatialSound >() { return Shiboken::Module::get(SbkPySide6_QtSpatialAudioTypeStructs[SBK_QSpatialSound_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTSPATIALAUDIO_PYTHON_H
|
||||
|
||||
193
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtSql/pyside6_qtsql_python.h
vendored
Normal file
193
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtSql/pyside6_qtsql_python.h
vendored
Normal file
@@ -0,0 +1,193 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTSQL_PYTHON_H
|
||||
#define SBK_QTSQL_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtwidgets_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtSql/qsqldriver.h>
|
||||
#include <QtSql/qsqlerror.h>
|
||||
#include <QtSql/qsqlfield.h>
|
||||
#include <QtSql/qsqlquery.h>
|
||||
#include <QtSql/qsqlrelationaltablemodel.h>
|
||||
#include <QtSql/qsqlresult.h>
|
||||
#include <QtSql/qsqltablemodel.h>
|
||||
#include <QtSql/qtsqlglobal.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QSqlDatabase;
|
||||
class QSqlDriverCreatorBase;
|
||||
class QSqlIndex;
|
||||
class QSqlQueryModel;
|
||||
class QSqlRecord;
|
||||
class QSqlRelation;
|
||||
class QSqlRelationalDelegate;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QSQL_LOCATION_IDX = 4,
|
||||
SBK_QSQL_PARAMTYPEFLAG_IDX = 8,
|
||||
SBK_QFLAGS_QSQL_PARAMTYPEFLAG_IDX = 0,
|
||||
SBK_QSQL_TABLETYPE_IDX = 10,
|
||||
SBK_QSQL_NUMERICALPRECISIONPOLICY_IDX = 6,
|
||||
SBK_QTSQLQSQL_IDX = 2,
|
||||
SBK_QSQLDATABASE_IDX = 12,
|
||||
SBK_QSQLDRIVER_DRIVERFEATURE_IDX = 18,
|
||||
SBK_QSQLDRIVER_STATEMENTTYPE_IDX = 24,
|
||||
SBK_QSQLDRIVER_IDENTIFIERTYPE_IDX = 20,
|
||||
SBK_QSQLDRIVER_NOTIFICATIONSOURCE_IDX = 22,
|
||||
SBK_QSQLDRIVER_DBMSTYPE_IDX = 16,
|
||||
SBK_QSQLDRIVER_IDX = 14,
|
||||
SBK_QSQLDRIVERCREATORBASE_IDX = 26,
|
||||
SBK_QSQLERROR_ERRORTYPE_IDX = 30,
|
||||
SBK_QSQLERROR_IDX = 28,
|
||||
SBK_QSQLFIELD_REQUIREDSTATUS_IDX = 34,
|
||||
SBK_QSQLFIELD_IDX = 32,
|
||||
SBK_QSQLINDEX_IDX = 36,
|
||||
SBK_QSQLQUERY_BATCHEXECUTIONMODE_IDX = 40,
|
||||
SBK_QSQLQUERY_IDX = 38,
|
||||
SBK_QSQLQUERYMODEL_IDX = 42,
|
||||
SBK_QSQLRECORD_IDX = 44,
|
||||
SBK_QSQLRELATION_IDX = 46,
|
||||
SBK_QSQLRELATIONALDELEGATE_IDX = 48,
|
||||
SBK_QSQLRELATIONALTABLEMODEL_JOINMODE_IDX = 52,
|
||||
SBK_QSQLRELATIONALTABLEMODEL_IDX = 50,
|
||||
SBK_QSQLRESULT_BINDINGSYNTAX_IDX = 56,
|
||||
SBK_QSQLRESULT_VIRTUALHOOKOPERATION_IDX = 58,
|
||||
SBK_QSQLRESULT_IDX = 54,
|
||||
SBK_QSQLTABLEMODEL_EDITSTRATEGY_IDX = 62,
|
||||
SBK_QSQLTABLEMODEL_IDX = 60,
|
||||
SBK_QTSQL_IDX_COUNT = 64,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QSql_Location_IDX = 2,
|
||||
SBK_QSql_ParamTypeFlag_IDX = 4,
|
||||
SBK_QFlags_QSql_ParamTypeFlag_IDX = 0,
|
||||
SBK_QSql_TableType_IDX = 5,
|
||||
SBK_QSql_NumericalPrecisionPolicy_IDX = 3,
|
||||
SBK_QtSqlQSql_IDX = 1,
|
||||
SBK_QSqlDatabase_IDX = 6,
|
||||
SBK_QSqlDriver_DriverFeature_IDX = 9,
|
||||
SBK_QSqlDriver_StatementType_IDX = 12,
|
||||
SBK_QSqlDriver_IdentifierType_IDX = 10,
|
||||
SBK_QSqlDriver_NotificationSource_IDX = 11,
|
||||
SBK_QSqlDriver_DbmsType_IDX = 8,
|
||||
SBK_QSqlDriver_IDX = 7,
|
||||
SBK_QSqlDriverCreatorBase_IDX = 13,
|
||||
SBK_QSqlError_ErrorType_IDX = 15,
|
||||
SBK_QSqlError_IDX = 14,
|
||||
SBK_QSqlField_RequiredStatus_IDX = 17,
|
||||
SBK_QSqlField_IDX = 16,
|
||||
SBK_QSqlIndex_IDX = 18,
|
||||
SBK_QSqlQuery_BatchExecutionMode_IDX = 20,
|
||||
SBK_QSqlQuery_IDX = 19,
|
||||
SBK_QSqlQueryModel_IDX = 21,
|
||||
SBK_QSqlRecord_IDX = 22,
|
||||
SBK_QSqlRelation_IDX = 23,
|
||||
SBK_QSqlRelationalDelegate_IDX = 24,
|
||||
SBK_QSqlRelationalTableModel_JoinMode_IDX = 26,
|
||||
SBK_QSqlRelationalTableModel_IDX = 25,
|
||||
SBK_QSqlResult_BindingSyntax_IDX = 28,
|
||||
SBK_QSqlResult_VirtualHookOperation_IDX = 29,
|
||||
SBK_QSqlResult_IDX = 27,
|
||||
SBK_QSqlTableModel_EditStrategy_IDX = 31,
|
||||
SBK_QSqlTableModel_IDX = 30,
|
||||
SBK_QtSql_IDX_COUNT = 32,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtSqlTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtSqlTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtSqlModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtSqlTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTSQL_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTSQL_QLIST_QVARIANT_IDX = 1, // QList<QVariant>
|
||||
SBK_QTSQL_QMAP_INT_QVARIANT_IDX = 2, // QMap<int,QVariant>
|
||||
SBK_QTSQL_QLIST_QMODELINDEX_IDX = 3, // QList<QModelIndex>
|
||||
SBK_QTSQL_QHASH_INT_QBYTEARRAY_IDX = 4, // QHash<int,QByteArray>
|
||||
SBK_QTSQL_QLIST_QSTRING_IDX = 5, // QList<QString>
|
||||
SBK_QTSQL_QMAP_QSTRING_QVARIANT_IDX = 6, // QMap<QString,QVariant>
|
||||
SBK_QTSQL_CONVERTERS_IDX_COUNT = 7,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtSql_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtSql_QList_QVariant_IDX = 1, // QList<QVariant>
|
||||
SBK_QtSql_QMap_int_QVariant_IDX = 2, // QMap<int,QVariant>
|
||||
SBK_QtSql_QList_QModelIndex_IDX = 3, // QList<QModelIndex>
|
||||
SBK_QtSql_QHash_int_QByteArray_IDX = 4, // QHash<int,QByteArray>
|
||||
SBK_QtSql_QList_QString_IDX = 5, // QList<QString>
|
||||
SBK_QtSql_QMap_QString_QVariant_IDX = 6, // QMap<QString,QVariant>
|
||||
SBK_QtSql_CONVERTERS_IDX_COUNT = 7,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
// Protected enum surrogates
|
||||
enum PySide6_QtSql_QSqlResult_BindingSyntax_Surrogate : int {};
|
||||
enum PySide6_QtSql_QSqlResult_VirtualHookOperation_Surrogate : int {};
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QSql::Location >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSql_Location_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSql::ParamTypeFlag >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSql_ParamTypeFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QSql::ParamTypeFlag> >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QFlags_QSql_ParamTypeFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSql::TableType >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSql_TableType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSql::NumericalPrecisionPolicy >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSql_NumericalPrecisionPolicy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSqlDatabase >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlDatabase_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSqlDriver::DriverFeature >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlDriver_DriverFeature_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSqlDriver::StatementType >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlDriver_StatementType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSqlDriver::IdentifierType >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlDriver_IdentifierType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSqlDriver::NotificationSource >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlDriver_NotificationSource_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSqlDriver::DbmsType >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlDriver_DbmsType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSqlDriver >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlDriver_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSqlDriverCreatorBase >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlDriverCreatorBase_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSqlError::ErrorType >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlError_ErrorType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSqlError >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlError_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSqlField::RequiredStatus >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlField_RequiredStatus_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSqlField >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlField_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSqlIndex >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlIndex_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSqlQuery::BatchExecutionMode >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlQuery_BatchExecutionMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSqlQuery >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlQuery_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSqlQueryModel >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlQueryModel_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSqlRecord >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlRecord_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSqlRelation >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlRelation_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSqlRelationalDelegate >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlRelationalDelegate_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSqlRelationalTableModel::JoinMode >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlRelationalTableModel_JoinMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSqlRelationalTableModel >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlRelationalTableModel_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::PySide6_QtSql_QSqlResult_BindingSyntax_Surrogate >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlResult_BindingSyntax_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::PySide6_QtSql_QSqlResult_VirtualHookOperation_Surrogate >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlResult_VirtualHookOperation_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSqlResult >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlResult_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSqlTableModel::EditStrategy >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlTableModel_EditStrategy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSqlTableModel >() { return Shiboken::Module::get(SbkPySide6_QtSqlTypeStructs[SBK_QSqlTableModel_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTSQL_PYTHON_H
|
||||
|
||||
@@ -0,0 +1,144 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTSTATEMACHINE_PYTHON_H
|
||||
#define SBK_QTSTATEMACHINE_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtStateMachine/qabstracttransition.h>
|
||||
#include <QtStateMachine/qhistorystate.h>
|
||||
#include <QtStateMachine/qstate.h>
|
||||
#include <QtStateMachine/qstatemachine.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QAbstractState;
|
||||
class QEventTransition;
|
||||
class QFinalState;
|
||||
class QKeyEventTransition;
|
||||
class QMouseEventTransition;
|
||||
class QSignalTransition;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QABSTRACTSTATE_IDX = 0,
|
||||
SBK_QABSTRACTTRANSITION_TRANSITIONTYPE_IDX = 4,
|
||||
SBK_QABSTRACTTRANSITION_IDX = 2,
|
||||
SBK_QEVENTTRANSITION_IDX = 6,
|
||||
SBK_QFINALSTATE_IDX = 8,
|
||||
SBK_QHISTORYSTATE_HISTORYTYPE_IDX = 12,
|
||||
SBK_QHISTORYSTATE_IDX = 10,
|
||||
SBK_QKEYEVENTTRANSITION_IDX = 14,
|
||||
SBK_QMOUSEEVENTTRANSITION_IDX = 16,
|
||||
SBK_QSIGNALTRANSITION_IDX = 18,
|
||||
SBK_QSTATE_CHILDMODE_IDX = 22,
|
||||
SBK_QSTATE_RESTOREPOLICY_IDX = 24,
|
||||
SBK_QSTATE_IDX = 20,
|
||||
SBK_QSTATEMACHINE_EVENTPRIORITY_IDX = 30,
|
||||
SBK_QSTATEMACHINE_ERROR_IDX = 28,
|
||||
SBK_QSTATEMACHINE_IDX = 26,
|
||||
SBK_QSTATEMACHINE_SIGNALEVENT_IDX = 32,
|
||||
SBK_QSTATEMACHINE_WRAPPEDEVENT_IDX = 34,
|
||||
SBK_QTSTATEMACHINE_IDX_COUNT = 36,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QAbstractState_IDX = 0,
|
||||
SBK_QAbstractTransition_TransitionType_IDX = 2,
|
||||
SBK_QAbstractTransition_IDX = 1,
|
||||
SBK_QEventTransition_IDX = 3,
|
||||
SBK_QFinalState_IDX = 4,
|
||||
SBK_QHistoryState_HistoryType_IDX = 6,
|
||||
SBK_QHistoryState_IDX = 5,
|
||||
SBK_QKeyEventTransition_IDX = 7,
|
||||
SBK_QMouseEventTransition_IDX = 8,
|
||||
SBK_QSignalTransition_IDX = 9,
|
||||
SBK_QState_ChildMode_IDX = 11,
|
||||
SBK_QState_RestorePolicy_IDX = 12,
|
||||
SBK_QState_IDX = 10,
|
||||
SBK_QStateMachine_EventPriority_IDX = 15,
|
||||
SBK_QStateMachine_Error_IDX = 14,
|
||||
SBK_QStateMachine_IDX = 13,
|
||||
SBK_QStateMachine_SignalEvent_IDX = 16,
|
||||
SBK_QStateMachine_WrappedEvent_IDX = 17,
|
||||
SBK_QtStateMachine_IDX_COUNT = 18,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtStateMachineTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtStateMachineTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtStateMachineModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtStateMachineTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTSTATEMACHINE_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTSTATEMACHINE_QLIST_QABSTRACTANIMATIONPTR_IDX = 1, // QList<QAbstractAnimation*>
|
||||
SBK_QTSTATEMACHINE_QLIST_QABSTRACTSTATEPTR_IDX = 2, // QList<QAbstractState*>
|
||||
SBK_QTSTATEMACHINE_QLIST_QABSTRACTTRANSITIONPTR_IDX = 3, // QList<QAbstractTransition*>
|
||||
SBK_QTSTATEMACHINE_QSET_QABSTRACTSTATEPTR_IDX = 4, // QSet<QAbstractState*>
|
||||
SBK_QTSTATEMACHINE_QLIST_QVARIANT_IDX = 5, // QList<QVariant>
|
||||
SBK_QTSTATEMACHINE_QLIST_QSTRING_IDX = 6, // QList<QString>
|
||||
SBK_QTSTATEMACHINE_QMAP_QSTRING_QVARIANT_IDX = 7, // QMap<QString,QVariant>
|
||||
SBK_QTSTATEMACHINE_CONVERTERS_IDX_COUNT = 8,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtStateMachine_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtStateMachine_QList_QAbstractAnimationPTR_IDX = 1, // QList<QAbstractAnimation*>
|
||||
SBK_QtStateMachine_QList_QAbstractStatePTR_IDX = 2, // QList<QAbstractState*>
|
||||
SBK_QtStateMachine_QList_QAbstractTransitionPTR_IDX = 3, // QList<QAbstractTransition*>
|
||||
SBK_QtStateMachine_QSet_QAbstractStatePTR_IDX = 4, // QSet<QAbstractState*>
|
||||
SBK_QtStateMachine_QList_QVariant_IDX = 5, // QList<QVariant>
|
||||
SBK_QtStateMachine_QList_QString_IDX = 6, // QList<QString>
|
||||
SBK_QtStateMachine_QMap_QString_QVariant_IDX = 7, // QMap<QString,QVariant>
|
||||
SBK_QtStateMachine_CONVERTERS_IDX_COUNT = 8,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractState >() { return Shiboken::Module::get(SbkPySide6_QtStateMachineTypeStructs[SBK_QAbstractState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractTransition::TransitionType >() { return Shiboken::Module::get(SbkPySide6_QtStateMachineTypeStructs[SBK_QAbstractTransition_TransitionType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractTransition >() { return Shiboken::Module::get(SbkPySide6_QtStateMachineTypeStructs[SBK_QAbstractTransition_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QEventTransition >() { return Shiboken::Module::get(SbkPySide6_QtStateMachineTypeStructs[SBK_QEventTransition_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFinalState >() { return Shiboken::Module::get(SbkPySide6_QtStateMachineTypeStructs[SBK_QFinalState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHistoryState::HistoryType >() { return Shiboken::Module::get(SbkPySide6_QtStateMachineTypeStructs[SBK_QHistoryState_HistoryType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QHistoryState >() { return Shiboken::Module::get(SbkPySide6_QtStateMachineTypeStructs[SBK_QHistoryState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QKeyEventTransition >() { return Shiboken::Module::get(SbkPySide6_QtStateMachineTypeStructs[SBK_QKeyEventTransition_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QMouseEventTransition >() { return Shiboken::Module::get(SbkPySide6_QtStateMachineTypeStructs[SBK_QMouseEventTransition_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSignalTransition >() { return Shiboken::Module::get(SbkPySide6_QtStateMachineTypeStructs[SBK_QSignalTransition_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QState::ChildMode >() { return Shiboken::Module::get(SbkPySide6_QtStateMachineTypeStructs[SBK_QState_ChildMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QState::RestorePolicy >() { return Shiboken::Module::get(SbkPySide6_QtStateMachineTypeStructs[SBK_QState_RestorePolicy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QState >() { return Shiboken::Module::get(SbkPySide6_QtStateMachineTypeStructs[SBK_QState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QStateMachine::EventPriority >() { return Shiboken::Module::get(SbkPySide6_QtStateMachineTypeStructs[SBK_QStateMachine_EventPriority_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QStateMachine::Error >() { return Shiboken::Module::get(SbkPySide6_QtStateMachineTypeStructs[SBK_QStateMachine_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QStateMachine >() { return Shiboken::Module::get(SbkPySide6_QtStateMachineTypeStructs[SBK_QStateMachine_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QStateMachine::SignalEvent >() { return Shiboken::Module::get(SbkPySide6_QtStateMachineTypeStructs[SBK_QStateMachine_SignalEvent_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QStateMachine::WrappedEvent >() { return Shiboken::Module::get(SbkPySide6_QtStateMachineTypeStructs[SBK_QStateMachine_WrappedEvent_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTSTATEMACHINE_PYTHON_H
|
||||
|
||||
92
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtSvg/pyside6_qtsvg_python.h
vendored
Normal file
92
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtSvg/pyside6_qtsvg_python.h
vendored
Normal file
@@ -0,0 +1,92 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTSVG_PYTHON_H
|
||||
#define SBK_QTSVG_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtSvg/qsvggenerator.h>
|
||||
#include <QtSvg/qtsvgglobal.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QSvgRenderer;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QSVGGENERATOR_SVGVERSION_IDX = 4,
|
||||
SBK_QSVGGENERATOR_IDX = 2,
|
||||
SBK_QSVGRENDERER_IDX = 6,
|
||||
SBK_QTSVG_OPTION_IDX = 10,
|
||||
SBK_QFLAGS_QTSVG_OPTION_IDX = 0,
|
||||
SBK_QTSVGQTSVG_IDX = 8,
|
||||
SBK_QTSVG_IDX_COUNT = 12,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QSvgGenerator_SvgVersion_IDX = 2,
|
||||
SBK_QSvgGenerator_IDX = 1,
|
||||
SBK_QSvgRenderer_IDX = 3,
|
||||
SBK_QtSvg_Option_IDX = 5,
|
||||
SBK_QFlags_QtSvg_Option_IDX = 0,
|
||||
SBK_QtSvgQtSvg_IDX = 4,
|
||||
SBK_QtSvg_IDX_COUNT = 6,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtSvgTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtSvgTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtSvgModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtSvgTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTSVG_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTSVG_QLIST_QVARIANT_IDX = 1, // QList<QVariant>
|
||||
SBK_QTSVG_QLIST_QSTRING_IDX = 2, // QList<QString>
|
||||
SBK_QTSVG_QMAP_QSTRING_QVARIANT_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QTSVG_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtSvg_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtSvg_QList_QVariant_IDX = 1, // QList<QVariant>
|
||||
SBK_QtSvg_QList_QString_IDX = 2, // QList<QString>
|
||||
SBK_QtSvg_QMap_QString_QVariant_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QtSvg_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QSvgGenerator::SvgVersion >() { return Shiboken::Module::get(SbkPySide6_QtSvgTypeStructs[SBK_QSvgGenerator_SvgVersion_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSvgGenerator >() { return Shiboken::Module::get(SbkPySide6_QtSvgTypeStructs[SBK_QSvgGenerator_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSvgRenderer >() { return Shiboken::Module::get(SbkPySide6_QtSvgTypeStructs[SBK_QSvgRenderer_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QtSvg::Option >() { return Shiboken::Module::get(SbkPySide6_QtSvgTypeStructs[SBK_QtSvg_Option_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QtSvg::Option> >() { return Shiboken::Module::get(SbkPySide6_QtSvgTypeStructs[SBK_QFlags_QtSvg_Option_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTSVG_PYTHON_H
|
||||
|
||||
@@ -0,0 +1,82 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTSVGWIDGETS_PYTHON_H
|
||||
#define SBK_QTSVGWIDGETS_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtsvg_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtwidgets_python.h>
|
||||
|
||||
// Bound library includes
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QGraphicsSvgItem;
|
||||
class QSvgWidget;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QGRAPHICSSVGITEM_IDX = 0,
|
||||
SBK_QSVGWIDGET_IDX = 2,
|
||||
SBK_QTSVGWIDGETS_IDX_COUNT = 4,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QGraphicsSvgItem_IDX = 0,
|
||||
SBK_QSvgWidget_IDX = 1,
|
||||
SBK_QtSvgWidgets_IDX_COUNT = 2,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtSvgWidgetsTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtSvgWidgetsTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtSvgWidgetsModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtSvgWidgetsTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTSVGWIDGETS_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTSVGWIDGETS_QLIST_QVARIANT_IDX = 1, // QList<QVariant>
|
||||
SBK_QTSVGWIDGETS_QLIST_QSTRING_IDX = 2, // QList<QString>
|
||||
SBK_QTSVGWIDGETS_QMAP_QSTRING_QVARIANT_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QTSVGWIDGETS_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtSvgWidgets_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtSvgWidgets_QList_QVariant_IDX = 1, // QList<QVariant>
|
||||
SBK_QtSvgWidgets_QList_QString_IDX = 2, // QList<QString>
|
||||
SBK_QtSvgWidgets_QMap_QString_QVariant_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QtSvgWidgets_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QGraphicsSvgItem >() { return Shiboken::Module::get(SbkPySide6_QtSvgWidgetsTypeStructs[SBK_QGraphicsSvgItem_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSvgWidget >() { return Shiboken::Module::get(SbkPySide6_QtSvgWidgetsTypeStructs[SBK_QSvgWidget_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTSVGWIDGETS_PYTHON_H
|
||||
|
||||
112
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtTest/pyside6_qttest_python.h
vendored
Normal file
112
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtTest/pyside6_qttest_python.h
vendored
Normal file
@@ -0,0 +1,112 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTTEST_PYTHON_H
|
||||
#define SBK_QTTEST_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtwidgets_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtTest/qabstractitemmodeltester.h>
|
||||
#include <QtTest/qbenchmarkmetric.h>
|
||||
#include <QtTest/qtestkeyboard.h>
|
||||
#include <QtTest/qtestmouse.h>
|
||||
#include <QtTest/qttestglobal.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QSignalSpy;
|
||||
|
||||
namespace QTest {
|
||||
class PySideQTouchEventSequence;
|
||||
}
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QABSTRACTITEMMODELTESTER_FAILUREREPORTINGMODE_IDX = 2,
|
||||
SBK_QABSTRACTITEMMODELTESTER_IDX = 0,
|
||||
SBK_QSIGNALSPY_IDX = 4,
|
||||
SBK_QTEST_TESTFAILMODE_IDX = 18,
|
||||
SBK_QTEST_COMPARISONOPERATION_IDX = 8,
|
||||
SBK_QTEST_QBENCHMARKMETRIC_IDX = 16,
|
||||
SBK_QTEST_KEYACTION_IDX = 10,
|
||||
SBK_QTEST_MOUSEACTION_IDX = 12,
|
||||
SBK_QTTESTQTEST_IDX = 6,
|
||||
SBK_QTEST_PYSIDEQTOUCHEVENTSEQUENCE_IDX = 14,
|
||||
SBK_QTTEST_IDX_COUNT = 20,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QAbstractItemModelTester_FailureReportingMode_IDX = 1,
|
||||
SBK_QAbstractItemModelTester_IDX = 0,
|
||||
SBK_QSignalSpy_IDX = 2,
|
||||
SBK_QTest_TestFailMode_IDX = 9,
|
||||
SBK_QTest_ComparisonOperation_IDX = 4,
|
||||
SBK_QTest_QBenchmarkMetric_IDX = 8,
|
||||
SBK_QTest_KeyAction_IDX = 5,
|
||||
SBK_QTest_MouseAction_IDX = 6,
|
||||
SBK_QtTestQTest_IDX = 3,
|
||||
SBK_QTest_PySideQTouchEventSequence_IDX = 7,
|
||||
SBK_QtTest_IDX_COUNT = 10,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtTestTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtTestTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtTestModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtTestTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTTEST_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTTEST_QLIST_QVARIANT_IDX = 1, // QList<QVariant>
|
||||
SBK_QTTEST_QLIST_QSTRING_IDX = 2, // QList<QString>
|
||||
SBK_QTTEST_QMAP_QSTRING_QVARIANT_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QTTEST_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtTest_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtTest_QList_QVariant_IDX = 1, // QList<QVariant>
|
||||
SBK_QtTest_QList_QString_IDX = 2, // QList<QString>
|
||||
SBK_QtTest_QMap_QString_QVariant_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QtTest_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractItemModelTester::FailureReportingMode >() { return Shiboken::Module::get(SbkPySide6_QtTestTypeStructs[SBK_QAbstractItemModelTester_FailureReportingMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QAbstractItemModelTester >() { return Shiboken::Module::get(SbkPySide6_QtTestTypeStructs[SBK_QAbstractItemModelTester_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QSignalSpy >() { return Shiboken::Module::get(SbkPySide6_QtTestTypeStructs[SBK_QSignalSpy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QTest::TestFailMode >() { return Shiboken::Module::get(SbkPySide6_QtTestTypeStructs[SBK_QTest_TestFailMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QTest::ComparisonOperation >() { return Shiboken::Module::get(SbkPySide6_QtTestTypeStructs[SBK_QTest_ComparisonOperation_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QTest::QBenchmarkMetric >() { return Shiboken::Module::get(SbkPySide6_QtTestTypeStructs[SBK_QTest_QBenchmarkMetric_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QTest::KeyAction >() { return Shiboken::Module::get(SbkPySide6_QtTestTypeStructs[SBK_QTest_KeyAction_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QTest::MouseAction >() { return Shiboken::Module::get(SbkPySide6_QtTestTypeStructs[SBK_QTest_MouseAction_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QTest::PySideQTouchEventSequence >() { return Shiboken::Module::get(SbkPySide6_QtTestTypeStructs[SBK_QTest_PySideQTouchEventSequence_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTTEST_PYTHON_H
|
||||
|
||||
@@ -0,0 +1,108 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTTEXTTOSPEECH_PYTHON_H
|
||||
#define SBK_QTTEXTTOSPEECH_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtTextToSpeech/qtexttospeech.h>
|
||||
#include <QtTextToSpeech/qvoice.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QTextToSpeechEngine;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTEXTTOSPEECH_STATE_IDX = 10,
|
||||
SBK_QTEXTTOSPEECH_ERRORREASON_IDX = 8,
|
||||
SBK_QTEXTTOSPEECH_BOUNDARYHINT_IDX = 4,
|
||||
SBK_QTEXTTOSPEECH_CAPABILITY_IDX = 6,
|
||||
SBK_QFLAGS_QTEXTTOSPEECH_CAPABILITY_IDX = 0,
|
||||
SBK_QTEXTTOSPEECH_IDX = 2,
|
||||
SBK_QTEXTTOSPEECHENGINE_IDX = 12,
|
||||
SBK_QVOICE_GENDER_IDX = 18,
|
||||
SBK_QVOICE_AGE_IDX = 16,
|
||||
SBK_QVOICE_IDX = 14,
|
||||
SBK_QTTEXTTOSPEECH_IDX_COUNT = 20,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QTextToSpeech_State_IDX = 5,
|
||||
SBK_QTextToSpeech_ErrorReason_IDX = 4,
|
||||
SBK_QTextToSpeech_BoundaryHint_IDX = 2,
|
||||
SBK_QTextToSpeech_Capability_IDX = 3,
|
||||
SBK_QFlags_QTextToSpeech_Capability_IDX = 0,
|
||||
SBK_QTextToSpeech_IDX = 1,
|
||||
SBK_QTextToSpeechEngine_IDX = 6,
|
||||
SBK_QVoice_Gender_IDX = 9,
|
||||
SBK_QVoice_Age_IDX = 8,
|
||||
SBK_QVoice_IDX = 7,
|
||||
SBK_QtTextToSpeech_IDX_COUNT = 10,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtTextToSpeechTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtTextToSpeechTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtTextToSpeechModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtTextToSpeechTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTTEXTTOSPEECH_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTTEXTTOSPEECH_QLIST_QLOCALE_IDX = 1, // QList<QLocale>
|
||||
SBK_QTTEXTTOSPEECH_QLIST_QVOICE_IDX = 2, // QList<QVoice>
|
||||
SBK_QTTEXTTOSPEECH_QMAP_QSTRING_QVARIANT_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QTTEXTTOSPEECH_QLIST_QVARIANT_IDX = 4, // QList<QVariant>
|
||||
SBK_QTTEXTTOSPEECH_QLIST_QSTRING_IDX = 5, // QList<QString>
|
||||
SBK_QTTEXTTOSPEECH_CONVERTERS_IDX_COUNT = 6,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtTextToSpeech_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtTextToSpeech_QList_QLocale_IDX = 1, // QList<QLocale>
|
||||
SBK_QtTextToSpeech_QList_QVoice_IDX = 2, // QList<QVoice>
|
||||
SBK_QtTextToSpeech_QMap_QString_QVariant_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QtTextToSpeech_QList_QVariant_IDX = 4, // QList<QVariant>
|
||||
SBK_QtTextToSpeech_QList_QString_IDX = 5, // QList<QString>
|
||||
SBK_QtTextToSpeech_CONVERTERS_IDX_COUNT = 6,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QTextToSpeech::State >() { return Shiboken::Module::get(SbkPySide6_QtTextToSpeechTypeStructs[SBK_QTextToSpeech_State_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QTextToSpeech::ErrorReason >() { return Shiboken::Module::get(SbkPySide6_QtTextToSpeechTypeStructs[SBK_QTextToSpeech_ErrorReason_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QTextToSpeech::BoundaryHint >() { return Shiboken::Module::get(SbkPySide6_QtTextToSpeechTypeStructs[SBK_QTextToSpeech_BoundaryHint_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QTextToSpeech::Capability >() { return Shiboken::Module::get(SbkPySide6_QtTextToSpeechTypeStructs[SBK_QTextToSpeech_Capability_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QTextToSpeech::Capability> >() { return Shiboken::Module::get(SbkPySide6_QtTextToSpeechTypeStructs[SBK_QFlags_QTextToSpeech_Capability_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QTextToSpeech >() { return Shiboken::Module::get(SbkPySide6_QtTextToSpeechTypeStructs[SBK_QTextToSpeech_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QTextToSpeechEngine >() { return Shiboken::Module::get(SbkPySide6_QtTextToSpeechTypeStructs[SBK_QTextToSpeechEngine_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QVoice::Gender >() { return Shiboken::Module::get(SbkPySide6_QtTextToSpeechTypeStructs[SBK_QVoice_Gender_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QVoice::Age >() { return Shiboken::Module::get(SbkPySide6_QtTextToSpeechTypeStructs[SBK_QVoice_Age_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QVoice >() { return Shiboken::Module::get(SbkPySide6_QtTextToSpeechTypeStructs[SBK_QVoice_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTTEXTTOSPEECH_PYTHON_H
|
||||
|
||||
77
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtUiTools/pyside6_qtuitools_python.h
vendored
Normal file
77
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtUiTools/pyside6_qtuitools_python.h
vendored
Normal file
@@ -0,0 +1,77 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTUITOOLS_PYTHON_H
|
||||
#define SBK_QTUITOOLS_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtwidgets_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QUiLoader;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QUILOADER_IDX = 0,
|
||||
SBK_QTUITOOLS_IDX_COUNT = 2,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QUiLoader_IDX = 0,
|
||||
SBK_QtUiTools_IDX_COUNT = 1,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtUiToolsTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtUiToolsTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtUiToolsModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtUiToolsTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTUITOOLS_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTUITOOLS_QLIST_QVARIANT_IDX = 1, // QList<QVariant>
|
||||
SBK_QTUITOOLS_QLIST_QSTRING_IDX = 2, // QList<QString>
|
||||
SBK_QTUITOOLS_QMAP_QSTRING_QVARIANT_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QTUITOOLS_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtUiTools_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtUiTools_QList_QVariant_IDX = 1, // QList<QVariant>
|
||||
SBK_QtUiTools_QList_QString_IDX = 2, // QList<QString>
|
||||
SBK_QtUiTools_QMap_QString_QVariant_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QtUiTools_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QUiLoader >() { return Shiboken::Module::get(SbkPySide6_QtUiToolsTypeStructs[SBK_QUiLoader_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTUITOOLS_PYTHON_H
|
||||
|
||||
@@ -0,0 +1,81 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTWEBCHANNEL_PYTHON_H
|
||||
#define SBK_QTWEBCHANNEL_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QWebChannel;
|
||||
class QWebChannelAbstractTransport;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QWEBCHANNEL_IDX = 0,
|
||||
SBK_QWEBCHANNELABSTRACTTRANSPORT_IDX = 2,
|
||||
SBK_QTWEBCHANNEL_IDX_COUNT = 4,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QWebChannel_IDX = 0,
|
||||
SBK_QWebChannelAbstractTransport_IDX = 1,
|
||||
SBK_QtWebChannel_IDX_COUNT = 2,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtWebChannelTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtWebChannelTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtWebChannelModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtWebChannelTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTWEBCHANNEL_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTWEBCHANNEL_QHASH_QSTRING_QOBJECTPTR_IDX = 1, // QHash<QString,QObject*>
|
||||
SBK_QTWEBCHANNEL_QLIST_QVARIANT_IDX = 2, // QList<QVariant>
|
||||
SBK_QTWEBCHANNEL_QLIST_QSTRING_IDX = 3, // QList<QString>
|
||||
SBK_QTWEBCHANNEL_QMAP_QSTRING_QVARIANT_IDX = 4, // QMap<QString,QVariant>
|
||||
SBK_QTWEBCHANNEL_CONVERTERS_IDX_COUNT = 5,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtWebChannel_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtWebChannel_QHash_QString_QObjectPTR_IDX = 1, // QHash<QString,QObject*>
|
||||
SBK_QtWebChannel_QList_QVariant_IDX = 2, // QList<QVariant>
|
||||
SBK_QtWebChannel_QList_QString_IDX = 3, // QList<QString>
|
||||
SBK_QtWebChannel_QMap_QString_QVariant_IDX = 4, // QMap<QString,QVariant>
|
||||
SBK_QtWebChannel_CONVERTERS_IDX_COUNT = 5,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QWebChannel >() { return Shiboken::Module::get(SbkPySide6_QtWebChannelTypeStructs[SBK_QWebChannel_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebChannelAbstractTransport >() { return Shiboken::Module::get(SbkPySide6_QtWebChannelTypeStructs[SBK_QWebChannelAbstractTransport_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTWEBCHANNEL_PYTHON_H
|
||||
|
||||
@@ -0,0 +1,435 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTWEBENGINECORE_PYTHON_H
|
||||
#define SBK_QTWEBENGINECORE_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtnetwork_python.h>
|
||||
#include <pyside6_qtprintsupport_python.h>
|
||||
#include <pyside6_qtwidgets_python.h>
|
||||
#include <pyside6_qtwebchannel_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtWebEngineCore/qwebenginecertificateerror.h>
|
||||
#include <QtWebEngineCore/qwebenginecontextmenurequest.h>
|
||||
#include <QtWebEngineCore/qwebenginecookiestore.h>
|
||||
#include <QtWebEngineCore/qwebenginedownloadrequest.h>
|
||||
#include <QtWebEngineCore/qwebenginefilesystemaccessrequest.h>
|
||||
#include <QtWebEngineCore/qwebengineglobalsettings.h>
|
||||
#include <QtWebEngineCore/qwebenginehistory.h>
|
||||
#include <QtWebEngineCore/qwebenginehttprequest.h>
|
||||
#include <QtWebEngineCore/qwebengineloadinginfo.h>
|
||||
#include <QtWebEngineCore/qwebenginenavigationrequest.h>
|
||||
#include <QtWebEngineCore/qwebenginenewwindowrequest.h>
|
||||
#include <QtWebEngineCore/qwebenginepage.h>
|
||||
#include <QtWebEngineCore/qwebenginepermission.h>
|
||||
#include <QtWebEngineCore/qwebengineprofile.h>
|
||||
#include <QtWebEngineCore/qwebenginescript.h>
|
||||
#include <QtWebEngineCore/qwebenginesettings.h>
|
||||
#include <QtWebEngineCore/qwebengineurlrequestinfo.h>
|
||||
#include <QtWebEngineCore/qwebengineurlrequestjob.h>
|
||||
#include <QtWebEngineCore/qwebengineurlscheme.h>
|
||||
#include <QtWebEngineCore/qwebenginewebauthuxrequest.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QWebEngineClientCertificateSelection;
|
||||
class QWebEngineClientCertificateStore;
|
||||
class QWebEngineClientHints;
|
||||
class QWebEngineDesktopMediaRequest;
|
||||
class QWebEngineExtensionInfo;
|
||||
class QWebEngineExtensionManager;
|
||||
class QWebEngineFindTextResult;
|
||||
class QWebEngineFrame;
|
||||
class QWebEngineFullScreenRequest;
|
||||
class QWebEngineHistory;
|
||||
class QWebEngineHistoryItem;
|
||||
class QWebEngineNotification;
|
||||
class QWebEngineProfileBuilder;
|
||||
class QWebEngineQuotaRequest;
|
||||
class QWebEngineRegisterProtocolHandlerRequest;
|
||||
class QWebEngineScriptCollection;
|
||||
class QWebEngineUrlRequestInterceptor;
|
||||
class QWebEngineUrlSchemeHandler;
|
||||
struct QWebEngineWebAuthPinRequest;
|
||||
|
||||
namespace QWebEngineGlobalSettings {
|
||||
struct DnsMode;
|
||||
}
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QWEBENGINECERTIFICATEERROR_TYPE_IDX = 12,
|
||||
SBK_QWEBENGINECERTIFICATEERROR_IDX = 10,
|
||||
SBK_QWEBENGINECLIENTCERTIFICATESELECTION_IDX = 14,
|
||||
SBK_QWEBENGINECLIENTCERTIFICATESTORE_IDX = 16,
|
||||
SBK_QWEBENGINECLIENTHINTS_IDX = 18,
|
||||
SBK_QWEBENGINECONTEXTMENUREQUEST_MEDIATYPE_IDX = 26,
|
||||
SBK_QWEBENGINECONTEXTMENUREQUEST_MEDIAFLAG_IDX = 24,
|
||||
SBK_QFLAGS_QWEBENGINECONTEXTMENUREQUEST_MEDIAFLAG_IDX = 2,
|
||||
SBK_QWEBENGINECONTEXTMENUREQUEST_EDITFLAG_IDX = 22,
|
||||
SBK_QFLAGS_QWEBENGINECONTEXTMENUREQUEST_EDITFLAG_IDX = 0,
|
||||
SBK_QWEBENGINECONTEXTMENUREQUEST_IDX = 20,
|
||||
SBK_QWEBENGINECOOKIESTORE_IDX = 28,
|
||||
SBK_QWEBENGINECOOKIESTORE_FILTERREQUEST_IDX = 30,
|
||||
SBK_QWEBENGINEDESKTOPMEDIAREQUEST_IDX = 32,
|
||||
SBK_QWEBENGINEDOWNLOADREQUEST_DOWNLOADSTATE_IDX = 38,
|
||||
SBK_QWEBENGINEDOWNLOADREQUEST_SAVEPAGEFORMAT_IDX = 40,
|
||||
SBK_QWEBENGINEDOWNLOADREQUEST_DOWNLOADINTERRUPTREASON_IDX = 36,
|
||||
SBK_QWEBENGINEDOWNLOADREQUEST_IDX = 34,
|
||||
SBK_QWEBENGINEEXTENSIONINFO_IDX = 42,
|
||||
SBK_QWEBENGINEEXTENSIONMANAGER_IDX = 44,
|
||||
SBK_QWEBENGINEFILESYSTEMACCESSREQUEST_HANDLETYPE_IDX = 50,
|
||||
SBK_QWEBENGINEFILESYSTEMACCESSREQUEST_ACCESSFLAG_IDX = 48,
|
||||
SBK_QFLAGS_QWEBENGINEFILESYSTEMACCESSREQUEST_ACCESSFLAG_IDX = 4,
|
||||
SBK_QWEBENGINEFILESYSTEMACCESSREQUEST_IDX = 46,
|
||||
SBK_QWEBENGINEFINDTEXTRESULT_IDX = 52,
|
||||
SBK_QWEBENGINEFRAME_IDX = 54,
|
||||
SBK_QWEBENGINEFULLSCREENREQUEST_IDX = 56,
|
||||
SBK_QWEBENGINEGLOBALSETTINGS_SECUREDNSMODE_IDX = 62,
|
||||
SBK_QTWEBENGINECOREQWEBENGINEGLOBALSETTINGS_IDX = 58,
|
||||
SBK_QWEBENGINEGLOBALSETTINGS_DNSMODE_IDX = 60,
|
||||
SBK_QWEBENGINEHISTORY_IDX = 64,
|
||||
SBK_QWEBENGINEHISTORYITEM_IDX = 66,
|
||||
SBK_QWEBENGINEHISTORYMODEL_ROLES_IDX = 70,
|
||||
SBK_QWEBENGINEHISTORYMODEL_IDX = 68,
|
||||
SBK_QWEBENGINEHTTPREQUEST_METHOD_IDX = 74,
|
||||
SBK_QWEBENGINEHTTPREQUEST_IDX = 72,
|
||||
SBK_QWEBENGINELOADINGINFO_LOADSTATUS_IDX = 80,
|
||||
SBK_QWEBENGINELOADINGINFO_ERRORDOMAIN_IDX = 78,
|
||||
SBK_QWEBENGINELOADINGINFO_IDX = 76,
|
||||
SBK_QWEBENGINENAVIGATIONREQUEST_NAVIGATIONTYPE_IDX = 86,
|
||||
SBK_QWEBENGINENAVIGATIONREQUEST_NAVIGATIONREQUESTACTION_IDX = 84,
|
||||
SBK_QWEBENGINENAVIGATIONREQUEST_IDX = 82,
|
||||
SBK_QWEBENGINENEWWINDOWREQUEST_DESTINATIONTYPE_IDX = 90,
|
||||
SBK_QWEBENGINENEWWINDOWREQUEST_IDX = 88,
|
||||
SBK_QWEBENGINENOTIFICATION_IDX = 92,
|
||||
SBK_QWEBENGINEPAGE_WEBACTION_IDX = 112,
|
||||
SBK_QWEBENGINEPAGE_FINDFLAG_IDX = 100,
|
||||
SBK_QFLAGS_QWEBENGINEPAGE_FINDFLAG_IDX = 6,
|
||||
SBK_QWEBENGINEPAGE_WEBWINDOWTYPE_IDX = 114,
|
||||
SBK_QWEBENGINEPAGE_PERMISSIONPOLICY_IDX = 108,
|
||||
SBK_QWEBENGINEPAGE_NAVIGATIONTYPE_IDX = 106,
|
||||
SBK_QWEBENGINEPAGE_FEATURE_IDX = 96,
|
||||
SBK_QWEBENGINEPAGE_FILESELECTIONMODE_IDX = 98,
|
||||
SBK_QWEBENGINEPAGE_JAVASCRIPTCONSOLEMESSAGELEVEL_IDX = 102,
|
||||
SBK_QWEBENGINEPAGE_RENDERPROCESSTERMINATIONSTATUS_IDX = 110,
|
||||
SBK_QWEBENGINEPAGE_LIFECYCLESTATE_IDX = 104,
|
||||
SBK_QWEBENGINEPAGE_IDX = 94,
|
||||
SBK_QWEBENGINEPERMISSION_PERMISSIONTYPE_IDX = 118,
|
||||
SBK_QWEBENGINEPERMISSION_STATE_IDX = 120,
|
||||
SBK_QWEBENGINEPERMISSION_IDX = 116,
|
||||
SBK_QWEBENGINEPROFILE_HTTPCACHETYPE_IDX = 124,
|
||||
SBK_QWEBENGINEPROFILE_PERSISTENTCOOKIESPOLICY_IDX = 126,
|
||||
SBK_QWEBENGINEPROFILE_PERSISTENTPERMISSIONSPOLICY_IDX = 128,
|
||||
SBK_QWEBENGINEPROFILE_IDX = 122,
|
||||
SBK_QWEBENGINEPROFILEBUILDER_IDX = 130,
|
||||
SBK_QWEBENGINEQUOTAREQUEST_IDX = 132,
|
||||
SBK_QWEBENGINEREGISTERPROTOCOLHANDLERREQUEST_IDX = 134,
|
||||
SBK_QWEBENGINESCRIPT_INJECTIONPOINT_IDX = 138,
|
||||
SBK_QWEBENGINESCRIPT_SCRIPTWORLDID_IDX = 140,
|
||||
SBK_QWEBENGINESCRIPT_IDX = 136,
|
||||
SBK_QWEBENGINESCRIPTCOLLECTION_IDX = 142,
|
||||
SBK_QWEBENGINESETTINGS_FONTFAMILY_IDX = 146,
|
||||
SBK_QWEBENGINESETTINGS_WEBATTRIBUTE_IDX = 154,
|
||||
SBK_QWEBENGINESETTINGS_FONTSIZE_IDX = 148,
|
||||
SBK_QWEBENGINESETTINGS_UNKNOWNURLSCHEMEPOLICY_IDX = 152,
|
||||
SBK_QWEBENGINESETTINGS_IMAGEANIMATIONPOLICY_IDX = 150,
|
||||
SBK_QWEBENGINESETTINGS_IDX = 144,
|
||||
SBK_QWEBENGINEURLREQUESTINFO_RESOURCETYPE_IDX = 160,
|
||||
SBK_QWEBENGINEURLREQUESTINFO_NAVIGATIONTYPE_IDX = 158,
|
||||
SBK_QWEBENGINEURLREQUESTINFO_IDX = 156,
|
||||
SBK_QWEBENGINEURLREQUESTINTERCEPTOR_IDX = 162,
|
||||
SBK_QWEBENGINEURLREQUESTJOB_ERROR_IDX = 166,
|
||||
SBK_QWEBENGINEURLREQUESTJOB_IDX = 164,
|
||||
SBK_QWEBENGINEURLSCHEME_SYNTAX_IDX = 174,
|
||||
SBK_QWEBENGINEURLSCHEME_SPECIALPORT_IDX = 172,
|
||||
SBK_QWEBENGINEURLSCHEME_FLAG_IDX = 170,
|
||||
SBK_QFLAGS_QWEBENGINEURLSCHEME_FLAG_IDX = 8,
|
||||
SBK_QWEBENGINEURLSCHEME_IDX = 168,
|
||||
SBK_QWEBENGINEURLSCHEMEHANDLER_IDX = 176,
|
||||
SBK_QWEBENGINEWEBAUTHPINREQUEST_IDX = 178,
|
||||
SBK_QWEBENGINEWEBAUTHUXREQUEST_WEBAUTHUXSTATE_IDX = 188,
|
||||
SBK_QWEBENGINEWEBAUTHUXREQUEST_PINENTRYREASON_IDX = 184,
|
||||
SBK_QWEBENGINEWEBAUTHUXREQUEST_PINENTRYERROR_IDX = 182,
|
||||
SBK_QWEBENGINEWEBAUTHUXREQUEST_REQUESTFAILUREREASON_IDX = 186,
|
||||
SBK_QWEBENGINEWEBAUTHUXREQUEST_IDX = 180,
|
||||
SBK_QTWEBENGINECORE_IDX_COUNT = 190,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QWebEngineCertificateError_Type_IDX = 6,
|
||||
SBK_QWebEngineCertificateError_IDX = 5,
|
||||
SBK_QWebEngineClientCertificateSelection_IDX = 7,
|
||||
SBK_QWebEngineClientCertificateStore_IDX = 8,
|
||||
SBK_QWebEngineClientHints_IDX = 9,
|
||||
SBK_QWebEngineContextMenuRequest_MediaType_IDX = 13,
|
||||
SBK_QWebEngineContextMenuRequest_MediaFlag_IDX = 12,
|
||||
SBK_QFlags_QWebEngineContextMenuRequest_MediaFlag_IDX = 1,
|
||||
SBK_QWebEngineContextMenuRequest_EditFlag_IDX = 11,
|
||||
SBK_QFlags_QWebEngineContextMenuRequest_EditFlag_IDX = 0,
|
||||
SBK_QWebEngineContextMenuRequest_IDX = 10,
|
||||
SBK_QWebEngineCookieStore_IDX = 14,
|
||||
SBK_QWebEngineCookieStore_FilterRequest_IDX = 15,
|
||||
SBK_QWebEngineDesktopMediaRequest_IDX = 16,
|
||||
SBK_QWebEngineDownloadRequest_DownloadState_IDX = 19,
|
||||
SBK_QWebEngineDownloadRequest_SavePageFormat_IDX = 20,
|
||||
SBK_QWebEngineDownloadRequest_DownloadInterruptReason_IDX = 18,
|
||||
SBK_QWebEngineDownloadRequest_IDX = 17,
|
||||
SBK_QWebEngineExtensionInfo_IDX = 21,
|
||||
SBK_QWebEngineExtensionManager_IDX = 22,
|
||||
SBK_QWebEngineFileSystemAccessRequest_HandleType_IDX = 25,
|
||||
SBK_QWebEngineFileSystemAccessRequest_AccessFlag_IDX = 24,
|
||||
SBK_QFlags_QWebEngineFileSystemAccessRequest_AccessFlag_IDX = 2,
|
||||
SBK_QWebEngineFileSystemAccessRequest_IDX = 23,
|
||||
SBK_QWebEngineFindTextResult_IDX = 26,
|
||||
SBK_QWebEngineFrame_IDX = 27,
|
||||
SBK_QWebEngineFullScreenRequest_IDX = 28,
|
||||
SBK_QWebEngineGlobalSettings_SecureDnsMode_IDX = 31,
|
||||
SBK_QtWebEngineCoreQWebEngineGlobalSettings_IDX = 29,
|
||||
SBK_QWebEngineGlobalSettings_DnsMode_IDX = 30,
|
||||
SBK_QWebEngineHistory_IDX = 32,
|
||||
SBK_QWebEngineHistoryItem_IDX = 33,
|
||||
SBK_QWebEngineHistoryModel_Roles_IDX = 35,
|
||||
SBK_QWebEngineHistoryModel_IDX = 34,
|
||||
SBK_QWebEngineHttpRequest_Method_IDX = 37,
|
||||
SBK_QWebEngineHttpRequest_IDX = 36,
|
||||
SBK_QWebEngineLoadingInfo_LoadStatus_IDX = 40,
|
||||
SBK_QWebEngineLoadingInfo_ErrorDomain_IDX = 39,
|
||||
SBK_QWebEngineLoadingInfo_IDX = 38,
|
||||
SBK_QWebEngineNavigationRequest_NavigationType_IDX = 43,
|
||||
SBK_QWebEngineNavigationRequest_NavigationRequestAction_IDX = 42,
|
||||
SBK_QWebEngineNavigationRequest_IDX = 41,
|
||||
SBK_QWebEngineNewWindowRequest_DestinationType_IDX = 45,
|
||||
SBK_QWebEngineNewWindowRequest_IDX = 44,
|
||||
SBK_QWebEngineNotification_IDX = 46,
|
||||
SBK_QWebEnginePage_WebAction_IDX = 56,
|
||||
SBK_QWebEnginePage_FindFlag_IDX = 50,
|
||||
SBK_QFlags_QWebEnginePage_FindFlag_IDX = 3,
|
||||
SBK_QWebEnginePage_WebWindowType_IDX = 57,
|
||||
SBK_QWebEnginePage_PermissionPolicy_IDX = 54,
|
||||
SBK_QWebEnginePage_NavigationType_IDX = 53,
|
||||
SBK_QWebEnginePage_Feature_IDX = 48,
|
||||
SBK_QWebEnginePage_FileSelectionMode_IDX = 49,
|
||||
SBK_QWebEnginePage_JavaScriptConsoleMessageLevel_IDX = 51,
|
||||
SBK_QWebEnginePage_RenderProcessTerminationStatus_IDX = 55,
|
||||
SBK_QWebEnginePage_LifecycleState_IDX = 52,
|
||||
SBK_QWebEnginePage_IDX = 47,
|
||||
SBK_QWebEnginePermission_PermissionType_IDX = 59,
|
||||
SBK_QWebEnginePermission_State_IDX = 60,
|
||||
SBK_QWebEnginePermission_IDX = 58,
|
||||
SBK_QWebEngineProfile_HttpCacheType_IDX = 62,
|
||||
SBK_QWebEngineProfile_PersistentCookiesPolicy_IDX = 63,
|
||||
SBK_QWebEngineProfile_PersistentPermissionsPolicy_IDX = 64,
|
||||
SBK_QWebEngineProfile_IDX = 61,
|
||||
SBK_QWebEngineProfileBuilder_IDX = 65,
|
||||
SBK_QWebEngineQuotaRequest_IDX = 66,
|
||||
SBK_QWebEngineRegisterProtocolHandlerRequest_IDX = 67,
|
||||
SBK_QWebEngineScript_InjectionPoint_IDX = 69,
|
||||
SBK_QWebEngineScript_ScriptWorldId_IDX = 70,
|
||||
SBK_QWebEngineScript_IDX = 68,
|
||||
SBK_QWebEngineScriptCollection_IDX = 71,
|
||||
SBK_QWebEngineSettings_FontFamily_IDX = 73,
|
||||
SBK_QWebEngineSettings_WebAttribute_IDX = 77,
|
||||
SBK_QWebEngineSettings_FontSize_IDX = 74,
|
||||
SBK_QWebEngineSettings_UnknownUrlSchemePolicy_IDX = 76,
|
||||
SBK_QWebEngineSettings_ImageAnimationPolicy_IDX = 75,
|
||||
SBK_QWebEngineSettings_IDX = 72,
|
||||
SBK_QWebEngineUrlRequestInfo_ResourceType_IDX = 80,
|
||||
SBK_QWebEngineUrlRequestInfo_NavigationType_IDX = 79,
|
||||
SBK_QWebEngineUrlRequestInfo_IDX = 78,
|
||||
SBK_QWebEngineUrlRequestInterceptor_IDX = 81,
|
||||
SBK_QWebEngineUrlRequestJob_Error_IDX = 83,
|
||||
SBK_QWebEngineUrlRequestJob_IDX = 82,
|
||||
SBK_QWebEngineUrlScheme_Syntax_IDX = 87,
|
||||
SBK_QWebEngineUrlScheme_SpecialPort_IDX = 86,
|
||||
SBK_QWebEngineUrlScheme_Flag_IDX = 85,
|
||||
SBK_QFlags_QWebEngineUrlScheme_Flag_IDX = 4,
|
||||
SBK_QWebEngineUrlScheme_IDX = 84,
|
||||
SBK_QWebEngineUrlSchemeHandler_IDX = 88,
|
||||
SBK_QWebEngineWebAuthPinRequest_IDX = 89,
|
||||
SBK_QWebEngineWebAuthUxRequest_WebAuthUxState_IDX = 94,
|
||||
SBK_QWebEngineWebAuthUxRequest_PinEntryReason_IDX = 92,
|
||||
SBK_QWebEngineWebAuthUxRequest_PinEntryError_IDX = 91,
|
||||
SBK_QWebEngineWebAuthUxRequest_RequestFailureReason_IDX = 93,
|
||||
SBK_QWebEngineWebAuthUxRequest_IDX = 90,
|
||||
SBK_QtWebEngineCore_IDX_COUNT = 95,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtWebEngineCoreTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtWebEngineCoreTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtWebEngineCoreModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtWebEngineCoreTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTWEBENGINECORE_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTWEBENGINECORE_QHASH_QBYTEARRAY_QBYTEARRAY_IDX = 1, // QHash<QByteArray,QByteArray>
|
||||
SBK_QTWEBENGINECORE_QLIST_QWEBENGINESCRIPT_IDX = 2, // QList<QWebEngineScript>
|
||||
SBK_QTWEBENGINECORE_QLIST_QSSLCERTIFICATE_IDX = 3, // QList<QSslCertificate>
|
||||
SBK_QTWEBENGINECORE_QMULTIMAP_QBYTEARRAY_QBYTEARRAY_IDX = 4, // QMultiMap<QByteArray,QByteArray>
|
||||
SBK_QTWEBENGINECORE_QLIST_QWEBENGINEFRAME_IDX = 5, // QList<QWebEngineFrame>
|
||||
SBK_QTWEBENGINECORE_QMAP_QBYTEARRAY_QBYTEARRAY_IDX = 6, // QMap<QByteArray,QByteArray>
|
||||
SBK_QTWEBENGINECORE_QLIST_QURL_IDX = 7, // QList<QUrl>
|
||||
SBK_QTWEBENGINECORE_QLIST_QWEBENGINEPERMISSION_IDX = 8, // QList<QWebEnginePermission>
|
||||
SBK_QTWEBENGINECORE_QLIST_QWEBENGINEHISTORYITEM_IDX = 9, // QList<QWebEngineHistoryItem>
|
||||
SBK_QTWEBENGINECORE_QLIST_QWEBENGINEEXTENSIONINFO_IDX = 10, // QList<QWebEngineExtensionInfo>
|
||||
SBK_QTWEBENGINECORE_QMAP_QSTRING_QVARIANT_IDX = 11, // QMap<QString,QVariant>
|
||||
SBK_QTWEBENGINECORE_STD_PAIR_BOOL_QSTRING_IDX = 12, // std::pair<bool,QString>
|
||||
SBK_QTWEBENGINECORE_QLIST_QBYTEARRAY_IDX = 13, // QList<QByteArray>
|
||||
SBK_QTWEBENGINECORE_QMAP_QSTRING_QSTRING_IDX = 14, // QMap<QString,QString>
|
||||
SBK_QTWEBENGINECORE_QMAP_INT_QVARIANT_IDX = 15, // QMap<int,QVariant>
|
||||
SBK_QTWEBENGINECORE_QLIST_QMODELINDEX_IDX = 16, // QList<QModelIndex>
|
||||
SBK_QTWEBENGINECORE_QHASH_INT_QBYTEARRAY_IDX = 17, // QHash<int,QByteArray>
|
||||
SBK_QTWEBENGINECORE_QLIST_QVARIANT_IDX = 18, // QList<QVariant>
|
||||
SBK_QTWEBENGINECORE_QLIST_QSTRING_IDX = 19, // QList<QString>
|
||||
SBK_QTWEBENGINECORE_CONVERTERS_IDX_COUNT = 20,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtWebEngineCore_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtWebEngineCore_QHash_QByteArray_QByteArray_IDX = 1, // QHash<QByteArray,QByteArray>
|
||||
SBK_QtWebEngineCore_QList_QWebEngineScript_IDX = 2, // QList<QWebEngineScript>
|
||||
SBK_QtWebEngineCore_QList_QSslCertificate_IDX = 3, // QList<QSslCertificate>
|
||||
SBK_QtWebEngineCore_QMultiMap_QByteArray_QByteArray_IDX = 4, // QMultiMap<QByteArray,QByteArray>
|
||||
SBK_QtWebEngineCore_QList_QWebEngineFrame_IDX = 5, // QList<QWebEngineFrame>
|
||||
SBK_QtWebEngineCore_QMap_QByteArray_QByteArray_IDX = 6, // QMap<QByteArray,QByteArray>
|
||||
SBK_QtWebEngineCore_QList_QUrl_IDX = 7, // QList<QUrl>
|
||||
SBK_QtWebEngineCore_QList_QWebEnginePermission_IDX = 8, // QList<QWebEnginePermission>
|
||||
SBK_QtWebEngineCore_QList_QWebEngineHistoryItem_IDX = 9, // QList<QWebEngineHistoryItem>
|
||||
SBK_QtWebEngineCore_QList_QWebEngineExtensionInfo_IDX = 10, // QList<QWebEngineExtensionInfo>
|
||||
SBK_QtWebEngineCore_QMap_QString_QVariant_IDX = 11, // QMap<QString,QVariant>
|
||||
SBK_QtWebEngineCore_std_pair_bool_QString_IDX = 12, // std::pair<bool,QString>
|
||||
SBK_QtWebEngineCore_QList_QByteArray_IDX = 13, // QList<QByteArray>
|
||||
SBK_QtWebEngineCore_QMap_QString_QString_IDX = 14, // QMap<QString,QString>
|
||||
SBK_QtWebEngineCore_QMap_int_QVariant_IDX = 15, // QMap<int,QVariant>
|
||||
SBK_QtWebEngineCore_QList_QModelIndex_IDX = 16, // QList<QModelIndex>
|
||||
SBK_QtWebEngineCore_QHash_int_QByteArray_IDX = 17, // QHash<int,QByteArray>
|
||||
SBK_QtWebEngineCore_QList_QVariant_IDX = 18, // QList<QVariant>
|
||||
SBK_QtWebEngineCore_QList_QString_IDX = 19, // QList<QString>
|
||||
SBK_QtWebEngineCore_CONVERTERS_IDX_COUNT = 20,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineCertificateError::Type >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineCertificateError_Type_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineCertificateError >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineCertificateError_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineClientCertificateSelection >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineClientCertificateSelection_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineClientCertificateStore >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineClientCertificateStore_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineClientHints >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineClientHints_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineContextMenuRequest::MediaType >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineContextMenuRequest_MediaType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineContextMenuRequest::MediaFlag >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineContextMenuRequest_MediaFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QWebEngineContextMenuRequest::MediaFlag> >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QFlags_QWebEngineContextMenuRequest_MediaFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineContextMenuRequest::EditFlag >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineContextMenuRequest_EditFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QWebEngineContextMenuRequest::EditFlag> >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QFlags_QWebEngineContextMenuRequest_EditFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineContextMenuRequest >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineContextMenuRequest_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineCookieStore >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineCookieStore_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineCookieStore::FilterRequest >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineCookieStore_FilterRequest_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineDesktopMediaRequest >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineDesktopMediaRequest_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineDownloadRequest::DownloadState >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineDownloadRequest_DownloadState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineDownloadRequest::SavePageFormat >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineDownloadRequest_SavePageFormat_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineDownloadRequest::DownloadInterruptReason >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineDownloadRequest_DownloadInterruptReason_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineDownloadRequest >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineDownloadRequest_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineExtensionInfo >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineExtensionInfo_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineExtensionManager >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineExtensionManager_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineFileSystemAccessRequest::HandleType >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineFileSystemAccessRequest_HandleType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineFileSystemAccessRequest::AccessFlag >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineFileSystemAccessRequest_AccessFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QWebEngineFileSystemAccessRequest::AccessFlag> >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QFlags_QWebEngineFileSystemAccessRequest_AccessFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineFileSystemAccessRequest >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineFileSystemAccessRequest_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineFindTextResult >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineFindTextResult_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineFrame >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineFrame_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineFullScreenRequest >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineFullScreenRequest_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineGlobalSettings::SecureDnsMode >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineGlobalSettings_SecureDnsMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineGlobalSettings::DnsMode >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineGlobalSettings_DnsMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineHistory >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineHistory_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineHistoryItem >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineHistoryItem_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineHistoryModel::Roles >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineHistoryModel_Roles_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineHistoryModel >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineHistoryModel_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineHttpRequest::Method >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineHttpRequest_Method_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineHttpRequest >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineHttpRequest_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineLoadingInfo::LoadStatus >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineLoadingInfo_LoadStatus_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineLoadingInfo::ErrorDomain >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineLoadingInfo_ErrorDomain_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineLoadingInfo >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineLoadingInfo_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineNavigationRequest::NavigationType >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineNavigationRequest_NavigationType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineNavigationRequest::NavigationRequestAction >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineNavigationRequest_NavigationRequestAction_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineNavigationRequest >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineNavigationRequest_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineNewWindowRequest::DestinationType >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineNewWindowRequest_DestinationType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineNewWindowRequest >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineNewWindowRequest_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineNotification >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineNotification_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEnginePage::WebAction >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEnginePage_WebAction_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEnginePage::FindFlag >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEnginePage_FindFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QWebEnginePage::FindFlag> >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QFlags_QWebEnginePage_FindFlag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEnginePage::WebWindowType >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEnginePage_WebWindowType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEnginePage::PermissionPolicy >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEnginePage_PermissionPolicy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEnginePage::NavigationType >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEnginePage_NavigationType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEnginePage::Feature >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEnginePage_Feature_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEnginePage::FileSelectionMode >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEnginePage_FileSelectionMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEnginePage::JavaScriptConsoleMessageLevel >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEnginePage_JavaScriptConsoleMessageLevel_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEnginePage::RenderProcessTerminationStatus >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEnginePage_RenderProcessTerminationStatus_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEnginePage::LifecycleState >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEnginePage_LifecycleState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEnginePage >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEnginePage_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEnginePermission::PermissionType >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEnginePermission_PermissionType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEnginePermission::State >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEnginePermission_State_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEnginePermission >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEnginePermission_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineProfile::HttpCacheType >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineProfile_HttpCacheType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineProfile::PersistentCookiesPolicy >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineProfile_PersistentCookiesPolicy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineProfile::PersistentPermissionsPolicy >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineProfile_PersistentPermissionsPolicy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineProfile >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineProfile_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineProfileBuilder >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineProfileBuilder_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineQuotaRequest >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineQuotaRequest_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineRegisterProtocolHandlerRequest >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineRegisterProtocolHandlerRequest_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineScript::InjectionPoint >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineScript_InjectionPoint_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineScript::ScriptWorldId >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineScript_ScriptWorldId_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineScript >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineScript_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineScriptCollection >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineScriptCollection_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineSettings::FontFamily >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineSettings_FontFamily_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineSettings::WebAttribute >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineSettings_WebAttribute_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineSettings::FontSize >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineSettings_FontSize_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineSettings::UnknownUrlSchemePolicy >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineSettings_UnknownUrlSchemePolicy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineSettings::ImageAnimationPolicy >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineSettings_ImageAnimationPolicy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineSettings >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineSettings_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineUrlRequestInfo::ResourceType >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineUrlRequestInfo_ResourceType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineUrlRequestInfo::NavigationType >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineUrlRequestInfo_NavigationType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineUrlRequestInfo >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineUrlRequestInfo_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineUrlRequestInterceptor >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineUrlRequestInterceptor_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineUrlRequestJob::Error >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineUrlRequestJob_Error_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineUrlRequestJob >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineUrlRequestJob_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineUrlScheme::Syntax >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineUrlScheme_Syntax_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineUrlScheme::SpecialPort >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineUrlScheme_SpecialPort_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineUrlScheme::Flag >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineUrlScheme_Flag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QWebEngineUrlScheme::Flag> >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QFlags_QWebEngineUrlScheme_Flag_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineUrlScheme >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineUrlScheme_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineUrlSchemeHandler >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineUrlSchemeHandler_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineWebAuthPinRequest >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineWebAuthPinRequest_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineWebAuthUxRequest::WebAuthUxState >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineWebAuthUxRequest_WebAuthUxState_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineWebAuthUxRequest::PinEntryReason >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineWebAuthUxRequest_PinEntryReason_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineWebAuthUxRequest::PinEntryError >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineWebAuthUxRequest_PinEntryError_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineWebAuthUxRequest::RequestFailureReason >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineWebAuthUxRequest_RequestFailureReason_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineWebAuthUxRequest >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineCoreTypeStructs[SBK_QWebEngineWebAuthUxRequest_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTWEBENGINECORE_PYTHON_H
|
||||
|
||||
@@ -0,0 +1,100 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTWEBENGINEQUICK_PYTHON_H
|
||||
#define SBK_QTWEBENGINEQUICK_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtqml_python.h>
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtnetwork_python.h>
|
||||
#include <pyside6_qtwebenginecore_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtprintsupport_python.h>
|
||||
#include <pyside6_qtwidgets_python.h>
|
||||
#include <pyside6_qtwebchannel_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtWebEngineQuick/qquickwebengineprofile.h>
|
||||
#include <QtWebEngineQuick/qtwebenginequickglobal.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QQuickWebEngineDownloadRequest;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QQUICKWEBENGINEDOWNLOADREQUEST_IDX = 0,
|
||||
SBK_QQUICKWEBENGINEPROFILE_HTTPCACHETYPE_IDX = 4,
|
||||
SBK_QQUICKWEBENGINEPROFILE_PERSISTENTCOOKIESPOLICY_IDX = 6,
|
||||
SBK_QQUICKWEBENGINEPROFILE_PERSISTENTPERMISSIONSPOLICY_IDX = 8,
|
||||
SBK_QQUICKWEBENGINEPROFILE_IDX = 2,
|
||||
SBK_QTWEBENGINEQUICKQTWEBENGINEQUICK_IDX = 10,
|
||||
SBK_QTWEBENGINEQUICK_IDX_COUNT = 12,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QQuickWebEngineDownloadRequest_IDX = 0,
|
||||
SBK_QQuickWebEngineProfile_HttpCacheType_IDX = 2,
|
||||
SBK_QQuickWebEngineProfile_PersistentCookiesPolicy_IDX = 3,
|
||||
SBK_QQuickWebEngineProfile_PersistentPermissionsPolicy_IDX = 4,
|
||||
SBK_QQuickWebEngineProfile_IDX = 1,
|
||||
SBK_QtWebEngineQuickQtWebEngineQuick_IDX = 5,
|
||||
SBK_QtWebEngineQuick_IDX_COUNT = 6,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtWebEngineQuickTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtWebEngineQuickTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtWebEngineQuickModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtWebEngineQuickTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTWEBENGINEQUICK_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTWEBENGINEQUICK_QLIST_QWEBENGINEPERMISSION_IDX = 1, // QList<QWebEnginePermission>
|
||||
SBK_QTWEBENGINEQUICK_QLIST_QVARIANT_IDX = 2, // QList<QVariant>
|
||||
SBK_QTWEBENGINEQUICK_QLIST_QSTRING_IDX = 3, // QList<QString>
|
||||
SBK_QTWEBENGINEQUICK_QMAP_QSTRING_QVARIANT_IDX = 4, // QMap<QString,QVariant>
|
||||
SBK_QTWEBENGINEQUICK_CONVERTERS_IDX_COUNT = 5,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtWebEngineQuick_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtWebEngineQuick_QList_QWebEnginePermission_IDX = 1, // QList<QWebEnginePermission>
|
||||
SBK_QtWebEngineQuick_QList_QVariant_IDX = 2, // QList<QVariant>
|
||||
SBK_QtWebEngineQuick_QList_QString_IDX = 3, // QList<QString>
|
||||
SBK_QtWebEngineQuick_QMap_QString_QVariant_IDX = 4, // QMap<QString,QVariant>
|
||||
SBK_QtWebEngineQuick_CONVERTERS_IDX_COUNT = 5,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickWebEngineDownloadRequest >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineQuickTypeStructs[SBK_QQuickWebEngineDownloadRequest_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickWebEngineProfile::HttpCacheType >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineQuickTypeStructs[SBK_QQuickWebEngineProfile_HttpCacheType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickWebEngineProfile::PersistentCookiesPolicy >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineQuickTypeStructs[SBK_QQuickWebEngineProfile_PersistentCookiesPolicy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickWebEngineProfile::PersistentPermissionsPolicy >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineQuickTypeStructs[SBK_QQuickWebEngineProfile_PersistentPermissionsPolicy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QQuickWebEngineProfile >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineQuickTypeStructs[SBK_QQuickWebEngineProfile_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTWEBENGINEQUICK_PYTHON_H
|
||||
|
||||
@@ -0,0 +1,81 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTWEBENGINEWIDGETS_PYTHON_H
|
||||
#define SBK_QTWEBENGINEWIDGETS_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtgui_python.h>
|
||||
#include <pyside6_qtwidgets_python.h>
|
||||
#include <pyside6_qtnetwork_python.h>
|
||||
#include <pyside6_qtwebenginecore_python.h>
|
||||
#include <pyside6_qtprintsupport_python.h>
|
||||
#include <pyside6_qtwebchannel_python.h>
|
||||
|
||||
// Bound library includes
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QWebEngineView;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QWEBENGINEVIEW_IDX = 0,
|
||||
SBK_QTWEBENGINEWIDGETS_IDX_COUNT = 2,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QWebEngineView_IDX = 0,
|
||||
SBK_QtWebEngineWidgets_IDX_COUNT = 1,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtWebEngineWidgetsTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtWebEngineWidgetsTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtWebEngineWidgetsModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtWebEngineWidgetsTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTWEBENGINEWIDGETS_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTWEBENGINEWIDGETS_QLIST_QVARIANT_IDX = 1, // QList<QVariant>
|
||||
SBK_QTWEBENGINEWIDGETS_QLIST_QSTRING_IDX = 2, // QList<QString>
|
||||
SBK_QTWEBENGINEWIDGETS_QMAP_QSTRING_QVARIANT_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QTWEBENGINEWIDGETS_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtWebEngineWidgets_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtWebEngineWidgets_QList_QVariant_IDX = 1, // QList<QVariant>
|
||||
SBK_QtWebEngineWidgets_QList_QString_IDX = 2, // QList<QString>
|
||||
SBK_QtWebEngineWidgets_QMap_QString_QVariant_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QtWebEngineWidgets_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QWebEngineView >() { return Shiboken::Module::get(SbkPySide6_QtWebEngineWidgetsTypeStructs[SBK_QWebEngineView_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTWEBENGINEWIDGETS_PYTHON_H
|
||||
|
||||
108
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtWebSockets/pyside6_qtwebsockets_python.h
vendored
Normal file
108
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtWebSockets/pyside6_qtwebsockets_python.h
vendored
Normal file
@@ -0,0 +1,108 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTWEBSOCKETS_PYTHON_H
|
||||
#define SBK_QTWEBSOCKETS_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
#include <pyside6_qtnetwork_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtWebSockets/qwebsocketprotocol.h>
|
||||
#include <QtWebSockets/qwebsocketserver.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QMaskGenerator;
|
||||
class QWebSocket;
|
||||
class QWebSocketCorsAuthenticator;
|
||||
class QWebSocketHandshakeOptions;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QMASKGENERATOR_IDX = 0,
|
||||
SBK_QWEBSOCKET_IDX = 2,
|
||||
SBK_QWEBSOCKETCORSAUTHENTICATOR_IDX = 4,
|
||||
SBK_QWEBSOCKETHANDSHAKEOPTIONS_IDX = 6,
|
||||
SBK_QWEBSOCKETPROTOCOL_VERSION_IDX = 12,
|
||||
SBK_QWEBSOCKETPROTOCOL_CLOSECODE_IDX = 10,
|
||||
SBK_QTWEBSOCKETSQWEBSOCKETPROTOCOL_IDX = 8,
|
||||
SBK_QWEBSOCKETSERVER_SSLMODE_IDX = 16,
|
||||
SBK_QWEBSOCKETSERVER_IDX = 14,
|
||||
SBK_QTWEBSOCKETS_IDX_COUNT = 18,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QMaskGenerator_IDX = 0,
|
||||
SBK_QWebSocket_IDX = 1,
|
||||
SBK_QWebSocketCorsAuthenticator_IDX = 2,
|
||||
SBK_QWebSocketHandshakeOptions_IDX = 3,
|
||||
SBK_QWebSocketProtocol_Version_IDX = 6,
|
||||
SBK_QWebSocketProtocol_CloseCode_IDX = 5,
|
||||
SBK_QtWebSocketsQWebSocketProtocol_IDX = 4,
|
||||
SBK_QWebSocketServer_SslMode_IDX = 8,
|
||||
SBK_QWebSocketServer_IDX = 7,
|
||||
SBK_QtWebSockets_IDX_COUNT = 9,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtWebSocketsTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtWebSocketsTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtWebSocketsModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtWebSocketsTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTWEBSOCKETS_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTWEBSOCKETS_QLIST_QSSLERROR_IDX = 1, // QList<QSslError>
|
||||
SBK_QTWEBSOCKETS_QLIST_QWEBSOCKETPROTOCOL_VERSION_IDX = 2, // QList<QWebSocketProtocol::Version>
|
||||
SBK_QTWEBSOCKETS_QLIST_QVARIANT_IDX = 3, // QList<QVariant>
|
||||
SBK_QTWEBSOCKETS_QLIST_QSTRING_IDX = 4, // QList<QString>
|
||||
SBK_QTWEBSOCKETS_QMAP_QSTRING_QVARIANT_IDX = 5, // QMap<QString,QVariant>
|
||||
SBK_QTWEBSOCKETS_CONVERTERS_IDX_COUNT = 6,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtWebSockets_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtWebSockets_QList_QSslError_IDX = 1, // QList<QSslError>
|
||||
SBK_QtWebSockets_QList_QWebSocketProtocol_Version_IDX = 2, // QList<QWebSocketProtocol::Version>
|
||||
SBK_QtWebSockets_QList_QVariant_IDX = 3, // QList<QVariant>
|
||||
SBK_QtWebSockets_QList_QString_IDX = 4, // QList<QString>
|
||||
SBK_QtWebSockets_QMap_QString_QVariant_IDX = 5, // QMap<QString,QVariant>
|
||||
SBK_QtWebSockets_CONVERTERS_IDX_COUNT = 6,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QMaskGenerator >() { return Shiboken::Module::get(SbkPySide6_QtWebSocketsTypeStructs[SBK_QMaskGenerator_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebSocket >() { return Shiboken::Module::get(SbkPySide6_QtWebSocketsTypeStructs[SBK_QWebSocket_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebSocketCorsAuthenticator >() { return Shiboken::Module::get(SbkPySide6_QtWebSocketsTypeStructs[SBK_QWebSocketCorsAuthenticator_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebSocketHandshakeOptions >() { return Shiboken::Module::get(SbkPySide6_QtWebSocketsTypeStructs[SBK_QWebSocketHandshakeOptions_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebSocketProtocol::Version >() { return Shiboken::Module::get(SbkPySide6_QtWebSocketsTypeStructs[SBK_QWebSocketProtocol_Version_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebSocketProtocol::CloseCode >() { return Shiboken::Module::get(SbkPySide6_QtWebSocketsTypeStructs[SBK_QWebSocketProtocol_CloseCode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebSocketServer::SslMode >() { return Shiboken::Module::get(SbkPySide6_QtWebSocketsTypeStructs[SBK_QWebSocketServer_SslMode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QWebSocketServer >() { return Shiboken::Module::get(SbkPySide6_QtWebSocketsTypeStructs[SBK_QWebSocketServer_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTWEBSOCKETS_PYTHON_H
|
||||
|
||||
64
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtWebView/pyside6_qtwebview_python.h
vendored
Normal file
64
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtWebView/pyside6_qtwebview_python.h
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTWEBVIEW_PYTHON_H
|
||||
#define SBK_QTWEBVIEW_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtWebView/qtwebviewfunctions.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTWEBVIEWQTWEBVIEW_IDX = 0,
|
||||
SBK_QTWEBVIEW_IDX_COUNT = 2,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QtWebViewQtWebView_IDX = 0,
|
||||
SBK_QtWebView_IDX_COUNT = 1,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtWebViewTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtWebViewTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtWebViewModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtWebViewTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTWEBVIEW_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTWEBVIEW_QLIST_QVARIANT_IDX = 1, // QList<QVariant>
|
||||
SBK_QTWEBVIEW_QLIST_QSTRING_IDX = 2, // QList<QString>
|
||||
SBK_QTWEBVIEW_QMAP_QSTRING_QVARIANT_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QTWEBVIEW_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtWebView_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtWebView_QList_QVariant_IDX = 1, // QList<QVariant>
|
||||
SBK_QtWebView_QList_QString_IDX = 2, // QList<QString>
|
||||
SBK_QtWebView_QMap_QString_QVariant_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QtWebView_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
#endif // SBK_QTWEBVIEW_PYTHON_H
|
||||
|
||||
1640
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtWidgets/pyside6_qtwidgets_python.h
vendored
Normal file
1640
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtWidgets/pyside6_qtwidgets_python.h
vendored
Normal file
File diff suppressed because it is too large
Load Diff
155
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtXml/pyside6_qtxml_python.h
vendored
Normal file
155
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/QtXml/pyside6_qtxml_python.h
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
|
||||
#ifndef SBK_QTXML_PYTHON_H
|
||||
#define SBK_QTXML_PYTHON_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbkmodule.h>
|
||||
#include <sbkconverter.h>
|
||||
// Module Includes
|
||||
#include <pyside6_qtcore_python.h>
|
||||
|
||||
// Bound library includes
|
||||
#include <QtXml/qdom.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QDomAttr;
|
||||
class QDomCDATASection;
|
||||
class QDomCharacterData;
|
||||
class QDomComment;
|
||||
class QDomDocumentFragment;
|
||||
class QDomDocumentType;
|
||||
class QDomElement;
|
||||
class QDomEntity;
|
||||
class QDomEntityReference;
|
||||
class QDomNamedNodeMap;
|
||||
class QDomNodeList;
|
||||
class QDomNotation;
|
||||
class QDomProcessingInstruction;
|
||||
class QDomText;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
// Type indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QDOMATTR_IDX = 0,
|
||||
SBK_QDOMCDATASECTION_IDX = 2,
|
||||
SBK_QDOMCHARACTERDATA_IDX = 4,
|
||||
SBK_QDOMCOMMENT_IDX = 6,
|
||||
SBK_QDOMDOCUMENT_PARSEOPTION_IDX = 10,
|
||||
SBK_QFLAGS_QDOMDOCUMENT_PARSEOPTION_IDX = 44,
|
||||
SBK_QDOMDOCUMENT_IDX = 8,
|
||||
SBK_QDOMDOCUMENT_PARSERESULT_IDX = 12,
|
||||
SBK_QDOMDOCUMENTFRAGMENT_IDX = 14,
|
||||
SBK_QDOMDOCUMENTTYPE_IDX = 16,
|
||||
SBK_QDOMELEMENT_IDX = 18,
|
||||
SBK_QDOMENTITY_IDX = 20,
|
||||
SBK_QDOMENTITYREFERENCE_IDX = 22,
|
||||
SBK_QDOMIMPLEMENTATION_INVALIDDATAPOLICY_IDX = 26,
|
||||
SBK_QDOMIMPLEMENTATION_IDX = 24,
|
||||
SBK_QDOMNAMEDNODEMAP_IDX = 28,
|
||||
SBK_QDOMNODE_NODETYPE_IDX = 34,
|
||||
SBK_QDOMNODE_ENCODINGPOLICY_IDX = 32,
|
||||
SBK_QDOMNODE_IDX = 30,
|
||||
SBK_QDOMNODELIST_IDX = 36,
|
||||
SBK_QDOMNOTATION_IDX = 38,
|
||||
SBK_QDOMPROCESSINGINSTRUCTION_IDX = 40,
|
||||
SBK_QDOMTEXT_IDX = 42,
|
||||
SBK_QTXML_IDX_COUNT = 46,
|
||||
};
|
||||
|
||||
// Type indices
|
||||
enum : int {
|
||||
SBK_QDomAttr_IDX = 0,
|
||||
SBK_QDomCDATASection_IDX = 1,
|
||||
SBK_QDomCharacterData_IDX = 2,
|
||||
SBK_QDomComment_IDX = 3,
|
||||
SBK_QDomDocument_ParseOption_IDX = 5,
|
||||
SBK_QFlags_QDomDocument_ParseOption_IDX = 22,
|
||||
SBK_QDomDocument_IDX = 4,
|
||||
SBK_QDomDocument_ParseResult_IDX = 6,
|
||||
SBK_QDomDocumentFragment_IDX = 7,
|
||||
SBK_QDomDocumentType_IDX = 8,
|
||||
SBK_QDomElement_IDX = 9,
|
||||
SBK_QDomEntity_IDX = 10,
|
||||
SBK_QDomEntityReference_IDX = 11,
|
||||
SBK_QDomImplementation_InvalidDataPolicy_IDX = 13,
|
||||
SBK_QDomImplementation_IDX = 12,
|
||||
SBK_QDomNamedNodeMap_IDX = 14,
|
||||
SBK_QDomNode_NodeType_IDX = 17,
|
||||
SBK_QDomNode_EncodingPolicy_IDX = 16,
|
||||
SBK_QDomNode_IDX = 15,
|
||||
SBK_QDomNodeList_IDX = 18,
|
||||
SBK_QDomNotation_IDX = 19,
|
||||
SBK_QDomProcessingInstruction_IDX = 20,
|
||||
SBK_QDomText_IDX = 21,
|
||||
SBK_QtXml_IDX_COUNT = 23,
|
||||
};
|
||||
|
||||
// This variable stores all Python types exported by this module.
|
||||
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtXmlTypeStructs;
|
||||
|
||||
// This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
|
||||
[[deprecated]] extern PyTypeObject **SbkPySide6_QtXmlTypes;
|
||||
|
||||
// This variable stores the Python module object exported by this module.
|
||||
extern PyObject *SbkPySide6_QtXmlModuleObject;
|
||||
|
||||
// This variable stores all type converters exported by this module.
|
||||
extern SbkConverter **SbkPySide6_QtXmlTypeConverters;
|
||||
|
||||
// Converter indices
|
||||
enum [[deprecated]] : int {
|
||||
SBK_QTXML_QLIST_INT_IDX = 0, // QList<int>
|
||||
SBK_QTXML_QLIST_QVARIANT_IDX = 1, // QList<QVariant>
|
||||
SBK_QTXML_QLIST_QSTRING_IDX = 2, // QList<QString>
|
||||
SBK_QTXML_QMAP_QSTRING_QVARIANT_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QTXML_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
|
||||
// Converter indices
|
||||
enum : int {
|
||||
SBK_QtXml_QList_int_IDX = 0, // QList<int>
|
||||
SBK_QtXml_QList_QVariant_IDX = 1, // QList<QVariant>
|
||||
SBK_QtXml_QList_QString_IDX = 2, // QList<QString>
|
||||
SBK_QtXml_QMap_QString_QVariant_IDX = 3, // QMap<QString,QVariant>
|
||||
SBK_QtXml_CONVERTERS_IDX_COUNT = 4,
|
||||
};
|
||||
// Macros for type check
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
namespace Shiboken
|
||||
{
|
||||
|
||||
// PyType functions, to get the PyObjectType for a type T
|
||||
template<> inline PyTypeObject *SbkType< ::QDomAttr >() { return Shiboken::Module::get(SbkPySide6_QtXmlTypeStructs[SBK_QDomAttr_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDomCDATASection >() { return Shiboken::Module::get(SbkPySide6_QtXmlTypeStructs[SBK_QDomCDATASection_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDomCharacterData >() { return Shiboken::Module::get(SbkPySide6_QtXmlTypeStructs[SBK_QDomCharacterData_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDomComment >() { return Shiboken::Module::get(SbkPySide6_QtXmlTypeStructs[SBK_QDomComment_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDomDocument::ParseOption >() { return Shiboken::Module::get(SbkPySide6_QtXmlTypeStructs[SBK_QDomDocument_ParseOption_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QFlags<QDomDocument::ParseOption> >() { return Shiboken::Module::get(SbkPySide6_QtXmlTypeStructs[SBK_QFlags_QDomDocument_ParseOption_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDomDocument >() { return Shiboken::Module::get(SbkPySide6_QtXmlTypeStructs[SBK_QDomDocument_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDomDocument::ParseResult >() { return Shiboken::Module::get(SbkPySide6_QtXmlTypeStructs[SBK_QDomDocument_ParseResult_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDomDocumentFragment >() { return Shiboken::Module::get(SbkPySide6_QtXmlTypeStructs[SBK_QDomDocumentFragment_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDomDocumentType >() { return Shiboken::Module::get(SbkPySide6_QtXmlTypeStructs[SBK_QDomDocumentType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDomElement >() { return Shiboken::Module::get(SbkPySide6_QtXmlTypeStructs[SBK_QDomElement_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDomEntity >() { return Shiboken::Module::get(SbkPySide6_QtXmlTypeStructs[SBK_QDomEntity_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDomEntityReference >() { return Shiboken::Module::get(SbkPySide6_QtXmlTypeStructs[SBK_QDomEntityReference_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDomImplementation::InvalidDataPolicy >() { return Shiboken::Module::get(SbkPySide6_QtXmlTypeStructs[SBK_QDomImplementation_InvalidDataPolicy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDomImplementation >() { return Shiboken::Module::get(SbkPySide6_QtXmlTypeStructs[SBK_QDomImplementation_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDomNamedNodeMap >() { return Shiboken::Module::get(SbkPySide6_QtXmlTypeStructs[SBK_QDomNamedNodeMap_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDomNode::NodeType >() { return Shiboken::Module::get(SbkPySide6_QtXmlTypeStructs[SBK_QDomNode_NodeType_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDomNode::EncodingPolicy >() { return Shiboken::Module::get(SbkPySide6_QtXmlTypeStructs[SBK_QDomNode_EncodingPolicy_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDomNode >() { return Shiboken::Module::get(SbkPySide6_QtXmlTypeStructs[SBK_QDomNode_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDomNodeList >() { return Shiboken::Module::get(SbkPySide6_QtXmlTypeStructs[SBK_QDomNodeList_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDomNotation >() { return Shiboken::Module::get(SbkPySide6_QtXmlTypeStructs[SBK_QDomNotation_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDomProcessingInstruction >() { return Shiboken::Module::get(SbkPySide6_QtXmlTypeStructs[SBK_QDomProcessingInstruction_IDX]); }
|
||||
template<> inline PyTypeObject *SbkType< ::QDomText >() { return Shiboken::Module::get(SbkPySide6_QtXmlTypeStructs[SBK_QDomText_IDX]); }
|
||||
|
||||
} // namespace Shiboken
|
||||
|
||||
QT_WARNING_POP
|
||||
#endif // SBK_QTXML_PYTHON_H
|
||||
|
||||
43
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/class_property.h
vendored
Normal file
43
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/class_property.h
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
// Copyright (C) 2020 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef CLASS_PROPERTY_H
|
||||
#define CLASS_PROPERTY_H
|
||||
|
||||
#include "pysidemacros.h"
|
||||
#include <sbkpython.h>
|
||||
|
||||
extern "C" {
|
||||
|
||||
struct propertyobject {
|
||||
PyObject_HEAD
|
||||
PyObject *prop_get;
|
||||
PyObject *prop_set;
|
||||
PyObject *prop_del;
|
||||
PyObject *prop_doc;
|
||||
int getter_doc;
|
||||
};
|
||||
|
||||
struct propertyobject310 {
|
||||
PyObject_HEAD
|
||||
PyObject *prop_get;
|
||||
PyObject *prop_set;
|
||||
PyObject *prop_del;
|
||||
PyObject *prop_doc;
|
||||
// Note: This is a problem with Limited API: We have no direct access.
|
||||
// You need to pick it from runtime info.
|
||||
PyObject *prop_name;
|
||||
int getter_doc;
|
||||
};
|
||||
|
||||
PYSIDE_API PyTypeObject *PyClassProperty_TypeF();
|
||||
|
||||
} // extern "C"
|
||||
|
||||
namespace PySide::ClassProperty {
|
||||
|
||||
PYSIDE_API void init(PyObject *module);
|
||||
|
||||
} // namespace PySide::ClassProperty
|
||||
|
||||
#endif // CLASS_PROPERTY_H
|
||||
56
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/dynamicqmetaobject.h
vendored
Normal file
56
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/dynamicqmetaobject.h
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
// Copyright (C) 2016 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef DYNAMICQMETAOBJECT_H
|
||||
#define DYNAMICQMETAOBJECT_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <pysidemacros.h>
|
||||
|
||||
#include <QtCore/qmetaobject.h>
|
||||
#include <QtCore/qmetaobject.h>
|
||||
#include <QtCore/qvariant.h>
|
||||
|
||||
#include <utility>
|
||||
|
||||
class MetaObjectBuilderPrivate;
|
||||
|
||||
namespace PySide
|
||||
{
|
||||
|
||||
class PYSIDE_API MetaObjectBuilder
|
||||
{
|
||||
Q_DISABLE_COPY_MOVE(MetaObjectBuilder)
|
||||
public:
|
||||
using EnumValue = std::pair<QByteArray, QVariant>; // Int/ULongLong
|
||||
using EnumValues = QList<EnumValue>;
|
||||
|
||||
// Plain wrapped Qt types
|
||||
explicit MetaObjectBuilder(const QMetaObject *metaObject);
|
||||
// Types defined in Python which are parsed
|
||||
explicit MetaObjectBuilder(PyTypeObject *type, const QMetaObject *metaObject);
|
||||
~MetaObjectBuilder();
|
||||
|
||||
int indexOfMethod(QMetaMethod::MethodType mtype, const QByteArray &signature) const;
|
||||
int indexOfProperty(const QByteArray &name) const;
|
||||
int addSlot(const QByteArray &signature);
|
||||
int addSlot(const QByteArray &signature, const QByteArray &type);
|
||||
int addSignal(const QByteArray &signature);
|
||||
void removeMethod(QMetaMethod::MethodType mtype, int index);
|
||||
int addProperty(const char *property, PyObject *data);
|
||||
void addInfo(const char *key, const char *value);
|
||||
void addInfo(const QMap<QByteArray, QByteArray> &info);
|
||||
void addEnumerator(const char *name, bool flag,
|
||||
bool scoped, const EnumValues &entries);
|
||||
void removeProperty(int index);
|
||||
|
||||
const QMetaObject *update();
|
||||
|
||||
static QString formatMetaObject(const QMetaObject *metaObject);
|
||||
|
||||
private:
|
||||
MetaObjectBuilderPrivate *m_d;
|
||||
};
|
||||
|
||||
}
|
||||
#endif
|
||||
50
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/dynamicslot_p.h
vendored
Normal file
50
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/dynamicslot_p.h
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
// Copyright (C) 2024 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef DYNAMICSLOT_P_H
|
||||
#define DYNAMICSLOT_P_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
|
||||
#include <QtCore/qcompare.h>
|
||||
#include <QtCore/qmetaobject.h>
|
||||
|
||||
QT_FORWARD_DECLARE_CLASS(QDebug)
|
||||
|
||||
namespace PySide
|
||||
{
|
||||
|
||||
class DynamicSlot
|
||||
{
|
||||
Q_DISABLE_COPY_MOVE(DynamicSlot)
|
||||
public:
|
||||
enum SlotType
|
||||
{
|
||||
Callable,
|
||||
Method,
|
||||
CompiledMethod,
|
||||
C_Function
|
||||
};
|
||||
|
||||
virtual ~DynamicSlot() = default;
|
||||
|
||||
virtual void call(const QByteArrayList ¶meterTypes, const char *returnType,
|
||||
void **cppArgs) = 0;
|
||||
virtual void formatDebug(QDebug &debug) const = 0;
|
||||
|
||||
static SlotType slotType(PyObject *callback);
|
||||
static DynamicSlot *create(PyObject *callback);
|
||||
|
||||
protected:
|
||||
DynamicSlot() noexcept = default;
|
||||
};
|
||||
|
||||
QDebug operator<<(QDebug debug, const DynamicSlot *ds);
|
||||
|
||||
void registerSlotConnection(QObject *source, int signalIndex, PyObject *callback,
|
||||
const QMetaObject::Connection &connection);
|
||||
bool disconnectSlot(QObject *source, int signalIndex, PyObject *callback);
|
||||
|
||||
}
|
||||
|
||||
#endif // DYNAMICSLOT_P_H
|
||||
19
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/feature_select.h
vendored
Normal file
19
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/feature_select.h
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
// Copyright (C) 2020 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef FEATURE_SELECT_H
|
||||
#define FEATURE_SELECT_H
|
||||
|
||||
#include "pysidemacros.h"
|
||||
#include <sbkpython.h>
|
||||
|
||||
namespace PySide::Feature {
|
||||
|
||||
PYSIDE_API void init();
|
||||
PYSIDE_API void Select(PyObject *obj);
|
||||
PYSIDE_API void Select(PyTypeObject *type);
|
||||
PYSIDE_API void Enable(bool);
|
||||
|
||||
} // namespace PySide::Feature
|
||||
|
||||
#endif // FEATURE_SELECT_H
|
||||
16
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pyside.h
vendored
Normal file
16
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pyside.h
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
// Copyright (C) 2016 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDE_H
|
||||
#define PYSIDE_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
|
||||
#include <pysidemacros.h>
|
||||
|
||||
#include "pysideinit.h"
|
||||
#include "pysideqapp.h"
|
||||
#include "pysideqobject.h"
|
||||
#include "pysideutils.h"
|
||||
|
||||
#endif // PYSIDE_H
|
||||
10
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pyside6_global.h
vendored
Normal file
10
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pyside6_global.h
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
// Copyright (C) 2020 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#include <QtCore/qnamespace.h>
|
||||
|
||||
// There are symbols in Qt that exist in Debug but
|
||||
// not in release
|
||||
#define QT_NO_DEBUG
|
||||
|
||||
// Here are now all configured modules appended:
|
||||
37
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pyside_numpy.h
vendored
Normal file
37
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pyside_numpy.h
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
// Copyright (C) 2021 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDE_NUMPY_H
|
||||
#define PYSIDE_NUMPY_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <sbknumpycheck.h>
|
||||
|
||||
#include <pysidemacros.h>
|
||||
|
||||
#include <QtCore/qlist.h>
|
||||
#include <QtCore/qpoint.h>
|
||||
#include <QtCore/qpoint.h>
|
||||
|
||||
namespace PySide::Numpy
|
||||
{
|
||||
|
||||
/// Create a list of QPointF from 2 equally sized numpy array of x and y data
|
||||
/// (float,double).
|
||||
/// \param pyXIn X data array
|
||||
/// \param pyYIn Y data array
|
||||
/// \return List of QPointF
|
||||
|
||||
PYSIDE_API QList<QPointF> xyDataToQPointFList(PyObject *pyXIn, PyObject *pyYIn);
|
||||
|
||||
/// Create a list of QPoint from 2 equally sized numpy array of x and y data
|
||||
/// (int).
|
||||
/// \param pyXIn X data array
|
||||
/// \param pyYIn Y data array
|
||||
/// \return List of QPoint
|
||||
|
||||
PYSIDE_API QList<QPoint> xyDataToQPointList(PyObject *pyXIn, PyObject *pyYIn);
|
||||
|
||||
} //namespace PySide::Numpy
|
||||
|
||||
#endif // PYSIDE_NUMPY_H
|
||||
35
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pyside_p.h
vendored
Normal file
35
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pyside_p.h
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
// Copyright (C) 2018 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDE_P_H
|
||||
#define PYSIDE_P_H
|
||||
|
||||
#include <pysidemacros.h>
|
||||
|
||||
#include <dynamicqmetaobject.h>
|
||||
|
||||
namespace PySide
|
||||
{
|
||||
|
||||
// Struct associated with QObject's via Shiboken::Object::getTypeUserData()
|
||||
struct TypeUserData
|
||||
{
|
||||
explicit TypeUserData(PyTypeObject *type, const QMetaObject *metaobject, std::size_t size) :
|
||||
mo(type, metaobject), cppObjSize(size) {}
|
||||
// Plain wrapped Qt types
|
||||
explicit TypeUserData(const QMetaObject *metaobject, std::size_t size) :
|
||||
mo(metaobject), cppObjSize(size) {}
|
||||
|
||||
MetaObjectBuilder mo;
|
||||
std::size_t cppObjSize;
|
||||
};
|
||||
|
||||
TypeUserData *retrieveTypeUserData(PyTypeObject *pyTypeObj);
|
||||
TypeUserData *retrieveTypeUserData(PyObject *pyObj);
|
||||
// For QML
|
||||
PYSIDE_API const QMetaObject *retrieveMetaObject(PyTypeObject *pyTypeObj);
|
||||
PYSIDE_API const QMetaObject *retrieveMetaObject(PyObject *pyObj);
|
||||
|
||||
} //namespace PySide
|
||||
|
||||
#endif // PYSIDE_P_H
|
||||
87
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysidecapsulemethod_p.h
vendored
Normal file
87
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysidecapsulemethod_p.h
vendored
Normal file
@@ -0,0 +1,87 @@
|
||||
// Copyright (C) 2025 Ford Motor Company
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDE_CAPSULEMETHOD_P_H
|
||||
#define PYSIDE_CAPSULEMETHOD_P_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
|
||||
extern "C"
|
||||
{
|
||||
|
||||
/**
|
||||
* This code is needed to solve, in C++ and adhering to the stable API,
|
||||
* creating what are in effect lambda functions as instance methods on custom
|
||||
* types. The goal is to be able to add methods to a dynamic type. If the .rep
|
||||
* file defines a slot `mySlot`, it need to be added to the dynamic type. For
|
||||
* Source types, this should be an abstract method that raises a
|
||||
* NotImplementedError unless defined in the Python subclass. For Replica
|
||||
* types, this should include an implementation that forwards the request
|
||||
* through the underlying QRemoteObjectReplica instance.
|
||||
*
|
||||
* The stable API doesn't currently provide a way define a method that can
|
||||
* receive both the `self`, `args`, and runtime (but constant per method, i.e.,
|
||||
* lambda like) data using Py_tp_methods. Possibly post 3.13 when METH_METHOD is
|
||||
* part of the stable API. But for now, it is not.
|
||||
*
|
||||
* The solution is to create a custom descriptor
|
||||
* (https://docs.python.org/3/howto/descriptor.html) that can hold the runtime
|
||||
* data and then when called, will return a PyCFunction_New generated PyObject
|
||||
* that is passed both class instance `self` and the runtime data (a PyCapsule)
|
||||
* together as a tuple as a new `self` for the method. The static method
|
||||
* definition needs to expect and handle this, but when combined in C++, we can
|
||||
* define a single handler that receives both the original `self` of the instance
|
||||
* and the runtime capsule with data for handling.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The CapsuleDescriptorData struct is what will be passed as the pseudo `self`
|
||||
* from a CapsuleMethod or CapsuleProperty to the associated handler method. The
|
||||
* handler method (which should look like a standard PyMethodDef method) should
|
||||
* parse it into the payload (the "lambda variables") and the actual instance
|
||||
* (the "self").
|
||||
*/
|
||||
struct CapsuleDescriptorData
|
||||
{
|
||||
PyObject *self;
|
||||
PyObject *payload;
|
||||
};
|
||||
|
||||
/**
|
||||
* The new type defining a descriptor that stores a PyCapsule. This is used to
|
||||
* store the runtime data, with the __get__ method returning a new Callable.
|
||||
*/
|
||||
PyTypeObject *CapsuleMethod_TypeF(void);
|
||||
|
||||
/**
|
||||
* The new type defining a descriptor that stores a PyCapsule. This is used to
|
||||
* store the runtime data, with the __get__ (and __set__ if isWritable) providing
|
||||
* property behavior.
|
||||
*/
|
||||
PyTypeObject *CapsuleProperty_TypeF(bool isWritable);
|
||||
|
||||
/**
|
||||
* Add a capsule method (a descriptor) to a type. This will create a new capsule
|
||||
* method descriptor and add it as an attribute to the type, using the given name.
|
||||
*
|
||||
* A single handle can then respond to what appear to be distinct methods on the
|
||||
* type, but using the runtime data (from the capsule) when handling each call.
|
||||
*
|
||||
* @param type The type to attach the created descriptor to.
|
||||
* @param method The method definition to associate with the descriptor.
|
||||
* The name of the method will be used as the attribute name.
|
||||
* @param capsule The capsule to store in the descriptor.
|
||||
* @return True if the descriptor was added successfully, false otherwise.
|
||||
*/
|
||||
bool add_capsule_method_to_type(PyTypeObject *type, PyMethodDef *method,
|
||||
PyObject *capsule);
|
||||
|
||||
/**
|
||||
* Make a new CapsuleProperty type.
|
||||
*/
|
||||
PyObject *make_capsule_property(PyMethodDef *method, PyObject *capsule,
|
||||
bool isWritable = false);
|
||||
|
||||
} // extern "C"
|
||||
|
||||
#endif // PYSIDE_CAPSULEMETHOD_P_H
|
||||
164
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideclassdecorator_p.h
vendored
Normal file
164
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideclassdecorator_p.h
vendored
Normal file
@@ -0,0 +1,164 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef CLASSDECORATOR_P_H
|
||||
#define CLASSDECORATOR_P_H
|
||||
|
||||
#include <pysidemacros.h>
|
||||
|
||||
#include <sbkpython.h>
|
||||
#include <pep384ext.h>
|
||||
|
||||
#include <QtCore/qbytearray.h>
|
||||
|
||||
#include <array>
|
||||
#include <string>
|
||||
|
||||
/// Helpers for class decorators with parameters
|
||||
namespace PySide::ClassDecorator {
|
||||
|
||||
/// Base class for private objects of class decorators with parameters
|
||||
class PYSIDE_API DecoratorPrivate
|
||||
{
|
||||
public:
|
||||
Q_DISABLE_COPY_MOVE(DecoratorPrivate)
|
||||
|
||||
virtual ~DecoratorPrivate();
|
||||
|
||||
/// Virtual function which is passed the decorated class type
|
||||
/// \param args Decorated class type argument
|
||||
/// \return class with reference count increased if the call was successful,
|
||||
/// else nullptr
|
||||
virtual PyObject *tp_call(PyObject *self, PyObject *args, PyObject * /* kw */) = 0;
|
||||
|
||||
/// Virtual function which is passed the decorator parameters
|
||||
/// \param args Decorator arguments
|
||||
/// \return 0 if the parameters are correct
|
||||
virtual int tp_init(PyObject *self, PyObject *args, PyObject *kwds) = 0;
|
||||
virtual const char *name() const = 0;
|
||||
|
||||
/// Helper that returns DecoratorPrivate instance from a PyObject
|
||||
template <class DerivedPrivate>
|
||||
static DerivedPrivate *get(PyObject *o)
|
||||
{ return static_cast<DerivedPrivate *>(DecoratorPrivate::getPrivate(o)); }
|
||||
|
||||
protected:
|
||||
/// Check mode for the arguments of the call operator
|
||||
enum class CheckMode { None, WrappedType, QObjectType };
|
||||
|
||||
DecoratorPrivate() noexcept;
|
||||
static DecoratorPrivate *getPrivate(PyObject *o);
|
||||
|
||||
/// Helper for checking the arguments of the call operator
|
||||
/// \param args Arguments
|
||||
/// \param checkMode Type check mode
|
||||
/// \return The type object extracted from args tuple (borrowed reference)
|
||||
/// if the argument is a matching type
|
||||
PyObject *tp_call_check(PyObject *args,
|
||||
CheckMode checkMode = CheckMode::QObjectType) const;
|
||||
};
|
||||
|
||||
/// Base class for private objects of class decorator with a string parameter
|
||||
class PYSIDE_API StringDecoratorPrivate : public DecoratorPrivate
|
||||
{
|
||||
public:
|
||||
/// Init function that retrieves the string parameter using convertToString()
|
||||
int tp_init(PyObject *self, PyObject *args, PyObject *kwds) override;
|
||||
|
||||
QByteArray string() const { return m_string; }
|
||||
|
||||
protected:
|
||||
/// Helper function that retrieves the string parameter
|
||||
/// \param self self
|
||||
/// \param args Arguments
|
||||
/// \return 0 if the parameter is correct, else -1 (for tp_init())
|
||||
static int convertToString(PyObject *self, PyObject *args);
|
||||
|
||||
private:
|
||||
QByteArray m_string;
|
||||
};
|
||||
|
||||
/// Base class for private objects of class decorator with a type parameter
|
||||
class PYSIDE_API TypeDecoratorPrivate : public DecoratorPrivate
|
||||
{
|
||||
public:
|
||||
/// Init function that retrieves the type parameter using convertToType()
|
||||
int tp_init(PyObject *self, PyObject *args, PyObject *kwds) override;
|
||||
|
||||
PyTypeObject *type() const { return m_type; }
|
||||
|
||||
protected:
|
||||
/// Helper function that retrieves the type parameter
|
||||
/// \param self self
|
||||
/// \param args Arguments
|
||||
/// \return 0 if the parameter is correct, else -1 (for tp_init())
|
||||
static int convertToType(PyObject *self, PyObject *args);
|
||||
|
||||
private:
|
||||
PyTypeObject *m_type = nullptr;
|
||||
};
|
||||
|
||||
} // namespace PySide::ClassDecorator
|
||||
|
||||
extern "C"
|
||||
{
|
||||
LIBSHIBOKEN_API void Sbk_object_dealloc(PyObject *self);
|
||||
|
||||
/// Python type for class decorators with DecoratorPrivate
|
||||
struct PYSIDE_API PySideClassDecorator
|
||||
{
|
||||
PyObject_HEAD
|
||||
PySide::ClassDecorator::DecoratorPrivate *d;
|
||||
};
|
||||
};
|
||||
|
||||
namespace PySide::ClassDecorator {
|
||||
|
||||
/// Helper template providing the methods (slots) for class decorators
|
||||
template <class DecoratorPrivate>
|
||||
struct Methods
|
||||
{
|
||||
static PyObject *tp_new(PyTypeObject *subtype)
|
||||
{
|
||||
auto *result = PepExt_TypeCallAlloc<PySideClassDecorator>(subtype, 0);
|
||||
result->d = new DecoratorPrivate;
|
||||
return reinterpret_cast<PyObject *>(result);
|
||||
}
|
||||
|
||||
static void tp_free(void *self)
|
||||
{
|
||||
auto *pySelf = reinterpret_cast<PyObject *>(self);
|
||||
auto *decorator = reinterpret_cast<PySideClassDecorator *>(self);
|
||||
delete decorator->d;
|
||||
PepExt_TypeCallFree(Py_TYPE(pySelf)->tp_base, self);
|
||||
}
|
||||
|
||||
static PyObject *tp_call(PyObject *self, PyObject *args, PyObject *kwds)
|
||||
{
|
||||
auto *decorator = reinterpret_cast<PySideClassDecorator *>(self);
|
||||
return decorator->d->tp_call(self, args, kwds);
|
||||
}
|
||||
|
||||
static int tp_init(PyObject *self, PyObject *args, PyObject *kwds)
|
||||
{
|
||||
auto *decorator = reinterpret_cast<PySideClassDecorator *>(self);
|
||||
return decorator->d->tp_init(self, args, kwds);
|
||||
}
|
||||
|
||||
using TypeSlots = std::array<PyType_Slot, 6>;
|
||||
|
||||
static TypeSlots typeSlots()
|
||||
{
|
||||
return { {{Py_tp_call, reinterpret_cast<void *>(tp_call)},
|
||||
{Py_tp_init, reinterpret_cast<void *>(tp_init)},
|
||||
{Py_tp_new, reinterpret_cast<void *>(tp_new)},
|
||||
{Py_tp_free, reinterpret_cast<void *>(tp_free)},
|
||||
{Py_tp_dealloc, reinterpret_cast<void *>(Sbk_object_dealloc)},
|
||||
{0, nullptr}}
|
||||
};
|
||||
}
|
||||
};
|
||||
|
||||
} // namespace PySide::ClassDecorator
|
||||
|
||||
#endif // CLASSDECORATOR_P_H
|
||||
33
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideclassinfo.h
vendored
Normal file
33
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideclassinfo.h
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
// Copyright (C) 2016 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDE_CLASSINFO_H
|
||||
#define PYSIDE_CLASSINFO_H
|
||||
|
||||
#include <pysidemacros.h>
|
||||
|
||||
#include <sbkpython.h>
|
||||
|
||||
#include <QtCore/qbytearray.h>
|
||||
#include <QtCore/qlist.h>
|
||||
|
||||
namespace PySide::ClassInfo {
|
||||
|
||||
struct ClassInfo
|
||||
{
|
||||
QByteArray key;
|
||||
QByteArray value;
|
||||
};
|
||||
|
||||
using ClassInfoList = QList<ClassInfo>;
|
||||
|
||||
PYSIDE_API bool checkType(PyObject* pyObj);
|
||||
PYSIDE_API ClassInfoList getClassInfoList(PyObject *decorator);
|
||||
|
||||
PYSIDE_API bool setClassInfo(PyTypeObject *type, const QByteArray &key,
|
||||
const QByteArray &value);
|
||||
PYSIDE_API bool setClassInfo(PyTypeObject *type, const ClassInfoList &list);
|
||||
|
||||
} // namespace PySide::ClassInfo
|
||||
|
||||
#endif
|
||||
43
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideclassinfo_p.h
vendored
Normal file
43
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideclassinfo_p.h
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
// Copyright (C) 2016 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDE_CLASSINFO_P_H
|
||||
#define PYSIDE_CLASSINFO_P_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
|
||||
#include "pysideclassdecorator_p.h"
|
||||
#include "pysideclassinfo.h"
|
||||
|
||||
#include <QtCore/qmetaobject.h>
|
||||
|
||||
struct PySideClassInfo;
|
||||
|
||||
extern "C"
|
||||
{
|
||||
extern PYSIDE_API PyTypeObject *PySideClassInfo_TypeF(void);
|
||||
|
||||
} // extern "C"
|
||||
|
||||
namespace PySide::ClassInfo {
|
||||
|
||||
class ClassInfoPrivate : public PySide::ClassDecorator::DecoratorPrivate
|
||||
{
|
||||
public:
|
||||
PyObject *tp_call(PyObject *self, PyObject *args, PyObject * /* kw */) override;
|
||||
int tp_init(PyObject *self, PyObject *args, PyObject *kwds) override;
|
||||
const char *name() const override;
|
||||
|
||||
ClassInfoList m_data;
|
||||
bool m_alreadyWrapped = false;
|
||||
};
|
||||
|
||||
/**
|
||||
* Init PySide QProperty support system
|
||||
*/
|
||||
void init(PyObject* module);
|
||||
|
||||
|
||||
} // namespace PySide::ClassInfo
|
||||
|
||||
#endif
|
||||
20
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysidecleanup.h
vendored
Normal file
20
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysidecleanup.h
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
// Copyright (C) 2021 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDECLEANUP_H
|
||||
#define PYSIDECLEANUP_H
|
||||
|
||||
#include <pysidemacros.h>
|
||||
|
||||
namespace PySide
|
||||
{
|
||||
|
||||
using CleanupFunction = void(*)();
|
||||
|
||||
/// Register a function to be called before python dies
|
||||
PYSIDE_API void registerCleanupFunction(CleanupFunction func);
|
||||
PYSIDE_API void runCleanupFunctions();
|
||||
|
||||
} //namespace PySide
|
||||
|
||||
#endif // PYSIDECLEANUP_H
|
||||
15
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysidedynamicclass_p.h
vendored
Normal file
15
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysidedynamicclass_p.h
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
// Copyright (C) 2025 Ford Motor Company
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDE_DYNAMIC_CLASS_P_H
|
||||
#define PYSIDE_DYNAMIC_CLASS_P_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
|
||||
#include <QtCore/qtclasshelpermacros.h>
|
||||
|
||||
QT_FORWARD_DECLARE_STRUCT(QMetaObject)
|
||||
|
||||
PyTypeObject *createDynamicClass(QMetaObject *meta, PyObject *properties_capsule);
|
||||
|
||||
#endif // PYSIDE_DYNAMIC_CLASS_P_H
|
||||
84
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysidedynamiccommon_p.h
vendored
Normal file
84
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysidedynamiccommon_p.h
vendored
Normal file
@@ -0,0 +1,84 @@
|
||||
// Copyright (C) 2025 Ford Motor Company
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDE_DYNAMIC_COMMON_P_H
|
||||
#define PYSIDE_DYNAMIC_COMMON_P_H
|
||||
|
||||
#include <sbkconverter.h>
|
||||
|
||||
#include <QtCore/qlist.h>
|
||||
#include <QtCore/qvariant.h>
|
||||
#include <QtCore/qmetatype.h>
|
||||
|
||||
PyObject *toPython(const QVariant &variant);
|
||||
int create_managed_py_enums(PyObject *self, QMetaObject *meta);
|
||||
PyObject *DynamicType_get_enum(PyObject *self, PyObject *name);
|
||||
|
||||
// Data for dynamically created property handlers
|
||||
struct PropertyCapsule
|
||||
{
|
||||
QByteArray name;
|
||||
int propertyIndex; // meta->indexOfProperty() - including offset
|
||||
int indexInObject; // Index minus offset for indexing into QVariantList
|
||||
};
|
||||
|
||||
// Data for dynamically created method handlers
|
||||
struct MethodCapsule
|
||||
{
|
||||
QByteArray name;
|
||||
int methodIndex;
|
||||
QList<QMetaType> argumentTypes;
|
||||
QMetaType returnType; // meta->indexOfMethod() - including offset
|
||||
};
|
||||
|
||||
// These functions are used to create a PyCapsule holding a pointer to a C++
|
||||
// object, which is set as an attribute on a Python type. When the Python
|
||||
// type is garbage collected, the type's attributes are as well, resulting in
|
||||
// the capsule's cleanup running to delete the pointer. This won't be as
|
||||
// efficient as a custom tp_free on the type, but it's easier to manage.
|
||||
// And it only runs when as all references to the type (and all instances) are
|
||||
// released, so it won't be used frequently.
|
||||
|
||||
extern int capsule_count;
|
||||
|
||||
template <typename T>
|
||||
void Capsule_destructor(PyObject *capsule)
|
||||
{
|
||||
capsule_count--;
|
||||
T pointer = static_cast<T>(PyCapsule_GetPointer(capsule, nullptr));
|
||||
delete pointer;
|
||||
pointer = nullptr;
|
||||
}
|
||||
|
||||
template <>
|
||||
inline void Capsule_destructor<SbkConverter *>(PyObject *capsule)
|
||||
{
|
||||
capsule_count--;
|
||||
SbkConverter *pointer = static_cast<SbkConverter *>(PyCapsule_GetPointer(capsule, nullptr));
|
||||
Shiboken::Conversions::deleteConverter(pointer);
|
||||
pointer = nullptr;
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
int set_cleanup_capsule_attr_for_pointer(PyTypeObject *type, const char *name, T pointer)
|
||||
{
|
||||
static_assert(std::is_pointer<T>::value, "T must be a pointer type");
|
||||
|
||||
if (!pointer) {
|
||||
PyErr_SetString(PyExc_RuntimeError, "Pointer is null");
|
||||
return -1;
|
||||
}
|
||||
auto capsule = PyCapsule_New(pointer, nullptr, Capsule_destructor<T>);
|
||||
if (!capsule)
|
||||
return -1; // Propagate the error
|
||||
|
||||
if (PyObject_SetAttrString(reinterpret_cast<PyObject *>(type), name, capsule) < 0)
|
||||
return -1; // Propagate the error
|
||||
|
||||
Py_DECREF(capsule);
|
||||
capsule_count++;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
#endif // PYSIDE_DYNAMIC_COMMON_P_H
|
||||
15
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysidedynamicenum_p.h
vendored
Normal file
15
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysidedynamicenum_p.h
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
// Copyright (C) 2025 Ford Motor Company
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDE_DYNAMIC_ENUM_P_H
|
||||
#define PYSIDE_DYNAMIC_ENUM_P_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
|
||||
#include <QtCore/qtclasshelpermacros.h>
|
||||
|
||||
QT_FORWARD_DECLARE_CLASS(QMetaEnum)
|
||||
|
||||
PyTypeObject *createEnumType(QMetaEnum *metaEnum);
|
||||
|
||||
#endif // PYSIDE_DYNAMIC_ENUM_P_H
|
||||
15
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysidedynamicpod_p.h
vendored
Normal file
15
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysidedynamicpod_p.h
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
// Copyright (C) 2025 Ford Motor Company
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDE_DYNAMIC_POD_P_H
|
||||
#define PYSIDE_DYNAMIC_POD_P_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
|
||||
#include <QtCore/qtclasshelpermacros.h>
|
||||
|
||||
QT_FORWARD_DECLARE_STRUCT(QMetaObject)
|
||||
|
||||
PyTypeObject *createPodType(QMetaObject *meta);
|
||||
|
||||
#endif // PYSIDE_DYNAMIC_POD_P_H
|
||||
27
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideinit.h
vendored
Normal file
27
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideinit.h
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
// Copyright (C) 2021 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDEINIT_H
|
||||
#define PYSIDEINIT_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
|
||||
#include <pysidemacros.h>
|
||||
|
||||
namespace PySide
|
||||
{
|
||||
|
||||
PYSIDE_API void init(PyObject *module);
|
||||
|
||||
/// Registers a dynamic "qt.conf" file with the Qt resource system.
|
||||
///
|
||||
/// This is used in a standalone build, to inform QLibraryInfo of the Qt prefix
|
||||
/// (where Qt libraries are installed) so that plugins can be successfully loaded.
|
||||
///
|
||||
/// This is also used if PySide runs from inside a conda environment to solve
|
||||
/// conflicts with the qt.conf installed by Anaconda Qt packages.
|
||||
PYSIDE_API bool registerInternalQtConf();
|
||||
|
||||
} //namespace PySide
|
||||
|
||||
#endif // PYSIDEINIT_H
|
||||
11
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysidelogging_p.h
vendored
Normal file
11
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysidelogging_p.h
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDE_LOGGING_P_H
|
||||
#define PYSIDE_LOGGING_P_H
|
||||
|
||||
#include <QtCore/qloggingcategory.h>
|
||||
|
||||
Q_DECLARE_LOGGING_CATEGORY(lcPySide)
|
||||
|
||||
#endif // PYSIDE_LOGGING_P_H
|
||||
18
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysidemacros.h
vendored
Normal file
18
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysidemacros.h
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
// Copyright (C) 2020 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDEMACROS_H
|
||||
#define PYSIDEMACROS_H
|
||||
|
||||
#include <shibokenmacros.h>
|
||||
|
||||
#define PYSIDE_EXPORT LIBSHIBOKEN_EXPORT
|
||||
#define PYSIDE_IMPORT LIBSHIBOKEN_IMPORT
|
||||
|
||||
#ifdef BUILD_LIBPYSIDE
|
||||
# define PYSIDE_API PYSIDE_EXPORT
|
||||
#else
|
||||
# define PYSIDE_API PYSIDE_IMPORT
|
||||
#endif
|
||||
|
||||
#endif // PYSIDEMACROS_H
|
||||
38
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysidemetafunction.h
vendored
Normal file
38
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysidemetafunction.h
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
// Copyright (C) 2016 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDE_METAFUNCTION_H
|
||||
#define PYSIDE_METAFUNCTION_H
|
||||
|
||||
#include <pysidemacros.h>
|
||||
|
||||
#include <sbkpython.h>
|
||||
|
||||
#include <QtCore/qobject.h>
|
||||
|
||||
extern "C"
|
||||
{
|
||||
extern PYSIDE_API PyTypeObject *PySideMetaFunction_TypeF(void);
|
||||
|
||||
struct PySideMetaFunctionPrivate;
|
||||
struct PYSIDE_API PySideMetaFunction
|
||||
{
|
||||
PyObject_HEAD
|
||||
PySideMetaFunctionPrivate *d;
|
||||
};
|
||||
}; //extern "C"
|
||||
|
||||
namespace PySide::MetaFunction {
|
||||
|
||||
/**
|
||||
* This function creates a MetaFunction object
|
||||
*
|
||||
* @param obj the QObject witch this fuction is part of
|
||||
* @param methodIndex The index of this function on MetaObject
|
||||
* @return Return a new reference of PySideMetaFunction
|
||||
**/
|
||||
PYSIDE_API PySideMetaFunction *newObject(QObject *obj, int methodIndex);
|
||||
|
||||
} //namespace PySide::MetaFunction
|
||||
|
||||
#endif
|
||||
25
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysidemetafunction_p.h
vendored
Normal file
25
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysidemetafunction_p.h
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
// Copyright (C) 2016 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDE_METAFUNCTION_P_H
|
||||
#define PYSIDE_METAFUNCTION_P_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
|
||||
#include <QtCore/qtconfigmacros.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QObject;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
namespace PySide::MetaFunction {
|
||||
|
||||
void init(PyObject *module);
|
||||
/**
|
||||
* Does a Qt metacall on a QObject
|
||||
*/
|
||||
bool call(QObject *self, int methodIndex, PyObject *args, PyObject **retVal = nullptr);
|
||||
|
||||
} //namespace PySide::MetaFunction
|
||||
|
||||
#endif
|
||||
26
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysidemetatype.h
vendored
Normal file
26
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysidemetatype.h
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDEMETATYPE_H
|
||||
#define PYSIDEMETATYPE_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
|
||||
#include <pysidemacros.h>
|
||||
|
||||
#include <QtCore/qtconfigmacros.h>
|
||||
|
||||
QT_FORWARD_DECLARE_CLASS(QMetaType)
|
||||
|
||||
namespace PySide
|
||||
{
|
||||
|
||||
/// Returns the QMetaType matching a PyTypeObject
|
||||
/// \param
|
||||
/// \param type TypeObject
|
||||
/// \return QMetaType
|
||||
PYSIDE_API QMetaType qMetaTypeFromPyType(PyTypeObject *type);
|
||||
|
||||
} //namespace PySide
|
||||
|
||||
#endif // PYSIDEMETATYPE_H
|
||||
73
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideproperty.h
vendored
Normal file
73
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideproperty.h
vendored
Normal file
@@ -0,0 +1,73 @@
|
||||
// Copyright (C) 2016 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDE_PROPERTY_H
|
||||
#define PYSIDE_PROPERTY_H
|
||||
|
||||
#include <pysidemacros.h>
|
||||
|
||||
#include <sbkpython.h>
|
||||
|
||||
#include <QtCore/qmetaobject.h>
|
||||
|
||||
class PySidePropertyPrivate;
|
||||
|
||||
extern "C"
|
||||
{
|
||||
extern PYSIDE_API PyTypeObject *PySideProperty_TypeF(void);
|
||||
|
||||
struct PYSIDE_API PySideProperty
|
||||
{
|
||||
PyObject_HEAD
|
||||
PySidePropertyPrivate* d;
|
||||
};
|
||||
};
|
||||
|
||||
namespace PySide::Property {
|
||||
|
||||
PYSIDE_API bool checkType(PyObject *pyObj);
|
||||
|
||||
/**
|
||||
* This function call set property function and pass value as arg
|
||||
* This function does not check the property object type
|
||||
*
|
||||
* @param self The property object
|
||||
* @param source The QObject witch has the property
|
||||
* @param value The value to set in property
|
||||
* @return Return 0 if ok or -1 if this function fail
|
||||
**/
|
||||
PYSIDE_API int setValue(PySideProperty *self, PyObject *source, PyObject *value);
|
||||
|
||||
/**
|
||||
* This function call get property function
|
||||
* This function does not check the property object type
|
||||
*
|
||||
* @param self The property object
|
||||
* @param source The QObject witch has the property
|
||||
* @return Return the result of property get function or 0 if this fail
|
||||
**/
|
||||
PYSIDE_API PyObject *getValue(PySideProperty *self, PyObject *source);
|
||||
|
||||
/**
|
||||
* This function return the notify name used on this property
|
||||
*
|
||||
* @param self The property object
|
||||
* @return Return a const char with the notify name used
|
||||
**/
|
||||
PYSIDE_API const char *getNotifyName(PySideProperty *self);
|
||||
|
||||
|
||||
/**
|
||||
* This function search in the source object for desired property
|
||||
*
|
||||
* @param source The QObject object
|
||||
* @param name The property name
|
||||
* @return Return a new reference to property object
|
||||
**/
|
||||
PYSIDE_API PySideProperty *getObject(PyObject *source, PyObject *name);
|
||||
|
||||
PYSIDE_API void setTypeName(PySideProperty *self, const char *typeName);
|
||||
|
||||
} //namespace PySide::Property
|
||||
|
||||
#endif
|
||||
169
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideproperty_p.h
vendored
Normal file
169
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideproperty_p.h
vendored
Normal file
@@ -0,0 +1,169 @@
|
||||
// Copyright (C) 2016 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDE_QPROPERTY_P_H
|
||||
#define PYSIDE_QPROPERTY_P_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
|
||||
#include "pysideproperty.h"
|
||||
#include <pysidemacros.h>
|
||||
|
||||
#include <QtCore/qbytearray.h>
|
||||
#include <QtCore/qtclasshelpermacros.h>
|
||||
#include <QtCore/qmetaobject.h>
|
||||
|
||||
struct PySideProperty;
|
||||
|
||||
class PYSIDE_API PySidePropertyPrivate
|
||||
{
|
||||
public:
|
||||
|
||||
Q_DISABLE_COPY_MOVE(PySidePropertyPrivate)
|
||||
|
||||
PySidePropertyPrivate() noexcept;
|
||||
virtual ~PySidePropertyPrivate();
|
||||
|
||||
virtual void metaCall(PyObject *source, QMetaObject::Call call, void **args);
|
||||
|
||||
PyObject *getValue(PyObject *source) const;
|
||||
int setValue(PyObject *source, PyObject *value);
|
||||
int reset(PyObject *source);
|
||||
|
||||
QByteArray typeName;
|
||||
// Type object: A real PyTypeObject ("@Property(int)") or a string
|
||||
// "@Property('QVariant')".
|
||||
PyObject *pyTypeObject = nullptr;
|
||||
PyObject *fget = nullptr;
|
||||
PyObject *fset = nullptr;
|
||||
PyObject *freset = nullptr;
|
||||
PyObject *fdel = nullptr;
|
||||
PyObject *notify = nullptr;
|
||||
bool getter_doc = false;
|
||||
QByteArray notifySignature;
|
||||
QByteArray doc;
|
||||
bool designable = true;
|
||||
bool scriptable = true;
|
||||
bool stored = true;
|
||||
bool user = false;
|
||||
bool constant = false;
|
||||
bool final = false;
|
||||
};
|
||||
|
||||
namespace PySide::Property {
|
||||
|
||||
/**
|
||||
* Init PySide QProperty support system
|
||||
*/
|
||||
void init(PyObject* module);
|
||||
|
||||
/**
|
||||
* This function call reset property function
|
||||
* This function does not check the property object type
|
||||
*
|
||||
* @param self The property object
|
||||
* @param source The QObject witch has the property
|
||||
* @return Return 0 if ok or -1 if this function fail
|
||||
**/
|
||||
int reset(PySideProperty* self, PyObject* source);
|
||||
|
||||
|
||||
/**
|
||||
* This function return the property type
|
||||
* This function does not check the property object type
|
||||
*
|
||||
* @param self The property object
|
||||
* @return Return the property type name
|
||||
**/
|
||||
const char* getTypeName(const PySideProperty* self);
|
||||
|
||||
/**
|
||||
* This function check if property has read function
|
||||
* This function does not check the property object type
|
||||
*
|
||||
* @param self The property object
|
||||
* @return Return a boolean value
|
||||
**/
|
||||
bool isReadable(const PySideProperty* self);
|
||||
|
||||
/**
|
||||
* This function check if property has write function
|
||||
* This function does not check the property object type
|
||||
*
|
||||
* @param self The property object
|
||||
* @return Return a boolean value
|
||||
**/
|
||||
bool isWritable(const PySideProperty* self);
|
||||
|
||||
/**
|
||||
* This function check if property has reset function
|
||||
* This function does not check the property object type
|
||||
*
|
||||
* @param self The property object
|
||||
* @return Return a boolean value
|
||||
**/
|
||||
bool hasReset(const PySideProperty* self);
|
||||
|
||||
/**
|
||||
* This function check if property has the flag DESIGNABLE setted
|
||||
* This function does not check the property object type
|
||||
*
|
||||
* @param self The property object
|
||||
* @return Return a boolean value
|
||||
**/
|
||||
bool isDesignable(const PySideProperty* self);
|
||||
|
||||
/**
|
||||
* This function check if property has the flag SCRIPTABLE setted
|
||||
* This function does not check the property object type
|
||||
*
|
||||
* @param self The property object
|
||||
* @return Return a boolean value
|
||||
**/
|
||||
bool isScriptable(const PySideProperty* self);
|
||||
|
||||
/**
|
||||
* This function check if property has the flag STORED setted
|
||||
* This function does not check the property object type
|
||||
*
|
||||
* @param self The property object
|
||||
* @return Return a boolean value
|
||||
**/
|
||||
bool isStored(const PySideProperty* self);
|
||||
|
||||
/**
|
||||
* This function check if property has the flag USER setted
|
||||
* This function does not check the property object type
|
||||
*
|
||||
* @param self The property object
|
||||
* @return Return a boolean value
|
||||
**/
|
||||
bool isUser(const PySideProperty* self);
|
||||
|
||||
/**
|
||||
* This function check if property has the flag CONSTANT setted
|
||||
* This function does not check the property object type
|
||||
*
|
||||
* @param self The property object
|
||||
* @return Return a boolean value
|
||||
**/
|
||||
bool isConstant(const PySideProperty* self);
|
||||
|
||||
/**
|
||||
* This function check if property has the flag FINAL setted
|
||||
* This function does not check the property object type
|
||||
*
|
||||
* @param self The property object
|
||||
* @return Return a boolean value
|
||||
**/
|
||||
bool isFinal(const PySideProperty* self);
|
||||
|
||||
/// This function returns the type object of the property. It is either a real
|
||||
/// PyTypeObject ("@Property(int)") or a string "@Property('QVariant')".
|
||||
/// @param self The property object
|
||||
/// @return type object
|
||||
PyObject *getTypeObject(const PySideProperty* self);
|
||||
|
||||
} // namespace PySide::Property
|
||||
|
||||
#endif
|
||||
19
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideqapp.h
vendored
Normal file
19
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideqapp.h
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
// Copyright (C) 2021 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDEQAPP_H
|
||||
#define PYSIDEQAPP_H
|
||||
|
||||
#include <pysidemacros.h>
|
||||
|
||||
namespace PySide
|
||||
{
|
||||
|
||||
PYSIDE_API void initQApp();
|
||||
|
||||
/// Destroy a QCoreApplication taking care of destroy all instances of QObject first.
|
||||
PYSIDE_API void destroyQCoreApplication();
|
||||
|
||||
} //namespace PySide
|
||||
|
||||
#endif // PYSIDEQPP_H
|
||||
39
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideqenum.h
vendored
Normal file
39
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideqenum.h
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
// Copyright (C) 2020 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDE_QENUM_H
|
||||
#define PYSIDE_QENUM_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
|
||||
#include <pysidemacros.h>
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include <QtCore/qbytearray.h>
|
||||
|
||||
QT_FORWARD_DECLARE_CLASS(QMetaType)
|
||||
|
||||
namespace PySide::QEnum {
|
||||
|
||||
// PYSIDE-957: Support the QEnum macro
|
||||
PYSIDE_API PyObject *QEnumMacro(PyObject *, bool);
|
||||
PYSIDE_API int isFlag(PyObject *);
|
||||
PYSIDE_API std::vector<PyObject *> resolveDelayedQEnums(PyTypeObject *);
|
||||
PYSIDE_API void init();
|
||||
|
||||
|
||||
// PYSIDE-2840: For an enum registered in Qt, return the C++ name.
|
||||
// Ignore flags here; their underlying enums are of Python type flags anyways.
|
||||
PYSIDE_API QByteArray getTypeName(PyTypeObject *type);
|
||||
|
||||
// Create a QMetaType for a decorated Python enum (int), enabling
|
||||
// modification of properties by Qt Widgets Designer.
|
||||
QMetaType createGenericEnumMetaType(const QByteArray &name, PyTypeObject *pyType);
|
||||
|
||||
// Like createGenericEnumMetaType(), but for "unsigned long long".
|
||||
QMetaType createGenericEnum64MetaType(const QByteArray &name, PyTypeObject *pyType);
|
||||
|
||||
} // namespace PySide::QEnum
|
||||
|
||||
#endif
|
||||
24
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideqhash.h
vendored
Normal file
24
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideqhash.h
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
// Copyright (C) 2021 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDEQHASH_H
|
||||
#define PYSIDEQHASH_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
|
||||
#include <QtCore/qhash.h>
|
||||
|
||||
namespace PySide
|
||||
{
|
||||
|
||||
/// Hash function used to enable hash on objects not supported by the native Qt
|
||||
/// library which have a toString() function.
|
||||
template<class T>
|
||||
[[deprecated]] inline Py_ssize_t hash(const T& value)
|
||||
{
|
||||
return qHash(value.toString());
|
||||
}
|
||||
|
||||
} //namespace PySide
|
||||
|
||||
#endif // PYSIDEQHASH_H
|
||||
35
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideqmetatype.h
vendored
Normal file
35
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideqmetatype.h
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
// Copyright (C) 2021 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDEQMETATYPE_H
|
||||
#define PYSIDEQMETATYPE_H
|
||||
|
||||
#include <QtCore/qmetatype.h>
|
||||
|
||||
namespace PySide
|
||||
{
|
||||
|
||||
/// If the type \p T was registered on Qt meta type system with Q_DECLARE_METATYPE macro,
|
||||
/// this class will initialize the meta type.
|
||||
///
|
||||
/// Initialize a meta type means register it on Qt meta type system, Qt itself only do this
|
||||
/// on the first call of qMetaTypeId, and this is exactly what we do to init it. If we don't
|
||||
/// do that, calls to QMetaType::type("QMatrix2x2") could return zero, causing QVariant to
|
||||
/// not recognize some C++ types, like QMatrix2x2.
|
||||
|
||||
template<typename T, bool OK = QMetaTypeId<T>::Defined >
|
||||
struct initQtMetaType {
|
||||
initQtMetaType()
|
||||
{
|
||||
qMetaTypeId<T>();
|
||||
}
|
||||
};
|
||||
|
||||
// Template specialization to do nothing when the type wasn't registered on Qt meta type system.
|
||||
template<typename T>
|
||||
struct initQtMetaType<T, false> {
|
||||
};
|
||||
|
||||
} //namespace PySide
|
||||
|
||||
#endif // PYSIDEQMETATYPE_H
|
||||
18
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideqml.h
vendored
Normal file
18
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideqml.h
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
// Copyright (C) 2021 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDEQML_H
|
||||
#define PYSIDEQML_H
|
||||
|
||||
#include "pysideqmlmacros.h"
|
||||
|
||||
#include <sbkpython.h>
|
||||
|
||||
namespace PySide::Qml
|
||||
{
|
||||
|
||||
PYSIDEQML_API void init(PyObject *module);
|
||||
|
||||
} //namespace PySide::Qml
|
||||
|
||||
#endif // PYSIDEQML_H
|
||||
28
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideqmlattached.h
vendored
Normal file
28
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideqmlattached.h
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDEQMLATTACHED_H
|
||||
#define PYSIDEQMLATTACHED_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
|
||||
#include "pysideqmlmacros.h"
|
||||
|
||||
#include <QtCore/qtconfigmacros.h>
|
||||
|
||||
QT_FORWARD_DECLARE_CLASS(QObject)
|
||||
|
||||
namespace PySide::Qml
|
||||
{
|
||||
|
||||
/// PySide implementation of qmlAttachedPropertiesObject<T> function.
|
||||
/// \param typeObject attaching type
|
||||
/// \param obj attachee
|
||||
/// \param create Whether to create the Attachment object
|
||||
/// \return Attachment object instance
|
||||
PYSIDEQML_API QObject *qmlAttachedPropertiesObject(PyObject *typeObject, QObject *obj,
|
||||
bool create = true);
|
||||
|
||||
} // namespace PySide::Qml
|
||||
|
||||
#endif // PYSIDEQMLATTACHED_H
|
||||
21
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideqmlattached_p.h
vendored
Normal file
21
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideqmlattached_p.h
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDEQMLATTACHED_P_H
|
||||
#define PYSIDEQMLATTACHED_P_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
|
||||
#include <memory>
|
||||
|
||||
namespace PySide::Qml {
|
||||
struct QmlExtensionInfo;
|
||||
struct QmlTypeInfo;
|
||||
|
||||
void initQmlAttached(PyObject *module);
|
||||
|
||||
PySide::Qml::QmlExtensionInfo qmlAttachedInfo(PyTypeObject *t,
|
||||
const std::shared_ptr<QmlTypeInfo> &info);
|
||||
} // namespace PySide::Qml
|
||||
|
||||
#endif // PYSIDEQMLATTACHED_P_H
|
||||
21
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideqmlextended_p.h
vendored
Normal file
21
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideqmlextended_p.h
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDEQMLEXTENDED_P_H
|
||||
#define PYSIDEQMLEXTENDED_P_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
|
||||
#include <memory>
|
||||
|
||||
namespace PySide::Qml {
|
||||
struct QmlExtensionInfo;
|
||||
struct QmlTypeInfo;
|
||||
|
||||
void initQmlExtended(PyObject *module);
|
||||
|
||||
PySide::Qml::QmlExtensionInfo qmlExtendedInfo(PyObject *t,
|
||||
const std::shared_ptr<QmlTypeInfo> &info);
|
||||
} // namespace PySide::Qml
|
||||
|
||||
#endif // PYSIDEQMLEXTENDED_P_H
|
||||
17
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideqmlforeign_p.h
vendored
Normal file
17
etl_billiards/dist/ETL_Manager/_internal/PySide6/include/pysideqmlforeign_p.h
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
// Copyright (C) 2022 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
#ifndef PYSIDEQMLFOREIGN_P_H
|
||||
#define PYSIDEQMLFOREIGN_P_H
|
||||
|
||||
#include <sbkpython.h>
|
||||
|
||||
namespace PySide::Qml {
|
||||
struct QmlExtensionInfo;
|
||||
struct QmlTypeInfo;
|
||||
|
||||
void initQmlForeign(PyObject *module);
|
||||
|
||||
} // namespace PySide::Qml
|
||||
|
||||
#endif // PYSIDEQMLFOREIGN_P_H
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user