PySide6-Examples 6.7.0__cp39-abi3-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- PySide6/Qt3DAnimation.pyi +490 -0
- PySide6/Qt3DCore.pyi +600 -0
- PySide6/Qt3DExtras.pyi +1048 -0
- PySide6/Qt3DInput.pyi +403 -0
- PySide6/Qt3DLogic.pyi +41 -0
- PySide6/Qt3DRender.pyi +2434 -0
- PySide6/QtAxContainer.pyi +223 -0
- PySide6/QtBluetooth.pyi +1434 -0
- PySide6/QtCharts.pyi +1687 -0
- PySide6/QtConcurrent.pyi +123 -0
- PySide6/QtCore.pyi +10400 -0
- PySide6/QtDBus.pyi +719 -0
- PySide6/QtDataVisualization.pyi +1462 -0
- PySide6/QtDesigner.pyi +599 -0
- PySide6/QtGraphs.pyi +1997 -0
- PySide6/QtGui.pyi +10976 -0
- PySide6/QtHelp.pyi +325 -0
- PySide6/QtHttpServer.pyi +254 -0
- PySide6/QtLocation.pyi +1003 -0
- PySide6/QtMultimedia.pyi +1408 -0
- PySide6/QtMultimediaWidgets.pyi +68 -0
- PySide6/QtNetwork.pyi +2579 -0
- PySide6/QtNetworkAuth.pyi +329 -0
- PySide6/QtNfc.pyi +371 -0
- PySide6/QtOpenGL.pyi +14082 -0
- PySide6/QtOpenGLWidgets.pyi +81 -0
- PySide6/QtPdf.pyi +319 -0
- PySide6/QtPdfWidgets.pyi +100 -0
- PySide6/QtPositioning.pyi +592 -0
- PySide6/QtPrintSupport.pyi +389 -0
- PySide6/QtQml.pyi +1022 -0
- PySide6/QtQuick.pyi +1519 -0
- PySide6/QtQuick3D.pyi +291 -0
- PySide6/QtQuickControls2.pyi +35 -0
- PySide6/QtQuickTest.pyi +27 -0
- PySide6/QtQuickWidgets.pyi +94 -0
- PySide6/QtRemoteObjects.pyi +286 -0
- PySide6/QtScxml.pyi +329 -0
- PySide6/QtSensors.pyi +662 -0
- PySide6/QtSerialBus.pyi +597 -0
- PySide6/QtSerialPort.pyi +187 -0
- PySide6/QtSpatialAudio.pyi +242 -0
- PySide6/QtSql.pyi +685 -0
- PySide6/QtStateMachine.pyi +295 -0
- PySide6/QtSvg.pyi +122 -0
- PySide6/QtSvgWidgets.pyi +65 -0
- PySide6/QtTest.pyi +362 -0
- PySide6/QtTextToSpeech.pyi +182 -0
- PySide6/QtUiTools.pyi +57 -0
- PySide6/QtWebChannel.pyi +52 -0
- PySide6/QtWebEngineCore.pyi +1089 -0
- PySide6/QtWebEngineQuick.pyi +100 -0
- PySide6/QtWebEngineWidgets.pyi +99 -0
- PySide6/QtWebSockets.pyi +237 -0
- PySide6/QtWidgets.pyi +9553 -0
- PySide6/QtXml.pyi +452 -0
- PySide6/__feature__.pyi +10 -0
- PySide6/__init__.py +124 -0
- PySide6/_config.py +17 -0
- PySide6/_git_pyside_version.py +19 -0
- PySide6/examples/3d/simple3d/doc/simple3d.png +0 -0
- PySide6/examples/3d/simple3d/doc/simple3d.rst +8 -0
- PySide6/examples/3d/simple3d/simple3d.py +127 -0
- PySide6/examples/3d/simple3d/simple3d.pyproject +3 -0
- PySide6/examples/async/eratosthenes/doc/eratosthenes.rst +39 -0
- PySide6/examples/async/eratosthenes/doc/eratosthenes.svg +1 -0
- PySide6/examples/async/eratosthenes/eratosthenes.pyproject +3 -0
- PySide6/examples/async/eratosthenes/eratosthenes_asyncio.py +134 -0
- PySide6/examples/async/eratosthenes/eratosthenes_trio.py +197 -0
- PySide6/examples/async/eratosthenes/requirements_trio.txt +2 -0
- PySide6/examples/async/minimal/doc/minimal.png +0 -0
- PySide6/examples/async/minimal/doc/minimal.rst +38 -0
- PySide6/examples/async/minimal/minimal.pyproject +3 -0
- PySide6/examples/async/minimal/minimal_asyncio.py +40 -0
- PySide6/examples/async/minimal/minimal_trio.py +107 -0
- PySide6/examples/async/minimal/requirements_trio.txt +1 -0
- PySide6/examples/axcontainer/axviewer/axviewer.py +47 -0
- PySide6/examples/axcontainer/axviewer/axviewer.pyproject +3 -0
- PySide6/examples/axcontainer/axviewer/doc/axviewer.png +0 -0
- PySide6/examples/axcontainer/axviewer/doc/axviewer.rst +9 -0
- PySide6/examples/bluetooth/btscanner/btscanner.pyproject +3 -0
- PySide6/examples/bluetooth/btscanner/device.py +130 -0
- PySide6/examples/bluetooth/btscanner/device.ui +111 -0
- PySide6/examples/bluetooth/btscanner/doc/btscanner.rst +4 -0
- PySide6/examples/bluetooth/btscanner/main.py +17 -0
- PySide6/examples/bluetooth/btscanner/service.py +48 -0
- PySide6/examples/bluetooth/btscanner/service.ui +71 -0
- PySide6/examples/bluetooth/btscanner/ui_device.py +90 -0
- PySide6/examples/bluetooth/btscanner/ui_service.py +57 -0
- PySide6/examples/bluetooth/heartrate_game/HeartRateGame/App.qml +99 -0
- PySide6/examples/bluetooth/heartrate_game/HeartRateGame/BluetoothAlarmDialog.qml +79 -0
- PySide6/examples/bluetooth/heartrate_game/HeartRateGame/BottomLine.qml +12 -0
- PySide6/examples/bluetooth/heartrate_game/HeartRateGame/Connect.qml +159 -0
- PySide6/examples/bluetooth/heartrate_game/HeartRateGame/GameButton.qml +39 -0
- PySide6/examples/bluetooth/heartrate_game/HeartRateGame/GamePage.qml +36 -0
- PySide6/examples/bluetooth/heartrate_game/HeartRateGame/GameSettings.qml +51 -0
- PySide6/examples/bluetooth/heartrate_game/HeartRateGame/Main.qml +71 -0
- PySide6/examples/bluetooth/heartrate_game/HeartRateGame/Measure.qml +212 -0
- PySide6/examples/bluetooth/heartrate_game/HeartRateGame/SplashScreen.qml +30 -0
- PySide6/examples/bluetooth/heartrate_game/HeartRateGame/Stats.qml +55 -0
- PySide6/examples/bluetooth/heartrate_game/HeartRateGame/StatsLabel.qml +34 -0
- PySide6/examples/bluetooth/heartrate_game/HeartRateGame/TitleBar.qml +54 -0
- PySide6/examples/bluetooth/heartrate_game/HeartRateGame/images/bt_off_to_on.png +0 -0
- PySide6/examples/bluetooth/heartrate_game/HeartRateGame/images/heart.png +0 -0
- PySide6/examples/bluetooth/heartrate_game/HeartRateGame/images/logo.png +0 -0
- PySide6/examples/bluetooth/heartrate_game/HeartRateGame/qmldir +14 -0
- PySide6/examples/bluetooth/heartrate_game/bluetoothbaseclass.py +40 -0
- PySide6/examples/bluetooth/heartrate_game/connectionhandler.py +77 -0
- PySide6/examples/bluetooth/heartrate_game/devicefinder.py +139 -0
- PySide6/examples/bluetooth/heartrate_game/devicehandler.py +309 -0
- PySide6/examples/bluetooth/heartrate_game/deviceinfo.py +38 -0
- PySide6/examples/bluetooth/heartrate_game/doc/heartrate_game.rst +11 -0
- PySide6/examples/bluetooth/heartrate_game/heartrate_game.pyproject +23 -0
- PySide6/examples/bluetooth/heartrate_game/heartrate_global.py +30 -0
- PySide6/examples/bluetooth/heartrate_game/main.py +53 -0
- PySide6/examples/bluetooth/heartrate_server/doc/heartrate_server.rst +8 -0
- PySide6/examples/bluetooth/heartrate_server/heartrate_server.py +95 -0
- PySide6/examples/bluetooth/heartrate_server/heartrate_server.pyproject +3 -0
- PySide6/examples/bluetooth/lowenergyscanner/Scanner/Characteristics.qml +121 -0
- PySide6/examples/bluetooth/lowenergyscanner/Scanner/Devices.qml +121 -0
- PySide6/examples/bluetooth/lowenergyscanner/Scanner/Dialog.qml +48 -0
- PySide6/examples/bluetooth/lowenergyscanner/Scanner/Header.qml +25 -0
- PySide6/examples/bluetooth/lowenergyscanner/Scanner/Label.qml +16 -0
- PySide6/examples/bluetooth/lowenergyscanner/Scanner/Main.qml +31 -0
- PySide6/examples/bluetooth/lowenergyscanner/Scanner/Menu.qml +55 -0
- PySide6/examples/bluetooth/lowenergyscanner/Scanner/Services.qml +115 -0
- PySide6/examples/bluetooth/lowenergyscanner/Scanner/assets/busy_dark.png +0 -0
- PySide6/examples/bluetooth/lowenergyscanner/Scanner/qmldir +10 -0
- PySide6/examples/bluetooth/lowenergyscanner/characteristicinfo.py +87 -0
- PySide6/examples/bluetooth/lowenergyscanner/device.py +278 -0
- PySide6/examples/bluetooth/lowenergyscanner/deviceinfo.py +34 -0
- PySide6/examples/bluetooth/lowenergyscanner/doc/lowenergyscanner.png +0 -0
- PySide6/examples/bluetooth/lowenergyscanner/doc/lowenergyscanner.rst +11 -0
- PySide6/examples/bluetooth/lowenergyscanner/lowenergyscanner.pyproject +7 -0
- PySide6/examples/bluetooth/lowenergyscanner/main.py +27 -0
- PySide6/examples/bluetooth/lowenergyscanner/serviceinfo.py +64 -0
- PySide6/examples/charts/areachart/areachart.py +67 -0
- PySide6/examples/charts/areachart/areachart.pyproject +3 -0
- PySide6/examples/charts/areachart/doc/areachart.png +0 -0
- PySide6/examples/charts/areachart/doc/areachart.rst +8 -0
- PySide6/examples/charts/audio/audio.py +90 -0
- PySide6/examples/charts/audio/audio.pyproject +3 -0
- PySide6/examples/charts/audio/doc/audio.png +0 -0
- PySide6/examples/charts/audio/doc/audio.rst +8 -0
- PySide6/examples/charts/barchart/barchart.py +69 -0
- PySide6/examples/charts/barchart/barchart.pyproject +3 -0
- PySide6/examples/charts/barchart/doc/barchart.png +0 -0
- PySide6/examples/charts/barchart/doc/barchart.rst +8 -0
- PySide6/examples/charts/callout/callout.py +220 -0
- PySide6/examples/charts/callout/callout.pyproject +3 -0
- PySide6/examples/charts/callout/doc/callout.png +0 -0
- PySide6/examples/charts/callout/doc/callout.rst +8 -0
- PySide6/examples/charts/chartthemes/README.md +9 -0
- PySide6/examples/charts/chartthemes/chartthemes.pyproject +3 -0
- PySide6/examples/charts/chartthemes/doc/chartthemes.png +0 -0
- PySide6/examples/charts/chartthemes/doc/chartthemes.rst +11 -0
- PySide6/examples/charts/chartthemes/main.py +339 -0
- PySide6/examples/charts/chartthemes/themewidget.ui +103 -0
- PySide6/examples/charts/chartthemes/ui_themewidget.py +91 -0
- PySide6/examples/charts/donutbreakdown/doc/donutbreakdown.png +0 -0
- PySide6/examples/charts/donutbreakdown/doc/donutbreakdown.rst +8 -0
- PySide6/examples/charts/donutbreakdown/donutbreakdown.py +148 -0
- PySide6/examples/charts/donutbreakdown/donutbreakdown.pyproject +3 -0
- PySide6/examples/charts/dynamicspline/chart.py +52 -0
- PySide6/examples/charts/dynamicspline/doc/dynamicspline.rst +15 -0
- PySide6/examples/charts/dynamicspline/doc/dynamicspline1.png +0 -0
- PySide6/examples/charts/dynamicspline/doc/dynamicspline2.png +0 -0
- PySide6/examples/charts/dynamicspline/dynamicspline.pyproject +3 -0
- PySide6/examples/charts/dynamicspline/main.py +27 -0
- PySide6/examples/charts/legend/doc/legend.png +0 -0
- PySide6/examples/charts/legend/doc/legend.rst +20 -0
- PySide6/examples/charts/legend/legend.py +224 -0
- PySide6/examples/charts/legend/legend.pyproject +3 -0
- PySide6/examples/charts/lineandbar/doc/lineandbar.png +0 -0
- PySide6/examples/charts/lineandbar/doc/lineandbar.rst +11 -0
- PySide6/examples/charts/lineandbar/lineandbar.py +81 -0
- PySide6/examples/charts/lineandbar/lineandbar.pyproject +3 -0
- PySide6/examples/charts/linechart/doc/linechart.png +0 -0
- PySide6/examples/charts/linechart/doc/linechart.rst +8 -0
- PySide6/examples/charts/linechart/linechart.py +47 -0
- PySide6/examples/charts/linechart/linechart.pyproject +3 -0
- PySide6/examples/charts/logvalueaxis/doc/logvalueaxis.png +0 -0
- PySide6/examples/charts/logvalueaxis/doc/logvalueaxis.rst +8 -0
- PySide6/examples/charts/logvalueaxis/logvalueaxis.py +57 -0
- PySide6/examples/charts/logvalueaxis/logvalueaxis.pyproject +3 -0
- PySide6/examples/charts/memoryusage/doc/memoryusage.png +0 -0
- PySide6/examples/charts/memoryusage/doc/memoryusage.rst +9 -0
- PySide6/examples/charts/memoryusage/memoryusage.py +92 -0
- PySide6/examples/charts/memoryusage/memoryusage.pyproject +3 -0
- PySide6/examples/charts/modeldata/doc/modeldata.png +0 -0
- PySide6/examples/charts/modeldata/doc/modeldata.rst +9 -0
- PySide6/examples/charts/modeldata/modeldata.py +141 -0
- PySide6/examples/charts/modeldata/modeldata.pyproject +3 -0
- PySide6/examples/charts/nesteddonuts/doc/nesteddonuts.png +0 -0
- PySide6/examples/charts/nesteddonuts/doc/nesteddonuts.rst +7 -0
- PySide6/examples/charts/nesteddonuts/nesteddonuts.py +100 -0
- PySide6/examples/charts/nesteddonuts/nesteddonuts.pyproject +3 -0
- PySide6/examples/charts/percentbarchart/doc/percentbarchart.png +0 -0
- PySide6/examples/charts/percentbarchart/doc/percentbarchart.rst +17 -0
- PySide6/examples/charts/percentbarchart/percentbarchart.py +63 -0
- PySide6/examples/charts/percentbarchart/percentbarchart.pyproject +3 -0
- PySide6/examples/charts/piechart/doc/piechart.png +0 -0
- PySide6/examples/charts/piechart/doc/piechart.rst +8 -0
- PySide6/examples/charts/piechart/piechart.py +50 -0
- PySide6/examples/charts/piechart/piechart.pyproject +3 -0
- PySide6/examples/charts/pointconfiguration/chartwindow.py +156 -0
- PySide6/examples/charts/pointconfiguration/doc/pointconfiguration.png +0 -0
- PySide6/examples/charts/pointconfiguration/doc/pointconfiguration.rst +144 -0
- PySide6/examples/charts/pointconfiguration/pointconfiguration.py +17 -0
- PySide6/examples/charts/pointconfiguration/pointconfiguration.pyproject +3 -0
- PySide6/examples/charts/pointselectionandmarkers/doc/pointselectionandmarkers.png +0 -0
- PySide6/examples/charts/pointselectionandmarkers/doc/pointselectionandmarkers.rst +72 -0
- PySide6/examples/charts/pointselectionandmarkers/images/blue_triangle.png +0 -0
- PySide6/examples/charts/pointselectionandmarkers/images/green_triangle.png +0 -0
- PySide6/examples/charts/pointselectionandmarkers/markers.qrc +6 -0
- PySide6/examples/charts/pointselectionandmarkers/pointselectionandmarkers.py +128 -0
- PySide6/examples/charts/pointselectionandmarkers/pointselectionandmarkers.pyproject +3 -0
- PySide6/examples/charts/pointselectionandmarkers/rc_markers.py +275 -0
- PySide6/examples/charts/pointselectionandmarkers/utilities.py +77 -0
- PySide6/examples/charts/qmlpolarchart/View1.qml +52 -0
- PySide6/examples/charts/qmlpolarchart/View2.qml +73 -0
- PySide6/examples/charts/qmlpolarchart/View3.qml +60 -0
- PySide6/examples/charts/qmlpolarchart/doc/qmlpolarchart.png +0 -0
- PySide6/examples/charts/qmlpolarchart/doc/qmlpolarchart.rst +8 -0
- PySide6/examples/charts/qmlpolarchart/main.qml +63 -0
- PySide6/examples/charts/qmlpolarchart/qmlpolarchart.py +28 -0
- PySide6/examples/charts/qmlpolarchart/qmlpolarchart.pyproject +3 -0
- PySide6/examples/charts/temperaturerecords/doc/temperaturerecords.png +0 -0
- PySide6/examples/charts/temperaturerecords/doc/temperaturerecords.rst +10 -0
- PySide6/examples/charts/temperaturerecords/temperaturerecords.py +60 -0
- PySide6/examples/charts/temperaturerecords/temperaturerecords.pyproject +3 -0
- PySide6/examples/corelib/ipc/sharedmemory/dialog.py +93 -0
- PySide6/examples/corelib/ipc/sharedmemory/dialog.ui +47 -0
- PySide6/examples/corelib/ipc/sharedmemory/image.png +0 -0
- PySide6/examples/corelib/ipc/sharedmemory/main.py +15 -0
- PySide6/examples/corelib/ipc/sharedmemory/qt.png +0 -0
- PySide6/examples/corelib/ipc/sharedmemory/sharedmemory.pyproject +3 -0
- PySide6/examples/corelib/ipc/sharedmemory/ui_dialog.py +57 -0
- PySide6/examples/corelib/mimetypesbrowser/doc/mimetypesbrowser.png +0 -0
- PySide6/examples/corelib/mimetypesbrowser/doc/mimetypesbrowser.rst +10 -0
- PySide6/examples/corelib/mimetypesbrowser/mainwindow.py +161 -0
- PySide6/examples/corelib/mimetypesbrowser/mimetypemodel.py +136 -0
- PySide6/examples/corelib/mimetypesbrowser/mimetypesbrowser.py +24 -0
- PySide6/examples/corelib/mimetypesbrowser/mimetypesbrowser.pyproject +3 -0
- PySide6/examples/corelib/settingseditor/doc/settingseditor.png +0 -0
- PySide6/examples/corelib/settingseditor/doc/settingseditor.rst +10 -0
- PySide6/examples/corelib/settingseditor/settingseditor.py +753 -0
- PySide6/examples/corelib/settingseditor/settingseditor.pyproject +3 -0
- PySide6/examples/corelib/threads/doc/threads.png +0 -0
- PySide6/examples/corelib/threads/doc/threads.rst +10 -0
- PySide6/examples/corelib/threads/mandelbrot.py +352 -0
- PySide6/examples/corelib/threads/threads.pyproject +3 -0
- PySide6/examples/datavisualization/bars3d/bars3d.py +80 -0
- PySide6/examples/datavisualization/bars3d/bars3d.pyproject +3 -0
- PySide6/examples/datavisualization/bars3d/doc/bars3d.png +0 -0
- PySide6/examples/datavisualization/bars3d/doc/bars3d.rst +8 -0
- PySide6/examples/datavisualization/graphgallery/axesinputhandler.py +101 -0
- PySide6/examples/datavisualization/graphgallery/bargraph.py +276 -0
- PySide6/examples/datavisualization/graphgallery/custominputhandler.py +177 -0
- PySide6/examples/datavisualization/graphgallery/data/layer_1.png +0 -0
- PySide6/examples/datavisualization/graphgallery/data/layer_2.png +0 -0
- PySide6/examples/datavisualization/graphgallery/data/layer_3.png +0 -0
- PySide6/examples/datavisualization/graphgallery/data/license.txt +77 -0
- PySide6/examples/datavisualization/graphgallery/data/maptexture.jpg +0 -0
- PySide6/examples/datavisualization/graphgallery/data/oilrig.obj +2322 -0
- PySide6/examples/datavisualization/graphgallery/data/pipe.obj +330 -0
- PySide6/examples/datavisualization/graphgallery/data/raindata.txt +158 -0
- PySide6/examples/datavisualization/graphgallery/data/refinery.obj +2330 -0
- PySide6/examples/datavisualization/graphgallery/data/topography.png +0 -0
- PySide6/examples/datavisualization/graphgallery/doc/graph_gallery.webp +0 -0
- PySide6/examples/datavisualization/graphgallery/doc/graphgallery.rst +11 -0
- PySide6/examples/datavisualization/graphgallery/graphgallery.pyproject +18 -0
- PySide6/examples/datavisualization/graphgallery/graphgallery.qrc +13 -0
- PySide6/examples/datavisualization/graphgallery/graphmodifier.py +395 -0
- PySide6/examples/datavisualization/graphgallery/highlightseries.py +94 -0
- PySide6/examples/datavisualization/graphgallery/main.py +50 -0
- PySide6/examples/datavisualization/graphgallery/rainfalldata.py +125 -0
- PySide6/examples/datavisualization/graphgallery/scatterdatamodifier.py +151 -0
- PySide6/examples/datavisualization/graphgallery/scattergraph.py +128 -0
- PySide6/examples/datavisualization/graphgallery/surfacegraph.py +265 -0
- PySide6/examples/datavisualization/graphgallery/surfacegraphmodifier.py +643 -0
- PySide6/examples/datavisualization/graphgallery/topographicseries.py +57 -0
- PySide6/examples/datavisualization/graphgallery/variantbardatamapping.py +67 -0
- PySide6/examples/datavisualization/graphgallery/variantbardataproxy.py +100 -0
- PySide6/examples/datavisualization/graphgallery/variantdataset.py +39 -0
- PySide6/examples/datavisualization/minimalsurface/doc/minimalsurface.rst +4 -0
- PySide6/examples/datavisualization/minimalsurface/main.py +54 -0
- PySide6/examples/datavisualization/qmlsurfacegallery/datasource.py +99 -0
- PySide6/examples/datavisualization/qmlsurfacegallery/doc/qmlsurfacegallery.rst +9 -0
- PySide6/examples/datavisualization/qmlsurfacegallery/doc/qmlsurfacegallery.webp +0 -0
- PySide6/examples/datavisualization/qmlsurfacegallery/main.py +39 -0
- PySide6/examples/datavisualization/qmlsurfacegallery/qml/qmlsurfacegallery/SpectrogramData.qml +1545 -0
- PySide6/examples/datavisualization/qmlsurfacegallery/qml/qmlsurfacegallery/SurfaceHeightMap.qml +227 -0
- PySide6/examples/datavisualization/qmlsurfacegallery/qml/qmlsurfacegallery/SurfaceOscilloscope.qml +430 -0
- PySide6/examples/datavisualization/qmlsurfacegallery/qml/qmlsurfacegallery/SurfaceSpectrogram.qml +272 -0
- PySide6/examples/datavisualization/qmlsurfacegallery/qml/qmlsurfacegallery/heightmap.png +0 -0
- PySide6/examples/datavisualization/qmlsurfacegallery/qml/qmlsurfacegallery/main.qml +57 -0
- PySide6/examples/datavisualization/qmlsurfacegallery/qmlsurfacegallery.pyproject +10 -0
- PySide6/examples/datavisualization/qmlsurfacegallery/qmlsurfacegallery.qrc +5 -0
- PySide6/examples/datavisualization/qmlsurfacegallery/rc_qmlsurfacegallery.py +39967 -0
- PySide6/examples/datavisualization/surface/doc/surface.rst +23 -0
- PySide6/examples/datavisualization/surface/doc/surface_mountain.png +0 -0
- PySide6/examples/datavisualization/surface/main.py +189 -0
- PySide6/examples/datavisualization/surface/mountain.png +0 -0
- PySide6/examples/datavisualization/surface/surface.pyproject +4 -0
- PySide6/examples/datavisualization/surface/surfacegraph.py +253 -0
- PySide6/examples/datavisualization/surface_model_numpy/doc/surface_model_numpy.rst +24 -0
- PySide6/examples/datavisualization/surface_model_numpy/main.py +189 -0
- PySide6/examples/datavisualization/surface_model_numpy/surface_model_numpy.pyproject +4 -0
- PySide6/examples/datavisualization/surface_model_numpy/surfacegraph.py +295 -0
- PySide6/examples/datavisualization/surface_numpy/doc/surface_numpy.rst +24 -0
- PySide6/examples/datavisualization/surface_numpy/main.py +189 -0
- PySide6/examples/datavisualization/surface_numpy/surface_numpy.pyproject +4 -0
- PySide6/examples/datavisualization/surface_numpy/surfacegraph.py +253 -0
- PySide6/examples/dbus/listnames/listnames.py +53 -0
- PySide6/examples/dbus/listnames/listnames.pyproject +3 -0
- PySide6/examples/dbus/pingpong/ping.py +38 -0
- PySide6/examples/dbus/pingpong/pingpong.pyproject +3 -0
- PySide6/examples/dbus/pingpong/pong.py +44 -0
- PySide6/examples/demos/colorpaletteclient/ColorPalette/ColorDialogDelete.qml +71 -0
- PySide6/examples/demos/colorpaletteclient/ColorPalette/ColorDialogEditor.qml +139 -0
- PySide6/examples/demos/colorpaletteclient/ColorPalette/ColorView.qml +381 -0
- PySide6/examples/demos/colorpaletteclient/ColorPalette/Main.qml +62 -0
- PySide6/examples/demos/colorpaletteclient/ColorPalette/ServerSelection.qml +241 -0
- PySide6/examples/demos/colorpaletteclient/ColorPalette/UserMenu.qml +139 -0
- PySide6/examples/demos/colorpaletteclient/ColorPalette/qmldir +7 -0
- PySide6/examples/demos/colorpaletteclient/QtExampleStyle/Button.qml +48 -0
- PySide6/examples/demos/colorpaletteclient/QtExampleStyle/CMakeLists.txt +54 -0
- PySide6/examples/demos/colorpaletteclient/QtExampleStyle/Popup.qml +27 -0
- PySide6/examples/demos/colorpaletteclient/QtExampleStyle/TextField.qml +22 -0
- PySide6/examples/demos/colorpaletteclient/QtExampleStyle/UIStyle.qml +29 -0
- PySide6/examples/demos/colorpaletteclient/QtExampleStyle/qmldir +5 -0
- PySide6/examples/demos/colorpaletteclient/abstractresource.py +24 -0
- PySide6/examples/demos/colorpaletteclient/basiclogin.py +100 -0
- PySide6/examples/demos/colorpaletteclient/colorpaletteclient.pyproject +21 -0
- PySide6/examples/demos/colorpaletteclient/colorpaletteclient.qrc +17 -0
- PySide6/examples/demos/colorpaletteclient/doc/colorpaletteclient.rst +79 -0
- PySide6/examples/demos/colorpaletteclient/doc/colorpaletteclient.webp +0 -0
- PySide6/examples/demos/colorpaletteclient/icons/close.svg +3 -0
- PySide6/examples/demos/colorpaletteclient/icons/delete.svg +3 -0
- PySide6/examples/demos/colorpaletteclient/icons/dots.svg +3 -0
- PySide6/examples/demos/colorpaletteclient/icons/edit.svg +3 -0
- PySide6/examples/demos/colorpaletteclient/icons/login.svg +3 -0
- PySide6/examples/demos/colorpaletteclient/icons/logout.svg +3 -0
- PySide6/examples/demos/colorpaletteclient/icons/ok.svg +3 -0
- PySide6/examples/demos/colorpaletteclient/icons/plus.svg +3 -0
- PySide6/examples/demos/colorpaletteclient/icons/qt.png +0 -0
- PySide6/examples/demos/colorpaletteclient/icons/qt_attribution.json +14 -0
- PySide6/examples/demos/colorpaletteclient/icons/testserver.png +0 -0
- PySide6/examples/demos/colorpaletteclient/icons/update.svg +3 -0
- PySide6/examples/demos/colorpaletteclient/icons/user.svg +4 -0
- PySide6/examples/demos/colorpaletteclient/icons/userMask.svg +3 -0
- PySide6/examples/demos/colorpaletteclient/main.py +33 -0
- PySide6/examples/demos/colorpaletteclient/paginatedresource.py +278 -0
- PySide6/examples/demos/colorpaletteclient/rc_colorpaletteclient.py +1098 -0
- PySide6/examples/demos/colorpaletteclient/restservice.py +53 -0
- PySide6/examples/demos/documentviewer/abstractviewer.py +185 -0
- PySide6/examples/demos/documentviewer/doc/abstractviewer.py.rstinc +25 -0
- PySide6/examples/demos/documentviewer/doc/documentviewer.png +0 -0
- PySide6/examples/demos/documentviewer/doc/documentviewer.rst +13 -0
- PySide6/examples/demos/documentviewer/doc/jsonviewer.py.rstinc +11 -0
- PySide6/examples/demos/documentviewer/doc/mainwindow.py.rstinc +11 -0
- PySide6/examples/demos/documentviewer/doc/viewerfactory.py.rstinc +3 -0
- PySide6/examples/demos/documentviewer/documentviewer.pyproject +14 -0
- PySide6/examples/demos/documentviewer/documentviewer.qrc +42 -0
- PySide6/examples/demos/documentviewer/images/copy.png +0 -0
- PySide6/examples/demos/documentviewer/images/copy@2x.png +0 -0
- PySide6/examples/demos/documentviewer/images/cut.png +0 -0
- PySide6/examples/demos/documentviewer/images/cut@2x.png +0 -0
- PySide6/examples/demos/documentviewer/images/document-open-recent.svgz +0 -0
- PySide6/examples/demos/documentviewer/images/go-next-view-page.png +0 -0
- PySide6/examples/demos/documentviewer/images/go-next-view-page@2x.png +0 -0
- PySide6/examples/demos/documentviewer/images/go-next-view.png +0 -0
- PySide6/examples/demos/documentviewer/images/go-next-view@2x.png +0 -0
- PySide6/examples/demos/documentviewer/images/go-next.svgz +0 -0
- PySide6/examples/demos/documentviewer/images/go-previous-view-page.png +0 -0
- PySide6/examples/demos/documentviewer/images/go-previous-view-page@2x.png +0 -0
- PySide6/examples/demos/documentviewer/images/go-previous-view.png +0 -0
- PySide6/examples/demos/documentviewer/images/go-previous-view@2x.png +0 -0
- PySide6/examples/demos/documentviewer/images/go-previous.svgz +0 -0
- PySide6/examples/demos/documentviewer/images/help-about.svgz +0 -0
- PySide6/examples/demos/documentviewer/images/magnifier.png +0 -0
- PySide6/examples/demos/documentviewer/images/magnifier@2x.png +0 -0
- PySide6/examples/demos/documentviewer/images/open.png +0 -0
- PySide6/examples/demos/documentviewer/images/open@2x.png +0 -0
- PySide6/examples/demos/documentviewer/images/paste.png +0 -0
- PySide6/examples/demos/documentviewer/images/paste@2x.png +0 -0
- PySide6/examples/demos/documentviewer/images/print.png +0 -0
- PySide6/examples/demos/documentviewer/images/print2x.png +0 -0
- PySide6/examples/demos/documentviewer/images/qt-logo.png +0 -0
- PySide6/examples/demos/documentviewer/images/qt-logo@2x.png +0 -0
- PySide6/examples/demos/documentviewer/images/zoom-fit-best.png +0 -0
- PySide6/examples/demos/documentviewer/images/zoom-fit-best@2x.png +0 -0
- PySide6/examples/demos/documentviewer/images/zoom-fit-width.png +0 -0
- PySide6/examples/demos/documentviewer/images/zoom-fit-width@2x.png +0 -0
- PySide6/examples/demos/documentviewer/images/zoom-in.png +0 -0
- PySide6/examples/demos/documentviewer/images/zoom-in@2x.png +0 -0
- PySide6/examples/demos/documentviewer/images/zoom-original.png +0 -0
- PySide6/examples/demos/documentviewer/images/zoom-original@2x.png +0 -0
- PySide6/examples/demos/documentviewer/images/zoom-out.png +0 -0
- PySide6/examples/demos/documentviewer/images/zoom-out@2x.png +0 -0
- PySide6/examples/demos/documentviewer/images/zoom-previous.png +0 -0
- PySide6/examples/demos/documentviewer/images/zoom-previous@2x.png +0 -0
- PySide6/examples/demos/documentviewer/jsonviewer/jsonviewer.py +396 -0
- PySide6/examples/demos/documentviewer/main.py +37 -0
- PySide6/examples/demos/documentviewer/mainwindow.py +178 -0
- PySide6/examples/demos/documentviewer/mainwindow.ui +272 -0
- PySide6/examples/demos/documentviewer/pdfviewer/pdfviewer.py +204 -0
- PySide6/examples/demos/documentviewer/pdfviewer/zoomselector.py +54 -0
- PySide6/examples/demos/documentviewer/rc_documentviewer.py +5135 -0
- PySide6/examples/demos/documentviewer/recentfilemenu.py +34 -0
- PySide6/examples/demos/documentviewer/recentfiles.py +159 -0
- PySide6/examples/demos/documentviewer/txtviewer/txtviewer.py +144 -0
- PySide6/examples/demos/documentviewer/ui_mainwindow.py +230 -0
- PySide6/examples/demos/documentviewer/viewerfactory.py +114 -0
- PySide6/examples/designer/taskmenuextension/doc/taskmenuextension.png +0 -0
- PySide6/examples/designer/taskmenuextension/doc/taskmenuextension.rst +17 -0
- PySide6/examples/designer/taskmenuextension/main.py +16 -0
- PySide6/examples/designer/taskmenuextension/registertictactoe.py +13 -0
- PySide6/examples/designer/taskmenuextension/taskmenuextension.pyproject +4 -0
- PySide6/examples/designer/taskmenuextension/tictactoe.py +133 -0
- PySide6/examples/designer/taskmenuextension/tictactoeplugin.py +70 -0
- PySide6/examples/designer/taskmenuextension/tictactoetaskmenu.py +68 -0
- PySide6/examples/examples.pyproject +162 -0
- PySide6/examples/external/matplotlib/widget3d/doc/widget3d.png +0 -0
- PySide6/examples/external/matplotlib/widget3d/doc/widget3d.rst +9 -0
- PySide6/examples/external/matplotlib/widget3d/requirements.txt +2 -0
- PySide6/examples/external/matplotlib/widget3d/widget3d.py +207 -0
- PySide6/examples/external/matplotlib/widget3d/widget3d.pyproject +3 -0
- PySide6/examples/external/matplotlib/widget_gaussian/doc/widget_gaussian.png +0 -0
- PySide6/examples/external/matplotlib/widget_gaussian/doc/widget_gaussian.rst +9 -0
- PySide6/examples/external/matplotlib/widget_gaussian/requirements.txt +3 -0
- PySide6/examples/external/matplotlib/widget_gaussian/widget_gaussian.py +74 -0
- PySide6/examples/external/matplotlib/widget_gaussian/widget_gaussian.pyproject +3 -0
- PySide6/examples/external/networkx/doc/networkx.png +0 -0
- PySide6/examples/external/networkx/doc/networkx.rst +8 -0
- PySide6/examples/external/networkx/main.py +346 -0
- PySide6/examples/external/networkx/networkx.pyproject +3 -0
- PySide6/examples/external/networkx/requirements.txt +3 -0
- PySide6/examples/external/opencv/doc/opencv.png +0 -0
- PySide6/examples/external/opencv/doc/opencv.rst +9 -0
- PySide6/examples/external/opencv/opencv.pyproject +3 -0
- PySide6/examples/external/opencv/requirements.txt +1 -0
- PySide6/examples/external/opencv/webcam_pattern_detection.py +170 -0
- PySide6/examples/external/pandas/dataframe_model.py +82 -0
- PySide6/examples/external/pandas/doc/pandas.rst +9 -0
- PySide6/examples/external/pandas/doc/pandas_simple.png +0 -0
- PySide6/examples/external/pandas/iris.csv +151 -0
- PySide6/examples/external/pandas/pandas.pyproject +3 -0
- PySide6/examples/external/pandas/requirements.txt +1 -0
- PySide6/examples/external/scikit/doc/scikit.png +0 -0
- PySide6/examples/external/scikit/doc/scikit.rst +9 -0
- PySide6/examples/external/scikit/requirements.txt +1 -0
- PySide6/examples/external/scikit/scikit.pyproject +3 -0
- PySide6/examples/external/scikit/staining_colors_separation.py +147 -0
- PySide6/examples/graphs/2d/hellographs/HelloGraphs/Main.qml +153 -0
- PySide6/examples/graphs/2d/hellographs/HelloGraphs/qmldir +2 -0
- PySide6/examples/graphs/2d/hellographs/doc/hellographs.rst +51 -0
- PySide6/examples/graphs/2d/hellographs/doc/hellographs.webp +0 -0
- PySide6/examples/graphs/2d/hellographs/hellographs.pyproject +3 -0
- PySide6/examples/graphs/2d/hellographs/main.py +22 -0
- PySide6/examples/graphs/3d/minimalsurfacegraph/doc/minimalsurfacegraph.rst +4 -0
- PySide6/examples/graphs/3d/minimalsurfacegraph/main.py +54 -0
- PySide6/examples/graphs/3d/widgetgallery/axesinputhandler.py +100 -0
- PySide6/examples/graphs/3d/widgetgallery/bargraph.py +272 -0
- PySide6/examples/graphs/3d/widgetgallery/custominputhandler.py +177 -0
- PySide6/examples/graphs/3d/widgetgallery/data/layer_1.png +0 -0
- PySide6/examples/graphs/3d/widgetgallery/data/layer_2.png +0 -0
- PySide6/examples/graphs/3d/widgetgallery/data/layer_3.png +0 -0
- PySide6/examples/graphs/3d/widgetgallery/data/license.txt +77 -0
- PySide6/examples/graphs/3d/widgetgallery/data/maptexture.jpg +0 -0
- PySide6/examples/graphs/3d/widgetgallery/data/narrowarrow.mesh +0 -0
- PySide6/examples/graphs/3d/widgetgallery/data/oilrig.mesh +0 -0
- PySide6/examples/graphs/3d/widgetgallery/data/pipe.mesh +0 -0
- PySide6/examples/graphs/3d/widgetgallery/data/raindata.txt +158 -0
- PySide6/examples/graphs/3d/widgetgallery/data/refinery.mesh +0 -0
- PySide6/examples/graphs/3d/widgetgallery/data/topography.png +0 -0
- PySide6/examples/graphs/3d/widgetgallery/doc/widgetgallery.rst +11 -0
- PySide6/examples/graphs/3d/widgetgallery/doc/widgetgallery.webp +0 -0
- PySide6/examples/graphs/3d/widgetgallery/graphmodifier.py +391 -0
- PySide6/examples/graphs/3d/widgetgallery/highlightseries.py +94 -0
- PySide6/examples/graphs/3d/widgetgallery/main.py +41 -0
- PySide6/examples/graphs/3d/widgetgallery/rainfalldata.py +125 -0
- PySide6/examples/graphs/3d/widgetgallery/scatterdatamodifier.py +149 -0
- PySide6/examples/graphs/3d/widgetgallery/scattergraph.py +121 -0
- PySide6/examples/graphs/3d/widgetgallery/surfacegraph.py +256 -0
- PySide6/examples/graphs/3d/widgetgallery/surfacegraphmodifier.py +641 -0
- PySide6/examples/graphs/3d/widgetgallery/topographicseries.py +57 -0
- PySide6/examples/graphs/3d/widgetgallery/variantbardatamapping.py +67 -0
- PySide6/examples/graphs/3d/widgetgallery/variantbardataproxy.py +100 -0
- PySide6/examples/graphs/3d/widgetgallery/variantdataset.py +39 -0
- PySide6/examples/graphs/3d/widgetgallery/widgetgallery.pyproject +29 -0
- PySide6/examples/gui/analogclock/analogclock.pyproject +3 -0
- PySide6/examples/gui/analogclock/doc/analogclock.rst +8 -0
- PySide6/examples/gui/analogclock/main.py +92 -0
- PySide6/examples/gui/rhiwindow/doc/rhiwindow.rst +49 -0
- PySide6/examples/gui/rhiwindow/doc/rhiwindow.webp +0 -0
- PySide6/examples/gui/rhiwindow/main.py +80 -0
- PySide6/examples/gui/rhiwindow/rc_rhiwindow.py +319 -0
- PySide6/examples/gui/rhiwindow/rhiwindow.py +420 -0
- PySide6/examples/gui/rhiwindow/rhiwindow.pyproject +5 -0
- PySide6/examples/gui/rhiwindow/rhiwindow.qrc +8 -0
- PySide6/examples/gui/rhiwindow/shaders/color.frag +15 -0
- PySide6/examples/gui/rhiwindow/shaders/color.vert +17 -0
- PySide6/examples/gui/rhiwindow/shaders/prebuilt/color.frag.qsb +0 -0
- PySide6/examples/gui/rhiwindow/shaders/prebuilt/color.vert.qsb +0 -0
- PySide6/examples/gui/rhiwindow/shaders/prebuilt/quad.frag.qsb +0 -0
- PySide6/examples/gui/rhiwindow/shaders/prebuilt/quad.vert.qsb +0 -0
- PySide6/examples/gui/rhiwindow/shaders/quad.frag +11 -0
- PySide6/examples/gui/rhiwindow/shaders/quad.vert +10 -0
- PySide6/examples/httpserver/afterrequest/doc/afterrequest.rst +5 -0
- PySide6/examples/httpserver/afterrequest/main.py +36 -0
- PySide6/examples/installer_test/hello.py +71 -0
- PySide6/examples/installer_test/hello_app.spec +53 -0
- PySide6/examples/location/mapviewer/MapViewer/Main.qml +460 -0
- PySide6/examples/location/mapviewer/MapViewer/forms/Geocode.qml +42 -0
- PySide6/examples/location/mapviewer/MapViewer/forms/GeocodeForm.ui.qml +136 -0
- PySide6/examples/location/mapviewer/MapViewer/forms/Locale.qml +45 -0
- PySide6/examples/location/mapviewer/MapViewer/forms/LocaleForm.ui.qml +116 -0
- PySide6/examples/location/mapviewer/MapViewer/forms/Message.qml +21 -0
- PySide6/examples/location/mapviewer/MapViewer/forms/MessageForm.ui.qml +69 -0
- PySide6/examples/location/mapviewer/MapViewer/forms/ReverseGeocode.qml +38 -0
- PySide6/examples/location/mapviewer/MapViewer/forms/ReverseGeocodeForm.ui.qml +103 -0
- PySide6/examples/location/mapviewer/MapViewer/forms/RouteAddress.qml +105 -0
- PySide6/examples/location/mapviewer/MapViewer/forms/RouteAddressForm.ui.qml +160 -0
- PySide6/examples/location/mapviewer/MapViewer/forms/RouteCoordinate.qml +41 -0
- PySide6/examples/location/mapviewer/MapViewer/forms/RouteCoordinateForm.ui.qml +136 -0
- PySide6/examples/location/mapviewer/MapViewer/forms/RouteList.qml +50 -0
- PySide6/examples/location/mapviewer/MapViewer/forms/RouteListDelegate.qml +42 -0
- PySide6/examples/location/mapviewer/MapViewer/forms/RouteListHeader.qml +47 -0
- PySide6/examples/location/mapviewer/MapViewer/helper.js +44 -0
- PySide6/examples/location/mapviewer/MapViewer/map/MapComponent.qml +497 -0
- PySide6/examples/location/mapviewer/MapViewer/map/MapSliders.qml +282 -0
- PySide6/examples/location/mapviewer/MapViewer/map/Marker.qml +64 -0
- PySide6/examples/location/mapviewer/MapViewer/map/MiniMap.qml +78 -0
- PySide6/examples/location/mapviewer/MapViewer/menus/ItemPopupMenu.qml +19 -0
- PySide6/examples/location/mapviewer/MapViewer/menus/MainMenu.qml +122 -0
- PySide6/examples/location/mapviewer/MapViewer/menus/MapPopupMenu.qml +30 -0
- PySide6/examples/location/mapviewer/MapViewer/menus/MarkerPopupMenu.qml +38 -0
- PySide6/examples/location/mapviewer/MapViewer/qmldir +27 -0
- PySide6/examples/location/mapviewer/MapViewer/resources/marker.png +0 -0
- PySide6/examples/location/mapviewer/MapViewer/resources/marker_blue.png +0 -0
- PySide6/examples/location/mapviewer/MapViewer/resources/scale.png +0 -0
- PySide6/examples/location/mapviewer/MapViewer/resources/scale_end.png +0 -0
- PySide6/examples/location/mapviewer/doc/mapviewer.rst +14 -0
- PySide6/examples/location/mapviewer/doc/mapviewer.webp +0 -0
- PySide6/examples/location/mapviewer/main.py +75 -0
- PySide6/examples/location/mapviewer/mapviewer.pyproject +33 -0
- PySide6/examples/multimedia/audiooutput/audiooutput.py +276 -0
- PySide6/examples/multimedia/audiooutput/audiooutput.pyproject +3 -0
- PySide6/examples/multimedia/audiooutput/doc/audiooutput.png +0 -0
- PySide6/examples/multimedia/audiooutput/doc/audiooutput.rst +14 -0
- PySide6/examples/multimedia/audiosource/audiosource.py +227 -0
- PySide6/examples/multimedia/audiosource/audiosource.pyproject +3 -0
- PySide6/examples/multimedia/audiosource/doc/audiosource.png +0 -0
- PySide6/examples/multimedia/audiosource/doc/audiosource.rst +13 -0
- PySide6/examples/multimedia/camera/camera.py +369 -0
- PySide6/examples/multimedia/camera/camera.pyproject +12 -0
- PySide6/examples/multimedia/camera/camera.ui +497 -0
- PySide6/examples/multimedia/camera/camera_mobile.ui +504 -0
- PySide6/examples/multimedia/camera/doc/camera.rst +14 -0
- PySide6/examples/multimedia/camera/doc/camera.webp +0 -0
- PySide6/examples/multimedia/camera/imagesettings.py +56 -0
- PySide6/examples/multimedia/camera/imagesettings.ui +123 -0
- PySide6/examples/multimedia/camera/main.py +17 -0
- PySide6/examples/multimedia/camera/metadatadialog.py +86 -0
- PySide6/examples/multimedia/camera/shutter.svg +21 -0
- PySide6/examples/multimedia/camera/ui_camera.py +232 -0
- PySide6/examples/multimedia/camera/ui_camera_mobile.py +251 -0
- PySide6/examples/multimedia/camera/ui_imagesettings.py +94 -0
- PySide6/examples/multimedia/camera/ui_videosettings.py +178 -0
- PySide6/examples/multimedia/camera/ui_videosettings_mobile.py +176 -0
- PySide6/examples/multimedia/camera/videosettings.py +167 -0
- PySide6/examples/multimedia/camera/videosettings.ui +213 -0
- PySide6/examples/multimedia/camera/videosettings_mobile.ui +207 -0
- PySide6/examples/multimedia/player/doc/player.png +0 -0
- PySide6/examples/multimedia/player/doc/player.rst +9 -0
- PySide6/examples/multimedia/player/player.py +194 -0
- PySide6/examples/multimedia/player/player.pyproject +3 -0
- PySide6/examples/multimedia/screencapture/doc/screencapture.rst +42 -0
- PySide6/examples/multimedia/screencapture/doc/screencapture.webp +0 -0
- PySide6/examples/multimedia/screencapture/main.py +20 -0
- PySide6/examples/multimedia/screencapture/screencapture.pyproject +3 -0
- PySide6/examples/multimedia/screencapture/screencapturepreview.py +151 -0
- PySide6/examples/multimedia/screencapture/screenlistmodel.py +38 -0
- PySide6/examples/multimedia/screencapture/windowlistmodel.py +30 -0
- PySide6/examples/network/blockingfortuneclient/blockingfortuneclient.py +187 -0
- PySide6/examples/network/blockingfortuneclient/blockingfortuneclient.pyproject +3 -0
- PySide6/examples/network/downloader/doc/downloader.png +0 -0
- PySide6/examples/network/downloader/doc/downloader.rst +9 -0
- PySide6/examples/network/downloader/downloader.py +179 -0
- PySide6/examples/network/downloader/downloader.pyproject +3 -0
- PySide6/examples/network/fortuneclient/fortuneclient.py +124 -0
- PySide6/examples/network/fortuneclient/fortuneclient.pyproject +3 -0
- PySide6/examples/network/fortuneserver/fortuneserver.py +82 -0
- PySide6/examples/network/fortuneserver/fortuneserver.pyproject +3 -0
- PySide6/examples/network/googlesuggest/doc/googlesuggest.png +0 -0
- PySide6/examples/network/googlesuggest/doc/googlesuggest.rst +11 -0
- PySide6/examples/network/googlesuggest/googlesuggest.py +136 -0
- PySide6/examples/network/googlesuggest/googlesuggest.pyproject +3 -0
- PySide6/examples/network/googlesuggest/main.py +14 -0
- PySide6/examples/network/googlesuggest/searchbox.py +27 -0
- PySide6/examples/network/loopback/dialog.py +151 -0
- PySide6/examples/network/loopback/doc/loopback.png +0 -0
- PySide6/examples/network/loopback/doc/loopback.rst +10 -0
- PySide6/examples/network/loopback/loopback.pyproject +3 -0
- PySide6/examples/network/loopback/main.py +15 -0
- PySide6/examples/network/threadedfortuneserver/threadedfortuneserver.py +116 -0
- PySide6/examples/network/threadedfortuneserver/threadedfortuneserver.pyproject +3 -0
- PySide6/examples/networkauth/redditclient/doc/redditclient.png +0 -0
- PySide6/examples/networkauth/redditclient/doc/redditclient.rst +21 -0
- PySide6/examples/networkauth/redditclient/main.py +28 -0
- PySide6/examples/networkauth/redditclient/redditclient.pyproject +3 -0
- PySide6/examples/networkauth/redditclient/redditmodel.py +70 -0
- PySide6/examples/networkauth/redditclient/redditwrapper.py +92 -0
- PySide6/examples/opengl/contextinfo/contextinfo.py +266 -0
- PySide6/examples/opengl/contextinfo/contextinfo.pyproject +3 -0
- PySide6/examples/opengl/contextinfo/doc/contextinfo.png +0 -0
- PySide6/examples/opengl/contextinfo/doc/contextinfo.rst +10 -0
- PySide6/examples/opengl/hellogl2/doc/hellogl2.png +0 -0
- PySide6/examples/opengl/hellogl2/doc/hellogl2.rst +23 -0
- PySide6/examples/opengl/hellogl2/glwidget.py +272 -0
- PySide6/examples/opengl/hellogl2/hellogl2.pyproject +3 -0
- PySide6/examples/opengl/hellogl2/logo.py +101 -0
- PySide6/examples/opengl/hellogl2/main.py +58 -0
- PySide6/examples/opengl/hellogl2/mainwindow.py +29 -0
- PySide6/examples/opengl/hellogl2/window.py +110 -0
- PySide6/examples/opengl/textures/doc/textures.png +0 -0
- PySide6/examples/opengl/textures/doc/textures.rst +9 -0
- PySide6/examples/opengl/textures/images/side1.png +0 -0
- PySide6/examples/opengl/textures/images/side2.png +0 -0
- PySide6/examples/opengl/textures/images/side3.png +0 -0
- PySide6/examples/opengl/textures/images/side4.png +0 -0
- PySide6/examples/opengl/textures/images/side5.png +0 -0
- PySide6/examples/opengl/textures/images/side6.png +0 -0
- PySide6/examples/opengl/textures/textures.py +211 -0
- PySide6/examples/opengl/textures/textures.pyproject +3 -0
- PySide6/examples/opengl/textures/textures.qrc +10 -0
- PySide6/examples/opengl/textures/textures_rc.py +762 -0
- PySide6/examples/opengl/threadedqopenglwidget/doc/threadedqopenglwidget.png +0 -0
- PySide6/examples/opengl/threadedqopenglwidget/doc/threadedqopenglwidget.rst +9 -0
- PySide6/examples/opengl/threadedqopenglwidget/glwidget.py +79 -0
- PySide6/examples/opengl/threadedqopenglwidget/main.py +93 -0
- PySide6/examples/opengl/threadedqopenglwidget/mainwindow.py +24 -0
- PySide6/examples/opengl/threadedqopenglwidget/renderer.py +326 -0
- PySide6/examples/opengl/threadedqopenglwidget/threadedqopenglwidget.pyproject +3 -0
- PySide6/examples/pdf/quickpdfviewer/doc/quickpdfviewer.rst +4 -0
- PySide6/examples/pdf/quickpdfviewer/main.py +49 -0
- PySide6/examples/pdf/quickpdfviewer/quickpdfviewer.pyproject +3 -0
- PySide6/examples/pdf/quickpdfviewer/rc_viewer.py +5505 -0
- PySide6/examples/pdf/quickpdfviewer/resources/document-open.svg +13 -0
- PySide6/examples/pdf/quickpdfviewer/resources/edit-clear.svg +15 -0
- PySide6/examples/pdf/quickpdfviewer/resources/edit-copy.svg +15 -0
- PySide6/examples/pdf/quickpdfviewer/resources/edit-select-all.svg +13 -0
- PySide6/examples/pdf/quickpdfviewer/resources/go-down-search.svg +13 -0
- PySide6/examples/pdf/quickpdfviewer/resources/go-next-view-page.svg +13 -0
- PySide6/examples/pdf/quickpdfviewer/resources/go-previous-view-page.svg +13 -0
- PySide6/examples/pdf/quickpdfviewer/resources/go-up-search.svg +8 -0
- PySide6/examples/pdf/quickpdfviewer/resources/rotate-left.svg +6 -0
- PySide6/examples/pdf/quickpdfviewer/resources/rotate-right.svg +6 -0
- PySide6/examples/pdf/quickpdfviewer/resources/test.pdf +0 -0
- PySide6/examples/pdf/quickpdfviewer/resources/zoom-fit-best.svg +13 -0
- PySide6/examples/pdf/quickpdfviewer/resources/zoom-fit-width.svg +13 -0
- PySide6/examples/pdf/quickpdfviewer/resources/zoom-in.svg +13 -0
- PySide6/examples/pdf/quickpdfviewer/resources/zoom-original.svg +13 -0
- PySide6/examples/pdf/quickpdfviewer/resources/zoom-out.svg +13 -0
- PySide6/examples/pdf/quickpdfviewer/viewer.qml +307 -0
- PySide6/examples/pdf/quickpdfviewer/viewer.qrc +20 -0
- PySide6/examples/pdfwidgets/pdfviewer/doc/pdfviewer.rst +5 -0
- PySide6/examples/pdfwidgets/pdfviewer/images/document-open.svgz +0 -0
- PySide6/examples/pdfwidgets/pdfviewer/images/go-next-view-page.svgz +0 -0
- PySide6/examples/pdfwidgets/pdfviewer/images/go-next-view.svgz +0 -0
- PySide6/examples/pdfwidgets/pdfviewer/images/go-previous-view-page.svgz +0 -0
- PySide6/examples/pdfwidgets/pdfviewer/images/go-previous-view.svgz +0 -0
- PySide6/examples/pdfwidgets/pdfviewer/images/zoom-fit-best.svgz +0 -0
- PySide6/examples/pdfwidgets/pdfviewer/images/zoom-fit-width.svgz +0 -0
- PySide6/examples/pdfwidgets/pdfviewer/images/zoom-in.svgz +0 -0
- PySide6/examples/pdfwidgets/pdfviewer/images/zoom-original.svgz +0 -0
- PySide6/examples/pdfwidgets/pdfviewer/images/zoom-out.svgz +0 -0
- PySide6/examples/pdfwidgets/pdfviewer/images/zoom-previous.svgz +0 -0
- PySide6/examples/pdfwidgets/pdfviewer/main.py +27 -0
- PySide6/examples/pdfwidgets/pdfviewer/mainwindow.py +141 -0
- PySide6/examples/pdfwidgets/pdfviewer/mainwindow.ui +327 -0
- PySide6/examples/pdfwidgets/pdfviewer/pdfviewer.pyproject +4 -0
- PySide6/examples/pdfwidgets/pdfviewer/resources.qrc +11 -0
- PySide6/examples/pdfwidgets/pdfviewer/resources_rc.py +3468 -0
- PySide6/examples/pdfwidgets/pdfviewer/ui_mainwindow.py +259 -0
- PySide6/examples/pdfwidgets/pdfviewer/zoomselector.py +59 -0
- PySide6/examples/qml/editingmodel/MovingRectangle.qml +78 -0
- PySide6/examples/qml/editingmodel/doc/editingmodel.rst +16 -0
- PySide6/examples/qml/editingmodel/doc/qabstractlistmodelqml.png +0 -0
- PySide6/examples/qml/editingmodel/main.py +21 -0
- PySide6/examples/qml/editingmodel/main.pyproject +3 -0
- PySide6/examples/qml/editingmodel/main.qml +106 -0
- PySide6/examples/qml/editingmodel/model.py +156 -0
- PySide6/examples/qml/signals/pytoqml1/main.py +31 -0
- PySide6/examples/qml/signals/pytoqml1/pytoqml1.pyproject +3 -0
- PySide6/examples/qml/signals/pytoqml1/view.qml +36 -0
- PySide6/examples/qml/signals/pytoqml2/main.py +54 -0
- PySide6/examples/qml/signals/pytoqml2/pytoqml2.pyproject +3 -0
- PySide6/examples/qml/signals/pytoqml2/view.qml +30 -0
- PySide6/examples/qml/signals/qmltopy1/main.py +50 -0
- PySide6/examples/qml/signals/qmltopy1/qmltopy1.pyproject +3 -0
- PySide6/examples/qml/signals/qmltopy1/view.qml +54 -0
- PySide6/examples/qml/signals/qmltopy2/main.py +45 -0
- PySide6/examples/qml/signals/qmltopy2/qmltopy2.pyproject +3 -0
- PySide6/examples/qml/signals/qmltopy2/view.qml +49 -0
- PySide6/examples/qml/signals/qmltopy3/main.py +33 -0
- PySide6/examples/qml/signals/qmltopy3/qmltopy3.pyproject +3 -0
- PySide6/examples/qml/signals/qmltopy3/view.qml +66 -0
- PySide6/examples/qml/signals/qmltopy4/main.py +33 -0
- PySide6/examples/qml/signals/qmltopy4/qmltopy4.pyproject +3 -0
- PySide6/examples/qml/signals/qmltopy4/view.qml +31 -0
- PySide6/examples/qml/textproperties/doc/textproperties.png +0 -0
- PySide6/examples/qml/textproperties/doc/textproperties.rst +9 -0
- PySide6/examples/qml/textproperties/main.py +76 -0
- PySide6/examples/qml/textproperties/textproperties.pyproject +3 -0
- PySide6/examples/qml/textproperties/view.qml +160 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter1-basics/app.qml +26 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter1-basics/basics.py +68 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter1-basics/chapter1-basics.pyproject +3 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter1-basics/doc/chapter1-basics.rst +107 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter2-methods/app.qml +32 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter2-methods/chapter2-methods.pyproject +3 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter2-methods/doc/chapter2-methods.rst +36 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter2-methods/methods.py +75 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter3-bindings/app.qml +40 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter3-bindings/bindings.py +79 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter3-bindings/chapter3-bindings.pyproject +3 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter3-bindings/doc/chapter3-bindings.rst +54 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter4-customPropertyTypes/app.qml +22 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter4-customPropertyTypes/chapter4-customPropertyTypes.pyproject +3 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter4-customPropertyTypes/customPropertyTypes.py +83 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter4-customPropertyTypes/doc/chapter4-customPropertyTypes.rst +73 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter5-listproperties/app.qml +32 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter5-listproperties/chapter5-listproperties.pyproject +3 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter5-listproperties/doc/chapter5-listproperties.rst +46 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter5-listproperties/listproperties.py +97 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter6-plugins/Charts/piechart.py +41 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter6-plugins/Charts/pieslice.py +53 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter6-plugins/Charts/plugins.png +0 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter6-plugins/app.qml +32 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter6-plugins/chapter6-plugins.pyproject +3 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter6-plugins/doc/chapter6-plugins.rst +26 -0
- PySide6/examples/qml/tutorials/extending-qml/chapter6-plugins/doc/plugins.png +0 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/adding/People/Main.qml +9 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/adding/People/qmldir +3 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/adding/adding.pyproject +4 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/adding/doc/adding.rst +67 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/adding/main.py +30 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/adding/person.py +34 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced1-Base-project/People/Main.qml +16 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced1-Base-project/People/qmldir +3 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced1-Base-project/advanced1-Base-project.pyproject +4 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced1-Base-project/birthdayparty.py +46 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced1-Base-project/doc/advanced1-Base-project.rst +57 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced1-Base-project/main.py +33 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced1-Base-project/person.py +41 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced2-Inheritance-and-coercion/People/Main.qml +16 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced2-Inheritance-and-coercion/People/qmldir +3 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced2-Inheritance-and-coercion/advanced2-Inheritance-and-coercion.pyproject +4 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced2-Inheritance-and-coercion/birthdayparty.py +46 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced2-Inheritance-and-coercion/doc/advanced2-Inheritance-and-coercion.rst +62 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced2-Inheritance-and-coercion/main.py +38 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced2-Inheritance-and-coercion/person.py +52 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced3-Default-properties/People/Main.qml +15 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced3-Default-properties/People/qmldir +3 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced3-Default-properties/advanced3-Default-properties.pyproject +4 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced3-Default-properties/birthdayparty.py +47 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced3-Default-properties/doc/advanced3-Default-properties.rst +40 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced3-Default-properties/main.py +38 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced3-Default-properties/person.py +51 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced4-Grouped-properties/People/Main.qml +33 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced4-Grouped-properties/People/qmldir +3 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced4-Grouped-properties/advanced4-Grouped-properties.pyproject +4 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced4-Grouped-properties/birthdayparty.py +47 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced4-Grouped-properties/doc/advanced4-Grouped-properties.rst +39 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced4-Grouped-properties/main.py +46 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced4-Grouped-properties/person.py +102 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced5-Attached-properties/People/Main.qml +22 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced5-Attached-properties/People/qmldir +3 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced5-Attached-properties/advanced5-Attached-properties.pyproject +4 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced5-Attached-properties/birthdayparty.py +71 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced5-Attached-properties/doc/advanced5-Attached-properties.rst +51 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced5-Attached-properties/main.py +48 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced5-Attached-properties/person.py +51 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced6-Property-value-source/People/Main.qml +27 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced6-Property-value-source/People/qmldir +3 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced6-Property-value-source/advanced6-Property-value-source.pyproject +4 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced6-Property-value-source/birthdayparty.py +89 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced6-Property-value-source/doc/advanced6-Property-value-source.rst +43 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced6-Property-value-source/happybirthdaysong.py +49 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced6-Property-value-source/main.py +53 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/advanced6-Property-value-source/person.py +51 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/binding/People/Main.qml +29 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/binding/People/qmldir +3 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/binding/binding.pyproject +4 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/binding/birthdayparty.py +83 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/binding/doc/binding.rst +17 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/binding/happybirthdaysong.py +47 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/binding/main.py +52 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/binding/person.py +53 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/extended/doc/extended.rst +41 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/extended/example.qml +8 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/extended/extended.pyproject +3 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/extended/main.py +95 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/methods/People/Main.qml +19 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/methods/People/qmldir +3 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/methods/birthdayparty.py +47 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/methods/doc/methods.rst +15 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/methods/main.py +32 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/methods/methods.pyproject +4 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/methods/person.py +34 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/properties/People/Main.qml +16 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/properties/People/qmldir +3 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/properties/birthdayparty.py +41 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/properties/doc/properties.rst +89 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/properties/main.py +34 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/properties/person.py +34 -0
- PySide6/examples/qml/tutorials/extending-qml-advanced/properties/properties.pyproject +4 -0
- PySide6/examples/qml/usingmodel/doc/usingmodel.png +0 -0
- PySide6/examples/qml/usingmodel/doc/usingmodel.rst +11 -0
- PySide6/examples/qml/usingmodel/usingmodel.py +74 -0
- PySide6/examples/qml/usingmodel/usingmodel.pyproject +3 -0
- PySide6/examples/qml/usingmodel/view.qml +21 -0
- PySide6/examples/quick/models/objectlistmodel/doc/objectlistmodel.png +0 -0
- PySide6/examples/quick/models/objectlistmodel/doc/objectlistmodel.rst +14 -0
- PySide6/examples/quick/models/objectlistmodel/objectlistmodel.py +61 -0
- PySide6/examples/quick/models/objectlistmodel/objectlistmodel.pyproject +3 -0
- PySide6/examples/quick/models/objectlistmodel/view.qml +15 -0
- PySide6/examples/quick/models/stringlistmodel/doc/stringlistmodel.png +0 -0
- PySide6/examples/quick/models/stringlistmodel/doc/stringlistmodel.rst +11 -0
- PySide6/examples/quick/models/stringlistmodel/stringlistmodel.py +26 -0
- PySide6/examples/quick/models/stringlistmodel/stringlistmodel.pyproject +3 -0
- PySide6/examples/quick/models/stringlistmodel/view.qml +17 -0
- PySide6/examples/quick/painteditem/doc/painteditem.png +0 -0
- PySide6/examples/quick/painteditem/doc/painteditem.rst +13 -0
- PySide6/examples/quick/painteditem/main.qml +77 -0
- PySide6/examples/quick/painteditem/painteditem.py +83 -0
- PySide6/examples/quick/painteditem/painteditem.pyproject +3 -0
- PySide6/examples/quick/rendercontrol/rendercontrol_opengl/cuberenderer.py +183 -0
- PySide6/examples/quick/rendercontrol/rendercontrol_opengl/demo.qml +161 -0
- PySide6/examples/quick/rendercontrol/rendercontrol_opengl/doc/rendercontrol_opengl.rst +5 -0
- PySide6/examples/quick/rendercontrol/rendercontrol_opengl/main.py +20 -0
- PySide6/examples/quick/rendercontrol/rendercontrol_opengl/rendercontrol_opengl.pyproject +6 -0
- PySide6/examples/quick/rendercontrol/rendercontrol_opengl/window_singlethreaded.py +272 -0
- PySide6/examples/quick/scenegraph/openglunderqml/doc/openglunderqml.rst +21 -0
- PySide6/examples/quick/scenegraph/openglunderqml/doc/squircle.png +0 -0
- PySide6/examples/quick/scenegraph/openglunderqml/main.py +27 -0
- PySide6/examples/quick/scenegraph/openglunderqml/main.qml +39 -0
- PySide6/examples/quick/scenegraph/openglunderqml/openglunderqml.pyproject +3 -0
- PySide6/examples/quick/scenegraph/openglunderqml/squircle.py +79 -0
- PySide6/examples/quick/scenegraph/openglunderqml/squirclerenderer.py +98 -0
- PySide6/examples/quick/scenegraph/scenegraph_customgeometry/doc/scenegraph_customgeometry.rst +7 -0
- PySide6/examples/quick/scenegraph/scenegraph_customgeometry/main.py +152 -0
- PySide6/examples/quick/scenegraph/scenegraph_customgeometry/main.qml +34 -0
- PySide6/examples/quick/scenegraph/scenegraph_customgeometry/scenegraph_customgeometry.pyproject +3 -0
- PySide6/examples/quick/shared/Button.qml +50 -0
- PySide6/examples/quick/shared/CheckBox.qml +59 -0
- PySide6/examples/quick/shared/FlickrRssModel.qml +45 -0
- PySide6/examples/quick/shared/Images.qml +14 -0
- PySide6/examples/quick/shared/Label.qml +9 -0
- PySide6/examples/quick/shared/LauncherList.qml +205 -0
- PySide6/examples/quick/shared/README +11 -0
- PySide6/examples/quick/shared/SimpleLauncherDelegate.qml +96 -0
- PySide6/examples/quick/shared/Slider.qml +82 -0
- PySide6/examples/quick/shared/TabSet.qml +69 -0
- PySide6/examples/quick/shared/TextField.qml +43 -0
- PySide6/examples/quick/shared/images/back.png +0 -0
- PySide6/examples/quick/shared/images/checkmark.png +0 -0
- PySide6/examples/quick/shared/images/next.png +0 -0
- PySide6/examples/quick/shared/images/qt-logo.png +0 -0
- PySide6/examples/quick/shared/images/slider_handle.png +0 -0
- PySide6/examples/quick/shared/images/tab.png +0 -0
- PySide6/examples/quick/shared/qmldir +11 -0
- PySide6/examples/quick/shared/quick_shared.qrc +15 -0
- PySide6/examples/quick/shared/shared.qrc +21 -0
- PySide6/examples/quick/shared/shared_rc.py +2253 -0
- PySide6/examples/quick/window/AllScreens.qml +42 -0
- PySide6/examples/quick/window/CurrentScreen.qml +83 -0
- PySide6/examples/quick/window/Splash.qml +42 -0
- PySide6/examples/quick/window/doc/window.png +0 -0
- PySide6/examples/quick/window/doc/window.rst +35 -0
- PySide6/examples/quick/window/main.py +40 -0
- PySide6/examples/quick/window/rc_window.py +335 -0
- PySide6/examples/quick/window/resources/icon.icns +0 -0
- PySide6/examples/quick/window/resources/icon.ico +0 -0
- PySide6/examples/quick/window/resources/icon.svg +208 -0
- PySide6/examples/quick/window/resources/icon64.png +0 -0
- PySide6/examples/quick/window/window.pyproject +3 -0
- PySide6/examples/quick/window/window.qml +151 -0
- PySide6/examples/quick/window/window.qrc +8 -0
- PySide6/examples/quick3d/customgeometry/customgeometry.pyproject +3 -0
- PySide6/examples/quick3d/customgeometry/doc/customgeometry-example.jpg +0 -0
- PySide6/examples/quick3d/customgeometry/doc/customgeometry.rst +17 -0
- PySide6/examples/quick3d/customgeometry/examplepoint.py +51 -0
- PySide6/examples/quick3d/customgeometry/exampletriangle.py +188 -0
- PySide6/examples/quick3d/customgeometry/main.py +29 -0
- PySide6/examples/quick3d/customgeometry/main.qml +240 -0
- PySide6/examples/quick3d/customgeometry/qt_logo_rect.png +0 -0
- PySide6/examples/quick3d/customgeometry/resources.qrc +6 -0
- PySide6/examples/quick3d/customgeometry/resources_rc.py +585 -0
- PySide6/examples/quick3d/intro/doc/intro.png +0 -0
- PySide6/examples/quick3d/intro/doc/intro.rst +9 -0
- PySide6/examples/quick3d/intro/intro.pyproject +3 -0
- PySide6/examples/quick3d/intro/main.py +24 -0
- PySide6/examples/quick3d/intro/main.qml +80 -0
- PySide6/examples/quick3d/proceduraltexture/ProceduralTextureModule/Main.qml +188 -0
- PySide6/examples/quick3d/proceduraltexture/ProceduralTextureModule/app.qrc +6 -0
- PySide6/examples/quick3d/proceduraltexture/ProceduralTextureModule/qmldir +2 -0
- PySide6/examples/quick3d/proceduraltexture/doc/proceduraltexture-example.webp +0 -0
- PySide6/examples/quick3d/proceduraltexture/doc/proceduraltexture.rst +12 -0
- PySide6/examples/quick3d/proceduraltexture/gradienttexture.py +105 -0
- PySide6/examples/quick3d/proceduraltexture/main.py +30 -0
- PySide6/examples/quick3d/proceduraltexture/proceduraltexture.pyproject +9 -0
- PySide6/examples/quickcontrols/contactslist/Contact/ContactDelegate.ui.qml +82 -0
- PySide6/examples/quickcontrols/contactslist/Contact/ContactDialog.qml +45 -0
- PySide6/examples/quickcontrols/contactslist/Contact/ContactForm.ui.qml +72 -0
- PySide6/examples/quickcontrols/contactslist/Contact/ContactList.qml +70 -0
- PySide6/examples/quickcontrols/contactslist/Contact/ContactView.ui.qml +36 -0
- PySide6/examples/quickcontrols/contactslist/Contact/SectionDelegate.ui.qml +17 -0
- PySide6/examples/quickcontrols/contactslist/Contact/qmldir +7 -0
- PySide6/examples/quickcontrols/contactslist/contactlist.pyproject +10 -0
- PySide6/examples/quickcontrols/contactslist/contactmodel.py +116 -0
- PySide6/examples/quickcontrols/contactslist/doc/contactslist.rst +15 -0
- PySide6/examples/quickcontrols/contactslist/doc/qtquickcontrols-contactlist.png +0 -0
- PySide6/examples/quickcontrols/contactslist/main.py +27 -0
- PySide6/examples/quickcontrols/filesystemexplorer/FileSystemModule/Main.qml +185 -0
- PySide6/examples/quickcontrols/filesystemexplorer/FileSystemModule/app.qrc +15 -0
- PySide6/examples/quickcontrols/filesystemexplorer/FileSystemModule/icons/app_icon.svg +2 -0
- PySide6/examples/quickcontrols/filesystemexplorer/FileSystemModule/icons/folder_closed.svg +38 -0
- PySide6/examples/quickcontrols/filesystemexplorer/FileSystemModule/icons/folder_open.svg +38 -0
- PySide6/examples/quickcontrols/filesystemexplorer/FileSystemModule/icons/generic_file.svg +38 -0
- PySide6/examples/quickcontrols/filesystemexplorer/FileSystemModule/icons/globe.svg +38 -0
- PySide6/examples/quickcontrols/filesystemexplorer/FileSystemModule/icons/info_sign.svg +38 -0
- PySide6/examples/quickcontrols/filesystemexplorer/FileSystemModule/icons/light_bulb.svg +43 -0
- PySide6/examples/quickcontrols/filesystemexplorer/FileSystemModule/icons/qt_logo.svg +26 -0
- PySide6/examples/quickcontrols/filesystemexplorer/FileSystemModule/icons/read.svg +38 -0
- PySide6/examples/quickcontrols/filesystemexplorer/FileSystemModule/icons/resize.svg +6 -0
- PySide6/examples/quickcontrols/filesystemexplorer/FileSystemModule/icons.qrc +14 -0
- PySide6/examples/quickcontrols/filesystemexplorer/FileSystemModule/qml/About.qml +93 -0
- PySide6/examples/quickcontrols/filesystemexplorer/FileSystemModule/qml/Colors.qml +23 -0
- PySide6/examples/quickcontrols/filesystemexplorer/FileSystemModule/qml/Editor.qml +160 -0
- PySide6/examples/quickcontrols/filesystemexplorer/FileSystemModule/qml/FileSystemView.qml +156 -0
- PySide6/examples/quickcontrols/filesystemexplorer/FileSystemModule/qml/MyMenu.qml +45 -0
- PySide6/examples/quickcontrols/filesystemexplorer/FileSystemModule/qml/MyMenuBar.qml +177 -0
- PySide6/examples/quickcontrols/filesystemexplorer/FileSystemModule/qml/ResizeButton.qml +23 -0
- PySide6/examples/quickcontrols/filesystemexplorer/FileSystemModule/qml/Sidebar.qml +138 -0
- PySide6/examples/quickcontrols/filesystemexplorer/FileSystemModule/qml/WindowDragHandler.qml +16 -0
- PySide6/examples/quickcontrols/filesystemexplorer/FileSystemModule/qmldir +11 -0
- PySide6/examples/quickcontrols/filesystemexplorer/doc/filesystemexplorer.rst +52 -0
- PySide6/examples/quickcontrols/filesystemexplorer/doc/filesystemexplorer.webp +0 -0
- PySide6/examples/quickcontrols/filesystemexplorer/editormodels.py +116 -0
- PySide6/examples/quickcontrols/filesystemexplorer/filesystemexplorer.pyproject +29 -0
- PySide6/examples/quickcontrols/filesystemexplorer/main.py +48 -0
- PySide6/examples/quickcontrols/gallery/+Material/ToolBar.qml +8 -0
- PySide6/examples/quickcontrols/gallery/ToolBar.qml +6 -0
- PySide6/examples/quickcontrols/gallery/doc/gallery.png +0 -0
- PySide6/examples/quickcontrols/gallery/doc/gallery.rst +9 -0
- PySide6/examples/quickcontrols/gallery/doc/images/qtquickcontrols2-gallery-drawer.png +0 -0
- PySide6/examples/quickcontrols/gallery/doc/images/qtquickcontrols2-gallery-menu.png +0 -0
- PySide6/examples/quickcontrols/gallery/doc/images/qtquickcontrols2-gallery-welcome.png +0 -0
- PySide6/examples/quickcontrols/gallery/gallery.py +52 -0
- PySide6/examples/quickcontrols/gallery/gallery.pyproject +36 -0
- PySide6/examples/quickcontrols/gallery/gallery.qml +318 -0
- PySide6/examples/quickcontrols/gallery/gallery.qrc +61 -0
- PySide6/examples/quickcontrols/gallery/icons/gallery/20x20/back.png +0 -0
- PySide6/examples/quickcontrols/gallery/icons/gallery/20x20/drawer.png +0 -0
- PySide6/examples/quickcontrols/gallery/icons/gallery/20x20/menu.png +0 -0
- PySide6/examples/quickcontrols/gallery/icons/gallery/20x20@2/back.png +0 -0
- PySide6/examples/quickcontrols/gallery/icons/gallery/20x20@2/drawer.png +0 -0
- PySide6/examples/quickcontrols/gallery/icons/gallery/20x20@2/menu.png +0 -0
- PySide6/examples/quickcontrols/gallery/icons/gallery/20x20@3/back.png +0 -0
- PySide6/examples/quickcontrols/gallery/icons/gallery/20x20@3/drawer.png +0 -0
- PySide6/examples/quickcontrols/gallery/icons/gallery/20x20@3/menu.png +0 -0
- PySide6/examples/quickcontrols/gallery/icons/gallery/20x20@4/back.png +0 -0
- PySide6/examples/quickcontrols/gallery/icons/gallery/20x20@4/drawer.png +0 -0
- PySide6/examples/quickcontrols/gallery/icons/gallery/20x20@4/menu.png +0 -0
- PySide6/examples/quickcontrols/gallery/icons/gallery/index.theme +24 -0
- PySide6/examples/quickcontrols/gallery/images/arrow.png +0 -0
- PySide6/examples/quickcontrols/gallery/images/arrow@2x.png +0 -0
- PySide6/examples/quickcontrols/gallery/images/arrow@3x.png +0 -0
- PySide6/examples/quickcontrols/gallery/images/arrow@4x.png +0 -0
- PySide6/examples/quickcontrols/gallery/images/arrows.png +0 -0
- PySide6/examples/quickcontrols/gallery/images/arrows@2x.png +0 -0
- PySide6/examples/quickcontrols/gallery/images/arrows@3x.png +0 -0
- PySide6/examples/quickcontrols/gallery/images/arrows@4x.png +0 -0
- PySide6/examples/quickcontrols/gallery/images/qt-logo.png +0 -0
- PySide6/examples/quickcontrols/gallery/images/qt-logo@2x.png +0 -0
- PySide6/examples/quickcontrols/gallery/images/qt-logo@3x.png +0 -0
- PySide6/examples/quickcontrols/gallery/images/qt-logo@4x.png +0 -0
- PySide6/examples/quickcontrols/gallery/pages/BusyIndicatorPage.qml +28 -0
- PySide6/examples/quickcontrols/gallery/pages/ButtonPage.qml +44 -0
- PySide6/examples/quickcontrols/gallery/pages/CheckBoxPage.qml +40 -0
- PySide6/examples/quickcontrols/gallery/pages/ComboBoxPage.qml +51 -0
- PySide6/examples/quickcontrols/gallery/pages/DelayButtonPage.qml +27 -0
- PySide6/examples/quickcontrols/gallery/pages/DelegatePage.qml +201 -0
- PySide6/examples/quickcontrols/gallery/pages/DialPage.qml +27 -0
- PySide6/examples/quickcontrols/gallery/pages/DialogPage.qml +179 -0
- PySide6/examples/quickcontrols/gallery/pages/FramePage.qml +47 -0
- PySide6/examples/quickcontrols/gallery/pages/GroupBoxPage.qml +48 -0
- PySide6/examples/quickcontrols/gallery/pages/PageIndicatorPage.qml +27 -0
- PySide6/examples/quickcontrols/gallery/pages/ProgressBarPage.qml +33 -0
- PySide6/examples/quickcontrols/gallery/pages/RadioButtonPage.qml +39 -0
- PySide6/examples/quickcontrols/gallery/pages/RangeSliderPage.qml +35 -0
- PySide6/examples/quickcontrols/gallery/pages/ScrollBarPage.qml +40 -0
- PySide6/examples/quickcontrols/gallery/pages/ScrollIndicatorPage.qml +40 -0
- PySide6/examples/quickcontrols/gallery/pages/ScrollablePage.qml +24 -0
- PySide6/examples/quickcontrols/gallery/pages/SliderPage.qml +33 -0
- PySide6/examples/quickcontrols/gallery/pages/SpinBoxPage.qml +29 -0
- PySide6/examples/quickcontrols/gallery/pages/StackViewPage.qml +58 -0
- PySide6/examples/quickcontrols/gallery/pages/SwipeViewPage.qml +49 -0
- PySide6/examples/quickcontrols/gallery/pages/SwitchPage.qml +39 -0
- PySide6/examples/quickcontrols/gallery/pages/TabBarPage.qml +57 -0
- PySide6/examples/quickcontrols/gallery/pages/TextAreaPage.qml +29 -0
- PySide6/examples/quickcontrols/gallery/pages/TextFieldPage.qml +27 -0
- PySide6/examples/quickcontrols/gallery/pages/ToolTipPage.qml +30 -0
- PySide6/examples/quickcontrols/gallery/pages/TumblerPage.qml +26 -0
- PySide6/examples/quickcontrols/gallery/qmldir +1 -0
- PySide6/examples/quickcontrols/gallery/qtquickcontrols2.conf +8 -0
- PySide6/examples/quickcontrols/gallery/rc_gallery.py +4410 -0
- PySide6/examples/remoteobjects/modelview/modelview.pyproject +3 -0
- PySide6/examples/remoteobjects/modelview/modelviewclient.py +24 -0
- PySide6/examples/remoteobjects/modelview/modelviewserver.py +103 -0
- PySide6/examples/samplebinding/CMakeLists.txt +252 -0
- PySide6/examples/samplebinding/bindings.h +10 -0
- PySide6/examples/samplebinding/bindings.xml +31 -0
- PySide6/examples/samplebinding/doc/bindings.h.rstinc +2 -0
- PySide6/examples/samplebinding/doc/bindings.xml.rstinc +31 -0
- PySide6/examples/samplebinding/doc/samplebinding.pyproject +11 -0
- PySide6/examples/samplebinding/doc/samplebinding.rst +288 -0
- PySide6/examples/samplebinding/icecream.cpp +26 -0
- PySide6/examples/samplebinding/icecream.h +26 -0
- PySide6/examples/samplebinding/macros.h +21 -0
- PySide6/examples/samplebinding/main.py +64 -0
- PySide6/examples/samplebinding/truck.cpp +93 -0
- PySide6/examples/samplebinding/truck.h +46 -0
- PySide6/examples/scriptableapplication/CMakeLists.txt +228 -0
- PySide6/examples/scriptableapplication/doc/scriptableapplication.pyproject +9 -0
- PySide6/examples/scriptableapplication/doc/scriptableapplication.rst +195 -0
- PySide6/examples/scriptableapplication/main.cpp +17 -0
- PySide6/examples/scriptableapplication/mainwindow.cpp +107 -0
- PySide6/examples/scriptableapplication/mainwindow.h +31 -0
- PySide6/examples/scriptableapplication/pyside.pri +52 -0
- PySide6/examples/scriptableapplication/pythonutils.cpp +134 -0
- PySide6/examples/scriptableapplication/pythonutils.h +34 -0
- PySide6/examples/scriptableapplication/scriptableapplication.pro +85 -0
- PySide6/examples/scriptableapplication/scriptableapplication.xml +9 -0
- PySide6/examples/scriptableapplication/wrappedclasses.h +9 -0
- PySide6/examples/serialbus/can/bitratebox.py +55 -0
- PySide6/examples/serialbus/can/can.pyproject +10 -0
- PySide6/examples/serialbus/can/can.qrc +8 -0
- PySide6/examples/serialbus/can/canbusdeviceinfobox.py +49 -0
- PySide6/examples/serialbus/can/canbusdeviceinfobox.ui +86 -0
- PySide6/examples/serialbus/can/canbusdeviceinfodialog.py +16 -0
- PySide6/examples/serialbus/can/canbusdeviceinfodialog.ui +66 -0
- PySide6/examples/serialbus/can/connectdialog.py +235 -0
- PySide6/examples/serialbus/can/connectdialog.ui +278 -0
- PySide6/examples/serialbus/can/doc/can.rst +6 -0
- PySide6/examples/serialbus/can/images/application-exit.png +0 -0
- PySide6/examples/serialbus/can/images/clear.png +0 -0
- PySide6/examples/serialbus/can/images/connect.png +0 -0
- PySide6/examples/serialbus/can/images/disconnect.png +0 -0
- PySide6/examples/serialbus/can/main.py +18 -0
- PySide6/examples/serialbus/can/mainwindow.py +238 -0
- PySide6/examples/serialbus/can/mainwindow.ui +207 -0
- PySide6/examples/serialbus/can/rc_can.py +3453 -0
- PySide6/examples/serialbus/can/receivedframesmodel.py +142 -0
- PySide6/examples/serialbus/can/receivedframesview.py +54 -0
- PySide6/examples/serialbus/can/sendframebox.py +195 -0
- PySide6/examples/serialbus/can/sendframebox.ui +211 -0
- PySide6/examples/serialbus/can/ui_canbusdeviceinfobox.py +88 -0
- PySide6/examples/serialbus/can/ui_canbusdeviceinfodialog.py +64 -0
- PySide6/examples/serialbus/can/ui_connectdialog.py +252 -0
- PySide6/examples/serialbus/can/ui_mainwindow.py +172 -0
- PySide6/examples/serialbus/can/ui_sendframebox.py +188 -0
- PySide6/examples/serialbus/modbus/modbusclient/doc/modbusclient.rst +9 -0
- PySide6/examples/serialbus/modbus/modbusclient/images/application-exit.png +0 -0
- PySide6/examples/serialbus/modbus/modbusclient/images/connect.png +0 -0
- PySide6/examples/serialbus/modbus/modbusclient/images/disconnect.png +0 -0
- PySide6/examples/serialbus/modbus/modbusclient/images/settings.png +0 -0
- PySide6/examples/serialbus/modbus/modbusclient/main.py +26 -0
- PySide6/examples/serialbus/modbus/modbusclient/mainwindow.py +331 -0
- PySide6/examples/serialbus/modbus/modbusclient/mainwindow.ui +520 -0
- PySide6/examples/serialbus/modbus/modbusclient/modbusclient.pyproject +5 -0
- PySide6/examples/serialbus/modbus/modbusclient/modbusclient.qrc +8 -0
- PySide6/examples/serialbus/modbus/modbusclient/rc_modbusclient.py +3672 -0
- PySide6/examples/serialbus/modbus/modbusclient/settingsdialog.py +52 -0
- PySide6/examples/serialbus/modbus/modbusclient/settingsdialog.ui +237 -0
- PySide6/examples/serialbus/modbus/modbusclient/ui_mainwindow.py +377 -0
- PySide6/examples/serialbus/modbus/modbusclient/ui_settingsdialog.py +173 -0
- PySide6/examples/serialbus/modbus/modbusclient/writeregistermodel.py +118 -0
- PySide6/examples/serialport/terminal/console.py +49 -0
- PySide6/examples/serialport/terminal/doc/terminal.rst +9 -0
- PySide6/examples/serialport/terminal/images/application-exit.png +0 -0
- PySide6/examples/serialport/terminal/images/clear.png +0 -0
- PySide6/examples/serialport/terminal/images/connect.png +0 -0
- PySide6/examples/serialport/terminal/images/disconnect.png +0 -0
- PySide6/examples/serialport/terminal/images/settings.png +0 -0
- PySide6/examples/serialport/terminal/main.py +17 -0
- PySide6/examples/serialport/terminal/mainwindow.py +108 -0
- PySide6/examples/serialport/terminal/mainwindow.ui +162 -0
- PySide6/examples/serialport/terminal/rc_terminal.py +4464 -0
- PySide6/examples/serialport/terminal/settingsdialog.py +180 -0
- PySide6/examples/serialport/terminal/settingsdialog.ui +177 -0
- PySide6/examples/serialport/terminal/terminal.pyproject +4 -0
- PySide6/examples/serialport/terminal/terminal.qrc +9 -0
- PySide6/examples/serialport/terminal/ui_mainwindow.py +149 -0
- PySide6/examples/serialport/terminal/ui_settingsdialog.py +181 -0
- PySide6/examples/spatialaudio/audiopanning/audiopanning.pyproject +3 -0
- PySide6/examples/spatialaudio/audiopanning/doc/audiopanning.rst +15 -0
- PySide6/examples/spatialaudio/audiopanning/main.py +193 -0
- PySide6/examples/speech/hello_speak/doc/hello_speak.rst +16 -0
- PySide6/examples/speech/hello_speak/doc/hello_speak.webp +0 -0
- PySide6/examples/speech/hello_speak/hello_speak.pyproject +5 -0
- PySide6/examples/speech/hello_speak/main.py +20 -0
- PySide6/examples/speech/hello_speak/mainwindow.py +134 -0
- PySide6/examples/speech/hello_speak/mainwindow.ui +267 -0
- PySide6/examples/speech/hello_speak/ui_mainwindow.py +211 -0
- PySide6/examples/sql/books/bookdelegate.py +97 -0
- PySide6/examples/sql/books/books.pyproject +5 -0
- PySide6/examples/sql/books/books.qrc +6 -0
- PySide6/examples/sql/books/bookwindow.py +98 -0
- PySide6/examples/sql/books/bookwindow.ui +164 -0
- PySide6/examples/sql/books/createdb.py +96 -0
- PySide6/examples/sql/books/doc/books.png +0 -0
- PySide6/examples/sql/books/doc/books.rst +11 -0
- PySide6/examples/sql/books/images/star-filled.svg +1 -0
- PySide6/examples/sql/books/images/star.svg +1 -0
- PySide6/examples/sql/books/main.py +16 -0
- PySide6/examples/sql/books/rc_books.py +118 -0
- PySide6/examples/sql/books/ui_bookwindow.py +135 -0
- PySide6/examples/sql/relationaltablemodel/connection.py +18 -0
- PySide6/examples/sql/relationaltablemodel/relationaltablemodel.py +77 -0
- PySide6/examples/statemachine/moveblocks/doc/moveblocks.png +0 -0
- PySide6/examples/statemachine/moveblocks/doc/moveblocks.rst +10 -0
- PySide6/examples/statemachine/moveblocks/moveblocks.py +222 -0
- PySide6/examples/statemachine/moveblocks/moveblocks.pyproject +3 -0
- PySide6/examples/statemachine/ping_pong/ping_pong.py +70 -0
- PySide6/examples/statemachine/ping_pong/ping_pong.pyproject +3 -0
- PySide6/examples/statemachine/rogue/rogue.py +179 -0
- PySide6/examples/statemachine/rogue/rogue.pyproject +3 -0
- PySide6/examples/statemachine/trafficlight/doc/trafficlight.png +0 -0
- PySide6/examples/statemachine/trafficlight/doc/trafficlight.rst +10 -0
- PySide6/examples/statemachine/trafficlight/trafficlight.py +117 -0
- PySide6/examples/statemachine/trafficlight/trafficlight.pyproject +3 -0
- PySide6/examples/uitools/uiloader/uiloader.py +35 -0
- PySide6/examples/uitools/uiloader/uiloader.pyproject +3 -0
- PySide6/examples/utils/pyside_config.py +340 -0
- PySide6/examples/webchannel/standalone/core.py +25 -0
- PySide6/examples/webchannel/standalone/dialog.py +32 -0
- PySide6/examples/webchannel/standalone/dialog.ui +48 -0
- PySide6/examples/webchannel/standalone/doc/standalone.png +0 -0
- PySide6/examples/webchannel/standalone/doc/standalone.rst +8 -0
- PySide6/examples/webchannel/standalone/index.html +79 -0
- PySide6/examples/webchannel/standalone/main.py +62 -0
- PySide6/examples/webchannel/standalone/standalone.pyproject +4 -0
- PySide6/examples/webchannel/standalone/ui_dialog.py +57 -0
- PySide6/examples/webchannel/standalone/websocketclientwrapper.py +35 -0
- PySide6/examples/webchannel/standalone/websockettransport.py +51 -0
- PySide6/examples/webenginequick/nanobrowser/ApplicationRoot.qml +40 -0
- PySide6/examples/webenginequick/nanobrowser/BrowserDialog.qml +27 -0
- PySide6/examples/webenginequick/nanobrowser/BrowserWindow.qml +817 -0
- PySide6/examples/webenginequick/nanobrowser/DownloadView.qml +127 -0
- PySide6/examples/webenginequick/nanobrowser/FindBar.qml +95 -0
- PySide6/examples/webenginequick/nanobrowser/FullScreenNotification.qml +62 -0
- PySide6/examples/webenginequick/nanobrowser/doc/nanobrowser.png +0 -0
- PySide6/examples/webenginequick/nanobrowser/doc/nanobrowser.rst +8 -0
- PySide6/examples/webenginequick/nanobrowser/icons/3rdparty/COPYING +1 -0
- PySide6/examples/webenginequick/nanobrowser/icons/3rdparty/go-next.png +0 -0
- PySide6/examples/webenginequick/nanobrowser/icons/3rdparty/go-previous.png +0 -0
- PySide6/examples/webenginequick/nanobrowser/icons/3rdparty/process-stop.png +0 -0
- PySide6/examples/webenginequick/nanobrowser/icons/3rdparty/view-refresh.png +0 -0
- PySide6/examples/webenginequick/nanobrowser/nanobrowser.pyproject +6 -0
- PySide6/examples/webenginequick/nanobrowser/quicknanobrowser.py +70 -0
- PySide6/examples/webenginequick/nanobrowser/rc_resources.py +348 -0
- PySide6/examples/webenginequick/nanobrowser/resources.qrc +8 -0
- PySide6/examples/webenginewidgets/markdowneditor/document.py +24 -0
- PySide6/examples/webenginewidgets/markdowneditor/main.py +20 -0
- PySide6/examples/webenginewidgets/markdowneditor/mainwindow.py +137 -0
- PySide6/examples/webenginewidgets/markdowneditor/mainwindow.ui +107 -0
- PySide6/examples/webenginewidgets/markdowneditor/markdowneditor.pyproject +8 -0
- PySide6/examples/webenginewidgets/markdowneditor/previewpage.py +18 -0
- PySide6/examples/webenginewidgets/markdowneditor/rc_markdowneditor.py +852 -0
- PySide6/examples/webenginewidgets/markdowneditor/resources/3rdparty/MARKDOWN-LICENSE.txt +16 -0
- PySide6/examples/webenginewidgets/markdowneditor/resources/3rdparty/MARKED-LICENSE.txt +19 -0
- PySide6/examples/webenginewidgets/markdowneditor/resources/3rdparty/markdown.css +260 -0
- PySide6/examples/webenginewidgets/markdowneditor/resources/3rdparty/marked.js +1514 -0
- PySide6/examples/webenginewidgets/markdowneditor/resources/3rdparty/qt_attribution.json +35 -0
- PySide6/examples/webenginewidgets/markdowneditor/resources/default.md +12 -0
- PySide6/examples/webenginewidgets/markdowneditor/resources/index.html +32 -0
- PySide6/examples/webenginewidgets/markdowneditor/resources/markdowneditor.qrc +8 -0
- PySide6/examples/webenginewidgets/markdowneditor/ui_mainwindow.py +115 -0
- PySide6/examples/webenginewidgets/notifications/doc/notifications.png +0 -0
- PySide6/examples/webenginewidgets/notifications/doc/notifications.rst +8 -0
- PySide6/examples/webenginewidgets/notifications/main.py +57 -0
- PySide6/examples/webenginewidgets/notifications/notificationpopup.py +68 -0
- PySide6/examples/webenginewidgets/notifications/notifications.pyproject +3 -0
- PySide6/examples/webenginewidgets/notifications/resources/icon.png +0 -0
- PySide6/examples/webenginewidgets/notifications/resources/index.html +91 -0
- PySide6/examples/webenginewidgets/simplebrowser/browser.py +69 -0
- PySide6/examples/webenginewidgets/simplebrowser/browserwindow.py +500 -0
- PySide6/examples/webenginewidgets/simplebrowser/certificateerrordialog.ui +133 -0
- PySide6/examples/webenginewidgets/simplebrowser/data/3rdparty/COPYING +1 -0
- PySide6/examples/webenginewidgets/simplebrowser/data/3rdparty/dialog-error.png +0 -0
- PySide6/examples/webenginewidgets/simplebrowser/data/3rdparty/edit-clear.png +0 -0
- PySide6/examples/webenginewidgets/simplebrowser/data/3rdparty/go-bottom.png +0 -0
- PySide6/examples/webenginewidgets/simplebrowser/data/3rdparty/go-next.png +0 -0
- PySide6/examples/webenginewidgets/simplebrowser/data/3rdparty/go-previous.png +0 -0
- PySide6/examples/webenginewidgets/simplebrowser/data/3rdparty/process-stop.png +0 -0
- PySide6/examples/webenginewidgets/simplebrowser/data/3rdparty/qt_attribution.json +24 -0
- PySide6/examples/webenginewidgets/simplebrowser/data/3rdparty/text-html.png +0 -0
- PySide6/examples/webenginewidgets/simplebrowser/data/3rdparty/view-refresh.png +0 -0
- PySide6/examples/webenginewidgets/simplebrowser/data/AppLogoColor.png +0 -0
- PySide6/examples/webenginewidgets/simplebrowser/data/ninja.png +0 -0
- PySide6/examples/webenginewidgets/simplebrowser/data/rc_simplebrowser.py +1391 -0
- PySide6/examples/webenginewidgets/simplebrowser/data/simplebrowser.qrc +16 -0
- PySide6/examples/webenginewidgets/simplebrowser/doc/simplebrowser.rst +177 -0
- PySide6/examples/webenginewidgets/simplebrowser/doc/simplebrowser.webp +0 -0
- PySide6/examples/webenginewidgets/simplebrowser/downloadmanagerwidget.py +51 -0
- PySide6/examples/webenginewidgets/simplebrowser/downloadmanagerwidget.ui +104 -0
- PySide6/examples/webenginewidgets/simplebrowser/downloadwidget.py +109 -0
- PySide6/examples/webenginewidgets/simplebrowser/downloadwidget.ui +78 -0
- PySide6/examples/webenginewidgets/simplebrowser/main.py +45 -0
- PySide6/examples/webenginewidgets/simplebrowser/passworddialog.ui +121 -0
- PySide6/examples/webenginewidgets/simplebrowser/simplebrowser.pyproject +7 -0
- PySide6/examples/webenginewidgets/simplebrowser/tabwidget.py +241 -0
- PySide6/examples/webenginewidgets/simplebrowser/ui_certificateerrordialog.py +87 -0
- PySide6/examples/webenginewidgets/simplebrowser/ui_downloadmanagerwidget.py +76 -0
- PySide6/examples/webenginewidgets/simplebrowser/ui_downloadwidget.py +86 -0
- PySide6/examples/webenginewidgets/simplebrowser/ui_passworddialog.py +96 -0
- PySide6/examples/webenginewidgets/simplebrowser/webpage.py +29 -0
- PySide6/examples/webenginewidgets/simplebrowser/webpopupwindow.py +53 -0
- PySide6/examples/webenginewidgets/simplebrowser/webview.py +294 -0
- PySide6/examples/webenginewidgets/widgetsnanobrowser/doc/widgetsnanobrowser.png +0 -0
- PySide6/examples/webenginewidgets/widgetsnanobrowser/doc/widgetsnanobrowser.rst +8 -0
- PySide6/examples/webenginewidgets/widgetsnanobrowser/widgetsnanobrowser.py +70 -0
- PySide6/examples/webenginewidgets/widgetsnanobrowser/widgetsnanobrowser.pyproject +3 -0
- PySide6/examples/widgetbinding/CMakeLists.txt +294 -0
- PySide6/examples/widgetbinding/bindings.h +7 -0
- PySide6/examples/widgetbinding/bindings.xml +9 -0
- PySide6/examples/widgetbinding/dialog.py +33 -0
- PySide6/examples/widgetbinding/doc/widgetbinding.md +74 -0
- PySide6/examples/widgetbinding/doc/widgetbinding.pyproject +10 -0
- PySide6/examples/widgetbinding/macros.h +16 -0
- PySide6/examples/widgetbinding/main.py +14 -0
- PySide6/examples/widgetbinding/registerwigglywidget.py +31 -0
- PySide6/examples/widgetbinding/wigglywidget.cpp +92 -0
- PySide6/examples/widgetbinding/wigglywidget.h +40 -0
- PySide6/examples/widgetbinding/wigglywidget.py +69 -0
- PySide6/examples/widgets/animation/animatedtiles/animatedtiles.py +231 -0
- PySide6/examples/widgets/animation/animatedtiles/animatedtiles.pyproject +3 -0
- PySide6/examples/widgets/animation/animatedtiles/animatedtiles.qrc +11 -0
- PySide6/examples/widgets/animation/animatedtiles/animatedtiles_rc.py +6108 -0
- PySide6/examples/widgets/animation/animatedtiles/doc/animatedtiles.png +0 -0
- PySide6/examples/widgets/animation/animatedtiles/doc/animatedtiles.rst +8 -0
- PySide6/examples/widgets/animation/animatedtiles/images/Time-For-Lunch-2.jpg +0 -0
- PySide6/examples/widgets/animation/animatedtiles/images/centered.png +0 -0
- PySide6/examples/widgets/animation/animatedtiles/images/ellipse.png +0 -0
- PySide6/examples/widgets/animation/animatedtiles/images/figure8.png +0 -0
- PySide6/examples/widgets/animation/animatedtiles/images/kinetic.png +0 -0
- PySide6/examples/widgets/animation/animatedtiles/images/random.png +0 -0
- PySide6/examples/widgets/animation/animatedtiles/images/tile.png +0 -0
- PySide6/examples/widgets/animation/appchooser/accessories-dictionary.png +0 -0
- PySide6/examples/widgets/animation/appchooser/akregator.png +0 -0
- PySide6/examples/widgets/animation/appchooser/appchooser.py +99 -0
- PySide6/examples/widgets/animation/appchooser/appchooser.pyproject +3 -0
- PySide6/examples/widgets/animation/appchooser/appchooser.qrc +8 -0
- PySide6/examples/widgets/animation/appchooser/appchooser_rc.py +1424 -0
- PySide6/examples/widgets/animation/appchooser/digikam.png +0 -0
- PySide6/examples/widgets/animation/appchooser/doc/appchooser.png +0 -0
- PySide6/examples/widgets/animation/appchooser/doc/appchooser.rst +9 -0
- PySide6/examples/widgets/animation/appchooser/k3b.png +0 -0
- PySide6/examples/widgets/animation/easing/doc/easing.png +0 -0
- PySide6/examples/widgets/animation/easing/doc/easing.rst +9 -0
- PySide6/examples/widgets/animation/easing/easing.py +219 -0
- PySide6/examples/widgets/animation/easing/easing.pyproject +3 -0
- PySide6/examples/widgets/animation/easing/form.ui +270 -0
- PySide6/examples/widgets/animation/easing/ui_form.py +178 -0
- PySide6/examples/widgets/animation/states/doc/states.png +0 -0
- PySide6/examples/widgets/animation/states/doc/states.rst +8 -0
- PySide6/examples/widgets/animation/states/states.py +235 -0
- PySide6/examples/widgets/animation/states/states.pyproject +3 -0
- PySide6/examples/widgets/animation/states/states_rc.py +2182 -0
- PySide6/examples/widgets/desktop/screenshot/doc/screenshot.png +0 -0
- PySide6/examples/widgets/desktop/screenshot/doc/screenshot.rst +8 -0
- PySide6/examples/widgets/desktop/screenshot/screenshot.py +156 -0
- PySide6/examples/widgets/desktop/screenshot/screenshot.pyproject +3 -0
- PySide6/examples/widgets/desktop/systray/images/bad.png +0 -0
- PySide6/examples/widgets/desktop/systray/images/heart.png +0 -0
- PySide6/examples/widgets/desktop/systray/images/trash.png +0 -0
- PySide6/examples/widgets/desktop/systray/main.py +21 -0
- PySide6/examples/widgets/desktop/systray/rc_systray.py +2581 -0
- PySide6/examples/widgets/desktop/systray/systray.pyproject +3 -0
- PySide6/examples/widgets/desktop/systray/systray.qrc +7 -0
- PySide6/examples/widgets/desktop/systray/window.py +236 -0
- PySide6/examples/widgets/dialogs/classwizard/classwizard.py +380 -0
- PySide6/examples/widgets/dialogs/classwizard/classwizard.pyproject +3 -0
- PySide6/examples/widgets/dialogs/classwizard/classwizard.qrc +7 -0
- PySide6/examples/widgets/dialogs/classwizard/classwizard_rc.py +2316 -0
- PySide6/examples/widgets/dialogs/classwizard/doc/classwizard.png +0 -0
- PySide6/examples/widgets/dialogs/classwizard/doc/classwizard.rst +11 -0
- PySide6/examples/widgets/dialogs/classwizard/images/background.png +0 -0
- PySide6/examples/widgets/dialogs/classwizard/images/banner.png +0 -0
- PySide6/examples/widgets/dialogs/classwizard/images/watermark1.png +0 -0
- PySide6/examples/widgets/dialogs/classwizard/listchooser.py +173 -0
- PySide6/examples/widgets/dialogs/extension/extension.py +77 -0
- PySide6/examples/widgets/dialogs/extension/extension.pyproject +3 -0
- PySide6/examples/widgets/dialogs/licensewizard/doc/licensewizard.png +0 -0
- PySide6/examples/widgets/dialogs/licensewizard/doc/licensewizard.rst +9 -0
- PySide6/examples/widgets/dialogs/licensewizard/images/logo.png +0 -0
- PySide6/examples/widgets/dialogs/licensewizard/images/watermark.png +0 -0
- PySide6/examples/widgets/dialogs/licensewizard/licensewizard.py +298 -0
- PySide6/examples/widgets/dialogs/licensewizard/licensewizard.pyproject +3 -0
- PySide6/examples/widgets/dialogs/licensewizard/main.py +15 -0
- PySide6/examples/widgets/dialogs/standarddialogs/standarddialogs.py +437 -0
- PySide6/examples/widgets/dialogs/standarddialogs/standarddialogs.pyproject +3 -0
- PySide6/examples/widgets/dialogs/tabdialog/doc/tabdialog.png +0 -0
- PySide6/examples/widgets/dialogs/tabdialog/doc/tabdialog.rst +13 -0
- PySide6/examples/widgets/dialogs/tabdialog/tabdialog.py +178 -0
- PySide6/examples/widgets/dialogs/tabdialog/tabdialog.pyproject +3 -0
- PySide6/examples/widgets/dialogs/trivialwizard/trivialwizard.py +63 -0
- PySide6/examples/widgets/dialogs/trivialwizard/trivialwizard.pyproject +3 -0
- PySide6/examples/widgets/draganddrop/draggableicons/doc/draggableicons.png +0 -0
- PySide6/examples/widgets/draganddrop/draggableicons/doc/draggableicons.rst +9 -0
- PySide6/examples/widgets/draganddrop/draggableicons/draggableicons.py +128 -0
- PySide6/examples/widgets/draganddrop/draggableicons/draggableicons.qrc +7 -0
- PySide6/examples/widgets/draganddrop/draggableicons/images/boat.png +0 -0
- PySide6/examples/widgets/draganddrop/draggableicons/images/car.png +0 -0
- PySide6/examples/widgets/draganddrop/draggableicons/images/house.png +0 -0
- PySide6/examples/widgets/draganddrop/draggabletext/draggabletext.py +119 -0
- PySide6/examples/widgets/draganddrop/draggabletext/draggabletext.pyproject +3 -0
- PySide6/examples/widgets/draganddrop/draggabletext/draggabletext.qrc +5 -0
- PySide6/examples/widgets/draganddrop/draggabletext/draggabletext_rc.py +55 -0
- PySide6/examples/widgets/draganddrop/draggabletext/words.txt +41 -0
- PySide6/examples/widgets/draganddrop/dropsite/doc/dropsite.rst +8 -0
- PySide6/examples/widgets/draganddrop/dropsite/droparea.py +67 -0
- PySide6/examples/widgets/draganddrop/dropsite/dropsite.pyproject +3 -0
- PySide6/examples/widgets/draganddrop/dropsite/dropsitewindow.py +115 -0
- PySide6/examples/widgets/draganddrop/dropsite/main.py +15 -0
- PySide6/examples/widgets/effects/blurpicker/blureffect.py +33 -0
- PySide6/examples/widgets/effects/blurpicker/blurpicker.py +105 -0
- PySide6/examples/widgets/effects/blurpicker/blurpicker.pyproject +17 -0
- PySide6/examples/widgets/effects/blurpicker/doc/blurpicker.png +0 -0
- PySide6/examples/widgets/effects/blurpicker/doc/blurpicker.rst +9 -0
- PySide6/examples/widgets/effects/blurpicker/images/README.txt +5 -0
- PySide6/examples/widgets/effects/blurpicker/images/accessories-calculator.png +0 -0
- PySide6/examples/widgets/effects/blurpicker/images/accessories-text-editor.png +0 -0
- PySide6/examples/widgets/effects/blurpicker/images/background.jpg +0 -0
- PySide6/examples/widgets/effects/blurpicker/images/help-browser.png +0 -0
- PySide6/examples/widgets/effects/blurpicker/images/internet-group-chat.png +0 -0
- PySide6/examples/widgets/effects/blurpicker/images/internet-mail.png +0 -0
- PySide6/examples/widgets/effects/blurpicker/images/internet-web-browser.png +0 -0
- PySide6/examples/widgets/effects/blurpicker/images/office-calendar.png +0 -0
- PySide6/examples/widgets/effects/blurpicker/images/system-users.png +0 -0
- PySide6/examples/widgets/effects/blurpicker/main.py +20 -0
- PySide6/examples/widgets/effects/lighting/lighting.py +107 -0
- PySide6/examples/widgets/effects/lighting/lighting.pyproject +3 -0
- PySide6/examples/widgets/gettext/doc/gettext.rst +7 -0
- PySide6/examples/widgets/gettext/gettext.pyproject +4 -0
- PySide6/examples/widgets/gettext/locales/de_DE/LC_MESSAGES/example.mo +0 -0
- PySide6/examples/widgets/gettext/locales/de_DE/LC_MESSAGES/example.pot +32 -0
- PySide6/examples/widgets/gettext/locales/example.pot +32 -0
- PySide6/examples/widgets/gettext/main.py +60 -0
- PySide6/examples/widgets/graphicsview/anchorlayout/anchorlayout.py +90 -0
- PySide6/examples/widgets/graphicsview/anchorlayout/anchorlayout.pyproject +3 -0
- PySide6/examples/widgets/graphicsview/collidingmice/collidingmice.py +178 -0
- PySide6/examples/widgets/graphicsview/collidingmice/collidingmice.pyproject +3 -0
- PySide6/examples/widgets/graphicsview/collidingmice/mice_rc.py +232 -0
- PySide6/examples/widgets/graphicsview/diagramscene/diagramscene.py +802 -0
- PySide6/examples/widgets/graphicsview/diagramscene/diagramscene.pyproject +3 -0
- PySide6/examples/widgets/graphicsview/diagramscene/diagramscene.qrc +19 -0
- PySide6/examples/widgets/graphicsview/diagramscene/diagramscene_rc.py +417 -0
- PySide6/examples/widgets/graphicsview/diagramscene/images/background1.png +0 -0
- PySide6/examples/widgets/graphicsview/diagramscene/images/background2.png +0 -0
- PySide6/examples/widgets/graphicsview/diagramscene/images/background3.png +0 -0
- PySide6/examples/widgets/graphicsview/diagramscene/images/background4.png +0 -0
- PySide6/examples/widgets/graphicsview/diagramscene/images/bold.png +0 -0
- PySide6/examples/widgets/graphicsview/diagramscene/images/bringtofront.png +0 -0
- PySide6/examples/widgets/graphicsview/diagramscene/images/delete.png +0 -0
- PySide6/examples/widgets/graphicsview/diagramscene/images/floodfill.png +0 -0
- PySide6/examples/widgets/graphicsview/diagramscene/images/italic.png +0 -0
- PySide6/examples/widgets/graphicsview/diagramscene/images/linecolor.png +0 -0
- PySide6/examples/widgets/graphicsview/diagramscene/images/linepointer.png +0 -0
- PySide6/examples/widgets/graphicsview/diagramscene/images/pointer.png +0 -0
- PySide6/examples/widgets/graphicsview/diagramscene/images/sendtoback.png +0 -0
- PySide6/examples/widgets/graphicsview/diagramscene/images/textpointer.png +0 -0
- PySide6/examples/widgets/graphicsview/diagramscene/images/underline.png +0 -0
- PySide6/examples/widgets/graphicsview/dragdroprobot/dragdroprobot.py +253 -0
- PySide6/examples/widgets/graphicsview/dragdroprobot/dragdroprobot.pyproject +3 -0
- PySide6/examples/widgets/graphicsview/dragdroprobot/dragdroprobot.qrc +5 -0
- PySide6/examples/widgets/graphicsview/dragdroprobot/dragdroprobot_rc.py +975 -0
- PySide6/examples/widgets/graphicsview/dragdroprobot/images/head.png +0 -0
- PySide6/examples/widgets/graphicsview/elasticnodes/elasticnodes.py +391 -0
- PySide6/examples/widgets/graphicsview/elasticnodes/elasticnodes.pyproject +3 -0
- PySide6/examples/widgets/imageviewer/imageviewer.py +277 -0
- PySide6/examples/widgets/imageviewer/imageviewer.pyproject +3 -0
- PySide6/examples/widgets/imageviewer/main.py +27 -0
- PySide6/examples/widgets/itemviews/address_book/adddialogwidget.py +65 -0
- PySide6/examples/widgets/itemviews/address_book/address_book.py +99 -0
- PySide6/examples/widgets/itemviews/address_book/address_book.pyproject +4 -0
- PySide6/examples/widgets/itemviews/address_book/addresswidget.py +215 -0
- PySide6/examples/widgets/itemviews/address_book/doc/address_book.png +0 -0
- PySide6/examples/widgets/itemviews/address_book/doc/address_book.rst +9 -0
- PySide6/examples/widgets/itemviews/address_book/newaddresstab.py +56 -0
- PySide6/examples/widgets/itemviews/address_book/tablemodel.py +109 -0
- PySide6/examples/widgets/itemviews/basicfiltermodel/basicsortfiltermodel.py +178 -0
- PySide6/examples/widgets/itemviews/basicfiltermodel/basicsortfiltermodel.pyproject +3 -0
- PySide6/examples/widgets/itemviews/dirview/dirview.py +59 -0
- PySide6/examples/widgets/itemviews/dirview/dirview.pyproject +3 -0
- PySide6/examples/widgets/itemviews/dirview/doc/dirview.rst +5 -0
- PySide6/examples/widgets/itemviews/editabletreemodel/default.txt +40 -0
- PySide6/examples/widgets/itemviews/editabletreemodel/doc/editabletreemodel.png +0 -0
- PySide6/examples/widgets/itemviews/editabletreemodel/doc/editabletreemodel.rst +10 -0
- PySide6/examples/widgets/itemviews/editabletreemodel/editabletreemodel.pyproject +7 -0
- PySide6/examples/widgets/itemviews/editabletreemodel/main.py +14 -0
- PySide6/examples/widgets/itemviews/editabletreemodel/mainwindow.py +163 -0
- PySide6/examples/widgets/itemviews/editabletreemodel/treeitem.py +94 -0
- PySide6/examples/widgets/itemviews/editabletreemodel/treemodel.py +199 -0
- PySide6/examples/widgets/itemviews/fetchmore/fetchmore.py +137 -0
- PySide6/examples/widgets/itemviews/fetchmore/fetchmore.pyproject +3 -0
- PySide6/examples/widgets/itemviews/jsonmodel/doc/jsonmodel.png +0 -0
- PySide6/examples/widgets/itemviews/jsonmodel/doc/jsonmodel.rst +8 -0
- PySide6/examples/widgets/itemviews/jsonmodel/example.json +26 -0
- PySide6/examples/widgets/itemviews/jsonmodel/jsonmodel.py +320 -0
- PySide6/examples/widgets/itemviews/jsonmodel/jsonmodel.pyproject +3 -0
- PySide6/examples/widgets/itemviews/spinboxdelegate/doc/spinboxdelegate.rst +5 -0
- PySide6/examples/widgets/itemviews/spinboxdelegate/spinboxdelegate.py +79 -0
- PySide6/examples/widgets/itemviews/spinboxdelegate/spinboxdelegate.pyproject +3 -0
- PySide6/examples/widgets/itemviews/spreadsheet/doc/spreadsheet.png +0 -0
- PySide6/examples/widgets/itemviews/spreadsheet/doc/spreadsheet.rst +10 -0
- PySide6/examples/widgets/itemviews/spreadsheet/main.py +19 -0
- PySide6/examples/widgets/itemviews/spreadsheet/spreadsheet.py +544 -0
- PySide6/examples/widgets/itemviews/spreadsheet/spreadsheetdelegate.py +67 -0
- PySide6/examples/widgets/itemviews/spreadsheet/spreadsheetitem.py +122 -0
- PySide6/examples/widgets/itemviews/stardelegate/doc/stardelegate.png +0 -0
- PySide6/examples/widgets/itemviews/stardelegate/doc/stardelegate.rst +10 -0
- PySide6/examples/widgets/itemviews/stardelegate/stardelegate.py +136 -0
- PySide6/examples/widgets/itemviews/stardelegate/stardelegate.pyproject +3 -0
- PySide6/examples/widgets/itemviews/stardelegate/stareditor.py +62 -0
- PySide6/examples/widgets/itemviews/stardelegate/starrating.py +62 -0
- PySide6/examples/widgets/layouts/basiclayouts/basiclayouts.py +98 -0
- PySide6/examples/widgets/layouts/basiclayouts/basiclayouts.pyproject +3 -0
- PySide6/examples/widgets/layouts/basiclayouts/doc/basiclayouts.png +0 -0
- PySide6/examples/widgets/layouts/basiclayouts/doc/basiclayouts.rst +9 -0
- PySide6/examples/widgets/layouts/borderlayout/borderlayout.py +248 -0
- PySide6/examples/widgets/layouts/borderlayout/borderlayout.pyproject +3 -0
- PySide6/examples/widgets/layouts/borderlayout/doc/borderlayout.png +0 -0
- PySide6/examples/widgets/layouts/borderlayout/doc/borderlayout.rst +10 -0
- PySide6/examples/widgets/layouts/dynamiclayouts/doc/dynamiclayouts.png +0 -0
- PySide6/examples/widgets/layouts/dynamiclayouts/doc/dynamiclayouts.rst +10 -0
- PySide6/examples/widgets/layouts/dynamiclayouts/dynamiclayouts.py +134 -0
- PySide6/examples/widgets/layouts/dynamiclayouts/dynamiclayouts.pyproject +3 -0
- PySide6/examples/widgets/layouts/flowlayout/doc/flowlayout.png +0 -0
- PySide6/examples/widgets/layouts/flowlayout/doc/flowlayout.rst +11 -0
- PySide6/examples/widgets/layouts/flowlayout/flowlayout.py +120 -0
- PySide6/examples/widgets/layouts/flowlayout/flowlayout.pyproject +3 -0
- PySide6/examples/widgets/linguist/doc/linguist.rst +7 -0
- PySide6/examples/widgets/linguist/example_de.ts +40 -0
- PySide6/examples/widgets/linguist/linguist.pyproject +3 -0
- PySide6/examples/widgets/linguist/linguist.qrc +5 -0
- PySide6/examples/widgets/linguist/linguist_rc.py +68 -0
- PySide6/examples/widgets/linguist/main.py +55 -0
- PySide6/examples/widgets/mainwindows/application/application.py +260 -0
- PySide6/examples/widgets/mainwindows/application/application.pyproject +3 -0
- PySide6/examples/widgets/mainwindows/application/application.qrc +10 -0
- PySide6/examples/widgets/mainwindows/application/application_rc.py +608 -0
- PySide6/examples/widgets/mainwindows/application/images/copy.png +0 -0
- PySide6/examples/widgets/mainwindows/application/images/cut.png +0 -0
- PySide6/examples/widgets/mainwindows/application/images/new.png +0 -0
- PySide6/examples/widgets/mainwindows/application/images/open.png +0 -0
- PySide6/examples/widgets/mainwindows/application/images/paste.png +0 -0
- PySide6/examples/widgets/mainwindows/application/images/save.png +0 -0
- PySide6/examples/widgets/mainwindows/dockwidgets/doc/dockwidgets.png +0 -0
- PySide6/examples/widgets/mainwindows/dockwidgets/doc/dockwidgets.rst +9 -0
- PySide6/examples/widgets/mainwindows/dockwidgets/dockwidgets.py +273 -0
- PySide6/examples/widgets/mainwindows/dockwidgets/dockwidgets.pyproject +3 -0
- PySide6/examples/widgets/mainwindows/dockwidgets/dockwidgets.qrc +8 -0
- PySide6/examples/widgets/mainwindows/dockwidgets/dockwidgets_rc.py +464 -0
- PySide6/examples/widgets/mainwindows/dockwidgets/images/new.png +0 -0
- PySide6/examples/widgets/mainwindows/dockwidgets/images/print.png +0 -0
- PySide6/examples/widgets/mainwindows/dockwidgets/images/save.png +0 -0
- PySide6/examples/widgets/mainwindows/dockwidgets/images/undo.png +0 -0
- PySide6/examples/widgets/mainwindows/mdi/mdi.py +447 -0
- PySide6/examples/widgets/mainwindows/mdi/mdi.pyproject +3 -0
- PySide6/examples/widgets/painting/basicdrawing/basicdrawing.py +310 -0
- PySide6/examples/widgets/painting/basicdrawing/basicdrawing.pyproject +3 -0
- PySide6/examples/widgets/painting/basicdrawing/basicdrawing.qrc +6 -0
- PySide6/examples/widgets/painting/basicdrawing/basicdrawing_rc.py +135 -0
- PySide6/examples/widgets/painting/basicdrawing/doc/basicdrawing.png +0 -0
- PySide6/examples/widgets/painting/basicdrawing/doc/basicdrawing.rst +15 -0
- PySide6/examples/widgets/painting/basicdrawing/images/brick.png +0 -0
- PySide6/examples/widgets/painting/basicdrawing/images/qt-logo.png +0 -0
- PySide6/examples/widgets/painting/concentriccircles/concentriccircles.py +109 -0
- PySide6/examples/widgets/painting/concentriccircles/concentriccircles.pyproject +3 -0
- PySide6/examples/widgets/painting/concentriccircles/doc/concentriccircles.png +0 -0
- PySide6/examples/widgets/painting/concentriccircles/doc/concentriccircles.rst +12 -0
- PySide6/examples/widgets/painting/painter/doc/painter.png +0 -0
- PySide6/examples/widgets/painting/painter/doc/painter.rst +8 -0
- PySide6/examples/widgets/painting/painter/painter.py +204 -0
- PySide6/examples/widgets/painting/painter/painter.pyproject +3 -0
- PySide6/examples/widgets/painting/plot/doc/plot.png +0 -0
- PySide6/examples/widgets/painting/plot/doc/plot.rst +36 -0
- PySide6/examples/widgets/painting/plot/plot.py +66 -0
- PySide6/examples/widgets/painting/plot/plot.pyproject +3 -0
- PySide6/examples/widgets/rhi/simplerhiwidget/doc/simplerhiwidget.rst +34 -0
- PySide6/examples/widgets/rhi/simplerhiwidget/doc/simplerhiwidget.webp +0 -0
- PySide6/examples/widgets/rhi/simplerhiwidget/examplewidget.py +135 -0
- PySide6/examples/widgets/rhi/simplerhiwidget/main.py +35 -0
- PySide6/examples/widgets/rhi/simplerhiwidget/rc_simplerhiwidget.py +163 -0
- PySide6/examples/widgets/rhi/simplerhiwidget/shader_assets/color.frag.qsb +0 -0
- PySide6/examples/widgets/rhi/simplerhiwidget/shader_assets/color.vert.qsb +0 -0
- PySide6/examples/widgets/rhi/simplerhiwidget/shaders/color.frag +10 -0
- PySide6/examples/widgets/rhi/simplerhiwidget/shaders/color.vert +16 -0
- PySide6/examples/widgets/rhi/simplerhiwidget/simplerhiwidget.pyproject +4 -0
- PySide6/examples/widgets/rhi/simplerhiwidget/simplerhiwidget.qrc +6 -0
- PySide6/examples/widgets/richtext/orderform/orderform.py +265 -0
- PySide6/examples/widgets/richtext/orderform/orderform.pyproject +3 -0
- PySide6/examples/widgets/richtext/syntaxhighlighter/doc/syntaxhighlighter.png +0 -0
- PySide6/examples/widgets/richtext/syntaxhighlighter/doc/syntaxhighlighter.rst +8 -0
- PySide6/examples/widgets/richtext/syntaxhighlighter/examples/example +79 -0
- PySide6/examples/widgets/richtext/syntaxhighlighter/syntaxhighlighter.py +109 -0
- PySide6/examples/widgets/richtext/syntaxhighlighter/syntaxhighlighter.pyproject +3 -0
- PySide6/examples/widgets/richtext/textedit/doc/textedit.png +0 -0
- PySide6/examples/widgets/richtext/textedit/doc/textedit.rst +8 -0
- PySide6/examples/widgets/richtext/textedit/example.html +79 -0
- PySide6/examples/widgets/richtext/textedit/images/logo32.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/mac/checkbox-checked.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/mac/checkbox.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/mac/editcopy.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/mac/editcut.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/mac/editpaste.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/mac/editredo.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/mac/editundo.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/mac/exportpdf.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/mac/filenew.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/mac/fileopen.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/mac/fileprint.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/mac/filesave.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/mac/format-indent-less.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/mac/format-indent-more.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/mac/textbold.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/mac/textcenter.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/mac/textitalic.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/mac/textjustify.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/mac/textleft.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/mac/textright.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/mac/textunder.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/mac/textundercolor.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/mac/zoomin.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/mac/zoomout.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/win/checkbox-checked.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/win/checkbox.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/win/editcopy.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/win/editcut.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/win/editpaste.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/win/editredo.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/win/editundo.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/win/exportpdf.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/win/filenew.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/win/fileopen.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/win/fileprint.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/win/filesave.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/win/format-indent-less.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/win/format-indent-more.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/win/textbold.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/win/textcenter.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/win/textitalic.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/win/textjustify.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/win/textleft.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/win/textright.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/win/textunder.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/win/textundercolor.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/win/zoomin.png +0 -0
- PySide6/examples/widgets/richtext/textedit/images/win/zoomout.png +0 -0
- PySide6/examples/widgets/richtext/textedit/main.py +42 -0
- PySide6/examples/widgets/richtext/textedit/textedit.py +721 -0
- PySide6/examples/widgets/richtext/textedit/textedit.pyproject +3 -0
- PySide6/examples/widgets/richtext/textedit/textedit.qrc +54 -0
- PySide6/examples/widgets/richtext/textedit/textedit_rc.py +6029 -0
- PySide6/examples/widgets/richtext/textobject/doc/textobject.png +0 -0
- PySide6/examples/widgets/richtext/textobject/doc/textobject.rst +31 -0
- PySide6/examples/widgets/richtext/textobject/files/heart.svg +55 -0
- PySide6/examples/widgets/richtext/textobject/textobject.py +104 -0
- PySide6/examples/widgets/richtext/textobject/textobject.pyproject +3 -0
- PySide6/examples/widgets/thread_signals/thread_signals.py +62 -0
- PySide6/examples/widgets/thread_signals/thread_signals.pyproject +3 -0
- PySide6/examples/widgets/tools/regularexpression/doc/regularexpression.png +0 -0
- PySide6/examples/widgets/tools/regularexpression/doc/regularexpression.rst +10 -0
- PySide6/examples/widgets/tools/regularexpression/regularexpression.py +21 -0
- PySide6/examples/widgets/tools/regularexpression/regularexpression.pyproject +3 -0
- PySide6/examples/widgets/tools/regularexpression/regularexpressiondialog.py +456 -0
- PySide6/examples/widgets/tutorials/addressbook/addressbook.pyproject +4 -0
- PySide6/examples/widgets/tutorials/addressbook/doc/addressbook.png +0 -0
- PySide6/examples/widgets/tutorials/addressbook/doc/addressbook.rst +9 -0
- PySide6/examples/widgets/tutorials/addressbook/part1.py +38 -0
- PySide6/examples/widgets/tutorials/addressbook/part2.py +145 -0
- PySide6/examples/widgets/tutorials/addressbook/part3.py +214 -0
- PySide6/examples/widgets/tutorials/addressbook/part4.py +271 -0
- PySide6/examples/widgets/tutorials/addressbook/part5.py +330 -0
- PySide6/examples/widgets/tutorials/addressbook/part6.py +393 -0
- PySide6/examples/widgets/tutorials/addressbook/part7.py +444 -0
- PySide6/examples/widgets/tutorials/cannon/cannon.pyproject +5 -0
- PySide6/examples/widgets/tutorials/cannon/doc/cannon.png +0 -0
- PySide6/examples/widgets/tutorials/cannon/doc/cannon.rst +8 -0
- PySide6/examples/widgets/tutorials/cannon/t1.py +20 -0
- PySide6/examples/widgets/tutorials/cannon/t10.py +152 -0
- PySide6/examples/widgets/tutorials/cannon/t11.py +224 -0
- PySide6/examples/widgets/tutorials/cannon/t12.py +275 -0
- PySide6/examples/widgets/tutorials/cannon/t13.py +356 -0
- PySide6/examples/widgets/tutorials/cannon/t14.py +410 -0
- PySide6/examples/widgets/tutorials/cannon/t2.py +23 -0
- PySide6/examples/widgets/tutorials/cannon/t3.py +25 -0
- PySide6/examples/widgets/tutorials/cannon/t4.py +30 -0
- PySide6/examples/widgets/tutorials/cannon/t5.py +41 -0
- PySide6/examples/widgets/tutorials/cannon/t6.py +51 -0
- PySide6/examples/widgets/tutorials/cannon/t7.py +73 -0
- PySide6/examples/widgets/tutorials/cannon/t8.py +116 -0
- PySide6/examples/widgets/tutorials/cannon/t9.py +122 -0
- PySide6/examples/widgets/tutorials/modelview/1_readonly.py +38 -0
- PySide6/examples/widgets/tutorials/modelview/2_formatting.py +65 -0
- PySide6/examples/widgets/tutorials/modelview/3_changingmodel.py +53 -0
- PySide6/examples/widgets/tutorials/modelview/4_headers.py +43 -0
- PySide6/examples/widgets/tutorials/modelview/5_edit.py +73 -0
- PySide6/examples/widgets/tutorials/modelview/6_treeview.py +42 -0
- PySide6/examples/widgets/tutorials/modelview/7_selections.py +71 -0
- PySide6/examples/widgets/tutorials/modelview/doc/modelview.rst +4 -0
- PySide6/examples/widgets/tutorials/modelview/modelview.pyproject +9 -0
- PySide6/examples/widgets/widgets/charactermap/charactermap.pyproject +4 -0
- PySide6/examples/widgets/widgets/charactermap/characterwidget.py +133 -0
- PySide6/examples/widgets/widgets/charactermap/doc/charactermap.rst +8 -0
- PySide6/examples/widgets/widgets/charactermap/fontinfodialog.py +47 -0
- PySide6/examples/widgets/widgets/charactermap/main.py +17 -0
- PySide6/examples/widgets/widgets/charactermap/mainwindow.py +167 -0
- PySide6/examples/widgets/widgets/digitalclock/digitalclock.py +41 -0
- PySide6/examples/widgets/widgets/digitalclock/digitalclock.pyproject +3 -0
- PySide6/examples/widgets/widgets/digitalclock/doc/digitalclock-screenshot.png +0 -0
- PySide6/examples/widgets/widgets/digitalclock/doc/digitalclock.rst +14 -0
- PySide6/examples/widgets/widgets/tetrix/doc/tetrix-screenshot.png +0 -0
- PySide6/examples/widgets/widgets/tetrix/doc/tetrix.rst +38 -0
- PySide6/examples/widgets/widgets/tetrix/tetrix.py +472 -0
- PySide6/examples/widgets/widgets/tetrix/tetrix.pyproject +3 -0
- PySide6/examples/widgets/widgetsgallery/doc/widgetsgallery.png +0 -0
- PySide6/examples/widgets/widgetsgallery/doc/widgetsgallery.rst +16 -0
- PySide6/examples/widgets/widgetsgallery/main.py +16 -0
- PySide6/examples/widgets/widgetsgallery/widgetgallery.py +410 -0
- PySide6/examples/widgets/widgetsgallery/widgetsgallery.pyproject +3 -0
- PySide6/examples/xml/dombookmarks/doc/dombookmarks.png +0 -0
- PySide6/examples/xml/dombookmarks/doc/dombookmarks.rst +12 -0
- PySide6/examples/xml/dombookmarks/dombookmarks.py +221 -0
- PySide6/examples/xml/dombookmarks/dombookmarks.pyproject +3 -0
- PySide6/examples/xml/dombookmarks/jennifer.xbel +69 -0
- PySide6/py.typed +1 -0
- PySide6_Examples-6.7.0.dist-info/LicenseRef-Qt-Commercial.txt +8 -0
- PySide6_Examples-6.7.0.dist-info/METADATA +79 -0
- PySide6_Examples-6.7.0.dist-info/RECORD +1658 -0
- PySide6_Examples-6.7.0.dist-info/WHEEL +5 -0
- PySide6_Examples-6.7.0.dist-info/top_level.txt +2 -0
PySide6/QtBluetooth.pyi
ADDED
|
@@ -0,0 +1,1434 @@
|
|
|
1
|
+
# Copyright (C) 2022 The Qt Company Ltd.
|
|
2
|
+
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
This file contains the exact signatures for all functions in module
|
|
7
|
+
PySide6.QtBluetooth, except for defaults which are replaced by "...".
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
# Module `PySide6.QtBluetooth`
|
|
11
|
+
|
|
12
|
+
import PySide6.QtBluetooth
|
|
13
|
+
import PySide6.QtCore
|
|
14
|
+
|
|
15
|
+
import enum
|
|
16
|
+
from typing import Any, ClassVar, Dict, List, Optional, Tuple, Union, overload
|
|
17
|
+
from PySide6.QtCore import Signal
|
|
18
|
+
from shiboken6 import Shiboken
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
NoneType = type(None)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
class QBluetooth(Shiboken.Object):
|
|
25
|
+
|
|
26
|
+
class AttAccessConstraint(enum.Flag):
|
|
27
|
+
|
|
28
|
+
AttAuthorizationRequired : QBluetooth.AttAccessConstraint = ... # 0x1
|
|
29
|
+
AttAuthenticationRequired: QBluetooth.AttAccessConstraint = ... # 0x2
|
|
30
|
+
AttEncryptionRequired : QBluetooth.AttAccessConstraint = ... # 0x4
|
|
31
|
+
|
|
32
|
+
class Security(enum.Flag):
|
|
33
|
+
|
|
34
|
+
NoSecurity : QBluetooth.Security = ... # 0x0
|
|
35
|
+
Authorization : QBluetooth.Security = ... # 0x1
|
|
36
|
+
Authentication : QBluetooth.Security = ... # 0x2
|
|
37
|
+
Encryption : QBluetooth.Security = ... # 0x4
|
|
38
|
+
Secure : QBluetooth.Security = ... # 0x8
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
class QBluetoothAddress(Shiboken.Object):
|
|
42
|
+
|
|
43
|
+
@overload
|
|
44
|
+
def __init__(self) -> None: ...
|
|
45
|
+
@overload
|
|
46
|
+
def __init__(self, address: str) -> None: ...
|
|
47
|
+
@overload
|
|
48
|
+
def __init__(self, address: int) -> None: ...
|
|
49
|
+
@overload
|
|
50
|
+
def __init__(self, other: PySide6.QtBluetooth.QBluetoothAddress) -> None: ...
|
|
51
|
+
|
|
52
|
+
@staticmethod
|
|
53
|
+
def __copy__() -> None: ...
|
|
54
|
+
def clear(self) -> None: ...
|
|
55
|
+
def isNull(self) -> bool: ...
|
|
56
|
+
def toString(self) -> str: ...
|
|
57
|
+
def toUInt64(self) -> int: ...
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
class QBluetoothDeviceDiscoveryAgent(PySide6.QtCore.QObject):
|
|
61
|
+
|
|
62
|
+
canceled : ClassVar[Signal] = ... # canceled()
|
|
63
|
+
deviceDiscovered : ClassVar[Signal] = ... # deviceDiscovered(QBluetoothDeviceInfo)
|
|
64
|
+
deviceUpdated : ClassVar[Signal] = ... # deviceUpdated(QBluetoothDeviceInfo,QBluetoothDeviceInfo::Fields)
|
|
65
|
+
errorOccurred : ClassVar[Signal] = ... # errorOccurred(QBluetoothDeviceDiscoveryAgent::Error)
|
|
66
|
+
finished : ClassVar[Signal] = ... # finished()
|
|
67
|
+
|
|
68
|
+
class DiscoveryMethod(enum.Flag):
|
|
69
|
+
|
|
70
|
+
NoMethod : QBluetoothDeviceDiscoveryAgent.DiscoveryMethod = ... # 0x0
|
|
71
|
+
ClassicMethod : QBluetoothDeviceDiscoveryAgent.DiscoveryMethod = ... # 0x1
|
|
72
|
+
LowEnergyMethod : QBluetoothDeviceDiscoveryAgent.DiscoveryMethod = ... # 0x2
|
|
73
|
+
|
|
74
|
+
class Error(enum.Enum):
|
|
75
|
+
|
|
76
|
+
NoError : QBluetoothDeviceDiscoveryAgent.Error = ... # 0x0
|
|
77
|
+
InputOutputError : QBluetoothDeviceDiscoveryAgent.Error = ... # 0x1
|
|
78
|
+
PoweredOffError : QBluetoothDeviceDiscoveryAgent.Error = ... # 0x2
|
|
79
|
+
InvalidBluetoothAdapterError: QBluetoothDeviceDiscoveryAgent.Error = ... # 0x3
|
|
80
|
+
UnsupportedPlatformError : QBluetoothDeviceDiscoveryAgent.Error = ... # 0x4
|
|
81
|
+
UnsupportedDiscoveryMethod: QBluetoothDeviceDiscoveryAgent.Error = ... # 0x5
|
|
82
|
+
LocationServiceTurnedOffError: QBluetoothDeviceDiscoveryAgent.Error = ... # 0x6
|
|
83
|
+
MissingPermissionsError : QBluetoothDeviceDiscoveryAgent.Error = ... # 0x7
|
|
84
|
+
UnknownError : QBluetoothDeviceDiscoveryAgent.Error = ... # 0x64
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
@overload
|
|
88
|
+
def __init__(self, deviceAdapter: PySide6.QtBluetooth.QBluetoothAddress, parent: Optional[PySide6.QtCore.QObject] = ...) -> None: ...
|
|
89
|
+
@overload
|
|
90
|
+
def __init__(self, parent: Optional[PySide6.QtCore.QObject] = ...) -> None: ...
|
|
91
|
+
|
|
92
|
+
def discoveredDevices(self) -> List[PySide6.QtBluetooth.QBluetoothDeviceInfo]: ...
|
|
93
|
+
def error(self) -> PySide6.QtBluetooth.QBluetoothDeviceDiscoveryAgent.Error: ...
|
|
94
|
+
def errorString(self) -> str: ...
|
|
95
|
+
def isActive(self) -> bool: ...
|
|
96
|
+
def lowEnergyDiscoveryTimeout(self) -> int: ...
|
|
97
|
+
def setLowEnergyDiscoveryTimeout(self, msTimeout: int) -> None: ...
|
|
98
|
+
@overload
|
|
99
|
+
def start(self) -> None: ...
|
|
100
|
+
@overload
|
|
101
|
+
def start(self, method: PySide6.QtBluetooth.QBluetoothDeviceDiscoveryAgent.DiscoveryMethod) -> None: ...
|
|
102
|
+
def stop(self) -> None: ...
|
|
103
|
+
@staticmethod
|
|
104
|
+
def supportedDiscoveryMethods() -> PySide6.QtBluetooth.QBluetoothDeviceDiscoveryAgent.DiscoveryMethod: ...
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
class QBluetoothDeviceInfo(Shiboken.Object):
|
|
108
|
+
|
|
109
|
+
class CoreConfiguration(enum.Flag):
|
|
110
|
+
|
|
111
|
+
UnknownCoreConfiguration : QBluetoothDeviceInfo.CoreConfiguration = ... # 0x0
|
|
112
|
+
LowEnergyCoreConfiguration: QBluetoothDeviceInfo.CoreConfiguration = ... # 0x1
|
|
113
|
+
BaseRateCoreConfiguration: QBluetoothDeviceInfo.CoreConfiguration = ... # 0x2
|
|
114
|
+
BaseRateAndLowEnergyCoreConfiguration: QBluetoothDeviceInfo.CoreConfiguration = ... # 0x3
|
|
115
|
+
|
|
116
|
+
class Field(enum.Flag):
|
|
117
|
+
|
|
118
|
+
None_ : QBluetoothDeviceInfo.Field = ... # 0x0
|
|
119
|
+
RSSI : QBluetoothDeviceInfo.Field = ... # 0x1
|
|
120
|
+
ManufacturerData : QBluetoothDeviceInfo.Field = ... # 0x2
|
|
121
|
+
ServiceData : QBluetoothDeviceInfo.Field = ... # 0x4
|
|
122
|
+
All : QBluetoothDeviceInfo.Field = ... # 0x7fff
|
|
123
|
+
|
|
124
|
+
class MajorDeviceClass(enum.Enum):
|
|
125
|
+
|
|
126
|
+
MiscellaneousDevice : QBluetoothDeviceInfo.MajorDeviceClass = ... # 0x0
|
|
127
|
+
ComputerDevice : QBluetoothDeviceInfo.MajorDeviceClass = ... # 0x1
|
|
128
|
+
PhoneDevice : QBluetoothDeviceInfo.MajorDeviceClass = ... # 0x2
|
|
129
|
+
NetworkDevice : QBluetoothDeviceInfo.MajorDeviceClass = ... # 0x3
|
|
130
|
+
AudioVideoDevice : QBluetoothDeviceInfo.MajorDeviceClass = ... # 0x4
|
|
131
|
+
PeripheralDevice : QBluetoothDeviceInfo.MajorDeviceClass = ... # 0x5
|
|
132
|
+
ImagingDevice : QBluetoothDeviceInfo.MajorDeviceClass = ... # 0x6
|
|
133
|
+
WearableDevice : QBluetoothDeviceInfo.MajorDeviceClass = ... # 0x7
|
|
134
|
+
ToyDevice : QBluetoothDeviceInfo.MajorDeviceClass = ... # 0x8
|
|
135
|
+
HealthDevice : QBluetoothDeviceInfo.MajorDeviceClass = ... # 0x9
|
|
136
|
+
UncategorizedDevice : QBluetoothDeviceInfo.MajorDeviceClass = ... # 0x1f
|
|
137
|
+
|
|
138
|
+
class MinorAudioVideoClass(enum.Enum):
|
|
139
|
+
|
|
140
|
+
UncategorizedAudioVideoDevice: QBluetoothDeviceInfo.MinorAudioVideoClass = ... # 0x0
|
|
141
|
+
WearableHeadsetDevice : QBluetoothDeviceInfo.MinorAudioVideoClass = ... # 0x1
|
|
142
|
+
HandsFreeDevice : QBluetoothDeviceInfo.MinorAudioVideoClass = ... # 0x2
|
|
143
|
+
Microphone : QBluetoothDeviceInfo.MinorAudioVideoClass = ... # 0x4
|
|
144
|
+
Loudspeaker : QBluetoothDeviceInfo.MinorAudioVideoClass = ... # 0x5
|
|
145
|
+
Headphones : QBluetoothDeviceInfo.MinorAudioVideoClass = ... # 0x6
|
|
146
|
+
PortableAudioDevice : QBluetoothDeviceInfo.MinorAudioVideoClass = ... # 0x7
|
|
147
|
+
CarAudio : QBluetoothDeviceInfo.MinorAudioVideoClass = ... # 0x8
|
|
148
|
+
SetTopBox : QBluetoothDeviceInfo.MinorAudioVideoClass = ... # 0x9
|
|
149
|
+
HiFiAudioDevice : QBluetoothDeviceInfo.MinorAudioVideoClass = ... # 0xa
|
|
150
|
+
Vcr : QBluetoothDeviceInfo.MinorAudioVideoClass = ... # 0xb
|
|
151
|
+
VideoCamera : QBluetoothDeviceInfo.MinorAudioVideoClass = ... # 0xc
|
|
152
|
+
Camcorder : QBluetoothDeviceInfo.MinorAudioVideoClass = ... # 0xd
|
|
153
|
+
VideoMonitor : QBluetoothDeviceInfo.MinorAudioVideoClass = ... # 0xe
|
|
154
|
+
VideoDisplayAndLoudspeaker: QBluetoothDeviceInfo.MinorAudioVideoClass = ... # 0xf
|
|
155
|
+
VideoConferencing : QBluetoothDeviceInfo.MinorAudioVideoClass = ... # 0x10
|
|
156
|
+
GamingDevice : QBluetoothDeviceInfo.MinorAudioVideoClass = ... # 0x12
|
|
157
|
+
|
|
158
|
+
class MinorComputerClass(enum.Enum):
|
|
159
|
+
|
|
160
|
+
UncategorizedComputer : QBluetoothDeviceInfo.MinorComputerClass = ... # 0x0
|
|
161
|
+
DesktopComputer : QBluetoothDeviceInfo.MinorComputerClass = ... # 0x1
|
|
162
|
+
ServerComputer : QBluetoothDeviceInfo.MinorComputerClass = ... # 0x2
|
|
163
|
+
LaptopComputer : QBluetoothDeviceInfo.MinorComputerClass = ... # 0x3
|
|
164
|
+
HandheldClamShellComputer: QBluetoothDeviceInfo.MinorComputerClass = ... # 0x4
|
|
165
|
+
HandheldComputer : QBluetoothDeviceInfo.MinorComputerClass = ... # 0x5
|
|
166
|
+
WearableComputer : QBluetoothDeviceInfo.MinorComputerClass = ... # 0x6
|
|
167
|
+
|
|
168
|
+
class MinorHealthClass(enum.Enum):
|
|
169
|
+
|
|
170
|
+
UncategorizedHealthDevice: QBluetoothDeviceInfo.MinorHealthClass = ... # 0x0
|
|
171
|
+
HealthBloodPressureMonitor: QBluetoothDeviceInfo.MinorHealthClass = ... # 0x1
|
|
172
|
+
HealthThermometer : QBluetoothDeviceInfo.MinorHealthClass = ... # 0x2
|
|
173
|
+
HealthWeightScale : QBluetoothDeviceInfo.MinorHealthClass = ... # 0x3
|
|
174
|
+
HealthGlucoseMeter : QBluetoothDeviceInfo.MinorHealthClass = ... # 0x4
|
|
175
|
+
HealthPulseOximeter : QBluetoothDeviceInfo.MinorHealthClass = ... # 0x5
|
|
176
|
+
HealthDataDisplay : QBluetoothDeviceInfo.MinorHealthClass = ... # 0x7
|
|
177
|
+
HealthStepCounter : QBluetoothDeviceInfo.MinorHealthClass = ... # 0x8
|
|
178
|
+
|
|
179
|
+
class MinorImagingClass(enum.Enum):
|
|
180
|
+
|
|
181
|
+
UncategorizedImagingDevice: QBluetoothDeviceInfo.MinorImagingClass = ... # 0x0
|
|
182
|
+
ImageDisplay : QBluetoothDeviceInfo.MinorImagingClass = ... # 0x4
|
|
183
|
+
ImageCamera : QBluetoothDeviceInfo.MinorImagingClass = ... # 0x8
|
|
184
|
+
ImageScanner : QBluetoothDeviceInfo.MinorImagingClass = ... # 0x10
|
|
185
|
+
ImagePrinter : QBluetoothDeviceInfo.MinorImagingClass = ... # 0x20
|
|
186
|
+
|
|
187
|
+
class MinorMiscellaneousClass(enum.Enum):
|
|
188
|
+
|
|
189
|
+
UncategorizedMiscellaneous: QBluetoothDeviceInfo.MinorMiscellaneousClass = ... # 0x0
|
|
190
|
+
|
|
191
|
+
class MinorNetworkClass(enum.Enum):
|
|
192
|
+
|
|
193
|
+
NetworkFullService : QBluetoothDeviceInfo.MinorNetworkClass = ... # 0x0
|
|
194
|
+
NetworkLoadFactorOne : QBluetoothDeviceInfo.MinorNetworkClass = ... # 0x8
|
|
195
|
+
NetworkLoadFactorTwo : QBluetoothDeviceInfo.MinorNetworkClass = ... # 0x10
|
|
196
|
+
NetworkLoadFactorThree : QBluetoothDeviceInfo.MinorNetworkClass = ... # 0x18
|
|
197
|
+
NetworkLoadFactorFour : QBluetoothDeviceInfo.MinorNetworkClass = ... # 0x20
|
|
198
|
+
NetworkLoadFactorFive : QBluetoothDeviceInfo.MinorNetworkClass = ... # 0x28
|
|
199
|
+
NetworkLoadFactorSix : QBluetoothDeviceInfo.MinorNetworkClass = ... # 0x30
|
|
200
|
+
NetworkNoService : QBluetoothDeviceInfo.MinorNetworkClass = ... # 0x38
|
|
201
|
+
|
|
202
|
+
class MinorPeripheralClass(enum.Enum):
|
|
203
|
+
|
|
204
|
+
UncategorizedPeripheral : QBluetoothDeviceInfo.MinorPeripheralClass = ... # 0x0
|
|
205
|
+
JoystickPeripheral : QBluetoothDeviceInfo.MinorPeripheralClass = ... # 0x1
|
|
206
|
+
GamepadPeripheral : QBluetoothDeviceInfo.MinorPeripheralClass = ... # 0x2
|
|
207
|
+
RemoteControlPeripheral : QBluetoothDeviceInfo.MinorPeripheralClass = ... # 0x3
|
|
208
|
+
SensingDevicePeripheral : QBluetoothDeviceInfo.MinorPeripheralClass = ... # 0x4
|
|
209
|
+
DigitizerTabletPeripheral: QBluetoothDeviceInfo.MinorPeripheralClass = ... # 0x5
|
|
210
|
+
CardReaderPeripheral : QBluetoothDeviceInfo.MinorPeripheralClass = ... # 0x6
|
|
211
|
+
KeyboardPeripheral : QBluetoothDeviceInfo.MinorPeripheralClass = ... # 0x10
|
|
212
|
+
PointingDevicePeripheral : QBluetoothDeviceInfo.MinorPeripheralClass = ... # 0x20
|
|
213
|
+
KeyboardWithPointingDevicePeripheral: QBluetoothDeviceInfo.MinorPeripheralClass = ... # 0x30
|
|
214
|
+
|
|
215
|
+
class MinorPhoneClass(enum.Enum):
|
|
216
|
+
|
|
217
|
+
UncategorizedPhone : QBluetoothDeviceInfo.MinorPhoneClass = ... # 0x0
|
|
218
|
+
CellularPhone : QBluetoothDeviceInfo.MinorPhoneClass = ... # 0x1
|
|
219
|
+
CordlessPhone : QBluetoothDeviceInfo.MinorPhoneClass = ... # 0x2
|
|
220
|
+
SmartPhone : QBluetoothDeviceInfo.MinorPhoneClass = ... # 0x3
|
|
221
|
+
WiredModemOrVoiceGatewayPhone: QBluetoothDeviceInfo.MinorPhoneClass = ... # 0x4
|
|
222
|
+
CommonIsdnAccessPhone : QBluetoothDeviceInfo.MinorPhoneClass = ... # 0x5
|
|
223
|
+
|
|
224
|
+
class MinorToyClass(enum.Enum):
|
|
225
|
+
|
|
226
|
+
UncategorizedToy : QBluetoothDeviceInfo.MinorToyClass = ... # 0x0
|
|
227
|
+
ToyRobot : QBluetoothDeviceInfo.MinorToyClass = ... # 0x1
|
|
228
|
+
ToyVehicle : QBluetoothDeviceInfo.MinorToyClass = ... # 0x2
|
|
229
|
+
ToyDoll : QBluetoothDeviceInfo.MinorToyClass = ... # 0x3
|
|
230
|
+
ToyController : QBluetoothDeviceInfo.MinorToyClass = ... # 0x4
|
|
231
|
+
ToyGame : QBluetoothDeviceInfo.MinorToyClass = ... # 0x5
|
|
232
|
+
|
|
233
|
+
class MinorWearableClass(enum.Enum):
|
|
234
|
+
|
|
235
|
+
UncategorizedWearableDevice: QBluetoothDeviceInfo.MinorWearableClass = ... # 0x0
|
|
236
|
+
WearableWristWatch : QBluetoothDeviceInfo.MinorWearableClass = ... # 0x1
|
|
237
|
+
WearablePager : QBluetoothDeviceInfo.MinorWearableClass = ... # 0x2
|
|
238
|
+
WearableJacket : QBluetoothDeviceInfo.MinorWearableClass = ... # 0x3
|
|
239
|
+
WearableHelmet : QBluetoothDeviceInfo.MinorWearableClass = ... # 0x4
|
|
240
|
+
WearableGlasses : QBluetoothDeviceInfo.MinorWearableClass = ... # 0x5
|
|
241
|
+
|
|
242
|
+
class ServiceClass(enum.Flag):
|
|
243
|
+
|
|
244
|
+
NoService : QBluetoothDeviceInfo.ServiceClass = ... # 0x0
|
|
245
|
+
PositioningService : QBluetoothDeviceInfo.ServiceClass = ... # 0x1
|
|
246
|
+
NetworkingService : QBluetoothDeviceInfo.ServiceClass = ... # 0x2
|
|
247
|
+
RenderingService : QBluetoothDeviceInfo.ServiceClass = ... # 0x4
|
|
248
|
+
CapturingService : QBluetoothDeviceInfo.ServiceClass = ... # 0x8
|
|
249
|
+
ObjectTransferService : QBluetoothDeviceInfo.ServiceClass = ... # 0x10
|
|
250
|
+
AudioService : QBluetoothDeviceInfo.ServiceClass = ... # 0x20
|
|
251
|
+
TelephonyService : QBluetoothDeviceInfo.ServiceClass = ... # 0x40
|
|
252
|
+
InformationService : QBluetoothDeviceInfo.ServiceClass = ... # 0x80
|
|
253
|
+
AllServices : QBluetoothDeviceInfo.ServiceClass = ... # 0x7ff
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
@overload
|
|
257
|
+
def __init__(self) -> None: ...
|
|
258
|
+
@overload
|
|
259
|
+
def __init__(self, address: PySide6.QtBluetooth.QBluetoothAddress, name: str, classOfDevice: int) -> None: ...
|
|
260
|
+
@overload
|
|
261
|
+
def __init__(self, other: PySide6.QtBluetooth.QBluetoothDeviceInfo) -> None: ...
|
|
262
|
+
@overload
|
|
263
|
+
def __init__(self, uuid: Union[PySide6.QtBluetooth.QBluetoothUuid, PySide6.QtBluetooth.QBluetoothUuid.CharacteristicType, PySide6.QtBluetooth.QBluetoothUuid.DescriptorType, PySide6.QtBluetooth.QBluetoothUuid.ProtocolUuid, PySide6.QtBluetooth.QBluetoothUuid.ServiceClassUuid, PySide6.QtCore.QUuid], name: str, classOfDevice: int) -> None: ...
|
|
264
|
+
|
|
265
|
+
@staticmethod
|
|
266
|
+
def __copy__() -> None: ...
|
|
267
|
+
def address(self) -> PySide6.QtBluetooth.QBluetoothAddress: ...
|
|
268
|
+
def coreConfigurations(self) -> PySide6.QtBluetooth.QBluetoothDeviceInfo.CoreConfiguration: ...
|
|
269
|
+
def deviceUuid(self) -> PySide6.QtBluetooth.QBluetoothUuid: ...
|
|
270
|
+
def isCached(self) -> bool: ...
|
|
271
|
+
def isValid(self) -> bool: ...
|
|
272
|
+
def majorDeviceClass(self) -> PySide6.QtBluetooth.QBluetoothDeviceInfo.MajorDeviceClass: ...
|
|
273
|
+
@overload
|
|
274
|
+
def manufacturerData(self) -> Dict[int, PySide6.QtCore.QByteArray]: ...
|
|
275
|
+
@overload
|
|
276
|
+
def manufacturerData(self, manufacturerId: int) -> PySide6.QtCore.QByteArray: ...
|
|
277
|
+
def manufacturerIds(self) -> List[int]: ...
|
|
278
|
+
def minorDeviceClass(self) -> int: ...
|
|
279
|
+
def name(self) -> str: ...
|
|
280
|
+
def rssi(self) -> int: ...
|
|
281
|
+
def serviceClasses(self) -> PySide6.QtBluetooth.QBluetoothDeviceInfo.ServiceClass: ...
|
|
282
|
+
@overload
|
|
283
|
+
def serviceData(self) -> Dict[PySide6.QtBluetooth.QBluetoothUuid, PySide6.QtCore.QByteArray]: ...
|
|
284
|
+
@overload
|
|
285
|
+
def serviceData(self, serviceId: Union[PySide6.QtBluetooth.QBluetoothUuid, PySide6.QtBluetooth.QBluetoothUuid.CharacteristicType, PySide6.QtBluetooth.QBluetoothUuid.DescriptorType, PySide6.QtBluetooth.QBluetoothUuid.ProtocolUuid, PySide6.QtBluetooth.QBluetoothUuid.ServiceClassUuid, PySide6.QtCore.QUuid]) -> PySide6.QtCore.QByteArray: ...
|
|
286
|
+
def serviceIds(self) -> List[PySide6.QtBluetooth.QBluetoothUuid]: ...
|
|
287
|
+
def serviceUuids(self) -> List[PySide6.QtBluetooth.QBluetoothUuid]: ...
|
|
288
|
+
def setCached(self, cached: bool) -> None: ...
|
|
289
|
+
def setCoreConfigurations(self, coreConfigs: PySide6.QtBluetooth.QBluetoothDeviceInfo.CoreConfiguration) -> None: ...
|
|
290
|
+
def setDeviceUuid(self, uuid: Union[PySide6.QtBluetooth.QBluetoothUuid, PySide6.QtBluetooth.QBluetoothUuid.CharacteristicType, PySide6.QtBluetooth.QBluetoothUuid.DescriptorType, PySide6.QtBluetooth.QBluetoothUuid.ProtocolUuid, PySide6.QtBluetooth.QBluetoothUuid.ServiceClassUuid, PySide6.QtCore.QUuid]) -> None: ...
|
|
291
|
+
def setManufacturerData(self, manufacturerId: int, data: Union[PySide6.QtCore.QByteArray, bytes, bytearray, memoryview]) -> bool: ...
|
|
292
|
+
def setName(self, name: str) -> None: ...
|
|
293
|
+
def setRssi(self, signal: int) -> None: ...
|
|
294
|
+
def setServiceData(self, serviceId: Union[PySide6.QtBluetooth.QBluetoothUuid, PySide6.QtBluetooth.QBluetoothUuid.CharacteristicType, PySide6.QtBluetooth.QBluetoothUuid.DescriptorType, PySide6.QtBluetooth.QBluetoothUuid.ProtocolUuid, PySide6.QtBluetooth.QBluetoothUuid.ServiceClassUuid, PySide6.QtCore.QUuid], data: Union[PySide6.QtCore.QByteArray, bytes, bytearray, memoryview]) -> bool: ...
|
|
295
|
+
def setServiceUuids(self, uuids: Sequence[PySide6.QtBluetooth.QBluetoothUuid]) -> None: ...
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
class QBluetoothHostInfo(Shiboken.Object):
|
|
299
|
+
|
|
300
|
+
@overload
|
|
301
|
+
def __init__(self) -> None: ...
|
|
302
|
+
@overload
|
|
303
|
+
def __init__(self, other: PySide6.QtBluetooth.QBluetoothHostInfo) -> None: ...
|
|
304
|
+
|
|
305
|
+
@staticmethod
|
|
306
|
+
def __copy__() -> None: ...
|
|
307
|
+
def address(self) -> PySide6.QtBluetooth.QBluetoothAddress: ...
|
|
308
|
+
def name(self) -> str: ...
|
|
309
|
+
def setAddress(self, address: PySide6.QtBluetooth.QBluetoothAddress) -> None: ...
|
|
310
|
+
def setName(self, name: str) -> None: ...
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
class QBluetoothLocalDevice(PySide6.QtCore.QObject):
|
|
314
|
+
|
|
315
|
+
deviceConnected : ClassVar[Signal] = ... # deviceConnected(QBluetoothAddress)
|
|
316
|
+
deviceDisconnected : ClassVar[Signal] = ... # deviceDisconnected(QBluetoothAddress)
|
|
317
|
+
errorOccurred : ClassVar[Signal] = ... # errorOccurred(QBluetoothLocalDevice::Error)
|
|
318
|
+
hostModeStateChanged : ClassVar[Signal] = ... # hostModeStateChanged(QBluetoothLocalDevice::HostMode)
|
|
319
|
+
pairingFinished : ClassVar[Signal] = ... # pairingFinished(QBluetoothAddress,QBluetoothLocalDevice::Pairing)
|
|
320
|
+
|
|
321
|
+
class Error(enum.Enum):
|
|
322
|
+
|
|
323
|
+
NoError : QBluetoothLocalDevice.Error = ... # 0x0
|
|
324
|
+
PairingError : QBluetoothLocalDevice.Error = ... # 0x1
|
|
325
|
+
MissingPermissionsError : QBluetoothLocalDevice.Error = ... # 0x2
|
|
326
|
+
UnknownError : QBluetoothLocalDevice.Error = ... # 0x64
|
|
327
|
+
|
|
328
|
+
class HostMode(enum.Enum):
|
|
329
|
+
|
|
330
|
+
HostPoweredOff : QBluetoothLocalDevice.HostMode = ... # 0x0
|
|
331
|
+
HostConnectable : QBluetoothLocalDevice.HostMode = ... # 0x1
|
|
332
|
+
HostDiscoverable : QBluetoothLocalDevice.HostMode = ... # 0x2
|
|
333
|
+
HostDiscoverableLimitedInquiry: QBluetoothLocalDevice.HostMode = ... # 0x3
|
|
334
|
+
|
|
335
|
+
class Pairing(enum.Enum):
|
|
336
|
+
|
|
337
|
+
Unpaired : QBluetoothLocalDevice.Pairing = ... # 0x0
|
|
338
|
+
Paired : QBluetoothLocalDevice.Pairing = ... # 0x1
|
|
339
|
+
AuthorizedPaired : QBluetoothLocalDevice.Pairing = ... # 0x2
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
@overload
|
|
343
|
+
def __init__(self, address: PySide6.QtBluetooth.QBluetoothAddress, parent: Optional[PySide6.QtCore.QObject] = ...) -> None: ...
|
|
344
|
+
@overload
|
|
345
|
+
def __init__(self, parent: Optional[PySide6.QtCore.QObject] = ...) -> None: ...
|
|
346
|
+
|
|
347
|
+
def address(self) -> PySide6.QtBluetooth.QBluetoothAddress: ...
|
|
348
|
+
@staticmethod
|
|
349
|
+
def allDevices() -> List[PySide6.QtBluetooth.QBluetoothHostInfo]: ...
|
|
350
|
+
def connectedDevices(self) -> List[PySide6.QtBluetooth.QBluetoothAddress]: ...
|
|
351
|
+
def hostMode(self) -> PySide6.QtBluetooth.QBluetoothLocalDevice.HostMode: ...
|
|
352
|
+
def isValid(self) -> bool: ...
|
|
353
|
+
def name(self) -> str: ...
|
|
354
|
+
def pairingStatus(self, address: PySide6.QtBluetooth.QBluetoothAddress) -> PySide6.QtBluetooth.QBluetoothLocalDevice.Pairing: ...
|
|
355
|
+
def powerOn(self) -> None: ...
|
|
356
|
+
def requestPairing(self, address: PySide6.QtBluetooth.QBluetoothAddress, pairing: PySide6.QtBluetooth.QBluetoothLocalDevice.Pairing) -> None: ...
|
|
357
|
+
def setHostMode(self, mode: PySide6.QtBluetooth.QBluetoothLocalDevice.HostMode) -> None: ...
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
class QBluetoothServer(PySide6.QtCore.QObject):
|
|
361
|
+
|
|
362
|
+
errorOccurred : ClassVar[Signal] = ... # errorOccurred(QBluetoothServer::Error)
|
|
363
|
+
newConnection : ClassVar[Signal] = ... # newConnection()
|
|
364
|
+
|
|
365
|
+
class Error(enum.Enum):
|
|
366
|
+
|
|
367
|
+
NoError : QBluetoothServer.Error = ... # 0x0
|
|
368
|
+
UnknownError : QBluetoothServer.Error = ... # 0x1
|
|
369
|
+
PoweredOffError : QBluetoothServer.Error = ... # 0x2
|
|
370
|
+
InputOutputError : QBluetoothServer.Error = ... # 0x3
|
|
371
|
+
ServiceAlreadyRegisteredError: QBluetoothServer.Error = ... # 0x4
|
|
372
|
+
UnsupportedProtocolError : QBluetoothServer.Error = ... # 0x5
|
|
373
|
+
MissingPermissionsError : QBluetoothServer.Error = ... # 0x6
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
def __init__(self, serverType: PySide6.QtBluetooth.QBluetoothServiceInfo.Protocol, parent: Optional[PySide6.QtCore.QObject] = ...) -> None: ...
|
|
377
|
+
|
|
378
|
+
def close(self) -> None: ...
|
|
379
|
+
def error(self) -> PySide6.QtBluetooth.QBluetoothServer.Error: ...
|
|
380
|
+
def hasPendingConnections(self) -> bool: ...
|
|
381
|
+
def isListening(self) -> bool: ...
|
|
382
|
+
@overload
|
|
383
|
+
def listen(self, address: PySide6.QtBluetooth.QBluetoothAddress = ..., port: int = ...) -> bool: ...
|
|
384
|
+
@overload
|
|
385
|
+
def listen(self, uuid: Union[PySide6.QtBluetooth.QBluetoothUuid, PySide6.QtBluetooth.QBluetoothUuid.CharacteristicType, PySide6.QtBluetooth.QBluetoothUuid.DescriptorType, PySide6.QtBluetooth.QBluetoothUuid.ProtocolUuid, PySide6.QtBluetooth.QBluetoothUuid.ServiceClassUuid, PySide6.QtCore.QUuid], serviceName: str = ...) -> PySide6.QtBluetooth.QBluetoothServiceInfo: ...
|
|
386
|
+
def maxPendingConnections(self) -> int: ...
|
|
387
|
+
def nextPendingConnection(self) -> PySide6.QtBluetooth.QBluetoothSocket: ...
|
|
388
|
+
def securityFlags(self) -> PySide6.QtBluetooth.QBluetooth.Security: ...
|
|
389
|
+
def serverAddress(self) -> PySide6.QtBluetooth.QBluetoothAddress: ...
|
|
390
|
+
def serverPort(self) -> int: ...
|
|
391
|
+
def serverType(self) -> PySide6.QtBluetooth.QBluetoothServiceInfo.Protocol: ...
|
|
392
|
+
def setMaxPendingConnections(self, numConnections: int) -> None: ...
|
|
393
|
+
def setSecurityFlags(self, security: PySide6.QtBluetooth.QBluetooth.Security) -> None: ...
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
class QBluetoothServiceDiscoveryAgent(PySide6.QtCore.QObject):
|
|
397
|
+
|
|
398
|
+
canceled : ClassVar[Signal] = ... # canceled()
|
|
399
|
+
errorOccurred : ClassVar[Signal] = ... # errorOccurred(QBluetoothServiceDiscoveryAgent::Error)
|
|
400
|
+
finished : ClassVar[Signal] = ... # finished()
|
|
401
|
+
serviceDiscovered : ClassVar[Signal] = ... # serviceDiscovered(QBluetoothServiceInfo)
|
|
402
|
+
|
|
403
|
+
class DiscoveryMode(enum.Enum):
|
|
404
|
+
|
|
405
|
+
MinimalDiscovery : QBluetoothServiceDiscoveryAgent.DiscoveryMode = ... # 0x0
|
|
406
|
+
FullDiscovery : QBluetoothServiceDiscoveryAgent.DiscoveryMode = ... # 0x1
|
|
407
|
+
|
|
408
|
+
class Error(enum.Enum):
|
|
409
|
+
|
|
410
|
+
NoError : QBluetoothServiceDiscoveryAgent.Error = ... # 0x0
|
|
411
|
+
InputOutputError : QBluetoothServiceDiscoveryAgent.Error = ... # 0x1
|
|
412
|
+
PoweredOffError : QBluetoothServiceDiscoveryAgent.Error = ... # 0x2
|
|
413
|
+
InvalidBluetoothAdapterError: QBluetoothServiceDiscoveryAgent.Error = ... # 0x3
|
|
414
|
+
MissingPermissionsError : QBluetoothServiceDiscoveryAgent.Error = ... # 0x7
|
|
415
|
+
UnknownError : QBluetoothServiceDiscoveryAgent.Error = ... # 0x64
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
@overload
|
|
419
|
+
def __init__(self, deviceAdapter: PySide6.QtBluetooth.QBluetoothAddress, parent: Optional[PySide6.QtCore.QObject] = ...) -> None: ...
|
|
420
|
+
@overload
|
|
421
|
+
def __init__(self, parent: Optional[PySide6.QtCore.QObject] = ...) -> None: ...
|
|
422
|
+
|
|
423
|
+
def clear(self) -> None: ...
|
|
424
|
+
def discoveredServices(self) -> List[PySide6.QtBluetooth.QBluetoothServiceInfo]: ...
|
|
425
|
+
def error(self) -> PySide6.QtBluetooth.QBluetoothServiceDiscoveryAgent.Error: ...
|
|
426
|
+
def errorString(self) -> str: ...
|
|
427
|
+
def isActive(self) -> bool: ...
|
|
428
|
+
def remoteAddress(self) -> PySide6.QtBluetooth.QBluetoothAddress: ...
|
|
429
|
+
def setRemoteAddress(self, address: PySide6.QtBluetooth.QBluetoothAddress) -> bool: ...
|
|
430
|
+
@overload
|
|
431
|
+
def setUuidFilter(self, uuid: Union[PySide6.QtBluetooth.QBluetoothUuid, PySide6.QtBluetooth.QBluetoothUuid.CharacteristicType, PySide6.QtBluetooth.QBluetoothUuid.DescriptorType, PySide6.QtBluetooth.QBluetoothUuid.ProtocolUuid, PySide6.QtBluetooth.QBluetoothUuid.ServiceClassUuid, PySide6.QtCore.QUuid]) -> None: ...
|
|
432
|
+
@overload
|
|
433
|
+
def setUuidFilter(self, uuids: Sequence[PySide6.QtBluetooth.QBluetoothUuid]) -> None: ...
|
|
434
|
+
def start(self, mode: PySide6.QtBluetooth.QBluetoothServiceDiscoveryAgent.DiscoveryMode = ...) -> None: ...
|
|
435
|
+
def stop(self) -> None: ...
|
|
436
|
+
def uuidFilter(self) -> List[PySide6.QtBluetooth.QBluetoothUuid]: ...
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
class QBluetoothServiceInfo(Shiboken.Object):
|
|
440
|
+
|
|
441
|
+
class Alternative(Shiboken.Object):
|
|
442
|
+
|
|
443
|
+
@overload
|
|
444
|
+
def __init__(self) -> None: ...
|
|
445
|
+
@overload
|
|
446
|
+
def __init__(self, Alternative: Union[PySide6.QtBluetooth.QBluetoothServiceInfo.Alternative, Sequence[Any]]) -> None: ...
|
|
447
|
+
@overload
|
|
448
|
+
def __init__(self, list: Sequence[Any]) -> None: ...
|
|
449
|
+
|
|
450
|
+
def __add__(self, l: Sequence[Any]) -> List[Any]: ...
|
|
451
|
+
@staticmethod
|
|
452
|
+
def __copy__() -> None: ...
|
|
453
|
+
def __iadd__(self, l: Sequence[Any]) -> List[Any]: ...
|
|
454
|
+
def __lshift__(self, l: Sequence[Any]) -> List[Any]: ...
|
|
455
|
+
@overload
|
|
456
|
+
def append(self, arg__1: Any) -> None: ...
|
|
457
|
+
@overload
|
|
458
|
+
def append(self, l: Sequence[Any]) -> None: ...
|
|
459
|
+
def at(self, i: int) -> Any: ...
|
|
460
|
+
def back(self) -> Any: ...
|
|
461
|
+
def capacity(self) -> int: ...
|
|
462
|
+
def clear(self) -> None: ...
|
|
463
|
+
def constData(self) -> object: ...
|
|
464
|
+
def constFirst(self) -> Any: ...
|
|
465
|
+
def constLast(self) -> Any: ...
|
|
466
|
+
def count(self) -> int: ...
|
|
467
|
+
def data(self) -> object: ...
|
|
468
|
+
def empty(self) -> bool: ...
|
|
469
|
+
@overload
|
|
470
|
+
def first(self) -> Any: ...
|
|
471
|
+
@overload
|
|
472
|
+
def first(self, n: int) -> List[Any]: ...
|
|
473
|
+
@staticmethod
|
|
474
|
+
def fromList(list: Sequence[Any]) -> List[Any]: ...
|
|
475
|
+
@staticmethod
|
|
476
|
+
def fromVector(vector: Sequence[Any]) -> List[Any]: ...
|
|
477
|
+
def front(self) -> Any: ...
|
|
478
|
+
def insert(self, arg__1: int, arg__2: Any) -> None: ...
|
|
479
|
+
def isEmpty(self) -> bool: ...
|
|
480
|
+
def isSharedWith(self, other: Sequence[Any]) -> bool: ...
|
|
481
|
+
@overload
|
|
482
|
+
def last(self) -> Any: ...
|
|
483
|
+
@overload
|
|
484
|
+
def last(self, n: int) -> List[Any]: ...
|
|
485
|
+
def length(self) -> int: ...
|
|
486
|
+
def mid(self, pos: int, len: int = ...) -> List[Any]: ...
|
|
487
|
+
def move(self, from_: int, to: int) -> None: ...
|
|
488
|
+
def pop_back(self) -> None: ...
|
|
489
|
+
def pop_front(self) -> None: ...
|
|
490
|
+
def prepend(self, arg__1: Any) -> None: ...
|
|
491
|
+
def push_back(self, arg__1: Any) -> None: ...
|
|
492
|
+
def push_front(self, arg__1: Any) -> None: ...
|
|
493
|
+
def remove(self, i: int, n: int = ...) -> None: ...
|
|
494
|
+
def removeAll(self, arg__1: Any) -> None: ...
|
|
495
|
+
def removeAt(self, i: int) -> None: ...
|
|
496
|
+
def removeFirst(self) -> None: ...
|
|
497
|
+
def removeLast(self) -> None: ...
|
|
498
|
+
def removeOne(self, arg__1: Any) -> None: ...
|
|
499
|
+
def reserve(self, size: int) -> None: ...
|
|
500
|
+
def resize(self, size: int) -> None: ...
|
|
501
|
+
def shrink_to_fit(self) -> None: ...
|
|
502
|
+
def size(self) -> int: ...
|
|
503
|
+
@overload
|
|
504
|
+
def sliced(self, pos: int) -> List[Any]: ...
|
|
505
|
+
@overload
|
|
506
|
+
def sliced(self, pos: int, n: int) -> List[Any]: ...
|
|
507
|
+
def squeeze(self) -> None: ...
|
|
508
|
+
def swap(self, other: Sequence[Any]) -> None: ...
|
|
509
|
+
def swapItemsAt(self, i: int, j: int) -> None: ...
|
|
510
|
+
def takeAt(self, i: int) -> Any: ...
|
|
511
|
+
def toList(self) -> List[Any]: ...
|
|
512
|
+
def toVector(self) -> List[Any]: ...
|
|
513
|
+
def value(self, i: int) -> Any: ...
|
|
514
|
+
|
|
515
|
+
class AttributeId(enum.Enum):
|
|
516
|
+
|
|
517
|
+
ServiceRecordHandle : QBluetoothServiceInfo.AttributeId = ... # 0x0
|
|
518
|
+
ServiceClassIds : QBluetoothServiceInfo.AttributeId = ... # 0x1
|
|
519
|
+
ServiceRecordState : QBluetoothServiceInfo.AttributeId = ... # 0x2
|
|
520
|
+
ServiceId : QBluetoothServiceInfo.AttributeId = ... # 0x3
|
|
521
|
+
ProtocolDescriptorList : QBluetoothServiceInfo.AttributeId = ... # 0x4
|
|
522
|
+
BrowseGroupList : QBluetoothServiceInfo.AttributeId = ... # 0x5
|
|
523
|
+
LanguageBaseAttributeIdList: QBluetoothServiceInfo.AttributeId = ... # 0x6
|
|
524
|
+
ServiceInfoTimeToLive : QBluetoothServiceInfo.AttributeId = ... # 0x7
|
|
525
|
+
ServiceAvailability : QBluetoothServiceInfo.AttributeId = ... # 0x8
|
|
526
|
+
BluetoothProfileDescriptorList: QBluetoothServiceInfo.AttributeId = ... # 0x9
|
|
527
|
+
DocumentationUrl : QBluetoothServiceInfo.AttributeId = ... # 0xa
|
|
528
|
+
ClientExecutableUrl : QBluetoothServiceInfo.AttributeId = ... # 0xb
|
|
529
|
+
IconUrl : QBluetoothServiceInfo.AttributeId = ... # 0xc
|
|
530
|
+
AdditionalProtocolDescriptorList: QBluetoothServiceInfo.AttributeId = ... # 0xd
|
|
531
|
+
PrimaryLanguageBase : QBluetoothServiceInfo.AttributeId = ... # 0x100
|
|
532
|
+
ServiceName : QBluetoothServiceInfo.AttributeId = ... # 0x100
|
|
533
|
+
ServiceDescription : QBluetoothServiceInfo.AttributeId = ... # 0x101
|
|
534
|
+
ServiceProvider : QBluetoothServiceInfo.AttributeId = ... # 0x102
|
|
535
|
+
|
|
536
|
+
class Protocol(enum.Enum):
|
|
537
|
+
|
|
538
|
+
UnknownProtocol : QBluetoothServiceInfo.Protocol = ... # 0x0
|
|
539
|
+
L2capProtocol : QBluetoothServiceInfo.Protocol = ... # 0x1
|
|
540
|
+
RfcommProtocol : QBluetoothServiceInfo.Protocol = ... # 0x2
|
|
541
|
+
|
|
542
|
+
class Sequence(Shiboken.Object):
|
|
543
|
+
|
|
544
|
+
@overload
|
|
545
|
+
def __init__(self) -> None: ...
|
|
546
|
+
@overload
|
|
547
|
+
def __init__(self, Sequence: Union[PySide6.QtBluetooth.QBluetoothServiceInfo.Sequence, Sequence[Any]]) -> None: ...
|
|
548
|
+
@overload
|
|
549
|
+
def __init__(self, list: Sequence[Any]) -> None: ...
|
|
550
|
+
|
|
551
|
+
def __add__(self, l: Sequence[Any]) -> List[Any]: ...
|
|
552
|
+
@staticmethod
|
|
553
|
+
def __copy__() -> None: ...
|
|
554
|
+
def __iadd__(self, l: Sequence[Any]) -> List[Any]: ...
|
|
555
|
+
def __lshift__(self, l: Sequence[Any]) -> List[Any]: ...
|
|
556
|
+
@overload
|
|
557
|
+
def append(self, arg__1: Any) -> None: ...
|
|
558
|
+
@overload
|
|
559
|
+
def append(self, l: Sequence[Any]) -> None: ...
|
|
560
|
+
def at(self, i: int) -> Any: ...
|
|
561
|
+
def back(self) -> Any: ...
|
|
562
|
+
def capacity(self) -> int: ...
|
|
563
|
+
def clear(self) -> None: ...
|
|
564
|
+
def constData(self) -> object: ...
|
|
565
|
+
def constFirst(self) -> Any: ...
|
|
566
|
+
def constLast(self) -> Any: ...
|
|
567
|
+
def count(self) -> int: ...
|
|
568
|
+
def data(self) -> object: ...
|
|
569
|
+
def empty(self) -> bool: ...
|
|
570
|
+
@overload
|
|
571
|
+
def first(self) -> Any: ...
|
|
572
|
+
@overload
|
|
573
|
+
def first(self, n: int) -> List[Any]: ...
|
|
574
|
+
@staticmethod
|
|
575
|
+
def fromList(list: Sequence[Any]) -> List[Any]: ...
|
|
576
|
+
@staticmethod
|
|
577
|
+
def fromVector(vector: Sequence[Any]) -> List[Any]: ...
|
|
578
|
+
def front(self) -> Any: ...
|
|
579
|
+
def insert(self, arg__1: int, arg__2: Any) -> None: ...
|
|
580
|
+
def isEmpty(self) -> bool: ...
|
|
581
|
+
def isSharedWith(self, other: Sequence[Any]) -> bool: ...
|
|
582
|
+
@overload
|
|
583
|
+
def last(self) -> Any: ...
|
|
584
|
+
@overload
|
|
585
|
+
def last(self, n: int) -> List[Any]: ...
|
|
586
|
+
def length(self) -> int: ...
|
|
587
|
+
def mid(self, pos: int, len: int = ...) -> List[Any]: ...
|
|
588
|
+
def move(self, from_: int, to: int) -> None: ...
|
|
589
|
+
def pop_back(self) -> None: ...
|
|
590
|
+
def pop_front(self) -> None: ...
|
|
591
|
+
def prepend(self, arg__1: Any) -> None: ...
|
|
592
|
+
def push_back(self, arg__1: Any) -> None: ...
|
|
593
|
+
def push_front(self, arg__1: Any) -> None: ...
|
|
594
|
+
def remove(self, i: int, n: int = ...) -> None: ...
|
|
595
|
+
def removeAll(self, arg__1: Any) -> None: ...
|
|
596
|
+
def removeAt(self, i: int) -> None: ...
|
|
597
|
+
def removeFirst(self) -> None: ...
|
|
598
|
+
def removeLast(self) -> None: ...
|
|
599
|
+
def removeOne(self, arg__1: Any) -> None: ...
|
|
600
|
+
def reserve(self, size: int) -> None: ...
|
|
601
|
+
def resize(self, size: int) -> None: ...
|
|
602
|
+
def shrink_to_fit(self) -> None: ...
|
|
603
|
+
def size(self) -> int: ...
|
|
604
|
+
@overload
|
|
605
|
+
def sliced(self, pos: int) -> List[Any]: ...
|
|
606
|
+
@overload
|
|
607
|
+
def sliced(self, pos: int, n: int) -> List[Any]: ...
|
|
608
|
+
def squeeze(self) -> None: ...
|
|
609
|
+
def swap(self, other: Sequence[Any]) -> None: ...
|
|
610
|
+
def swapItemsAt(self, i: int, j: int) -> None: ...
|
|
611
|
+
def takeAt(self, i: int) -> Any: ...
|
|
612
|
+
def toList(self) -> List[Any]: ...
|
|
613
|
+
def toVector(self) -> List[Any]: ...
|
|
614
|
+
def value(self, i: int) -> Any: ...
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
@overload
|
|
618
|
+
def __init__(self) -> None: ...
|
|
619
|
+
@overload
|
|
620
|
+
def __init__(self, other: PySide6.QtBluetooth.QBluetoothServiceInfo) -> None: ...
|
|
621
|
+
|
|
622
|
+
@staticmethod
|
|
623
|
+
def __copy__() -> None: ...
|
|
624
|
+
def attribute(self, attributeId: int) -> Any: ...
|
|
625
|
+
def attributes(self) -> List[int]: ...
|
|
626
|
+
def contains(self, attributeId: int) -> bool: ...
|
|
627
|
+
def device(self) -> PySide6.QtBluetooth.QBluetoothDeviceInfo: ...
|
|
628
|
+
def isComplete(self) -> bool: ...
|
|
629
|
+
def isRegistered(self) -> bool: ...
|
|
630
|
+
def isValid(self) -> bool: ...
|
|
631
|
+
def protocolDescriptor(self, protocol: PySide6.QtBluetooth.QBluetoothUuid.ProtocolUuid) -> PySide6.QtBluetooth.QBluetoothServiceInfo.Sequence: ...
|
|
632
|
+
def protocolServiceMultiplexer(self) -> int: ...
|
|
633
|
+
def registerService(self, localAdapter: PySide6.QtBluetooth.QBluetoothAddress = ...) -> bool: ...
|
|
634
|
+
def removeAttribute(self, attributeId: int) -> None: ...
|
|
635
|
+
def serverChannel(self) -> int: ...
|
|
636
|
+
def serviceAvailability(self) -> int: ...
|
|
637
|
+
def serviceClassUuids(self) -> List[PySide6.QtBluetooth.QBluetoothUuid]: ...
|
|
638
|
+
def serviceDescription(self) -> str: ...
|
|
639
|
+
def serviceName(self) -> str: ...
|
|
640
|
+
def serviceProvider(self) -> str: ...
|
|
641
|
+
def serviceUuid(self) -> PySide6.QtBluetooth.QBluetoothUuid: ...
|
|
642
|
+
@overload
|
|
643
|
+
def setAttribute(self, attributeId: int, value: Any) -> None: ...
|
|
644
|
+
@overload
|
|
645
|
+
def setAttribute(self, attributeId: int, value: Union[PySide6.QtBluetooth.QBluetoothServiceInfo.Alternative, Sequence[Any]]) -> None: ...
|
|
646
|
+
@overload
|
|
647
|
+
def setAttribute(self, attributeId: int, value: Union[PySide6.QtBluetooth.QBluetoothServiceInfo.Sequence, Sequence[Any]]) -> None: ...
|
|
648
|
+
@overload
|
|
649
|
+
def setAttribute(self, attributeId: int, value: Union[PySide6.QtBluetooth.QBluetoothUuid, PySide6.QtBluetooth.QBluetoothUuid.CharacteristicType, PySide6.QtBluetooth.QBluetoothUuid.DescriptorType, PySide6.QtBluetooth.QBluetoothUuid.ProtocolUuid, PySide6.QtBluetooth.QBluetoothUuid.ServiceClassUuid, PySide6.QtCore.QUuid]) -> None: ...
|
|
650
|
+
def setDevice(self, info: PySide6.QtBluetooth.QBluetoothDeviceInfo) -> None: ...
|
|
651
|
+
def setServiceAvailability(self, availability: int) -> None: ...
|
|
652
|
+
def setServiceDescription(self, description: str) -> None: ...
|
|
653
|
+
def setServiceName(self, name: str) -> None: ...
|
|
654
|
+
def setServiceProvider(self, provider: str) -> None: ...
|
|
655
|
+
def setServiceUuid(self, uuid: Union[PySide6.QtBluetooth.QBluetoothUuid, PySide6.QtBluetooth.QBluetoothUuid.CharacteristicType, PySide6.QtBluetooth.QBluetoothUuid.DescriptorType, PySide6.QtBluetooth.QBluetoothUuid.ProtocolUuid, PySide6.QtBluetooth.QBluetoothUuid.ServiceClassUuid, PySide6.QtCore.QUuid]) -> None: ...
|
|
656
|
+
def socketProtocol(self) -> PySide6.QtBluetooth.QBluetoothServiceInfo.Protocol: ...
|
|
657
|
+
def unregisterService(self) -> bool: ...
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+
class QBluetoothSocket(PySide6.QtCore.QIODevice):
|
|
661
|
+
|
|
662
|
+
connected : ClassVar[Signal] = ... # connected()
|
|
663
|
+
disconnected : ClassVar[Signal] = ... # disconnected()
|
|
664
|
+
errorOccurred : ClassVar[Signal] = ... # errorOccurred(QBluetoothSocket::SocketError)
|
|
665
|
+
stateChanged : ClassVar[Signal] = ... # stateChanged(QBluetoothSocket::SocketState)
|
|
666
|
+
|
|
667
|
+
class SocketError(enum.Enum):
|
|
668
|
+
|
|
669
|
+
NoSocketError : QBluetoothSocket.SocketError = ... # 0x0
|
|
670
|
+
UnknownSocketError : QBluetoothSocket.SocketError = ... # 0x1
|
|
671
|
+
RemoteHostClosedError : QBluetoothSocket.SocketError = ... # 0x2
|
|
672
|
+
HostNotFoundError : QBluetoothSocket.SocketError = ... # 0x3
|
|
673
|
+
ServiceNotFoundError : QBluetoothSocket.SocketError = ... # 0x4
|
|
674
|
+
NetworkError : QBluetoothSocket.SocketError = ... # 0x5
|
|
675
|
+
UnsupportedProtocolError : QBluetoothSocket.SocketError = ... # 0x6
|
|
676
|
+
OperationError : QBluetoothSocket.SocketError = ... # 0x7
|
|
677
|
+
MissingPermissionsError : QBluetoothSocket.SocketError = ... # 0x8
|
|
678
|
+
|
|
679
|
+
class SocketState(enum.Enum):
|
|
680
|
+
|
|
681
|
+
UnconnectedState : QBluetoothSocket.SocketState = ... # 0x0
|
|
682
|
+
ServiceLookupState : QBluetoothSocket.SocketState = ... # 0x1
|
|
683
|
+
ConnectingState : QBluetoothSocket.SocketState = ... # 0x2
|
|
684
|
+
ConnectedState : QBluetoothSocket.SocketState = ... # 0x3
|
|
685
|
+
BoundState : QBluetoothSocket.SocketState = ... # 0x4
|
|
686
|
+
ClosingState : QBluetoothSocket.SocketState = ... # 0x5
|
|
687
|
+
ListeningState : QBluetoothSocket.SocketState = ... # 0x6
|
|
688
|
+
|
|
689
|
+
|
|
690
|
+
@overload
|
|
691
|
+
def __init__(self, parent: Optional[PySide6.QtCore.QObject] = ...) -> None: ...
|
|
692
|
+
@overload
|
|
693
|
+
def __init__(self, socketType: PySide6.QtBluetooth.QBluetoothServiceInfo.Protocol, parent: Optional[PySide6.QtCore.QObject] = ...) -> None: ...
|
|
694
|
+
|
|
695
|
+
def abort(self) -> None: ...
|
|
696
|
+
def bytesAvailable(self) -> int: ...
|
|
697
|
+
def bytesToWrite(self) -> int: ...
|
|
698
|
+
def canReadLine(self) -> bool: ...
|
|
699
|
+
def close(self) -> None: ...
|
|
700
|
+
@overload
|
|
701
|
+
def connectToService(self, address: PySide6.QtBluetooth.QBluetoothAddress, port: int, openMode: PySide6.QtCore.QIODeviceBase.OpenModeFlag = ...) -> None: ...
|
|
702
|
+
@overload
|
|
703
|
+
def connectToService(self, address: PySide6.QtBluetooth.QBluetoothAddress, uuid: PySide6.QtBluetooth.QBluetoothUuid.ServiceClassUuid, mode: PySide6.QtCore.QIODeviceBase.OpenModeFlag = ...) -> None: ...
|
|
704
|
+
@overload
|
|
705
|
+
def connectToService(self, address: PySide6.QtBluetooth.QBluetoothAddress, uuid: Union[PySide6.QtBluetooth.QBluetoothUuid, PySide6.QtBluetooth.QBluetoothUuid.CharacteristicType, PySide6.QtBluetooth.QBluetoothUuid.DescriptorType, PySide6.QtBluetooth.QBluetoothUuid.ProtocolUuid, PySide6.QtBluetooth.QBluetoothUuid.ServiceClassUuid, PySide6.QtCore.QUuid], openMode: PySide6.QtCore.QIODeviceBase.OpenModeFlag = ...) -> None: ...
|
|
706
|
+
@overload
|
|
707
|
+
def connectToService(self, service: PySide6.QtBluetooth.QBluetoothServiceInfo, openMode: PySide6.QtCore.QIODeviceBase.OpenModeFlag = ...) -> None: ...
|
|
708
|
+
def disconnectFromService(self) -> None: ...
|
|
709
|
+
def doDeviceDiscovery(self, service: PySide6.QtBluetooth.QBluetoothServiceInfo, openMode: PySide6.QtCore.QIODeviceBase.OpenModeFlag) -> None: ...
|
|
710
|
+
def error(self) -> PySide6.QtBluetooth.QBluetoothSocket.SocketError: ...
|
|
711
|
+
def errorString(self) -> str: ...
|
|
712
|
+
def isSequential(self) -> bool: ...
|
|
713
|
+
def localAddress(self) -> PySide6.QtBluetooth.QBluetoothAddress: ...
|
|
714
|
+
def localName(self) -> str: ...
|
|
715
|
+
def localPort(self) -> int: ...
|
|
716
|
+
def peerAddress(self) -> PySide6.QtBluetooth.QBluetoothAddress: ...
|
|
717
|
+
def peerName(self) -> str: ...
|
|
718
|
+
def peerPort(self) -> int: ...
|
|
719
|
+
def preferredSecurityFlags(self) -> PySide6.QtBluetooth.QBluetooth.Security: ...
|
|
720
|
+
def readData(self, maxSize: int) -> object: ...
|
|
721
|
+
def setPreferredSecurityFlags(self, flags: PySide6.QtBluetooth.QBluetooth.Security) -> None: ...
|
|
722
|
+
def setSocketDescriptor(self, socketDescriptor: int, socketType: PySide6.QtBluetooth.QBluetoothServiceInfo.Protocol, socketState: PySide6.QtBluetooth.QBluetoothSocket.SocketState = ..., openMode: PySide6.QtCore.QIODeviceBase.OpenModeFlag = ...) -> bool: ...
|
|
723
|
+
def setSocketError(self, error: PySide6.QtBluetooth.QBluetoothSocket.SocketError) -> None: ...
|
|
724
|
+
def setSocketState(self, state: PySide6.QtBluetooth.QBluetoothSocket.SocketState) -> None: ...
|
|
725
|
+
def socketDescriptor(self) -> int: ...
|
|
726
|
+
def socketType(self) -> PySide6.QtBluetooth.QBluetoothServiceInfo.Protocol: ...
|
|
727
|
+
def state(self) -> PySide6.QtBluetooth.QBluetoothSocket.SocketState: ...
|
|
728
|
+
def writeData(self, data: Union[bytes, bytearray, memoryview], maxSize: int) -> int: ...
|
|
729
|
+
|
|
730
|
+
|
|
731
|
+
class QBluetoothUuid(PySide6.QtCore.QUuid):
|
|
732
|
+
|
|
733
|
+
class CharacteristicType(enum.Enum):
|
|
734
|
+
|
|
735
|
+
DeviceName : QBluetoothUuid.CharacteristicType = ... # 0x2a00
|
|
736
|
+
Appearance : QBluetoothUuid.CharacteristicType = ... # 0x2a01
|
|
737
|
+
PeripheralPrivacyFlag : QBluetoothUuid.CharacteristicType = ... # 0x2a02
|
|
738
|
+
ReconnectionAddress : QBluetoothUuid.CharacteristicType = ... # 0x2a03
|
|
739
|
+
PeripheralPreferredConnectionParameters: QBluetoothUuid.CharacteristicType = ... # 0x2a04
|
|
740
|
+
ServiceChanged : QBluetoothUuid.CharacteristicType = ... # 0x2a05
|
|
741
|
+
AlertLevel : QBluetoothUuid.CharacteristicType = ... # 0x2a06
|
|
742
|
+
TxPowerLevel : QBluetoothUuid.CharacteristicType = ... # 0x2a07
|
|
743
|
+
DateTime : QBluetoothUuid.CharacteristicType = ... # 0x2a08
|
|
744
|
+
DayOfWeek : QBluetoothUuid.CharacteristicType = ... # 0x2a09
|
|
745
|
+
DayDateTime : QBluetoothUuid.CharacteristicType = ... # 0x2a0a
|
|
746
|
+
ExactTime256 : QBluetoothUuid.CharacteristicType = ... # 0x2a0c
|
|
747
|
+
DSTOffset : QBluetoothUuid.CharacteristicType = ... # 0x2a0d
|
|
748
|
+
TimeZone : QBluetoothUuid.CharacteristicType = ... # 0x2a0e
|
|
749
|
+
LocalTimeInformation : QBluetoothUuid.CharacteristicType = ... # 0x2a0f
|
|
750
|
+
TimeWithDST : QBluetoothUuid.CharacteristicType = ... # 0x2a11
|
|
751
|
+
TimeAccuracy : QBluetoothUuid.CharacteristicType = ... # 0x2a12
|
|
752
|
+
TimeSource : QBluetoothUuid.CharacteristicType = ... # 0x2a13
|
|
753
|
+
ReferenceTimeInformation : QBluetoothUuid.CharacteristicType = ... # 0x2a14
|
|
754
|
+
TimeUpdateControlPoint : QBluetoothUuid.CharacteristicType = ... # 0x2a16
|
|
755
|
+
TimeUpdateState : QBluetoothUuid.CharacteristicType = ... # 0x2a17
|
|
756
|
+
GlucoseMeasurement : QBluetoothUuid.CharacteristicType = ... # 0x2a18
|
|
757
|
+
BatteryLevel : QBluetoothUuid.CharacteristicType = ... # 0x2a19
|
|
758
|
+
TemperatureMeasurement : QBluetoothUuid.CharacteristicType = ... # 0x2a1c
|
|
759
|
+
TemperatureType : QBluetoothUuid.CharacteristicType = ... # 0x2a1d
|
|
760
|
+
IntermediateTemperature : QBluetoothUuid.CharacteristicType = ... # 0x2a1e
|
|
761
|
+
MeasurementInterval : QBluetoothUuid.CharacteristicType = ... # 0x2a21
|
|
762
|
+
BootKeyboardInputReport : QBluetoothUuid.CharacteristicType = ... # 0x2a22
|
|
763
|
+
SystemID : QBluetoothUuid.CharacteristicType = ... # 0x2a23
|
|
764
|
+
ModelNumberString : QBluetoothUuid.CharacteristicType = ... # 0x2a24
|
|
765
|
+
SerialNumberString : QBluetoothUuid.CharacteristicType = ... # 0x2a25
|
|
766
|
+
FirmwareRevisionString : QBluetoothUuid.CharacteristicType = ... # 0x2a26
|
|
767
|
+
HardwareRevisionString : QBluetoothUuid.CharacteristicType = ... # 0x2a27
|
|
768
|
+
SoftwareRevisionString : QBluetoothUuid.CharacteristicType = ... # 0x2a28
|
|
769
|
+
ManufacturerNameString : QBluetoothUuid.CharacteristicType = ... # 0x2a29
|
|
770
|
+
IEEE1107320601RegulatoryCertificationDataList: QBluetoothUuid.CharacteristicType = ... # 0x2a2a
|
|
771
|
+
CurrentTime : QBluetoothUuid.CharacteristicType = ... # 0x2a2b
|
|
772
|
+
MagneticDeclination : QBluetoothUuid.CharacteristicType = ... # 0x2a2c
|
|
773
|
+
ScanRefresh : QBluetoothUuid.CharacteristicType = ... # 0x2a31
|
|
774
|
+
BootKeyboardOutputReport : QBluetoothUuid.CharacteristicType = ... # 0x2a32
|
|
775
|
+
BootMouseInputReport : QBluetoothUuid.CharacteristicType = ... # 0x2a33
|
|
776
|
+
GlucoseMeasurementContext: QBluetoothUuid.CharacteristicType = ... # 0x2a34
|
|
777
|
+
BloodPressureMeasurement : QBluetoothUuid.CharacteristicType = ... # 0x2a35
|
|
778
|
+
IntermediateCuffPressure : QBluetoothUuid.CharacteristicType = ... # 0x2a36
|
|
779
|
+
HeartRateMeasurement : QBluetoothUuid.CharacteristicType = ... # 0x2a37
|
|
780
|
+
BodySensorLocation : QBluetoothUuid.CharacteristicType = ... # 0x2a38
|
|
781
|
+
HeartRateControlPoint : QBluetoothUuid.CharacteristicType = ... # 0x2a39
|
|
782
|
+
AlertStatus : QBluetoothUuid.CharacteristicType = ... # 0x2a3f
|
|
783
|
+
RingerControlPoint : QBluetoothUuid.CharacteristicType = ... # 0x2a40
|
|
784
|
+
RingerSetting : QBluetoothUuid.CharacteristicType = ... # 0x2a41
|
|
785
|
+
AlertCategoryIDBitMask : QBluetoothUuid.CharacteristicType = ... # 0x2a42
|
|
786
|
+
AlertCategoryID : QBluetoothUuid.CharacteristicType = ... # 0x2a43
|
|
787
|
+
AlertNotificationControlPoint: QBluetoothUuid.CharacteristicType = ... # 0x2a44
|
|
788
|
+
UnreadAlertStatus : QBluetoothUuid.CharacteristicType = ... # 0x2a45
|
|
789
|
+
NewAlert : QBluetoothUuid.CharacteristicType = ... # 0x2a46
|
|
790
|
+
SupportedNewAlertCategory: QBluetoothUuid.CharacteristicType = ... # 0x2a47
|
|
791
|
+
SupportedUnreadAlertCategory: QBluetoothUuid.CharacteristicType = ... # 0x2a48
|
|
792
|
+
BloodPressureFeature : QBluetoothUuid.CharacteristicType = ... # 0x2a49
|
|
793
|
+
HIDInformation : QBluetoothUuid.CharacteristicType = ... # 0x2a4a
|
|
794
|
+
ReportMap : QBluetoothUuid.CharacteristicType = ... # 0x2a4b
|
|
795
|
+
HIDControlPoint : QBluetoothUuid.CharacteristicType = ... # 0x2a4c
|
|
796
|
+
Report : QBluetoothUuid.CharacteristicType = ... # 0x2a4d
|
|
797
|
+
ProtocolMode : QBluetoothUuid.CharacteristicType = ... # 0x2a4e
|
|
798
|
+
ScanIntervalWindow : QBluetoothUuid.CharacteristicType = ... # 0x2a4f
|
|
799
|
+
PnPID : QBluetoothUuid.CharacteristicType = ... # 0x2a50
|
|
800
|
+
GlucoseFeature : QBluetoothUuid.CharacteristicType = ... # 0x2a51
|
|
801
|
+
RecordAccessControlPoint : QBluetoothUuid.CharacteristicType = ... # 0x2a52
|
|
802
|
+
RSCMeasurement : QBluetoothUuid.CharacteristicType = ... # 0x2a53
|
|
803
|
+
RSCFeature : QBluetoothUuid.CharacteristicType = ... # 0x2a54
|
|
804
|
+
SCControlPoint : QBluetoothUuid.CharacteristicType = ... # 0x2a55
|
|
805
|
+
CSCMeasurement : QBluetoothUuid.CharacteristicType = ... # 0x2a5b
|
|
806
|
+
CSCFeature : QBluetoothUuid.CharacteristicType = ... # 0x2a5c
|
|
807
|
+
SensorLocation : QBluetoothUuid.CharacteristicType = ... # 0x2a5d
|
|
808
|
+
CyclingPowerMeasurement : QBluetoothUuid.CharacteristicType = ... # 0x2a63
|
|
809
|
+
CyclingPowerVector : QBluetoothUuid.CharacteristicType = ... # 0x2a64
|
|
810
|
+
CyclingPowerFeature : QBluetoothUuid.CharacteristicType = ... # 0x2a65
|
|
811
|
+
CyclingPowerControlPoint : QBluetoothUuid.CharacteristicType = ... # 0x2a66
|
|
812
|
+
LocationAndSpeed : QBluetoothUuid.CharacteristicType = ... # 0x2a67
|
|
813
|
+
Navigation : QBluetoothUuid.CharacteristicType = ... # 0x2a68
|
|
814
|
+
PositionQuality : QBluetoothUuid.CharacteristicType = ... # 0x2a69
|
|
815
|
+
LNFeature : QBluetoothUuid.CharacteristicType = ... # 0x2a6a
|
|
816
|
+
LNControlPoint : QBluetoothUuid.CharacteristicType = ... # 0x2a6b
|
|
817
|
+
Elevation : QBluetoothUuid.CharacteristicType = ... # 0x2a6c
|
|
818
|
+
Pressure : QBluetoothUuid.CharacteristicType = ... # 0x2a6d
|
|
819
|
+
Temperature : QBluetoothUuid.CharacteristicType = ... # 0x2a6e
|
|
820
|
+
Humidity : QBluetoothUuid.CharacteristicType = ... # 0x2a6f
|
|
821
|
+
TrueWindSpeed : QBluetoothUuid.CharacteristicType = ... # 0x2a70
|
|
822
|
+
TrueWindDirection : QBluetoothUuid.CharacteristicType = ... # 0x2a71
|
|
823
|
+
ApparentWindSpeed : QBluetoothUuid.CharacteristicType = ... # 0x2a72
|
|
824
|
+
ApparentWindDirection : QBluetoothUuid.CharacteristicType = ... # 0x2a73
|
|
825
|
+
GustFactor : QBluetoothUuid.CharacteristicType = ... # 0x2a74
|
|
826
|
+
PollenConcentration : QBluetoothUuid.CharacteristicType = ... # 0x2a75
|
|
827
|
+
UVIndex : QBluetoothUuid.CharacteristicType = ... # 0x2a76
|
|
828
|
+
Irradiance : QBluetoothUuid.CharacteristicType = ... # 0x2a77
|
|
829
|
+
Rainfall : QBluetoothUuid.CharacteristicType = ... # 0x2a78
|
|
830
|
+
WindChill : QBluetoothUuid.CharacteristicType = ... # 0x2a79
|
|
831
|
+
HeatIndex : QBluetoothUuid.CharacteristicType = ... # 0x2a7a
|
|
832
|
+
DewPoint : QBluetoothUuid.CharacteristicType = ... # 0x2a7b
|
|
833
|
+
DescriptorValueChanged : QBluetoothUuid.CharacteristicType = ... # 0x2a7d
|
|
834
|
+
AerobicHeartRateLowerLimit: QBluetoothUuid.CharacteristicType = ... # 0x2a7e
|
|
835
|
+
AerobicThreshold : QBluetoothUuid.CharacteristicType = ... # 0x2a7f
|
|
836
|
+
Age : QBluetoothUuid.CharacteristicType = ... # 0x2a80
|
|
837
|
+
AnaerobicHeartRateLowerLimit: QBluetoothUuid.CharacteristicType = ... # 0x2a81
|
|
838
|
+
AnaerobicHeartRateUpperLimit: QBluetoothUuid.CharacteristicType = ... # 0x2a82
|
|
839
|
+
AnaerobicThreshold : QBluetoothUuid.CharacteristicType = ... # 0x2a83
|
|
840
|
+
AerobicHeartRateUpperLimit: QBluetoothUuid.CharacteristicType = ... # 0x2a84
|
|
841
|
+
DateOfBirth : QBluetoothUuid.CharacteristicType = ... # 0x2a85
|
|
842
|
+
DateOfThresholdAssessment: QBluetoothUuid.CharacteristicType = ... # 0x2a86
|
|
843
|
+
EmailAddress : QBluetoothUuid.CharacteristicType = ... # 0x2a87
|
|
844
|
+
FatBurnHeartRateLowerLimit: QBluetoothUuid.CharacteristicType = ... # 0x2a88
|
|
845
|
+
FatBurnHeartRateUpperLimit: QBluetoothUuid.CharacteristicType = ... # 0x2a89
|
|
846
|
+
FirstName : QBluetoothUuid.CharacteristicType = ... # 0x2a8a
|
|
847
|
+
FiveZoneHeartRateLimits : QBluetoothUuid.CharacteristicType = ... # 0x2a8b
|
|
848
|
+
Gender : QBluetoothUuid.CharacteristicType = ... # 0x2a8c
|
|
849
|
+
HeartRateMax : QBluetoothUuid.CharacteristicType = ... # 0x2a8d
|
|
850
|
+
Height : QBluetoothUuid.CharacteristicType = ... # 0x2a8e
|
|
851
|
+
HipCircumference : QBluetoothUuid.CharacteristicType = ... # 0x2a8f
|
|
852
|
+
LastName : QBluetoothUuid.CharacteristicType = ... # 0x2a90
|
|
853
|
+
MaximumRecommendedHeartRate: QBluetoothUuid.CharacteristicType = ... # 0x2a91
|
|
854
|
+
RestingHeartRate : QBluetoothUuid.CharacteristicType = ... # 0x2a92
|
|
855
|
+
SportTypeForAerobicAnaerobicThresholds: QBluetoothUuid.CharacteristicType = ... # 0x2a93
|
|
856
|
+
ThreeZoneHeartRateLimits : QBluetoothUuid.CharacteristicType = ... # 0x2a94
|
|
857
|
+
TwoZoneHeartRateLimits : QBluetoothUuid.CharacteristicType = ... # 0x2a95
|
|
858
|
+
VO2Max : QBluetoothUuid.CharacteristicType = ... # 0x2a96
|
|
859
|
+
WaistCircumference : QBluetoothUuid.CharacteristicType = ... # 0x2a97
|
|
860
|
+
Weight : QBluetoothUuid.CharacteristicType = ... # 0x2a98
|
|
861
|
+
DatabaseChangeIncrement : QBluetoothUuid.CharacteristicType = ... # 0x2a99
|
|
862
|
+
UserIndex : QBluetoothUuid.CharacteristicType = ... # 0x2a9a
|
|
863
|
+
BodyCompositionFeature : QBluetoothUuid.CharacteristicType = ... # 0x2a9b
|
|
864
|
+
BodyCompositionMeasurement: QBluetoothUuid.CharacteristicType = ... # 0x2a9c
|
|
865
|
+
WeightMeasurement : QBluetoothUuid.CharacteristicType = ... # 0x2a9d
|
|
866
|
+
WeightScaleFeature : QBluetoothUuid.CharacteristicType = ... # 0x2a9e
|
|
867
|
+
UserControlPoint : QBluetoothUuid.CharacteristicType = ... # 0x2a9f
|
|
868
|
+
MagneticFluxDensity2D : QBluetoothUuid.CharacteristicType = ... # 0x2aa0
|
|
869
|
+
MagneticFluxDensity3D : QBluetoothUuid.CharacteristicType = ... # 0x2aa1
|
|
870
|
+
Language : QBluetoothUuid.CharacteristicType = ... # 0x2aa2
|
|
871
|
+
BarometricPressureTrend : QBluetoothUuid.CharacteristicType = ... # 0x2aa3
|
|
872
|
+
|
|
873
|
+
class DescriptorType(enum.Enum):
|
|
874
|
+
|
|
875
|
+
UnknownDescriptorType : QBluetoothUuid.DescriptorType = ... # 0x0
|
|
876
|
+
CharacteristicExtendedProperties: QBluetoothUuid.DescriptorType = ... # 0x2900
|
|
877
|
+
CharacteristicUserDescription: QBluetoothUuid.DescriptorType = ... # 0x2901
|
|
878
|
+
ClientCharacteristicConfiguration: QBluetoothUuid.DescriptorType = ... # 0x2902
|
|
879
|
+
ServerCharacteristicConfiguration: QBluetoothUuid.DescriptorType = ... # 0x2903
|
|
880
|
+
CharacteristicPresentationFormat: QBluetoothUuid.DescriptorType = ... # 0x2904
|
|
881
|
+
CharacteristicAggregateFormat: QBluetoothUuid.DescriptorType = ... # 0x2905
|
|
882
|
+
ValidRange : QBluetoothUuid.DescriptorType = ... # 0x2906
|
|
883
|
+
ExternalReportReference : QBluetoothUuid.DescriptorType = ... # 0x2907
|
|
884
|
+
ReportReference : QBluetoothUuid.DescriptorType = ... # 0x2908
|
|
885
|
+
EnvironmentalSensingConfiguration: QBluetoothUuid.DescriptorType = ... # 0x290b
|
|
886
|
+
EnvironmentalSensingMeasurement: QBluetoothUuid.DescriptorType = ... # 0x290c
|
|
887
|
+
EnvironmentalSensingTriggerSetting: QBluetoothUuid.DescriptorType = ... # 0x290d
|
|
888
|
+
|
|
889
|
+
class ProtocolUuid(enum.Enum):
|
|
890
|
+
|
|
891
|
+
Sdp : QBluetoothUuid.ProtocolUuid = ... # 0x1
|
|
892
|
+
Udp : QBluetoothUuid.ProtocolUuid = ... # 0x2
|
|
893
|
+
Rfcomm : QBluetoothUuid.ProtocolUuid = ... # 0x3
|
|
894
|
+
Tcp : QBluetoothUuid.ProtocolUuid = ... # 0x4
|
|
895
|
+
TcsBin : QBluetoothUuid.ProtocolUuid = ... # 0x5
|
|
896
|
+
TcsAt : QBluetoothUuid.ProtocolUuid = ... # 0x6
|
|
897
|
+
Att : QBluetoothUuid.ProtocolUuid = ... # 0x7
|
|
898
|
+
Obex : QBluetoothUuid.ProtocolUuid = ... # 0x8
|
|
899
|
+
Ip : QBluetoothUuid.ProtocolUuid = ... # 0x9
|
|
900
|
+
Ftp : QBluetoothUuid.ProtocolUuid = ... # 0xa
|
|
901
|
+
Http : QBluetoothUuid.ProtocolUuid = ... # 0xc
|
|
902
|
+
Wsp : QBluetoothUuid.ProtocolUuid = ... # 0xe
|
|
903
|
+
Bnep : QBluetoothUuid.ProtocolUuid = ... # 0xf
|
|
904
|
+
Upnp : QBluetoothUuid.ProtocolUuid = ... # 0x10
|
|
905
|
+
Hidp : QBluetoothUuid.ProtocolUuid = ... # 0x11
|
|
906
|
+
HardcopyControlChannel : QBluetoothUuid.ProtocolUuid = ... # 0x12
|
|
907
|
+
HardcopyDataChannel : QBluetoothUuid.ProtocolUuid = ... # 0x14
|
|
908
|
+
HardcopyNotification : QBluetoothUuid.ProtocolUuid = ... # 0x16
|
|
909
|
+
Avctp : QBluetoothUuid.ProtocolUuid = ... # 0x17
|
|
910
|
+
Avdtp : QBluetoothUuid.ProtocolUuid = ... # 0x19
|
|
911
|
+
Cmtp : QBluetoothUuid.ProtocolUuid = ... # 0x1b
|
|
912
|
+
UdiCPlain : QBluetoothUuid.ProtocolUuid = ... # 0x1d
|
|
913
|
+
McapControlChannel : QBluetoothUuid.ProtocolUuid = ... # 0x1e
|
|
914
|
+
McapDataChannel : QBluetoothUuid.ProtocolUuid = ... # 0x1f
|
|
915
|
+
L2cap : QBluetoothUuid.ProtocolUuid = ... # 0x100
|
|
916
|
+
|
|
917
|
+
class ServiceClassUuid(enum.Enum):
|
|
918
|
+
|
|
919
|
+
ServiceDiscoveryServer : QBluetoothUuid.ServiceClassUuid = ... # 0x1000
|
|
920
|
+
BrowseGroupDescriptor : QBluetoothUuid.ServiceClassUuid = ... # 0x1001
|
|
921
|
+
PublicBrowseGroup : QBluetoothUuid.ServiceClassUuid = ... # 0x1002
|
|
922
|
+
SerialPort : QBluetoothUuid.ServiceClassUuid = ... # 0x1101
|
|
923
|
+
LANAccessUsingPPP : QBluetoothUuid.ServiceClassUuid = ... # 0x1102
|
|
924
|
+
DialupNetworking : QBluetoothUuid.ServiceClassUuid = ... # 0x1103
|
|
925
|
+
IrMCSync : QBluetoothUuid.ServiceClassUuid = ... # 0x1104
|
|
926
|
+
ObexObjectPush : QBluetoothUuid.ServiceClassUuid = ... # 0x1105
|
|
927
|
+
OBEXFileTransfer : QBluetoothUuid.ServiceClassUuid = ... # 0x1106
|
|
928
|
+
IrMCSyncCommand : QBluetoothUuid.ServiceClassUuid = ... # 0x1107
|
|
929
|
+
Headset : QBluetoothUuid.ServiceClassUuid = ... # 0x1108
|
|
930
|
+
AudioSource : QBluetoothUuid.ServiceClassUuid = ... # 0x110a
|
|
931
|
+
AudioSink : QBluetoothUuid.ServiceClassUuid = ... # 0x110b
|
|
932
|
+
AV_RemoteControlTarget : QBluetoothUuid.ServiceClassUuid = ... # 0x110c
|
|
933
|
+
AdvancedAudioDistribution: QBluetoothUuid.ServiceClassUuid = ... # 0x110d
|
|
934
|
+
AV_RemoteControl : QBluetoothUuid.ServiceClassUuid = ... # 0x110e
|
|
935
|
+
AV_RemoteControlController: QBluetoothUuid.ServiceClassUuid = ... # 0x110f
|
|
936
|
+
HeadsetAG : QBluetoothUuid.ServiceClassUuid = ... # 0x1112
|
|
937
|
+
PANU : QBluetoothUuid.ServiceClassUuid = ... # 0x1115
|
|
938
|
+
NAP : QBluetoothUuid.ServiceClassUuid = ... # 0x1116
|
|
939
|
+
GN : QBluetoothUuid.ServiceClassUuid = ... # 0x1117
|
|
940
|
+
DirectPrinting : QBluetoothUuid.ServiceClassUuid = ... # 0x1118
|
|
941
|
+
ReferencePrinting : QBluetoothUuid.ServiceClassUuid = ... # 0x1119
|
|
942
|
+
BasicImage : QBluetoothUuid.ServiceClassUuid = ... # 0x111a
|
|
943
|
+
ImagingResponder : QBluetoothUuid.ServiceClassUuid = ... # 0x111b
|
|
944
|
+
ImagingAutomaticArchive : QBluetoothUuid.ServiceClassUuid = ... # 0x111c
|
|
945
|
+
ImagingReferenceObjects : QBluetoothUuid.ServiceClassUuid = ... # 0x111d
|
|
946
|
+
Handsfree : QBluetoothUuid.ServiceClassUuid = ... # 0x111e
|
|
947
|
+
HandsfreeAudioGateway : QBluetoothUuid.ServiceClassUuid = ... # 0x111f
|
|
948
|
+
DirectPrintingReferenceObjectsService: QBluetoothUuid.ServiceClassUuid = ... # 0x1120
|
|
949
|
+
ReflectedUI : QBluetoothUuid.ServiceClassUuid = ... # 0x1121
|
|
950
|
+
BasicPrinting : QBluetoothUuid.ServiceClassUuid = ... # 0x1122
|
|
951
|
+
PrintingStatus : QBluetoothUuid.ServiceClassUuid = ... # 0x1123
|
|
952
|
+
HumanInterfaceDeviceService: QBluetoothUuid.ServiceClassUuid = ... # 0x1124
|
|
953
|
+
HardcopyCableReplacement : QBluetoothUuid.ServiceClassUuid = ... # 0x1125
|
|
954
|
+
HCRPrint : QBluetoothUuid.ServiceClassUuid = ... # 0x1126
|
|
955
|
+
HCRScan : QBluetoothUuid.ServiceClassUuid = ... # 0x1127
|
|
956
|
+
SIMAccess : QBluetoothUuid.ServiceClassUuid = ... # 0x112d
|
|
957
|
+
PhonebookAccessPCE : QBluetoothUuid.ServiceClassUuid = ... # 0x112e
|
|
958
|
+
PhonebookAccessPSE : QBluetoothUuid.ServiceClassUuid = ... # 0x112f
|
|
959
|
+
PhonebookAccess : QBluetoothUuid.ServiceClassUuid = ... # 0x1130
|
|
960
|
+
HeadsetHS : QBluetoothUuid.ServiceClassUuid = ... # 0x1131
|
|
961
|
+
MessageAccessServer : QBluetoothUuid.ServiceClassUuid = ... # 0x1132
|
|
962
|
+
MessageNotificationServer: QBluetoothUuid.ServiceClassUuid = ... # 0x1133
|
|
963
|
+
MessageAccessProfile : QBluetoothUuid.ServiceClassUuid = ... # 0x1134
|
|
964
|
+
GNSS : QBluetoothUuid.ServiceClassUuid = ... # 0x1135
|
|
965
|
+
GNSSServer : QBluetoothUuid.ServiceClassUuid = ... # 0x1136
|
|
966
|
+
Display3D : QBluetoothUuid.ServiceClassUuid = ... # 0x1137
|
|
967
|
+
Glasses3D : QBluetoothUuid.ServiceClassUuid = ... # 0x1138
|
|
968
|
+
Synchronization3D : QBluetoothUuid.ServiceClassUuid = ... # 0x1139
|
|
969
|
+
MPSProfile : QBluetoothUuid.ServiceClassUuid = ... # 0x113a
|
|
970
|
+
MPSService : QBluetoothUuid.ServiceClassUuid = ... # 0x113b
|
|
971
|
+
PnPInformation : QBluetoothUuid.ServiceClassUuid = ... # 0x1200
|
|
972
|
+
GenericNetworking : QBluetoothUuid.ServiceClassUuid = ... # 0x1201
|
|
973
|
+
GenericFileTransfer : QBluetoothUuid.ServiceClassUuid = ... # 0x1202
|
|
974
|
+
GenericAudio : QBluetoothUuid.ServiceClassUuid = ... # 0x1203
|
|
975
|
+
GenericTelephony : QBluetoothUuid.ServiceClassUuid = ... # 0x1204
|
|
976
|
+
VideoSource : QBluetoothUuid.ServiceClassUuid = ... # 0x1303
|
|
977
|
+
VideoSink : QBluetoothUuid.ServiceClassUuid = ... # 0x1304
|
|
978
|
+
VideoDistribution : QBluetoothUuid.ServiceClassUuid = ... # 0x1305
|
|
979
|
+
HDP : QBluetoothUuid.ServiceClassUuid = ... # 0x1400
|
|
980
|
+
HDPSource : QBluetoothUuid.ServiceClassUuid = ... # 0x1401
|
|
981
|
+
HDPSink : QBluetoothUuid.ServiceClassUuid = ... # 0x1402
|
|
982
|
+
GenericAccess : QBluetoothUuid.ServiceClassUuid = ... # 0x1800
|
|
983
|
+
GenericAttribute : QBluetoothUuid.ServiceClassUuid = ... # 0x1801
|
|
984
|
+
ImmediateAlert : QBluetoothUuid.ServiceClassUuid = ... # 0x1802
|
|
985
|
+
LinkLoss : QBluetoothUuid.ServiceClassUuid = ... # 0x1803
|
|
986
|
+
TxPower : QBluetoothUuid.ServiceClassUuid = ... # 0x1804
|
|
987
|
+
CurrentTimeService : QBluetoothUuid.ServiceClassUuid = ... # 0x1805
|
|
988
|
+
ReferenceTimeUpdateService: QBluetoothUuid.ServiceClassUuid = ... # 0x1806
|
|
989
|
+
NextDSTChangeService : QBluetoothUuid.ServiceClassUuid = ... # 0x1807
|
|
990
|
+
Glucose : QBluetoothUuid.ServiceClassUuid = ... # 0x1808
|
|
991
|
+
HealthThermometer : QBluetoothUuid.ServiceClassUuid = ... # 0x1809
|
|
992
|
+
DeviceInformation : QBluetoothUuid.ServiceClassUuid = ... # 0x180a
|
|
993
|
+
HeartRate : QBluetoothUuid.ServiceClassUuid = ... # 0x180d
|
|
994
|
+
PhoneAlertStatusService : QBluetoothUuid.ServiceClassUuid = ... # 0x180e
|
|
995
|
+
BatteryService : QBluetoothUuid.ServiceClassUuid = ... # 0x180f
|
|
996
|
+
BloodPressure : QBluetoothUuid.ServiceClassUuid = ... # 0x1810
|
|
997
|
+
AlertNotificationService : QBluetoothUuid.ServiceClassUuid = ... # 0x1811
|
|
998
|
+
HumanInterfaceDevice : QBluetoothUuid.ServiceClassUuid = ... # 0x1812
|
|
999
|
+
ScanParameters : QBluetoothUuid.ServiceClassUuid = ... # 0x1813
|
|
1000
|
+
RunningSpeedAndCadence : QBluetoothUuid.ServiceClassUuid = ... # 0x1814
|
|
1001
|
+
CyclingSpeedAndCadence : QBluetoothUuid.ServiceClassUuid = ... # 0x1816
|
|
1002
|
+
CyclingPower : QBluetoothUuid.ServiceClassUuid = ... # 0x1818
|
|
1003
|
+
LocationAndNavigation : QBluetoothUuid.ServiceClassUuid = ... # 0x1819
|
|
1004
|
+
EnvironmentalSensing : QBluetoothUuid.ServiceClassUuid = ... # 0x181a
|
|
1005
|
+
BodyComposition : QBluetoothUuid.ServiceClassUuid = ... # 0x181b
|
|
1006
|
+
UserData : QBluetoothUuid.ServiceClassUuid = ... # 0x181c
|
|
1007
|
+
WeightScale : QBluetoothUuid.ServiceClassUuid = ... # 0x181d
|
|
1008
|
+
BondManagement : QBluetoothUuid.ServiceClassUuid = ... # 0x181e
|
|
1009
|
+
ContinuousGlucoseMonitoring: QBluetoothUuid.ServiceClassUuid = ... # 0x181f
|
|
1010
|
+
|
|
1011
|
+
|
|
1012
|
+
@overload
|
|
1013
|
+
def __init__(self) -> None: ...
|
|
1014
|
+
@overload
|
|
1015
|
+
def __init__(self, uuid: PySide6.QtBluetooth.QBluetoothUuid.CharacteristicType) -> None: ...
|
|
1016
|
+
@overload
|
|
1017
|
+
def __init__(self, uuid: PySide6.QtBluetooth.QBluetoothUuid.DescriptorType) -> None: ...
|
|
1018
|
+
@overload
|
|
1019
|
+
def __init__(self, uuid: PySide6.QtBluetooth.QBluetoothUuid.ProtocolUuid) -> None: ...
|
|
1020
|
+
@overload
|
|
1021
|
+
def __init__(self, uuid: PySide6.QtBluetooth.QBluetoothUuid.ServiceClassUuid) -> None: ...
|
|
1022
|
+
@overload
|
|
1023
|
+
def __init__(self, uuid: PySide6.QtCore.QUuid) -> None: ...
|
|
1024
|
+
@overload
|
|
1025
|
+
def __init__(self, uuid: int) -> None: ...
|
|
1026
|
+
@overload
|
|
1027
|
+
def __init__(self, uuid: int) -> None: ...
|
|
1028
|
+
@overload
|
|
1029
|
+
def __init__(self, uuid: Union[PySide6.QtBluetooth.QBluetoothUuid, PySide6.QtBluetooth.QBluetoothUuid.CharacteristicType, PySide6.QtBluetooth.QBluetoothUuid.DescriptorType, PySide6.QtBluetooth.QBluetoothUuid.ProtocolUuid, PySide6.QtBluetooth.QBluetoothUuid.ServiceClassUuid, PySide6.QtCore.QUuid]) -> None: ...
|
|
1030
|
+
|
|
1031
|
+
@staticmethod
|
|
1032
|
+
def __copy__() -> None: ...
|
|
1033
|
+
def __lshift__(self, s: PySide6.QtCore.QDataStream) -> PySide6.QtCore.QDataStream: ...
|
|
1034
|
+
def __rshift__(self, s: PySide6.QtCore.QDataStream) -> PySide6.QtCore.QDataStream: ...
|
|
1035
|
+
@staticmethod
|
|
1036
|
+
def characteristicToString(uuid: PySide6.QtBluetooth.QBluetoothUuid.CharacteristicType) -> str: ...
|
|
1037
|
+
@staticmethod
|
|
1038
|
+
def descriptorToString(uuid: PySide6.QtBluetooth.QBluetoothUuid.DescriptorType) -> str: ...
|
|
1039
|
+
def minimumSize(self) -> int: ...
|
|
1040
|
+
@staticmethod
|
|
1041
|
+
def protocolToString(uuid: PySide6.QtBluetooth.QBluetoothUuid.ProtocolUuid) -> str: ...
|
|
1042
|
+
@staticmethod
|
|
1043
|
+
def serviceClassToString(uuid: PySide6.QtBluetooth.QBluetoothUuid.ServiceClassUuid) -> str: ...
|
|
1044
|
+
def toUInt16(self) -> Tuple[int, bool]: ...
|
|
1045
|
+
def toUInt32(self) -> Tuple[int, bool]: ...
|
|
1046
|
+
|
|
1047
|
+
|
|
1048
|
+
class QIntList(object): ...
|
|
1049
|
+
|
|
1050
|
+
|
|
1051
|
+
class QLowEnergyAdvertisingData(Shiboken.Object):
|
|
1052
|
+
|
|
1053
|
+
class Discoverability(enum.Enum):
|
|
1054
|
+
|
|
1055
|
+
DiscoverabilityNone : QLowEnergyAdvertisingData.Discoverability = ... # 0x0
|
|
1056
|
+
DiscoverabilityLimited : QLowEnergyAdvertisingData.Discoverability = ... # 0x1
|
|
1057
|
+
DiscoverabilityGeneral : QLowEnergyAdvertisingData.Discoverability = ... # 0x2
|
|
1058
|
+
|
|
1059
|
+
|
|
1060
|
+
@overload
|
|
1061
|
+
def __init__(self) -> None: ...
|
|
1062
|
+
@overload
|
|
1063
|
+
def __init__(self, other: PySide6.QtBluetooth.QLowEnergyAdvertisingData) -> None: ...
|
|
1064
|
+
|
|
1065
|
+
@staticmethod
|
|
1066
|
+
def __copy__() -> None: ...
|
|
1067
|
+
def discoverability(self) -> PySide6.QtBluetooth.QLowEnergyAdvertisingData.Discoverability: ...
|
|
1068
|
+
def includePowerLevel(self) -> bool: ...
|
|
1069
|
+
@staticmethod
|
|
1070
|
+
def invalidManufacturerId() -> int: ...
|
|
1071
|
+
def localName(self) -> str: ...
|
|
1072
|
+
def manufacturerData(self) -> PySide6.QtCore.QByteArray: ...
|
|
1073
|
+
def manufacturerId(self) -> int: ...
|
|
1074
|
+
def rawData(self) -> PySide6.QtCore.QByteArray: ...
|
|
1075
|
+
def services(self) -> List[PySide6.QtBluetooth.QBluetoothUuid]: ...
|
|
1076
|
+
def setDiscoverability(self, mode: PySide6.QtBluetooth.QLowEnergyAdvertisingData.Discoverability) -> None: ...
|
|
1077
|
+
def setIncludePowerLevel(self, doInclude: bool) -> None: ...
|
|
1078
|
+
def setLocalName(self, name: str) -> None: ...
|
|
1079
|
+
def setManufacturerData(self, id: int, data: Union[PySide6.QtCore.QByteArray, bytes, bytearray, memoryview]) -> None: ...
|
|
1080
|
+
def setRawData(self, data: Union[PySide6.QtCore.QByteArray, bytes, bytearray, memoryview]) -> None: ...
|
|
1081
|
+
def setServices(self, services: Sequence[PySide6.QtBluetooth.QBluetoothUuid]) -> None: ...
|
|
1082
|
+
def swap(self, other: PySide6.QtBluetooth.QLowEnergyAdvertisingData) -> None: ...
|
|
1083
|
+
|
|
1084
|
+
|
|
1085
|
+
class QLowEnergyAdvertisingParameters(Shiboken.Object):
|
|
1086
|
+
|
|
1087
|
+
class AddressInfo(Shiboken.Object):
|
|
1088
|
+
|
|
1089
|
+
@overload
|
|
1090
|
+
def __init__(self) -> None: ...
|
|
1091
|
+
@overload
|
|
1092
|
+
def __init__(self, AddressInfo: PySide6.QtBluetooth.QLowEnergyAdvertisingParameters.AddressInfo) -> None: ...
|
|
1093
|
+
@overload
|
|
1094
|
+
def __init__(self, addr: PySide6.QtBluetooth.QBluetoothAddress, t: PySide6.QtBluetooth.QLowEnergyController.RemoteAddressType) -> None: ...
|
|
1095
|
+
|
|
1096
|
+
@staticmethod
|
|
1097
|
+
def __copy__() -> None: ...
|
|
1098
|
+
|
|
1099
|
+
class FilterPolicy(enum.Enum):
|
|
1100
|
+
|
|
1101
|
+
IgnoreWhiteList : QLowEnergyAdvertisingParameters.FilterPolicy = ... # 0x0
|
|
1102
|
+
UseWhiteListForScanning : QLowEnergyAdvertisingParameters.FilterPolicy = ... # 0x1
|
|
1103
|
+
UseWhiteListForConnecting: QLowEnergyAdvertisingParameters.FilterPolicy = ... # 0x2
|
|
1104
|
+
UseWhiteListForScanningAndConnecting: QLowEnergyAdvertisingParameters.FilterPolicy = ... # 0x3
|
|
1105
|
+
|
|
1106
|
+
class Mode(enum.Enum):
|
|
1107
|
+
|
|
1108
|
+
AdvInd : QLowEnergyAdvertisingParameters.Mode = ... # 0x0
|
|
1109
|
+
AdvScanInd : QLowEnergyAdvertisingParameters.Mode = ... # 0x2
|
|
1110
|
+
AdvNonConnInd : QLowEnergyAdvertisingParameters.Mode = ... # 0x3
|
|
1111
|
+
|
|
1112
|
+
|
|
1113
|
+
@overload
|
|
1114
|
+
def __init__(self) -> None: ...
|
|
1115
|
+
@overload
|
|
1116
|
+
def __init__(self, other: PySide6.QtBluetooth.QLowEnergyAdvertisingParameters) -> None: ...
|
|
1117
|
+
|
|
1118
|
+
@staticmethod
|
|
1119
|
+
def __copy__() -> None: ...
|
|
1120
|
+
def filterPolicy(self) -> PySide6.QtBluetooth.QLowEnergyAdvertisingParameters.FilterPolicy: ...
|
|
1121
|
+
def maximumInterval(self) -> int: ...
|
|
1122
|
+
def minimumInterval(self) -> int: ...
|
|
1123
|
+
def mode(self) -> PySide6.QtBluetooth.QLowEnergyAdvertisingParameters.Mode: ...
|
|
1124
|
+
def setInterval(self, minimum: int, maximum: int) -> None: ...
|
|
1125
|
+
def setMode(self, mode: PySide6.QtBluetooth.QLowEnergyAdvertisingParameters.Mode) -> None: ...
|
|
1126
|
+
def setWhiteList(self, whiteList: Sequence[PySide6.QtBluetooth.QLowEnergyAdvertisingParameters.AddressInfo], policy: PySide6.QtBluetooth.QLowEnergyAdvertisingParameters.FilterPolicy) -> None: ...
|
|
1127
|
+
def swap(self, other: PySide6.QtBluetooth.QLowEnergyAdvertisingParameters) -> None: ...
|
|
1128
|
+
def whiteList(self) -> List[PySide6.QtBluetooth.QLowEnergyAdvertisingParameters.AddressInfo]: ...
|
|
1129
|
+
|
|
1130
|
+
|
|
1131
|
+
class QLowEnergyCharacteristic(Shiboken.Object):
|
|
1132
|
+
|
|
1133
|
+
CCCDDisable = ... # type: QByteArray
|
|
1134
|
+
CCCDEnableIndication = ... # type: QByteArray
|
|
1135
|
+
CCCDEnableNotification = ... # type: QByteArray
|
|
1136
|
+
|
|
1137
|
+
class PropertyType(enum.Flag):
|
|
1138
|
+
|
|
1139
|
+
Unknown : QLowEnergyCharacteristic.PropertyType = ... # 0x0
|
|
1140
|
+
Broadcasting : QLowEnergyCharacteristic.PropertyType = ... # 0x1
|
|
1141
|
+
Read : QLowEnergyCharacteristic.PropertyType = ... # 0x2
|
|
1142
|
+
WriteNoResponse : QLowEnergyCharacteristic.PropertyType = ... # 0x4
|
|
1143
|
+
Write : QLowEnergyCharacteristic.PropertyType = ... # 0x8
|
|
1144
|
+
Notify : QLowEnergyCharacteristic.PropertyType = ... # 0x10
|
|
1145
|
+
Indicate : QLowEnergyCharacteristic.PropertyType = ... # 0x20
|
|
1146
|
+
WriteSigned : QLowEnergyCharacteristic.PropertyType = ... # 0x40
|
|
1147
|
+
ExtendedProperty : QLowEnergyCharacteristic.PropertyType = ... # 0x80
|
|
1148
|
+
|
|
1149
|
+
|
|
1150
|
+
@overload
|
|
1151
|
+
def __init__(self) -> None: ...
|
|
1152
|
+
@overload
|
|
1153
|
+
def __init__(self, other: PySide6.QtBluetooth.QLowEnergyCharacteristic) -> None: ...
|
|
1154
|
+
|
|
1155
|
+
@staticmethod
|
|
1156
|
+
def __copy__() -> None: ...
|
|
1157
|
+
def clientCharacteristicConfiguration(self) -> PySide6.QtBluetooth.QLowEnergyDescriptor: ...
|
|
1158
|
+
def descriptor(self, uuid: Union[PySide6.QtBluetooth.QBluetoothUuid, PySide6.QtBluetooth.QBluetoothUuid.CharacteristicType, PySide6.QtBluetooth.QBluetoothUuid.DescriptorType, PySide6.QtBluetooth.QBluetoothUuid.ProtocolUuid, PySide6.QtBluetooth.QBluetoothUuid.ServiceClassUuid, PySide6.QtCore.QUuid]) -> PySide6.QtBluetooth.QLowEnergyDescriptor: ...
|
|
1159
|
+
def descriptors(self) -> List[PySide6.QtBluetooth.QLowEnergyDescriptor]: ...
|
|
1160
|
+
def isValid(self) -> bool: ...
|
|
1161
|
+
def name(self) -> str: ...
|
|
1162
|
+
def properties(self) -> PySide6.QtBluetooth.QLowEnergyCharacteristic.PropertyType: ...
|
|
1163
|
+
def uuid(self) -> PySide6.QtBluetooth.QBluetoothUuid: ...
|
|
1164
|
+
def value(self) -> PySide6.QtCore.QByteArray: ...
|
|
1165
|
+
|
|
1166
|
+
|
|
1167
|
+
class QLowEnergyCharacteristicData(Shiboken.Object):
|
|
1168
|
+
|
|
1169
|
+
@overload
|
|
1170
|
+
def __init__(self) -> None: ...
|
|
1171
|
+
@overload
|
|
1172
|
+
def __init__(self, other: PySide6.QtBluetooth.QLowEnergyCharacteristicData) -> None: ...
|
|
1173
|
+
|
|
1174
|
+
@staticmethod
|
|
1175
|
+
def __copy__() -> None: ...
|
|
1176
|
+
def addDescriptor(self, descriptor: PySide6.QtBluetooth.QLowEnergyDescriptorData) -> None: ...
|
|
1177
|
+
def descriptors(self) -> List[PySide6.QtBluetooth.QLowEnergyDescriptorData]: ...
|
|
1178
|
+
def isValid(self) -> bool: ...
|
|
1179
|
+
def maximumValueLength(self) -> int: ...
|
|
1180
|
+
def minimumValueLength(self) -> int: ...
|
|
1181
|
+
def properties(self) -> PySide6.QtBluetooth.QLowEnergyCharacteristic.PropertyType: ...
|
|
1182
|
+
def readConstraints(self) -> PySide6.QtBluetooth.QBluetooth.AttAccessConstraint: ...
|
|
1183
|
+
def setDescriptors(self, descriptors: Sequence[PySide6.QtBluetooth.QLowEnergyDescriptorData]) -> None: ...
|
|
1184
|
+
def setProperties(self, properties: PySide6.QtBluetooth.QLowEnergyCharacteristic.PropertyType) -> None: ...
|
|
1185
|
+
def setReadConstraints(self, constraints: PySide6.QtBluetooth.QBluetooth.AttAccessConstraint) -> None: ...
|
|
1186
|
+
def setUuid(self, uuid: Union[PySide6.QtBluetooth.QBluetoothUuid, PySide6.QtBluetooth.QBluetoothUuid.CharacteristicType, PySide6.QtBluetooth.QBluetoothUuid.DescriptorType, PySide6.QtBluetooth.QBluetoothUuid.ProtocolUuid, PySide6.QtBluetooth.QBluetoothUuid.ServiceClassUuid, PySide6.QtCore.QUuid]) -> None: ...
|
|
1187
|
+
def setValue(self, value: Union[PySide6.QtCore.QByteArray, bytes, bytearray, memoryview]) -> None: ...
|
|
1188
|
+
def setValueLength(self, minimum: int, maximum: int) -> None: ...
|
|
1189
|
+
def setWriteConstraints(self, constraints: PySide6.QtBluetooth.QBluetooth.AttAccessConstraint) -> None: ...
|
|
1190
|
+
def swap(self, other: PySide6.QtBluetooth.QLowEnergyCharacteristicData) -> None: ...
|
|
1191
|
+
def uuid(self) -> PySide6.QtBluetooth.QBluetoothUuid: ...
|
|
1192
|
+
def value(self) -> PySide6.QtCore.QByteArray: ...
|
|
1193
|
+
def writeConstraints(self) -> PySide6.QtBluetooth.QBluetooth.AttAccessConstraint: ...
|
|
1194
|
+
|
|
1195
|
+
|
|
1196
|
+
class QLowEnergyConnectionParameters(Shiboken.Object):
|
|
1197
|
+
|
|
1198
|
+
@overload
|
|
1199
|
+
def __init__(self) -> None: ...
|
|
1200
|
+
@overload
|
|
1201
|
+
def __init__(self, other: PySide6.QtBluetooth.QLowEnergyConnectionParameters) -> None: ...
|
|
1202
|
+
|
|
1203
|
+
@staticmethod
|
|
1204
|
+
def __copy__() -> None: ...
|
|
1205
|
+
def latency(self) -> int: ...
|
|
1206
|
+
def maximumInterval(self) -> float: ...
|
|
1207
|
+
def minimumInterval(self) -> float: ...
|
|
1208
|
+
def setIntervalRange(self, minimum: float, maximum: float) -> None: ...
|
|
1209
|
+
def setLatency(self, latency: int) -> None: ...
|
|
1210
|
+
def setSupervisionTimeout(self, timeout: int) -> None: ...
|
|
1211
|
+
def supervisionTimeout(self) -> int: ...
|
|
1212
|
+
def swap(self, other: PySide6.QtBluetooth.QLowEnergyConnectionParameters) -> None: ...
|
|
1213
|
+
|
|
1214
|
+
|
|
1215
|
+
class QLowEnergyController(PySide6.QtCore.QObject):
|
|
1216
|
+
|
|
1217
|
+
connected : ClassVar[Signal] = ... # connected()
|
|
1218
|
+
connectionUpdated : ClassVar[Signal] = ... # connectionUpdated(QLowEnergyConnectionParameters)
|
|
1219
|
+
disconnected : ClassVar[Signal] = ... # disconnected()
|
|
1220
|
+
discoveryFinished : ClassVar[Signal] = ... # discoveryFinished()
|
|
1221
|
+
errorOccurred : ClassVar[Signal] = ... # errorOccurred(QLowEnergyController::Error)
|
|
1222
|
+
mtuChanged : ClassVar[Signal] = ... # mtuChanged(int)
|
|
1223
|
+
rssiRead : ClassVar[Signal] = ... # rssiRead(short)
|
|
1224
|
+
serviceDiscovered : ClassVar[Signal] = ... # serviceDiscovered(QBluetoothUuid)
|
|
1225
|
+
stateChanged : ClassVar[Signal] = ... # stateChanged(QLowEnergyController::ControllerState)
|
|
1226
|
+
|
|
1227
|
+
class ControllerState(enum.Enum):
|
|
1228
|
+
|
|
1229
|
+
UnconnectedState : QLowEnergyController.ControllerState = ... # 0x0
|
|
1230
|
+
ConnectingState : QLowEnergyController.ControllerState = ... # 0x1
|
|
1231
|
+
ConnectedState : QLowEnergyController.ControllerState = ... # 0x2
|
|
1232
|
+
DiscoveringState : QLowEnergyController.ControllerState = ... # 0x3
|
|
1233
|
+
DiscoveredState : QLowEnergyController.ControllerState = ... # 0x4
|
|
1234
|
+
ClosingState : QLowEnergyController.ControllerState = ... # 0x5
|
|
1235
|
+
AdvertisingState : QLowEnergyController.ControllerState = ... # 0x6
|
|
1236
|
+
|
|
1237
|
+
class Error(enum.Enum):
|
|
1238
|
+
|
|
1239
|
+
NoError : QLowEnergyController.Error = ... # 0x0
|
|
1240
|
+
UnknownError : QLowEnergyController.Error = ... # 0x1
|
|
1241
|
+
UnknownRemoteDeviceError : QLowEnergyController.Error = ... # 0x2
|
|
1242
|
+
NetworkError : QLowEnergyController.Error = ... # 0x3
|
|
1243
|
+
InvalidBluetoothAdapterError: QLowEnergyController.Error = ... # 0x4
|
|
1244
|
+
ConnectionError : QLowEnergyController.Error = ... # 0x5
|
|
1245
|
+
AdvertisingError : QLowEnergyController.Error = ... # 0x6
|
|
1246
|
+
RemoteHostClosedError : QLowEnergyController.Error = ... # 0x7
|
|
1247
|
+
AuthorizationError : QLowEnergyController.Error = ... # 0x8
|
|
1248
|
+
MissingPermissionsError : QLowEnergyController.Error = ... # 0x9
|
|
1249
|
+
RssiReadError : QLowEnergyController.Error = ... # 0xa
|
|
1250
|
+
|
|
1251
|
+
class RemoteAddressType(enum.Enum):
|
|
1252
|
+
|
|
1253
|
+
PublicAddress : QLowEnergyController.RemoteAddressType = ... # 0x0
|
|
1254
|
+
RandomAddress : QLowEnergyController.RemoteAddressType = ... # 0x1
|
|
1255
|
+
|
|
1256
|
+
class Role(enum.Enum):
|
|
1257
|
+
|
|
1258
|
+
CentralRole : QLowEnergyController.Role = ... # 0x0
|
|
1259
|
+
PeripheralRole : QLowEnergyController.Role = ... # 0x1
|
|
1260
|
+
|
|
1261
|
+
|
|
1262
|
+
def addService(self, service: PySide6.QtBluetooth.QLowEnergyServiceData, parent: Optional[PySide6.QtCore.QObject] = ...) -> PySide6.QtBluetooth.QLowEnergyService: ...
|
|
1263
|
+
def connectToDevice(self) -> None: ...
|
|
1264
|
+
@overload
|
|
1265
|
+
@staticmethod
|
|
1266
|
+
def createCentral(remoteDevice: PySide6.QtBluetooth.QBluetoothDeviceInfo, localDevice: PySide6.QtBluetooth.QBluetoothAddress, parent: Optional[PySide6.QtCore.QObject] = ...) -> PySide6.QtBluetooth.QLowEnergyController: ...
|
|
1267
|
+
@overload
|
|
1268
|
+
@staticmethod
|
|
1269
|
+
def createCentral(remoteDevice: PySide6.QtBluetooth.QBluetoothDeviceInfo, parent: Optional[PySide6.QtCore.QObject] = ...) -> PySide6.QtBluetooth.QLowEnergyController: ...
|
|
1270
|
+
@overload
|
|
1271
|
+
@staticmethod
|
|
1272
|
+
def createPeripheral(localDevice: PySide6.QtBluetooth.QBluetoothAddress, parent: Optional[PySide6.QtCore.QObject] = ...) -> PySide6.QtBluetooth.QLowEnergyController: ...
|
|
1273
|
+
@overload
|
|
1274
|
+
@staticmethod
|
|
1275
|
+
def createPeripheral(parent: Optional[PySide6.QtCore.QObject] = ...) -> PySide6.QtBluetooth.QLowEnergyController: ...
|
|
1276
|
+
def createServiceObject(self, service: Union[PySide6.QtBluetooth.QBluetoothUuid, PySide6.QtBluetooth.QBluetoothUuid.CharacteristicType, PySide6.QtBluetooth.QBluetoothUuid.DescriptorType, PySide6.QtBluetooth.QBluetoothUuid.ProtocolUuid, PySide6.QtBluetooth.QBluetoothUuid.ServiceClassUuid, PySide6.QtCore.QUuid], parent: Optional[PySide6.QtCore.QObject] = ...) -> PySide6.QtBluetooth.QLowEnergyService: ...
|
|
1277
|
+
def disconnectFromDevice(self) -> None: ...
|
|
1278
|
+
def discoverServices(self) -> None: ...
|
|
1279
|
+
def error(self) -> PySide6.QtBluetooth.QLowEnergyController.Error: ...
|
|
1280
|
+
def errorString(self) -> str: ...
|
|
1281
|
+
def localAddress(self) -> PySide6.QtBluetooth.QBluetoothAddress: ...
|
|
1282
|
+
def mtu(self) -> int: ...
|
|
1283
|
+
def readRssi(self) -> None: ...
|
|
1284
|
+
def remoteAddress(self) -> PySide6.QtBluetooth.QBluetoothAddress: ...
|
|
1285
|
+
def remoteAddressType(self) -> PySide6.QtBluetooth.QLowEnergyController.RemoteAddressType: ...
|
|
1286
|
+
def remoteDeviceUuid(self) -> PySide6.QtBluetooth.QBluetoothUuid: ...
|
|
1287
|
+
def remoteName(self) -> str: ...
|
|
1288
|
+
def requestConnectionUpdate(self, parameters: PySide6.QtBluetooth.QLowEnergyConnectionParameters) -> None: ...
|
|
1289
|
+
def role(self) -> PySide6.QtBluetooth.QLowEnergyController.Role: ...
|
|
1290
|
+
def services(self) -> List[PySide6.QtBluetooth.QBluetoothUuid]: ...
|
|
1291
|
+
def setRemoteAddressType(self, type: PySide6.QtBluetooth.QLowEnergyController.RemoteAddressType) -> None: ...
|
|
1292
|
+
def startAdvertising(self, parameters: PySide6.QtBluetooth.QLowEnergyAdvertisingParameters, advertisingData: PySide6.QtBluetooth.QLowEnergyAdvertisingData, scanResponseData: PySide6.QtBluetooth.QLowEnergyAdvertisingData = ...) -> None: ...
|
|
1293
|
+
def state(self) -> PySide6.QtBluetooth.QLowEnergyController.ControllerState: ...
|
|
1294
|
+
def stopAdvertising(self) -> None: ...
|
|
1295
|
+
|
|
1296
|
+
|
|
1297
|
+
class QLowEnergyDescriptor(Shiboken.Object):
|
|
1298
|
+
|
|
1299
|
+
@overload
|
|
1300
|
+
def __init__(self) -> None: ...
|
|
1301
|
+
@overload
|
|
1302
|
+
def __init__(self, other: PySide6.QtBluetooth.QLowEnergyDescriptor) -> None: ...
|
|
1303
|
+
|
|
1304
|
+
@staticmethod
|
|
1305
|
+
def __copy__() -> None: ...
|
|
1306
|
+
def isValid(self) -> bool: ...
|
|
1307
|
+
def name(self) -> str: ...
|
|
1308
|
+
def type(self) -> PySide6.QtBluetooth.QBluetoothUuid.DescriptorType: ...
|
|
1309
|
+
def uuid(self) -> PySide6.QtBluetooth.QBluetoothUuid: ...
|
|
1310
|
+
def value(self) -> PySide6.QtCore.QByteArray: ...
|
|
1311
|
+
|
|
1312
|
+
|
|
1313
|
+
class QLowEnergyDescriptorData(Shiboken.Object):
|
|
1314
|
+
|
|
1315
|
+
@overload
|
|
1316
|
+
def __init__(self) -> None: ...
|
|
1317
|
+
@overload
|
|
1318
|
+
def __init__(self, other: PySide6.QtBluetooth.QLowEnergyDescriptorData) -> None: ...
|
|
1319
|
+
@overload
|
|
1320
|
+
def __init__(self, uuid: Union[PySide6.QtBluetooth.QBluetoothUuid, PySide6.QtBluetooth.QBluetoothUuid.CharacteristicType, PySide6.QtBluetooth.QBluetoothUuid.DescriptorType, PySide6.QtBluetooth.QBluetoothUuid.ProtocolUuid, PySide6.QtBluetooth.QBluetoothUuid.ServiceClassUuid, PySide6.QtCore.QUuid], value: Union[PySide6.QtCore.QByteArray, bytes, bytearray, memoryview]) -> None: ...
|
|
1321
|
+
|
|
1322
|
+
@staticmethod
|
|
1323
|
+
def __copy__() -> None: ...
|
|
1324
|
+
def isReadable(self) -> bool: ...
|
|
1325
|
+
def isValid(self) -> bool: ...
|
|
1326
|
+
def isWritable(self) -> bool: ...
|
|
1327
|
+
def readConstraints(self) -> PySide6.QtBluetooth.QBluetooth.AttAccessConstraint: ...
|
|
1328
|
+
def setReadPermissions(self, readable: bool, constraints: PySide6.QtBluetooth.QBluetooth.AttAccessConstraint = ...) -> None: ...
|
|
1329
|
+
def setUuid(self, uuid: Union[PySide6.QtBluetooth.QBluetoothUuid, PySide6.QtBluetooth.QBluetoothUuid.CharacteristicType, PySide6.QtBluetooth.QBluetoothUuid.DescriptorType, PySide6.QtBluetooth.QBluetoothUuid.ProtocolUuid, PySide6.QtBluetooth.QBluetoothUuid.ServiceClassUuid, PySide6.QtCore.QUuid]) -> None: ...
|
|
1330
|
+
def setValue(self, value: Union[PySide6.QtCore.QByteArray, bytes, bytearray, memoryview]) -> None: ...
|
|
1331
|
+
def setWritePermissions(self, writable: bool, constraints: PySide6.QtBluetooth.QBluetooth.AttAccessConstraint = ...) -> None: ...
|
|
1332
|
+
def swap(self, other: PySide6.QtBluetooth.QLowEnergyDescriptorData) -> None: ...
|
|
1333
|
+
def uuid(self) -> PySide6.QtBluetooth.QBluetoothUuid: ...
|
|
1334
|
+
def value(self) -> PySide6.QtCore.QByteArray: ...
|
|
1335
|
+
def writeConstraints(self) -> PySide6.QtBluetooth.QBluetooth.AttAccessConstraint: ...
|
|
1336
|
+
|
|
1337
|
+
|
|
1338
|
+
class QLowEnergyService(PySide6.QtCore.QObject):
|
|
1339
|
+
|
|
1340
|
+
characteristicChanged : ClassVar[Signal] = ... # characteristicChanged(QLowEnergyCharacteristic,QByteArray)
|
|
1341
|
+
characteristicRead : ClassVar[Signal] = ... # characteristicRead(QLowEnergyCharacteristic,QByteArray)
|
|
1342
|
+
characteristicWritten : ClassVar[Signal] = ... # characteristicWritten(QLowEnergyCharacteristic,QByteArray)
|
|
1343
|
+
descriptorRead : ClassVar[Signal] = ... # descriptorRead(QLowEnergyDescriptor,QByteArray)
|
|
1344
|
+
descriptorWritten : ClassVar[Signal] = ... # descriptorWritten(QLowEnergyDescriptor,QByteArray)
|
|
1345
|
+
errorOccurred : ClassVar[Signal] = ... # errorOccurred(QLowEnergyService::ServiceError)
|
|
1346
|
+
stateChanged : ClassVar[Signal] = ... # stateChanged(QLowEnergyService::ServiceState)
|
|
1347
|
+
|
|
1348
|
+
class DiscoveryMode(enum.Enum):
|
|
1349
|
+
|
|
1350
|
+
FullDiscovery : QLowEnergyService.DiscoveryMode = ... # 0x0
|
|
1351
|
+
SkipValueDiscovery : QLowEnergyService.DiscoveryMode = ... # 0x1
|
|
1352
|
+
|
|
1353
|
+
class ServiceError(enum.Enum):
|
|
1354
|
+
|
|
1355
|
+
NoError : QLowEnergyService.ServiceError = ... # 0x0
|
|
1356
|
+
OperationError : QLowEnergyService.ServiceError = ... # 0x1
|
|
1357
|
+
CharacteristicWriteError : QLowEnergyService.ServiceError = ... # 0x2
|
|
1358
|
+
DescriptorWriteError : QLowEnergyService.ServiceError = ... # 0x3
|
|
1359
|
+
UnknownError : QLowEnergyService.ServiceError = ... # 0x4
|
|
1360
|
+
CharacteristicReadError : QLowEnergyService.ServiceError = ... # 0x5
|
|
1361
|
+
DescriptorReadError : QLowEnergyService.ServiceError = ... # 0x6
|
|
1362
|
+
|
|
1363
|
+
class ServiceState(enum.Enum):
|
|
1364
|
+
|
|
1365
|
+
InvalidService : QLowEnergyService.ServiceState = ... # 0x0
|
|
1366
|
+
DiscoveryRequired : QLowEnergyService.ServiceState = ... # 0x1
|
|
1367
|
+
RemoteService : QLowEnergyService.ServiceState = ... # 0x1
|
|
1368
|
+
DiscoveringService : QLowEnergyService.ServiceState = ... # 0x2
|
|
1369
|
+
RemoteServiceDiscovering : QLowEnergyService.ServiceState = ... # 0x2
|
|
1370
|
+
RemoteServiceDiscovered : QLowEnergyService.ServiceState = ... # 0x3
|
|
1371
|
+
ServiceDiscovered : QLowEnergyService.ServiceState = ... # 0x3
|
|
1372
|
+
LocalService : QLowEnergyService.ServiceState = ... # 0x4
|
|
1373
|
+
|
|
1374
|
+
class ServiceType(enum.Flag):
|
|
1375
|
+
|
|
1376
|
+
PrimaryService : QLowEnergyService.ServiceType = ... # 0x1
|
|
1377
|
+
IncludedService : QLowEnergyService.ServiceType = ... # 0x2
|
|
1378
|
+
|
|
1379
|
+
class WriteMode(enum.Enum):
|
|
1380
|
+
|
|
1381
|
+
WriteWithResponse : QLowEnergyService.WriteMode = ... # 0x0
|
|
1382
|
+
WriteWithoutResponse : QLowEnergyService.WriteMode = ... # 0x1
|
|
1383
|
+
WriteSigned : QLowEnergyService.WriteMode = ... # 0x2
|
|
1384
|
+
|
|
1385
|
+
|
|
1386
|
+
def characteristic(self, uuid: Union[PySide6.QtBluetooth.QBluetoothUuid, PySide6.QtBluetooth.QBluetoothUuid.CharacteristicType, PySide6.QtBluetooth.QBluetoothUuid.DescriptorType, PySide6.QtBluetooth.QBluetoothUuid.ProtocolUuid, PySide6.QtBluetooth.QBluetoothUuid.ServiceClassUuid, PySide6.QtCore.QUuid]) -> PySide6.QtBluetooth.QLowEnergyCharacteristic: ...
|
|
1387
|
+
def characteristics(self) -> List[PySide6.QtBluetooth.QLowEnergyCharacteristic]: ...
|
|
1388
|
+
@overload
|
|
1389
|
+
def contains(self, characteristic: PySide6.QtBluetooth.QLowEnergyCharacteristic) -> bool: ...
|
|
1390
|
+
@overload
|
|
1391
|
+
def contains(self, descriptor: PySide6.QtBluetooth.QLowEnergyDescriptor) -> bool: ...
|
|
1392
|
+
def discoverDetails(self, mode: PySide6.QtBluetooth.QLowEnergyService.DiscoveryMode = ...) -> None: ...
|
|
1393
|
+
def error(self) -> PySide6.QtBluetooth.QLowEnergyService.ServiceError: ...
|
|
1394
|
+
def includedServices(self) -> List[PySide6.QtBluetooth.QBluetoothUuid]: ...
|
|
1395
|
+
def readCharacteristic(self, characteristic: PySide6.QtBluetooth.QLowEnergyCharacteristic) -> None: ...
|
|
1396
|
+
def readDescriptor(self, descriptor: PySide6.QtBluetooth.QLowEnergyDescriptor) -> None: ...
|
|
1397
|
+
def serviceName(self) -> str: ...
|
|
1398
|
+
def serviceUuid(self) -> PySide6.QtBluetooth.QBluetoothUuid: ...
|
|
1399
|
+
def state(self) -> PySide6.QtBluetooth.QLowEnergyService.ServiceState: ...
|
|
1400
|
+
def type(self) -> PySide6.QtBluetooth.QLowEnergyService.ServiceType: ...
|
|
1401
|
+
def writeCharacteristic(self, characteristic: PySide6.QtBluetooth.QLowEnergyCharacteristic, newValue: Union[PySide6.QtCore.QByteArray, bytes, bytearray, memoryview], mode: PySide6.QtBluetooth.QLowEnergyService.WriteMode = ...) -> None: ...
|
|
1402
|
+
def writeDescriptor(self, descriptor: PySide6.QtBluetooth.QLowEnergyDescriptor, newValue: Union[PySide6.QtCore.QByteArray, bytes, bytearray, memoryview]) -> None: ...
|
|
1403
|
+
|
|
1404
|
+
|
|
1405
|
+
class QLowEnergyServiceData(Shiboken.Object):
|
|
1406
|
+
|
|
1407
|
+
class ServiceType(enum.Enum):
|
|
1408
|
+
|
|
1409
|
+
ServiceTypePrimary : QLowEnergyServiceData.ServiceType = ... # 0x2800
|
|
1410
|
+
ServiceTypeSecondary : QLowEnergyServiceData.ServiceType = ... # 0x2801
|
|
1411
|
+
|
|
1412
|
+
|
|
1413
|
+
@overload
|
|
1414
|
+
def __init__(self) -> None: ...
|
|
1415
|
+
@overload
|
|
1416
|
+
def __init__(self, other: PySide6.QtBluetooth.QLowEnergyServiceData) -> None: ...
|
|
1417
|
+
|
|
1418
|
+
@staticmethod
|
|
1419
|
+
def __copy__() -> None: ...
|
|
1420
|
+
def addCharacteristic(self, characteristic: PySide6.QtBluetooth.QLowEnergyCharacteristicData) -> None: ...
|
|
1421
|
+
def addIncludedService(self, service: PySide6.QtBluetooth.QLowEnergyService) -> None: ...
|
|
1422
|
+
def characteristics(self) -> List[PySide6.QtBluetooth.QLowEnergyCharacteristicData]: ...
|
|
1423
|
+
def includedServices(self) -> List[PySide6.QtBluetooth.QLowEnergyService]: ...
|
|
1424
|
+
def isValid(self) -> bool: ...
|
|
1425
|
+
def setCharacteristics(self, characteristics: Sequence[PySide6.QtBluetooth.QLowEnergyCharacteristicData]) -> None: ...
|
|
1426
|
+
def setIncludedServices(self, services: Sequence[PySide6.QtBluetooth.QLowEnergyService]) -> None: ...
|
|
1427
|
+
def setType(self, type: PySide6.QtBluetooth.QLowEnergyServiceData.ServiceType) -> None: ...
|
|
1428
|
+
def setUuid(self, uuid: Union[PySide6.QtBluetooth.QBluetoothUuid, PySide6.QtBluetooth.QBluetoothUuid.CharacteristicType, PySide6.QtBluetooth.QBluetoothUuid.DescriptorType, PySide6.QtBluetooth.QBluetoothUuid.ProtocolUuid, PySide6.QtBluetooth.QBluetoothUuid.ServiceClassUuid, PySide6.QtCore.QUuid]) -> None: ...
|
|
1429
|
+
def swap(self, other: PySide6.QtBluetooth.QLowEnergyServiceData) -> None: ...
|
|
1430
|
+
def type(self) -> PySide6.QtBluetooth.QLowEnergyServiceData.ServiceType: ...
|
|
1431
|
+
def uuid(self) -> PySide6.QtBluetooth.QBluetoothUuid: ...
|
|
1432
|
+
|
|
1433
|
+
|
|
1434
|
+
# eof
|