├── .gitattributes ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CMakeLists.txt ├── LICENSE.COMMERCIAL ├── LICENSE.FDL ├── LICENSE.GPL2 ├── LICENSE.GPLv3 ├── LICENSE.GPLv3-EXCEPT ├── LICENSE.LGPLv3 ├── README.cmake.md ├── README.md ├── README.pyside2.md ├── README.shiboken2-generator.md ├── README.shiboken2.md ├── coin ├── instructions │ ├── common_environment.yaml │ ├── execute_build_instructions.yaml │ ├── execute_license_check.yaml │ ├── execute_test_instructions.yaml │ ├── find_path_to_msvc_compiler.yaml │ └── relocate_pyside.yaml └── module_config.yaml ├── coin_build_instructions.py ├── coin_test_instructions.py ├── dist ├── changes-1.2.3 ├── changes-5.12.1 ├── changes-5.12.2 ├── changes-5.12.3 ├── changes-5.12.4 ├── changes-5.12.5 ├── changes-5.12.6 ├── changes-5.13.0 ├── changes-5.13.1 ├── changes-5.13.2 ├── changes-5.14.0 ├── changes-5.14.1 ├── changes-5.14.2 ├── changes-5.14.2.2 ├── changes-5.14.2.3 ├── changes-5.15.0 ├── changes-5.15.1 └── changes-5.15.2 ├── docs └── .gitignore ├── examples ├── 3d │ ├── 3d.pyproject │ └── simple3d.py ├── axcontainer │ ├── axcontainer.pyproject │ └── axviewer.py ├── charts │ ├── audio.py │ ├── callout.py │ ├── charts.pyproject │ ├── chartthemes │ │ ├── README.md │ │ ├── chartthemes.pyproject │ │ ├── main.py │ │ ├── themewidget.ui │ │ └── ui_themewidget.py │ ├── donutbreakdown.py │ ├── legend.py │ ├── lineandbar.py │ ├── linechart.py │ ├── logvalueaxis.py │ ├── memoryusage.py │ ├── modeldata.py │ ├── nesteddonuts.py │ ├── percentbarchart.py │ ├── piechart.py │ ├── qmlpolarchart │ │ ├── View1.qml │ │ ├── View2.qml │ │ ├── View3.qml │ │ ├── main.qml │ │ ├── qmlpolarchart.py │ │ └── qmlpolarchart.pyproject │ └── temperaturerecords.py ├── corelib │ ├── threads │ │ ├── mandelbrot.py │ │ └── threads.pyproject │ └── tools │ │ ├── codecs │ │ ├── codecs.py │ │ └── codecs.pyproject │ │ ├── regexp.py │ │ ├── settingseditor │ │ ├── settingseditor.py │ │ └── settingseditor.pyproject │ │ └── tools.pyproject ├── datavisualization │ ├── bars3d.py │ └── datavisualization.pyproject ├── declarative │ ├── declarative.pyproject │ ├── extending │ │ ├── chapter1-basics │ │ │ ├── app.qml │ │ │ ├── basics.py │ │ │ └── chapter1-basics.pyproject │ │ ├── chapter2-methods │ │ │ ├── app.qml │ │ │ ├── chapter2-methods.pyproject │ │ │ └── methods.py │ │ ├── chapter3-bindings │ │ │ ├── app.qml │ │ │ ├── bindings.py │ │ │ └── chapter3-bindings.pyproject │ │ ├── chapter4-customPropertyTypes │ │ │ ├── app.qml │ │ │ ├── chapter4-customPropertyTypes.pyproject │ │ │ └── customPropertyTypes.py │ │ └── chapter5-listproperties │ │ │ ├── app.qml │ │ │ ├── chapter5-listproperties.pyproject │ │ │ └── listproperties.py │ ├── scrolling.py │ ├── signals │ │ ├── pytoqml1 │ │ │ ├── main.py │ │ │ ├── pytoqml1.pyproject │ │ │ └── view.qml │ │ ├── qmltopy1 │ │ │ ├── main.py │ │ │ ├── qmltopy1.pyproject │ │ │ └── view.qml │ │ ├── qmltopy2 │ │ │ ├── main.py │ │ │ ├── qmltopy2.pyproject │ │ │ └── view.qml │ │ ├── qmltopy3 │ │ │ ├── main.py │ │ │ ├── qmltopy3.pyproject │ │ │ └── view.qml │ │ └── qmltopy4 │ │ │ ├── main.py │ │ │ ├── qmltopy4.pyproject │ │ │ └── view.qml │ ├── textproperties │ │ ├── main.py │ │ ├── textproperties.pyproject │ │ └── view.qml │ ├── usingmodel.py │ └── view.qml ├── examples.pyproject ├── external │ ├── matplotlib │ │ ├── requirements.txt │ │ └── widget_3dplot.py │ ├── opencv │ │ ├── requirements.txt │ │ └── webcam_pattern_detection.py │ └── scikit │ │ ├── requirements.txt │ │ └── staining_colors_separation.py ├── installer_test │ ├── hello.py │ └── hello_app.spec ├── macextras │ ├── macextras.pyproject │ └── macpasteboardmime.py ├── multimedia │ ├── audiooutput.py │ ├── camera.py │ ├── multimedia.pyproject │ ├── player.py │ └── shutter.svg ├── network │ ├── blockingfortuneclient.py │ ├── fortuneclient.py │ ├── fortuneserver.py │ ├── network.pyproject │ └── threadedfortuneserver.py ├── opengl │ ├── 2dpainting.py │ ├── contextinfo.py │ ├── grabber.py │ ├── hellogl.py │ ├── hellogl2.py │ ├── opengl.pyproject │ ├── overpainting.py │ ├── samplebuffers.py │ └── textures │ │ ├── images │ │ ├── side1.png │ │ ├── side2.png │ │ ├── side3.png │ │ ├── side4.png │ │ ├── side5.png │ │ └── side6.png │ │ ├── textures.py │ │ ├── textures.pyproject │ │ ├── textures.qrc │ │ └── textures_rc.py ├── quick │ └── customitems │ │ └── painteditem │ │ ├── main.qml │ │ ├── painteditem.py │ │ └── painteditem.pyproject ├── remoteobjects │ └── modelview │ │ ├── modelview.pyproject │ │ ├── modelviewclient.py │ │ └── modelviewserver.py ├── samplebinding │ ├── CMakeLists.txt │ ├── README.md │ ├── bindings.h │ ├── bindings.xml │ ├── icecream.cpp │ ├── icecream.h │ ├── macros.h │ ├── main.py │ ├── truck.cpp │ └── truck.h ├── script │ ├── README.md │ ├── helloscript.py │ └── script.pyproject ├── scriptableapplication │ ├── CMakeLists.txt │ ├── README.md │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── pyside2.pri │ ├── pythonutils.cpp │ ├── pythonutils.h │ ├── scriptableapplication.pro │ ├── scriptableapplication.xml │ └── wrappedclasses.h ├── sql │ └── books │ │ ├── bookdelegate.py │ │ ├── books.pyproject │ │ ├── books.qrc │ │ ├── bookwindow.py │ │ ├── bookwindow.ui │ │ ├── createdb.py │ │ ├── images │ │ └── star.png │ │ ├── main.py │ │ ├── rc_books.py │ │ └── ui_bookwindow.py ├── texttospeech │ ├── texttospeech.py │ └── texttospeech.pyproject ├── tutorial │ ├── t1.py │ ├── t10.py │ ├── t11.py │ ├── t12.py │ ├── t13.py │ ├── t14.py │ ├── t2.py │ ├── t3.py │ ├── t4.py │ ├── t5.py │ ├── t6.py │ ├── t7.py │ ├── t8.py │ ├── t9.py │ └── tutorial.pyproject ├── uiloader │ └── uiloader.py ├── utils │ ├── pyside2_config.py │ └── utils.py ├── webchannel │ └── standalone │ │ ├── core.py │ │ ├── dialog.py │ │ ├── dialog.ui │ │ ├── index.html │ │ ├── main.py │ │ ├── standalone.pyproject │ │ ├── ui_dialog.py │ │ ├── websocketclientwrapper.py │ │ └── websockettransport.py ├── webenginequick │ ├── browser.qml │ ├── quicknanobrowser.py │ └── webenginequick.pyproject ├── webenginewidgets │ ├── simplebrowser.py │ ├── tabbedbrowser │ │ ├── bookmarkwidget.py │ │ ├── browsertabwidget.py │ │ ├── downloadwidget.py │ │ ├── findtoolbar.py │ │ ├── historywindow.py │ │ ├── main.py │ │ ├── tabbedbrowser.pyproject │ │ └── webengineview.py │ └── webenginewidgets.pyproject ├── widgetbinding │ ├── CMakeLists.txt │ ├── README.md │ ├── bindings.h │ ├── bindings.xml │ ├── dialog.py │ ├── macros.h │ ├── main.py │ ├── wigglywidget.cpp │ ├── wigglywidget.h │ └── wigglywidget.py ├── widgets │ ├── animation │ │ ├── animatedtiles │ │ │ ├── animatedtiles.py │ │ │ ├── animatedtiles.pyproject │ │ │ ├── animatedtiles.qrc │ │ │ ├── animatedtiles_rc.py │ │ │ └── images │ │ │ │ ├── Time-For-Lunch-2.jpg │ │ │ │ ├── centered.png │ │ │ │ ├── ellipse.png │ │ │ │ ├── figure8.png │ │ │ │ ├── kinetic.png │ │ │ │ ├── random.png │ │ │ │ └── tile.png │ │ ├── appchooser │ │ │ ├── accessories-dictionary.png │ │ │ ├── akregator.png │ │ │ ├── appchooser.py │ │ │ ├── appchooser.pyproject │ │ │ ├── appchooser.qrc │ │ │ ├── appchooser_rc.py │ │ │ ├── digikam.png │ │ │ └── k3b.png │ │ ├── easing │ │ │ ├── easing.py │ │ │ ├── easing.pyproject │ │ │ ├── easing.qrc │ │ │ ├── easing_rc.py │ │ │ ├── form.ui │ │ │ ├── images │ │ │ │ └── qt-logo.png │ │ │ └── ui_form.py │ │ └── states │ │ │ ├── states.py │ │ │ ├── states.pyproject │ │ │ └── states_rc.py │ ├── codeeditor │ │ ├── codeeditor.py │ │ └── main.py │ ├── dialogs │ │ ├── classwizard │ │ │ ├── classwizard.py │ │ │ ├── classwizard.pyproject │ │ │ ├── classwizard.qrc │ │ │ ├── classwizard_rc.py │ │ │ └── images │ │ │ │ ├── background.png │ │ │ │ ├── banner.png │ │ │ │ ├── logo1.png │ │ │ │ ├── logo2.png │ │ │ │ ├── logo3.png │ │ │ │ ├── watermark1.png │ │ │ │ └── watermark2.png │ │ ├── dialogs.pyproject │ │ ├── extension.py │ │ ├── findfiles.py │ │ ├── standarddialogs.py │ │ └── trivialwizard.py │ ├── draganddrop │ │ └── draggabletext │ │ │ ├── draggabletext.py │ │ │ ├── draggabletext.pyproject │ │ │ ├── draggabletext.qrc │ │ │ ├── draggabletext_rc.py │ │ │ └── words.txt │ ├── effects │ │ ├── effects.pyproject │ │ └── lighting.py │ ├── gallery │ │ ├── gallery.pyproject │ │ ├── main.py │ │ └── widgetgallery.py │ ├── graphicsview │ │ ├── anchorlayout.py │ │ ├── collidingmice │ │ │ ├── collidingmice.py │ │ │ ├── collidingmice.pyproject │ │ │ └── mice_rc.py │ │ ├── diagramscene │ │ │ ├── diagramscene.py │ │ │ ├── diagramscene.pyproject │ │ │ ├── diagramscene.qrc │ │ │ ├── diagramscene_rc.py │ │ │ └── images │ │ │ │ ├── background1.png │ │ │ │ ├── background2.png │ │ │ │ ├── background3.png │ │ │ │ ├── background4.png │ │ │ │ ├── bold.png │ │ │ │ ├── bringtofront.png │ │ │ │ ├── delete.png │ │ │ │ ├── floodfill.png │ │ │ │ ├── italic.png │ │ │ │ ├── linecolor.png │ │ │ │ ├── linepointer.png │ │ │ │ ├── pointer.png │ │ │ │ ├── sendtoback.png │ │ │ │ ├── textpointer.png │ │ │ │ └── underline.png │ │ ├── dragdroprobot │ │ │ ├── dragdroprobot.py │ │ │ ├── dragdroprobot.pyproject │ │ │ ├── dragdroprobot.qrc │ │ │ ├── dragdroprobot_rc.py │ │ │ └── images │ │ │ │ └── head.png │ │ ├── elasticnodes.py │ │ └── graphicsview.pyproject │ ├── itemviews │ │ ├── addressbook │ │ │ ├── adddialogwidget.py │ │ │ ├── addressbook.py │ │ │ ├── addressbook.pyproject │ │ │ ├── addresswidget.py │ │ │ ├── newaddresstab.py │ │ │ └── tablemodel.py │ │ ├── basicsortfiltermodel.py │ │ ├── fetchmore.py │ │ ├── itemviews.pyproject │ │ └── stardelegate │ │ │ ├── stardelegate.py │ │ │ ├── stardelegate.pyproject │ │ │ ├── stareditor.py │ │ │ └── starrating.py │ ├── layouts │ │ ├── basiclayouts.py │ │ ├── dynamiclayouts.py │ │ ├── flowlayout.py │ │ └── layouts.pyproject │ ├── mainwindows │ │ ├── application │ │ │ ├── application.py │ │ │ ├── application.pyproject │ │ │ ├── application.qrc │ │ │ ├── application_rc.py │ │ │ └── images │ │ │ │ ├── copy.png │ │ │ │ ├── cut.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paste.png │ │ │ │ └── save.png │ │ ├── dockwidgets │ │ │ ├── dockwidgets.py │ │ │ ├── dockwidgets.pyproject │ │ │ ├── dockwidgets.qrc │ │ │ ├── dockwidgets_rc.py │ │ │ └── images │ │ │ │ ├── new.png │ │ │ │ ├── print.png │ │ │ │ ├── save.png │ │ │ │ └── undo.png │ │ └── mdi │ │ │ ├── images │ │ │ ├── copy.png │ │ │ ├── cut.png │ │ │ ├── new.png │ │ │ ├── open.png │ │ │ ├── paste.png │ │ │ └── save.png │ │ │ ├── mdi.py │ │ │ ├── mdi.pyproject │ │ │ ├── mdi.qrc │ │ │ └── mdi_rc.py │ ├── painting │ │ ├── basicdrawing │ │ │ ├── basicdrawing.py │ │ │ ├── basicdrawing.pyproject │ │ │ ├── basicdrawing.qrc │ │ │ ├── basicdrawing_rc.py │ │ │ └── images │ │ │ │ ├── brick.png │ │ │ │ └── qt-logo.png │ │ ├── concentriccircles.py │ │ └── painting.pyproject │ ├── richtext │ │ ├── orderform.py │ │ ├── richtext.pyproject │ │ ├── syntaxhighlighter.py │ │ ├── syntaxhighlighter │ │ │ ├── examples │ │ │ │ └── example │ │ │ ├── syntaxhighlighter.py │ │ │ ├── syntaxhighlighter.pyproject │ │ │ ├── syntaxhighlighter.qrc │ │ │ └── syntaxhighlighter_rc.py │ │ └── textobject │ │ │ ├── files │ │ │ └── heart.svg │ │ │ ├── textobject.py │ │ │ └── textobject.pyproject │ ├── state-machine │ │ ├── eventtrans.py │ │ ├── factstates.py │ │ ├── pingpong.py │ │ ├── rogue.py │ │ ├── state-machine.pyproject │ │ ├── trafficlight.py │ │ └── twowaybutton.py │ ├── systray │ │ ├── images │ │ │ ├── bad.png │ │ │ ├── heart.png │ │ │ └── trash.png │ │ ├── main.py │ │ ├── rc_systray.py │ │ ├── systray.pyproject │ │ ├── systray.qrc │ │ └── window.py │ ├── threads │ │ └── thread_signals.py │ ├── tutorials │ │ └── addressbook │ │ │ ├── addressbook.pyproject │ │ │ ├── part1.py │ │ │ ├── part2.py │ │ │ ├── part3.py │ │ │ ├── part4.py │ │ │ ├── part5.py │ │ │ ├── part6.py │ │ │ └── part7.py │ └── widgets │ │ ├── hellogl_openglwidget_legacy.py │ │ ├── tetrix.py │ │ └── widgets.pyproject ├── xml │ └── dombookmarks │ │ ├── dombookmarks.py │ │ ├── dombookmarks.pyproject │ │ ├── frank.xbel │ │ └── jennifer.xbel └── xmlpatterns │ └── schema │ ├── files │ ├── contact.xsd │ ├── invalid_contact.xml │ ├── invalid_order.xml │ ├── invalid_recipe.xml │ ├── order.xsd │ ├── recipe.xsd │ ├── valid_contact.xml │ ├── valid_order.xml │ └── valid_recipe.xml │ ├── schema.py │ ├── schema.pyproject │ ├── schema.qrc │ ├── schema.ui │ ├── schema_rc.py │ └── ui_schema.py ├── ez_setup.py ├── header.BSD-OLD ├── keyword-errors.lst ├── requirements.txt ├── setup.py ├── sources ├── cmake_helpers │ └── helpers.cmake ├── patchelf │ ├── COPYING │ ├── README │ ├── elf.h │ └── patchelf.cc ├── pyside2 │ ├── CMakeLists.txt │ ├── COPYING │ ├── PySide2 │ │ ├── CMakeLists.txt │ │ ├── Qt3DAnimation │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_3danimation.xml │ │ ├── Qt3DCore │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_3dcore.xml │ │ ├── Qt3DExtras │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_3dextras.xml │ │ ├── Qt3DInput │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_3dinput.xml │ │ ├── Qt3DLogic │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_3dlogic.xml │ │ ├── Qt3DRender │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_3drender.xml │ │ ├── QtAxContainer │ │ │ ├── CMakeLists.txt │ │ │ ├── QtAxContainer_global.post.h.in │ │ │ └── typesystem_axcontainer.xml │ │ ├── QtCharts │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_charts.xml │ │ ├── QtConcurrent │ │ │ ├── CMakeLists.txt │ │ │ ├── curr_errors.txt │ │ │ └── typesystem_concurrent.xml │ │ ├── QtCore │ │ │ ├── CMakeLists.txt │ │ │ ├── glue │ │ │ │ ├── qeasingcurve_glue.cpp │ │ │ │ └── qeasingcurve_glue.h │ │ │ ├── typesystem_core.xml.in │ │ │ ├── typesystem_core_common.xml │ │ │ ├── typesystem_core_mac.xml │ │ │ ├── typesystem_core_win.xml │ │ │ └── typesystem_core_x11.xml │ │ ├── QtDataVisualization │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_datavisualization.xml │ │ ├── QtGui │ │ │ ├── CMakeLists.txt │ │ │ ├── QtGui_global.post.h.in │ │ │ ├── typesystem_gui.xml.in │ │ │ ├── typesystem_gui_common.xml │ │ │ ├── typesystem_gui_mac.xml │ │ │ ├── typesystem_gui_win.xml │ │ │ └── typesystem_gui_x11.xml │ │ ├── QtHelp │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_help.xml │ │ ├── QtLocation │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_location.xml │ │ ├── QtMacExtras │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_macextras.xml │ │ ├── QtMultimedia │ │ │ ├── CMakeLists.txt │ │ │ ├── typesystem_multimedia.xml │ │ │ ├── typesystem_multimedia_common.xml │ │ │ └── typesystem_multimedia_forward_declarations.xml │ │ ├── QtMultimediaWidgets │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_multimediawidgets.xml │ │ ├── QtNetwork │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_network.xml │ │ ├── QtOpenGL │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_opengl.xml │ │ ├── QtOpenGLFunctions │ │ │ ├── CMakeLists.txt │ │ │ ├── QtOpenGLFunctions_global.post.h.in │ │ │ ├── typesystem_openglfunctions.xml │ │ │ ├── typesystem_openglfunctions_modifications1_0.xml │ │ │ ├── typesystem_openglfunctions_modifications1_0_compat.xml │ │ │ ├── typesystem_openglfunctions_modifications1_1.xml │ │ │ ├── typesystem_openglfunctions_modifications1_1_compat.xml │ │ │ ├── typesystem_openglfunctions_modifications1_2_compat.xml │ │ │ ├── typesystem_openglfunctions_modifications1_3_compat.xml │ │ │ ├── typesystem_openglfunctions_modifications1_4.xml │ │ │ ├── typesystem_openglfunctions_modifications1_4_compat.xml │ │ │ ├── typesystem_openglfunctions_modifications2_0.xml │ │ │ ├── typesystem_openglfunctions_modifications2_0_compat.xml │ │ │ ├── typesystem_openglfunctions_modifications2_1.xml │ │ │ ├── typesystem_openglfunctions_modifications3_0.xml │ │ │ ├── typesystem_openglfunctions_modifications3_3.xml │ │ │ ├── typesystem_openglfunctions_modifications3_3a.xml │ │ │ ├── typesystem_openglfunctions_modifications4_0.xml │ │ │ ├── typesystem_openglfunctions_modifications4_1.xml │ │ │ ├── typesystem_openglfunctions_modifications4_3.xml │ │ │ ├── typesystem_openglfunctions_modifications4_4.xml │ │ │ ├── typesystem_openglfunctions_modifications4_4_core.xml │ │ │ ├── typesystem_openglfunctions_modifications4_5.xml │ │ │ ├── typesystem_openglfunctions_modifications4_5_core.xml │ │ │ └── typesystem_openglfunctions_modifications_va.xml │ │ ├── QtPositioning │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_positioning.xml │ │ ├── QtPrintSupport │ │ │ ├── CMakeLists.txt │ │ │ ├── typesystem_printsupport.xml.in │ │ │ └── typesystem_printsupport_common.xml │ │ ├── QtQml │ │ │ ├── CMakeLists.txt │ │ │ ├── pysideqmlregistertype.cpp │ │ │ ├── pysideqmlregistertype.h │ │ │ └── typesystem_qml.xml │ │ ├── QtQuick │ │ │ ├── CMakeLists.txt │ │ │ ├── pysidequickregistertype.cpp │ │ │ ├── pysidequickregistertype.h │ │ │ └── typesystem_quick.xml │ │ ├── QtQuickControls2 │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_quickcontrols2.xml │ │ ├── QtQuickWidgets │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_quickwidgets.xml │ │ ├── QtRemoteObjects │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_remoteobjects.xml │ │ ├── QtScript │ │ │ ├── CMakeLists.txt │ │ │ ├── qscript_value_iterator_glue.cpp │ │ │ └── typesystem_script.xml │ │ ├── QtScriptTools │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_scripttools.xml │ │ ├── QtScxml │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_scxml.xml │ │ ├── QtSensors │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_sensors.xml │ │ ├── QtSerialPort │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_serialport.xml │ │ ├── QtSql │ │ │ ├── CMakeLists.txt │ │ │ ├── QtSql_global.pre.h.in │ │ │ └── typesystem_sql.xml │ │ ├── QtSvg │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_svg.xml │ │ ├── QtTest │ │ │ ├── CMakeLists.txt │ │ │ ├── QtTest_global.post.h.in │ │ │ ├── QtTest_global.pre.h.in │ │ │ └── typesystem_test.xml │ │ ├── QtTextToSpeech │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_texttospeech.xml │ │ ├── QtUiTools │ │ │ ├── CMakeLists.txt │ │ │ ├── glue │ │ │ │ └── plugins.h │ │ │ └── typesystem_uitools.xml │ │ ├── QtWebChannel │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_webchannel.xml │ │ ├── QtWebEngine │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_webengine.xml │ │ ├── QtWebEngineCore │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_webenginecore.xml │ │ ├── QtWebEngineWidgets │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_webenginewidgets.xml │ │ ├── QtWebKit │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_webkit.xml │ │ ├── QtWebKitWidgets │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_webkitwidgets.xml │ │ ├── QtWebSockets │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_websockets.xml │ │ ├── QtWidgets │ │ │ ├── CMakeLists.txt │ │ │ ├── typesystem_widgets.xml.in │ │ │ ├── typesystem_widgets_common.xml │ │ │ ├── typesystem_widgets_mac.xml │ │ │ ├── typesystem_widgets_win.xml │ │ │ └── typesystem_widgets_x11.xml │ │ ├── QtWinExtras │ │ │ ├── CMakeLists.txt │ │ │ ├── QtWinExtras_global.pre.h.in │ │ │ └── typesystem_winextras.xml │ │ ├── QtX11Extras │ │ │ ├── CMakeLists.txt │ │ │ ├── QtX11Extras_global.post.h.in │ │ │ └── typesystem_x11extras.xml │ │ ├── QtXml │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_xml.xml │ │ ├── QtXmlPatterns │ │ │ ├── CMakeLists.txt │ │ │ └── typesystem_xmlpatterns.xml │ │ ├── __init__.py.in │ │ ├── _config.py.in │ │ ├── global.h.in │ │ ├── glue │ │ │ ├── qtcharts.cpp │ │ │ ├── qtcore.cpp │ │ │ ├── qtdatavisualization.cpp │ │ │ ├── qtgui.cpp │ │ │ ├── qtmultimedia.cpp │ │ │ ├── qtnetwork.cpp │ │ │ ├── qtopengl.cpp │ │ │ ├── qtprintsupport.cpp │ │ │ ├── qtqml.cpp │ │ │ ├── qtquick.cpp │ │ │ ├── qtscript.cpp │ │ │ ├── qtuitools.cpp │ │ │ ├── qtwebenginewidgets.cpp │ │ │ ├── qtwebkitwidgets.cpp │ │ │ ├── qtwidgets.cpp │ │ │ ├── qtxml.cpp │ │ │ └── qtxmlpatterns.cpp │ │ ├── licensecomment.txt │ │ ├── py.typed.in │ │ ├── pysideqtesttouch.h │ │ ├── pysidewtypes.h │ │ ├── qpytextobject.cpp │ │ ├── qpytextobject.h │ │ ├── qt.conf.in │ │ ├── support │ │ │ ├── __init__.py │ │ │ ├── deprecated.py │ │ │ └── generate_pyi.py │ │ └── templates │ │ │ ├── core_common.xml │ │ │ ├── datavisualization_common.xml │ │ │ ├── gui_common.xml │ │ │ ├── opengl_common.xml │ │ │ ├── openglfunctions_common.xml │ │ │ ├── webkitwidgets_common.xml │ │ │ ├── widgets_common.xml │ │ │ └── xml_common.xml │ ├── cmake │ │ └── Macros │ │ │ ├── FindQt5Extra.cmake │ │ │ ├── PySideModules.cmake │ │ │ └── icecc.cmake │ ├── cmake_uninstall.cmake │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── _templates │ │ │ └── layout.html │ │ ├── _themes │ │ │ ├── pysidedocs │ │ │ │ ├── domainindex.html │ │ │ │ ├── searchbox.html │ │ │ │ ├── static │ │ │ │ │ ├── bg_header.png │ │ │ │ │ ├── bg_topo.jpg │ │ │ │ │ ├── fakebar.png │ │ │ │ │ ├── logo_python.jpg │ │ │ │ │ ├── logo_qt.png │ │ │ │ │ ├── minus.png │ │ │ │ │ ├── plus.png │ │ │ │ │ ├── pyside.css │ │ │ │ │ ├── pysidelogo.png │ │ │ │ │ └── relbar_bg.png │ │ │ │ └── theme.conf │ │ │ └── pysidedocs_qthelp │ │ │ │ ├── domainindex.html │ │ │ │ ├── static │ │ │ │ ├── fakebar.png │ │ │ │ ├── logo_python.jpg │ │ │ │ ├── logo_qt.png │ │ │ │ ├── minus.png │ │ │ │ ├── plus.png │ │ │ │ ├── pyside.css │ │ │ │ ├── pysidelogo.png │ │ │ │ └── relbar_bg.png │ │ │ │ └── theme.conf │ │ ├── additionaldocs.lst │ │ ├── api.rst │ │ ├── codesnippets │ │ │ ├── doc │ │ │ │ └── src │ │ │ │ │ └── snippets │ │ │ │ │ ├── accessibilityslidersnippet.cpp │ │ │ │ │ ├── alphachannel.cpp │ │ │ │ │ ├── audio │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── brushstyles │ │ │ │ │ ├── qt-logo.png │ │ │ │ │ ├── renderarea.h │ │ │ │ │ └── stylewidget.h │ │ │ │ │ ├── clipboard │ │ │ │ │ ├── clipwindow.h │ │ │ │ │ └── clipwindow.py │ │ │ │ │ ├── code │ │ │ │ │ ├── doc_src_qnamespace.qdoc │ │ │ │ │ ├── doc_src_qtcore.py │ │ │ │ │ ├── doc_src_qtnetwork.py │ │ │ │ │ ├── doc_src_qtopengl.py │ │ │ │ │ ├── doc_src_qtprintsupport.py │ │ │ │ │ ├── doc_src_qtqml.py │ │ │ │ │ ├── doc_src_qtquick.py │ │ │ │ │ ├── doc_src_qtsql.py │ │ │ │ │ ├── doc_src_qttest.py │ │ │ │ │ ├── doc_src_qtwidgets.py │ │ │ │ │ ├── doc_src_qtxml.py │ │ │ │ │ ├── src.gui.text.qtextdocumentwriter.cpp │ │ │ │ │ ├── src.qdbus.qdbuspendingcall.cpp │ │ │ │ │ ├── src.qdbus.qdbuspendingreply.cpp │ │ │ │ │ ├── src.scripttools.qscriptenginedebugger.cpp │ │ │ │ │ ├── src_corelib_codecs_qtextcodec.cpp │ │ │ │ │ ├── src_corelib_codecs_qtextcodecplugin.cpp │ │ │ │ │ ├── src_corelib_concurrent_qfuture.cpp │ │ │ │ │ ├── src_corelib_concurrent_qfuturesynchronizer.cpp │ │ │ │ │ ├── src_corelib_concurrent_qfuturewatcher.cpp │ │ │ │ │ ├── src_corelib_concurrent_qtconcurrentexception.cpp │ │ │ │ │ ├── src_corelib_concurrent_qtconcurrentfilter.cpp │ │ │ │ │ ├── src_corelib_concurrent_qtconcurrentmap.cpp │ │ │ │ │ ├── src_corelib_concurrent_qtconcurrentrun.cpp │ │ │ │ │ ├── src_corelib_concurrent_qthreadpool.cpp │ │ │ │ │ ├── src_corelib_io_qabstractfileengine.cpp │ │ │ │ │ ├── src_corelib_io_qdatastream.cpp │ │ │ │ │ ├── src_corelib_io_qdir.cpp │ │ │ │ │ ├── src_corelib_io_qdiriterator.cpp │ │ │ │ │ ├── src_corelib_io_qfile.cpp │ │ │ │ │ ├── src_corelib_io_qfileinfo.cpp │ │ │ │ │ ├── src_corelib_io_qiodevice.cpp │ │ │ │ │ ├── src_corelib_io_qprocess.cpp │ │ │ │ │ ├── src_corelib_io_qsettings.cpp │ │ │ │ │ ├── src_corelib_io_qtemporaryfile.cpp │ │ │ │ │ ├── src_corelib_io_qtextstream.cpp │ │ │ │ │ ├── src_corelib_io_qurl.cpp │ │ │ │ │ ├── src_corelib_kernel_qabstracteventdispatcher.cpp │ │ │ │ │ ├── src_corelib_kernel_qabstractitemmodel.cpp │ │ │ │ │ ├── src_corelib_kernel_qcoreapplication.cpp │ │ │ │ │ ├── src_corelib_kernel_qmetaobject.cpp │ │ │ │ │ ├── src_corelib_kernel_qmetatype.cpp │ │ │ │ │ ├── src_corelib_kernel_qmimedata.cpp │ │ │ │ │ ├── src_corelib_kernel_qobject.py │ │ │ │ │ ├── src_corelib_kernel_qsystemsemaphore.cpp │ │ │ │ │ ├── src_corelib_kernel_qtimer.cpp │ │ │ │ │ ├── src_corelib_plugin_qlibrary.cpp │ │ │ │ │ ├── src_corelib_plugin_quuid.cpp │ │ │ │ │ ├── src_corelib_statemachine_qstatemachine.cpp │ │ │ │ │ ├── src_corelib_thread_qatomic.cpp │ │ │ │ │ ├── src_corelib_thread_qmutex.cpp │ │ │ │ │ ├── src_corelib_thread_qmutexpool.cpp │ │ │ │ │ ├── src_corelib_thread_qreadwritelock.cpp │ │ │ │ │ ├── src_corelib_thread_qsemaphore.cpp │ │ │ │ │ ├── src_corelib_thread_qthread.cpp │ │ │ │ │ ├── src_corelib_thread_qwaitcondition_unix.cpp │ │ │ │ │ ├── src_corelib_tools_qbitarray.cpp │ │ │ │ │ ├── src_corelib_tools_qbytearray.cpp │ │ │ │ │ ├── src_corelib_tools_qdatetime.cpp │ │ │ │ │ ├── src_corelib_tools_qhash.cpp │ │ │ │ │ ├── src_corelib_tools_qlinkedlist.cpp │ │ │ │ │ ├── src_corelib_tools_qlistdata.cpp │ │ │ │ │ ├── src_corelib_tools_qlocale.cpp │ │ │ │ │ ├── src_corelib_tools_qmap.cpp │ │ │ │ │ ├── src_corelib_tools_qpoint.cpp │ │ │ │ │ ├── src_corelib_tools_qqueue.cpp │ │ │ │ │ ├── src_corelib_tools_qrect.cpp │ │ │ │ │ ├── src_corelib_tools_qregexp.cpp │ │ │ │ │ ├── src_corelib_tools_qsize.cpp │ │ │ │ │ ├── src_corelib_tools_qstring.cpp │ │ │ │ │ ├── src_corelib_tools_qtimeline.cpp │ │ │ │ │ ├── src_corelib_tools_qvector.cpp │ │ │ │ │ ├── src_corelib_xml_qxmlstream.cpp │ │ │ │ │ ├── src_gui_accessible_qaccessible.cpp │ │ │ │ │ ├── src_gui_dialogs_qabstractprintdialog.cpp │ │ │ │ │ ├── src_gui_dialogs_qfiledialog.cpp │ │ │ │ │ ├── src_gui_dialogs_qfontdialog.cpp │ │ │ │ │ ├── src_gui_dialogs_qwizard.cpp │ │ │ │ │ ├── src_gui_effects_qgraphicseffect.cpp │ │ │ │ │ ├── src_gui_graphicsview_qgraphicsgridlayout.cpp │ │ │ │ │ ├── src_gui_graphicsview_qgraphicsitem.cpp │ │ │ │ │ ├── src_gui_graphicsview_qgraphicslinearlayout.cpp │ │ │ │ │ ├── src_gui_graphicsview_qgraphicsproxywidget.cpp │ │ │ │ │ ├── src_gui_graphicsview_qgraphicsscene.cpp │ │ │ │ │ ├── src_gui_graphicsview_qgraphicssceneevent.cpp │ │ │ │ │ ├── src_gui_graphicsview_qgraphicsview.cpp │ │ │ │ │ ├── src_gui_graphicsview_qgraphicswidget.cpp │ │ │ │ │ ├── src_gui_image_qbitmap.cpp │ │ │ │ │ ├── src_gui_image_qicon.cpp │ │ │ │ │ ├── src_gui_image_qimage.cpp │ │ │ │ │ ├── src_gui_image_qimagereader.cpp │ │ │ │ │ ├── src_gui_image_qimagewriter.cpp │ │ │ │ │ ├── src_gui_image_qmovie.cpp │ │ │ │ │ ├── src_gui_image_qpixmap.cpp │ │ │ │ │ ├── src_gui_image_qpixmapcache.cpp │ │ │ │ │ ├── src_gui_image_qpixmapfilter.cpp │ │ │ │ │ ├── src_gui_itemviews_qabstractitemview.cpp │ │ │ │ │ ├── src_gui_itemviews_qdatawidgetmapper.cpp │ │ │ │ │ ├── src_gui_itemviews_qitemeditorfactory.cpp │ │ │ │ │ ├── src_gui_itemviews_qitemselectionmodel.cpp │ │ │ │ │ ├── src_gui_itemviews_qstandarditemmodel.cpp │ │ │ │ │ ├── src_gui_itemviews_qtablewidget.cpp │ │ │ │ │ ├── src_gui_itemviews_qtreewidget.cpp │ │ │ │ │ ├── src_gui_kernel_qaction.cpp │ │ │ │ │ ├── src_gui_kernel_qapplication.cpp │ │ │ │ │ ├── src_gui_kernel_qapplication_x11.cpp │ │ │ │ │ ├── src_gui_kernel_qclipboard.cpp │ │ │ │ │ ├── src_gui_kernel_qevent.cpp │ │ │ │ │ ├── src_gui_kernel_qformlayout.cpp │ │ │ │ │ ├── src_gui_kernel_qkeysequence.cpp │ │ │ │ │ ├── src_gui_kernel_qlayout.cpp │ │ │ │ │ ├── src_gui_kernel_qlayoutitem.cpp │ │ │ │ │ ├── src_gui_kernel_qshortcut.cpp │ │ │ │ │ ├── src_gui_kernel_qshortcutmap.cpp │ │ │ │ │ ├── src_gui_kernel_qsound.cpp │ │ │ │ │ ├── src_gui_kernel_qwidget.cpp │ │ │ │ │ ├── src_gui_painting_qbrush.cpp │ │ │ │ │ ├── src_gui_painting_qcolor.cpp │ │ │ │ │ ├── src_gui_painting_qdrawutil.cpp │ │ │ │ │ ├── src_gui_painting_qmatrix.cpp │ │ │ │ │ ├── src_gui_painting_qpainter.cpp │ │ │ │ │ ├── src_gui_painting_qpainterpath.cpp │ │ │ │ │ ├── src_gui_painting_qpen.cpp │ │ │ │ │ ├── src_gui_painting_qregion.cpp │ │ │ │ │ ├── src_gui_painting_qregion_unix.cpp │ │ │ │ │ ├── src_gui_painting_qtransform.cpp │ │ │ │ │ ├── src_gui_styles_qstyle.cpp │ │ │ │ │ ├── src_gui_styles_qstyleoption.cpp │ │ │ │ │ ├── src_gui_text_qfont.cpp │ │ │ │ │ ├── src_gui_text_qfontmetrics.cpp │ │ │ │ │ ├── src_gui_text_qsyntaxhighlighter.cpp │ │ │ │ │ ├── src_gui_text_qtextcursor.cpp │ │ │ │ │ ├── src_gui_text_qtextlayout.cpp │ │ │ │ │ ├── src_gui_util_qcompleter.cpp │ │ │ │ │ ├── src_gui_util_qdesktopservices.cpp │ │ │ │ │ ├── src_gui_util_qundostack.cpp │ │ │ │ │ ├── src_gui_util_qvalidator.cpp │ │ │ │ │ ├── src_gui_widgets_qabstractbutton.cpp │ │ │ │ │ ├── src_gui_widgets_qabstractspinbox.cpp │ │ │ │ │ ├── src_gui_widgets_qcalendarwidget.cpp │ │ │ │ │ ├── src_gui_widgets_qcheckbox.cpp │ │ │ │ │ ├── src_gui_widgets_qdatetimeedit.cpp │ │ │ │ │ ├── src_gui_widgets_qdockwidget.cpp │ │ │ │ │ ├── src_gui_widgets_qframe.cpp │ │ │ │ │ ├── src_gui_widgets_qgroupbox.cpp │ │ │ │ │ ├── src_gui_widgets_qlabel.cpp │ │ │ │ │ ├── src_gui_widgets_qlineedit.cpp │ │ │ │ │ ├── src_gui_widgets_qmainwindow.cpp │ │ │ │ │ ├── src_gui_widgets_qmenu.cpp │ │ │ │ │ ├── src_gui_widgets_qmenubar.cpp │ │ │ │ │ ├── src_gui_widgets_qplaintextedit.cpp │ │ │ │ │ ├── src_gui_widgets_qpushbutton.cpp │ │ │ │ │ ├── src_gui_widgets_qradiobutton.cpp │ │ │ │ │ ├── src_gui_widgets_qrubberband.cpp │ │ │ │ │ ├── src_gui_widgets_qscrollarea.cpp │ │ │ │ │ ├── src_gui_widgets_qspinbox.cpp │ │ │ │ │ ├── src_gui_widgets_qsplashscreen.cpp │ │ │ │ │ ├── src_gui_widgets_qsplitter.cpp │ │ │ │ │ ├── src_gui_widgets_qstatusbar.cpp │ │ │ │ │ ├── src_gui_widgets_qtextbrowser.cpp │ │ │ │ │ ├── src_gui_widgets_qtextedit.cpp │ │ │ │ │ ├── src_gui_widgets_qworkspace.cpp │ │ │ │ │ ├── src_network_access_qftp.cpp │ │ │ │ │ ├── src_network_access_qhttp.cpp │ │ │ │ │ ├── src_network_access_qnetworkaccessmanager.cpp │ │ │ │ │ ├── src_network_access_qnetworkdiskcache.cpp │ │ │ │ │ ├── src_network_access_qnetworkrequest.cpp │ │ │ │ │ ├── src_network_bearer_qnetworkconfigmanager.cpp │ │ │ │ │ ├── src_network_kernel_qhostaddress.cpp │ │ │ │ │ ├── src_network_kernel_qhostinfo.cpp │ │ │ │ │ ├── src_network_kernel_qnetworkproxy.cpp │ │ │ │ │ ├── src_network_socket_qabstractsocket.cpp │ │ │ │ │ ├── src_network_socket_qlocalsocket_unix.cpp │ │ │ │ │ ├── src_network_socket_qnativesocketengine.cpp │ │ │ │ │ ├── src_network_socket_qtcpserver.cpp │ │ │ │ │ ├── src_network_socket_qudpsocket.cpp │ │ │ │ │ ├── src_network_ssl_qsslcertificate.cpp │ │ │ │ │ ├── src_network_ssl_qsslconfiguration.cpp │ │ │ │ │ ├── src_network_ssl_qsslsocket.cpp │ │ │ │ │ ├── src_opengl_qgl.cpp │ │ │ │ │ ├── src_opengl_qglcolormap.cpp │ │ │ │ │ ├── src_opengl_qglpixelbuffer.cpp │ │ │ │ │ ├── src_opengl_qglshaderprogram.cpp │ │ │ │ │ ├── src_qtestlib_qtestcase.cpp │ │ │ │ │ ├── src_script_qscriptable.cpp │ │ │ │ │ ├── src_script_qscriptclass.cpp │ │ │ │ │ ├── src_script_qscriptcontext.cpp │ │ │ │ │ ├── src_script_qscriptengine.cpp │ │ │ │ │ ├── src_script_qscriptengineagent.cpp │ │ │ │ │ ├── src_script_qscriptvalue.cpp │ │ │ │ │ ├── src_script_qscriptvalueiterator.cpp │ │ │ │ │ ├── src_sql_kernel_qsqldriver.cpp │ │ │ │ │ ├── src_sql_kernel_qsqlerror.cpp │ │ │ │ │ ├── src_sql_kernel_qsqlindex.cpp │ │ │ │ │ ├── src_sql_kernel_qsqlquery.cpp │ │ │ │ │ ├── src_sql_kernel_qsqlresult.cpp │ │ │ │ │ ├── src_sql_models_qsqlquerymodel.cpp │ │ │ │ │ ├── src_xml_dom_qdom.cpp │ │ │ │ │ ├── src_xml_sax_qxml.cpp │ │ │ │ │ ├── src_xmlpatterns_api_qabstracturiresolver.cpp │ │ │ │ │ ├── src_xmlpatterns_api_qabstractxmlforwarditerator.cpp │ │ │ │ │ ├── src_xmlpatterns_api_qabstractxmlnodemodel.cpp │ │ │ │ │ ├── src_xmlpatterns_api_qabstractxmlreceiver.cpp │ │ │ │ │ ├── src_xmlpatterns_api_qsimplexmlnodemodel.cpp │ │ │ │ │ ├── src_xmlpatterns_api_qxmlformatter.cpp │ │ │ │ │ ├── src_xmlpatterns_api_qxmlname.cpp │ │ │ │ │ ├── src_xmlpatterns_api_qxmlquery.cpp │ │ │ │ │ ├── src_xmlpatterns_api_qxmlresultitems.cpp │ │ │ │ │ ├── src_xmlpatterns_api_qxmlserializer.cpp │ │ │ │ │ ├── tools_assistant_compat_lib_qassistantclient.cpp │ │ │ │ │ ├── tools_designer_src_lib_extension_default_extensionfactory.cpp │ │ │ │ │ ├── tools_designer_src_lib_extension_extension.cpp │ │ │ │ │ ├── tools_designer_src_lib_extension_qextensionmanager.cpp │ │ │ │ │ ├── tools_designer_src_lib_sdk_abstractformeditor.cpp │ │ │ │ │ ├── tools_designer_src_lib_sdk_abstractformwindow.py │ │ │ │ │ ├── tools_designer_src_lib_sdk_abstractformwindowcursor.cpp │ │ │ │ │ ├── tools_designer_src_lib_sdk_abstractformwindowmanager.cpp │ │ │ │ │ ├── tools_designer_src_lib_sdk_abstractobjectinspector.cpp │ │ │ │ │ ├── tools_designer_src_lib_sdk_abstractpropertyeditor.py │ │ │ │ │ ├── tools_designer_src_lib_sdk_abstractwidgetbox.cpp │ │ │ │ │ ├── tools_designer_src_lib_uilib_abstractformbuilder.cpp │ │ │ │ │ ├── tools_designer_src_lib_uilib_formbuilder.cpp │ │ │ │ │ ├── tools_patternist_qapplicationargumentparser.cpp │ │ │ │ │ ├── tools_shared_qtgradienteditor_qtgradientdialog.cpp │ │ │ │ │ ├── tools_shared_qtpropertybrowser_qtpropertybrowser.cpp │ │ │ │ │ ├── tools_shared_qtpropertybrowser_qtvariantproperty.cpp │ │ │ │ │ └── tools_shared_qttoolbardialog_qttoolbardialog.cpp │ │ │ │ │ ├── console │ │ │ │ │ └── dbus_pingpong.txt │ │ │ │ │ ├── customstyle │ │ │ │ │ └── customstyle.h │ │ │ │ │ ├── designer │ │ │ │ │ ├── autoconnection │ │ │ │ │ │ ├── imagedialog.h │ │ │ │ │ │ └── imagedialog.ui │ │ │ │ │ ├── imagedialog │ │ │ │ │ │ └── imagedialog.ui │ │ │ │ │ ├── multipleinheritance │ │ │ │ │ │ ├── imagedialog.h │ │ │ │ │ │ └── imagedialog.ui │ │ │ │ │ ├── noautoconnection │ │ │ │ │ │ ├── imagedialog.h │ │ │ │ │ │ └── imagedialog.ui │ │ │ │ │ └── singleinheritance │ │ │ │ │ │ ├── imagedialog.h │ │ │ │ │ │ └── imagedialog.ui │ │ │ │ │ ├── dialogs │ │ │ │ │ └── dialogs.py │ │ │ │ │ ├── doc_src_qtcharts.py │ │ │ │ │ ├── doc_src_qtgui.py │ │ │ │ │ ├── doc_src_qtmultimedia.py │ │ │ │ │ ├── doc_src_qtxmlpatterns.py │ │ │ │ │ ├── dockwidgets │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── modules.html │ │ │ │ │ │ ├── qtcore.html │ │ │ │ │ │ ├── qtgui.html │ │ │ │ │ │ ├── qtnetwork.html │ │ │ │ │ │ ├── qtopengl.html │ │ │ │ │ │ ├── qtsql.html │ │ │ │ │ │ ├── qtxml.html │ │ │ │ │ │ └── titles.txt │ │ │ │ │ ├── dockwidgets.qrc │ │ │ │ │ └── mainwindow.h │ │ │ │ │ ├── draganddrop │ │ │ │ │ ├── dragwidget.h │ │ │ │ │ └── mainwindow.h │ │ │ │ │ ├── dragging │ │ │ │ │ ├── images.qrc │ │ │ │ │ ├── images │ │ │ │ │ │ └── file.png │ │ │ │ │ ├── mainwindow.cpp │ │ │ │ │ └── mainwindow.h │ │ │ │ │ ├── dropactions │ │ │ │ │ └── window.h │ │ │ │ │ ├── droparea.cpp │ │ │ │ │ ├── dropevents │ │ │ │ │ └── window.py │ │ │ │ │ ├── droprectangle │ │ │ │ │ └── window.h │ │ │ │ │ ├── eventfilters │ │ │ │ │ └── filterobject.h │ │ │ │ │ ├── explicitlysharedemployee │ │ │ │ │ └── employee.h │ │ │ │ │ ├── i18n-non-qt-class │ │ │ │ │ ├── myclass.h │ │ │ │ │ ├── myclass.ts │ │ │ │ │ ├── resources.qrc │ │ │ │ │ └── translations │ │ │ │ │ │ ├── i18n-non-qt-class_en.ts │ │ │ │ │ │ └── i18n-non-qt-class_fr.ts │ │ │ │ │ ├── image │ │ │ │ │ ├── image.cpp │ │ │ │ │ └── supportedformat.cpp │ │ │ │ │ ├── inherited-slot │ │ │ │ │ └── button.h │ │ │ │ │ ├── itemselection │ │ │ │ │ └── model.h │ │ │ │ │ ├── layouts │ │ │ │ │ └── layouts.cpp │ │ │ │ │ ├── mainwindowsnippet.cpp │ │ │ │ │ ├── matrix │ │ │ │ │ └── matrix.cpp │ │ │ │ │ ├── mdiareasnippets.cpp │ │ │ │ │ ├── moc │ │ │ │ │ ├── myclass1.h │ │ │ │ │ ├── myclass2.h │ │ │ │ │ └── myclass3.h │ │ │ │ │ ├── modelview-subclasses │ │ │ │ │ ├── model.h │ │ │ │ │ ├── view.h │ │ │ │ │ └── window.h │ │ │ │ │ ├── myscrollarea.cpp │ │ │ │ │ ├── network │ │ │ │ │ └── tcpwait.cpp │ │ │ │ │ ├── ntfsp.cpp │ │ │ │ │ ├── patternist │ │ │ │ │ ├── anyHTMLElement.xq │ │ │ │ │ ├── anyXLinkAttribute.xq │ │ │ │ │ ├── bracesIncluded.xq │ │ │ │ │ ├── bracesIncludedResult.xml │ │ │ │ │ ├── bracesOmitted.xq │ │ │ │ │ ├── bracesOmittedResult.xml │ │ │ │ │ ├── computedTreeFragment.xq │ │ │ │ │ ├── copyAttribute.xq │ │ │ │ │ ├── copyID.xq │ │ │ │ │ ├── directTreeFragment.xq │ │ │ │ │ ├── doc.txt │ │ │ │ │ ├── docPlainHTML.xq │ │ │ │ │ ├── docPlainHTML2.xq │ │ │ │ │ ├── embedDataInXHTML.xq │ │ │ │ │ ├── embedDataInXHTML2.xq │ │ │ │ │ ├── emptyParagraphs.xq │ │ │ │ │ ├── escapeCurlyBraces.xq │ │ │ │ │ ├── escapeStringLiterals.xml │ │ │ │ │ ├── escapeStringLiterals.xq │ │ │ │ │ ├── expressionInsideAttribute.xq │ │ │ │ │ ├── filterOnPath.xq │ │ │ │ │ ├── filterOnStep.xq │ │ │ │ │ ├── firstParagraph.xq │ │ │ │ │ ├── fnStringOnAttribute.xq │ │ │ │ │ ├── forClause.xq │ │ │ │ │ ├── forClause2.xq │ │ │ │ │ ├── forClauseOnFeed.xq │ │ │ │ │ ├── indented.xml │ │ │ │ │ ├── introAcneRemover.xq │ │ │ │ │ ├── introExample2.xq │ │ │ │ │ ├── introFileHierarchy.xml │ │ │ │ │ ├── introNavigateFS.xq │ │ │ │ │ ├── introductionExample.xq │ │ │ │ │ ├── invalidLetOrderBy.xq │ │ │ │ │ ├── items.xq │ │ │ │ │ ├── letOrderBy.xq │ │ │ │ │ ├── literalsAndOperators.xq │ │ │ │ │ ├── mobeyDick.xml │ │ │ │ │ ├── nextLastParagraph.xq │ │ │ │ │ ├── nodeConstructorsAreExpressions.xq │ │ │ │ │ ├── nodeConstructorsInPaths.xq │ │ │ │ │ ├── nodeTestChildElement.xq │ │ │ │ │ ├── notIndented.xml │ │ │ │ │ ├── oneElementConstructor.xq │ │ │ │ │ ├── paragraphsExceptTheFiveFirst.xq │ │ │ │ │ ├── paragraphsWithTables.xq │ │ │ │ │ ├── pathAB.xq │ │ │ │ │ ├── pathsAllParagraphs.xq │ │ │ │ │ ├── simpleHTML.xq │ │ │ │ │ ├── simpleXHTML.xq │ │ │ │ │ ├── svgDocumentElement.xml │ │ │ │ │ ├── tablesInParagraphs.xq │ │ │ │ │ ├── twoSVGElements.xq │ │ │ │ │ ├── xmlStylesheet.xq │ │ │ │ │ ├── xsBooleanTrue.xq │ │ │ │ │ └── xsvgDocumentElement.xml │ │ │ │ │ ├── persistentindexes │ │ │ │ │ ├── mainwindow.h │ │ │ │ │ └── model.h │ │ │ │ │ ├── picture │ │ │ │ │ └── picture.cpp │ │ │ │ │ ├── plaintextlayout │ │ │ │ │ └── window.h │ │ │ │ │ ├── polygon │ │ │ │ │ └── polygon.cpp │ │ │ │ │ ├── porting4-dropevents │ │ │ │ │ └── window.h │ │ │ │ │ ├── printing-qprinter │ │ │ │ │ ├── errors.cpp │ │ │ │ │ └── object.h │ │ │ │ │ ├── qabstractsliderisnippet.cpp │ │ │ │ │ ├── qdir-listfiles │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── qdir-namefilters │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── qfontdatabase │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── qlineargradient │ │ │ │ │ └── paintwidget.h │ │ │ │ │ ├── qlistview-dnd │ │ │ │ │ ├── mainwindow.h │ │ │ │ │ └── model.h │ │ │ │ │ ├── qlistview-using │ │ │ │ │ ├── mainwindow.h │ │ │ │ │ └── model.h │ │ │ │ │ ├── qlistwidget-dnd │ │ │ │ │ └── mainwindow.h │ │ │ │ │ ├── qlistwidget-using │ │ │ │ │ └── mainwindow.h │ │ │ │ │ ├── qmacnativewidget │ │ │ │ │ └── main.mm │ │ │ │ │ ├── qmake │ │ │ │ │ ├── delegate.h │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── model.cpp │ │ │ │ │ ├── model.h │ │ │ │ │ ├── paintwidget_unix.cpp │ │ │ │ │ └── view.h │ │ │ │ │ ├── qmetaobject-invokable │ │ │ │ │ └── window.h │ │ │ │ │ ├── qquickview-ex.cpp │ │ │ │ │ ├── qsignalmapper │ │ │ │ │ ├── buttonwidget.h │ │ │ │ │ └── mainwindow.h │ │ │ │ │ ├── qsortfilterproxymodel-details │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── qsplashscreen │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── mainwindow.h │ │ │ │ │ ├── qsplashscreen.qrc │ │ │ │ │ └── splash.png │ │ │ │ │ ├── qstackedlayout │ │ │ │ │ └── main.py │ │ │ │ │ ├── qstackedwidget │ │ │ │ │ └── main.py │ │ │ │ │ ├── qstatustipevent │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── qstyleoption │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── qsvgwidget │ │ │ │ │ ├── qsvgwidget.qrc │ │ │ │ │ ├── spheres.svg │ │ │ │ │ └── sunflower.svg │ │ │ │ │ ├── qtablewidget-dnd │ │ │ │ │ ├── Images │ │ │ │ │ │ ├── cubed.png │ │ │ │ │ │ └── squared.png │ │ │ │ │ ├── images.qrc │ │ │ │ │ └── mainwindow.h │ │ │ │ │ ├── qtablewidget-resizing │ │ │ │ │ └── mainwindow.h │ │ │ │ │ ├── qtablewidget-using │ │ │ │ │ ├── Images │ │ │ │ │ │ ├── cubed.png │ │ │ │ │ │ └── squared.png │ │ │ │ │ ├── images.qrc │ │ │ │ │ └── mainwindow.h │ │ │ │ │ ├── qtcast │ │ │ │ │ └── qtcast.h │ │ │ │ │ ├── qtreeview-dnd │ │ │ │ │ ├── dragdropmodel.h │ │ │ │ │ ├── mainwindow.h │ │ │ │ │ ├── treeitem.h │ │ │ │ │ └── treemodel.h │ │ │ │ │ ├── qtreewidget-using │ │ │ │ │ ├── mainwindow.cpp │ │ │ │ │ └── mainwindow.h │ │ │ │ │ ├── qtreewidgetitemiterator-using │ │ │ │ │ ├── mainwindow.cpp │ │ │ │ │ └── mainwindow.h │ │ │ │ │ ├── qtscript │ │ │ │ │ ├── registeringobjects │ │ │ │ │ │ └── myobject.h │ │ │ │ │ └── scriptedslot │ │ │ │ │ │ ├── object.js │ │ │ │ │ │ └── scriptedslot.qrc │ │ │ │ │ ├── quiloader │ │ │ │ │ ├── doc_src_qtuiloader.py │ │ │ │ │ ├── myform.ui │ │ │ │ │ ├── mywidget.h │ │ │ │ │ └── mywidget.qrc │ │ │ │ │ ├── qx11embedwidget │ │ │ │ │ └── embedwidget.h │ │ │ │ │ ├── qxmlquery │ │ │ │ │ └── bindingExample.py │ │ │ │ │ ├── qxmlschemavalidator │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── reading-selections │ │ │ │ │ ├── model.h │ │ │ │ │ └── window.h │ │ │ │ │ ├── separations │ │ │ │ │ ├── finalwidget.h │ │ │ │ │ ├── screenwidget.h │ │ │ │ │ └── viewer.h │ │ │ │ │ ├── shareddirmodel │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── sharedemployee │ │ │ │ │ └── employee.h │ │ │ │ │ ├── sharedtablemodel │ │ │ │ │ └── model.h │ │ │ │ │ ├── signalmapper │ │ │ │ │ ├── accountsfile.txt │ │ │ │ │ ├── filereader.h │ │ │ │ │ ├── reportfile.txt │ │ │ │ │ └── taxfile.txt │ │ │ │ │ ├── signalsandslots │ │ │ │ │ ├── lcdnumber.h │ │ │ │ │ └── signalsandslots.h │ │ │ │ │ ├── simpleparse │ │ │ │ │ └── handler.h │ │ │ │ │ ├── splitter │ │ │ │ │ └── splitter.cpp │ │ │ │ │ ├── splitterhandle │ │ │ │ │ └── splitter.h │ │ │ │ │ ├── sqldatabase │ │ │ │ │ └── sqldatabase.py │ │ │ │ │ ├── stringlistmodel │ │ │ │ │ ├── model.cpp │ │ │ │ │ └── model.h │ │ │ │ │ ├── styles │ │ │ │ │ └── styles.cpp │ │ │ │ │ ├── stylesheet │ │ │ │ │ └── common-mistakes.cpp │ │ │ │ │ ├── textblock-fragments │ │ │ │ │ ├── mainwindow.h │ │ │ │ │ └── xmlwriter.h │ │ │ │ │ ├── textdocument-blocks │ │ │ │ │ ├── mainwindow.h │ │ │ │ │ └── xmlwriter.h │ │ │ │ │ ├── textdocument-css │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── textdocument-frames │ │ │ │ │ ├── mainwindow.h │ │ │ │ │ └── xmlwriter.h │ │ │ │ │ ├── textdocument-imagedrop │ │ │ │ │ └── textedit.h │ │ │ │ │ ├── textdocument-imageformat │ │ │ │ │ ├── images.qrc │ │ │ │ │ └── images │ │ │ │ │ │ ├── advert.png │ │ │ │ │ │ └── newimage.png │ │ │ │ │ ├── textdocument-images │ │ │ │ │ ├── images.qrc │ │ │ │ │ └── images │ │ │ │ │ │ └── advert.png │ │ │ │ │ ├── textdocument-listitems │ │ │ │ │ └── mainwindow.h │ │ │ │ │ ├── textdocument-lists │ │ │ │ │ └── mainwindow.h │ │ │ │ │ ├── textdocument-printing │ │ │ │ │ └── mainwindow.h │ │ │ │ │ ├── textdocument-selections │ │ │ │ │ └── mainwindow.h │ │ │ │ │ ├── textdocument-tables │ │ │ │ │ ├── mainwindow.cpp │ │ │ │ │ ├── mainwindow.h │ │ │ │ │ └── xmlwriter.h │ │ │ │ │ ├── textdocument-texttable │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── threads │ │ │ │ │ └── threads.h │ │ │ │ │ ├── timers │ │ │ │ │ └── timers.cpp │ │ │ │ │ ├── transform │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── uitools │ │ │ │ │ └── calculatorform │ │ │ │ │ │ └── calculatorform.ui │ │ │ │ │ ├── updating-selections │ │ │ │ │ ├── model.h │ │ │ │ │ └── window.h │ │ │ │ │ ├── whatsthis │ │ │ │ │ └── whatsthis.cpp │ │ │ │ │ ├── widget-mask │ │ │ │ │ ├── mask.qrc │ │ │ │ │ └── tux.png │ │ │ │ │ ├── widgetdelegate.cpp │ │ │ │ │ ├── widgets-tutorial │ │ │ │ │ └── template.py │ │ │ │ │ └── xml │ │ │ │ │ └── rsslisting │ │ │ │ │ ├── handler.h │ │ │ │ │ └── rsslisting.h │ │ │ ├── examples │ │ │ │ ├── dbus │ │ │ │ │ ├── example-client.py │ │ │ │ │ └── example-server.py │ │ │ │ ├── declarative │ │ │ │ │ └── cppextensions │ │ │ │ │ │ └── plugins │ │ │ │ │ │ ├── plugin.cpp │ │ │ │ │ │ └── plugins.qml │ │ │ │ ├── dialogs │ │ │ │ │ ├── classwizard │ │ │ │ │ │ ├── classwizard.py │ │ │ │ │ │ ├── classwizard.qrc │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ │ ├── banner.png │ │ │ │ │ │ │ ├── logo1.png │ │ │ │ │ │ │ ├── logo2.png │ │ │ │ │ │ │ ├── logo3.png │ │ │ │ │ │ │ ├── watermark1.png │ │ │ │ │ │ │ └── watermark2.png │ │ │ │ │ ├── extension │ │ │ │ │ │ └── finddialog.py │ │ │ │ │ ├── licensewizard │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── logo.png │ │ │ │ │ │ │ └── watermark.png │ │ │ │ │ │ ├── licensewizard.h │ │ │ │ │ │ └── licensewizard.qrc │ │ │ │ │ ├── standarddialogs │ │ │ │ │ │ └── dialog.cpp │ │ │ │ │ └── tabdialog │ │ │ │ │ │ └── tabdialog.cpp │ │ │ │ ├── graphicsview │ │ │ │ │ └── simpleanchorlayout │ │ │ │ │ │ └── main.cpp │ │ │ │ ├── imageprovider │ │ │ │ │ ├── imageprovider-example.qml │ │ │ │ │ └── imageprovider.cpp │ │ │ │ ├── itemviews │ │ │ │ │ ├── customsortfiltermodel │ │ │ │ │ │ └── mysortfilterproxymodel.cpp │ │ │ │ │ └── pixelator │ │ │ │ │ │ └── pixeldelegate.cpp │ │ │ │ ├── mainwindows │ │ │ │ │ ├── application │ │ │ │ │ │ ├── mainwindow.h │ │ │ │ │ │ └── mainwindow.py │ │ │ │ │ ├── dockwidgets │ │ │ │ │ │ └── mainwindow.py │ │ │ │ │ ├── mainwindow.py │ │ │ │ │ ├── mdi │ │ │ │ │ │ └── mainwindow.py │ │ │ │ │ ├── menus │ │ │ │ │ │ └── mainwindow.py │ │ │ │ │ └── sdi │ │ │ │ │ │ └── mainwindow.cpp │ │ │ │ ├── quick │ │ │ │ │ └── plugins │ │ │ │ │ │ └── plugins.qml │ │ │ │ ├── relationaltablemodel │ │ │ │ │ └── relationaltablemodel.cpp │ │ │ │ ├── richtext │ │ │ │ │ └── textobject │ │ │ │ │ │ └── svgtextobject.h │ │ │ │ ├── widgets │ │ │ │ │ ├── groupbox │ │ │ │ │ │ └── window.cpp │ │ │ │ │ ├── icons │ │ │ │ │ │ └── iconsizespinbox.cpp │ │ │ │ │ └── spinboxes │ │ │ │ │ │ └── window.py │ │ │ │ └── xml │ │ │ │ │ └── streambookmarks │ │ │ │ │ └── xbelreader.h │ │ │ ├── snippets │ │ │ │ └── customstyle │ │ │ │ │ └── main.cpp │ │ │ └── webkitsnippets │ │ │ │ ├── qtwebkit_qwebinspector_snippet.cpp │ │ │ │ ├── qtwebkit_qwebview_snippet.cpp │ │ │ │ ├── simple │ │ │ │ └── main.cpp │ │ │ │ ├── webelement │ │ │ │ └── main.cpp │ │ │ │ └── webpage │ │ │ │ └── main.cpp │ │ ├── conf.py.in │ │ ├── considerations.rst │ │ ├── contents.rst │ │ ├── deployment-briefcase.rst │ │ ├── deployment-cxfreeze.rst │ │ ├── deployment-fbs.rst │ │ ├── deployment-pyinstaller.rst │ │ ├── deployment.rst │ │ ├── examples │ │ │ ├── images │ │ │ │ └── tabbedbrowser.png │ │ │ ├── index.rst │ │ │ └── tabbedbrowser.rst │ │ ├── extras │ │ │ ├── QtCore.ClassInfo.rst │ │ │ ├── QtCore.Property.rst │ │ │ ├── QtCore.QEnum.rst │ │ │ ├── QtCore.Signal.rst │ │ │ ├── QtCore.Slot.rst │ │ │ ├── QtCore.rst │ │ │ ├── QtGui.rst │ │ │ ├── QtHelp.rst │ │ │ ├── QtMultimedia.rst │ │ │ ├── QtNetwork.rst │ │ │ ├── QtOpenGL.rst │ │ │ ├── QtScript.rst │ │ │ ├── QtScriptTools.rst │ │ │ ├── QtSql.rst │ │ │ ├── QtSvg.rst │ │ │ ├── QtTest.rst │ │ │ ├── QtUiTools.loadUiType.rst │ │ │ ├── QtUiTools.rst │ │ │ ├── QtWebKit.rst │ │ │ ├── QtXml.rst │ │ │ └── QtXmlPatterns.rst │ │ ├── faq.rst │ │ ├── gettingstarted-linux.rst │ │ ├── gettingstarted-macOS.rst │ │ ├── gettingstarted-windows.rst │ │ ├── gettingstarted.rst │ │ ├── index.rst │ │ ├── inheritance_diagram.py │ │ ├── modules.rst │ │ ├── pyside-config.qdocconf.in │ │ ├── pyside-examples │ │ │ ├── examples.qdoc │ │ │ ├── images │ │ │ │ ├── pyside2example-classwizard.png │ │ │ │ ├── pyside2example-stardelegate.png │ │ │ │ └── screenshot_hello.png │ │ │ ├── pyside2-classwizard.qdoc │ │ │ └── pyside2-stardelegate.qdoc │ │ ├── pysideinclude.py │ │ ├── qtattributionsscannertorst.py │ │ ├── qtmodules │ │ │ ├── pyside-examples.qdocconf.in │ │ │ ├── pyside-qt3dextras.qdocconf.in │ │ │ ├── pyside-qtcharts.qdocconf.in │ │ │ ├── pyside-qtconcurrent.qdocconf.in │ │ │ ├── pyside-qtcore.qdocconf.in │ │ │ ├── pyside-qtdatavisualization.qdocconf.in │ │ │ ├── pyside-qtgui.qdocconf.in │ │ │ ├── pyside-qthelp.qdocconf.in │ │ │ ├── pyside-qtlocation.qdocconf.in │ │ │ ├── pyside-qtmacextras.qdocconf.in │ │ │ ├── pyside-qtmultimediawidgets.qdocconf.in │ │ │ ├── pyside-qtnetwork.qdocconf.in │ │ │ ├── pyside-qtopengl.qdocconf.in │ │ │ ├── pyside-qtpositioning.qdocconf.in │ │ │ ├── pyside-qtprintsupport.qdocconf.in │ │ │ ├── pyside-qtqml.qdocconf.in │ │ │ ├── pyside-qtquickwidgets.qdocconf.in │ │ │ ├── pyside-qtscxml.qdocconf.in │ │ │ ├── pyside-qtsensors.qdocconf.in │ │ │ ├── pyside-qtsql.qdocconf.in │ │ │ ├── pyside-qtsvg.qdocconf.in │ │ │ ├── pyside-qttest.qdocconf.in │ │ │ ├── pyside-qttexttospeech.qdocconf.in │ │ │ ├── pyside-qtuitools.qdocconf.in │ │ │ ├── pyside-qtwebchannel.qdocconf.in │ │ │ ├── pyside-qtwebenginewidgets.qdocconf.in │ │ │ ├── pyside-qtwebsockets.qdocconf.in │ │ │ ├── pyside-qtwidgets.qdocconf.in │ │ │ ├── pyside-qtwinextras.qdocconf.in │ │ │ ├── pyside-qtx11extras.qdocconf.in │ │ │ ├── pyside-qtxml.qdocconf.in │ │ │ └── pyside-qtxmlpatterns.qdocconf.in │ │ ├── quickstart.rst │ │ ├── src │ │ │ └── README.md │ │ ├── tutorials │ │ │ ├── basictutorial │ │ │ │ ├── clickablebutton.rst │ │ │ │ ├── dialog.rst │ │ │ │ ├── icons.png │ │ │ │ ├── icons │ │ │ │ │ ├── forward.png │ │ │ │ │ ├── pause.png │ │ │ │ │ ├── play.png │ │ │ │ │ ├── previous.png │ │ │ │ │ └── stop.png │ │ │ │ ├── player-new.png │ │ │ │ ├── player.png │ │ │ │ ├── qml.rst │ │ │ │ ├── qrcfiles.rst │ │ │ │ ├── style.qss │ │ │ │ ├── uifiles.rst │ │ │ │ ├── widgets.rst │ │ │ │ ├── widgetstyling-no.png │ │ │ │ ├── widgetstyling-simple-no.png │ │ │ │ ├── widgetstyling-simple-yes.png │ │ │ │ ├── widgetstyling-yes.png │ │ │ │ ├── widgetstyling.py │ │ │ │ └── widgetstyling.rst │ │ │ ├── datavisualize │ │ │ │ ├── add_chart.rst │ │ │ │ ├── add_mainwindow.rst │ │ │ │ ├── add_tableview.rst │ │ │ │ ├── all_hour.csv │ │ │ │ ├── datavisualize.tar.bz2 │ │ │ │ ├── datavisualize1 │ │ │ │ │ └── main.py │ │ │ │ ├── datavisualize2 │ │ │ │ │ └── main.py │ │ │ │ ├── datavisualize3 │ │ │ │ │ ├── main.py │ │ │ │ │ └── main_window.py │ │ │ │ ├── datavisualize4 │ │ │ │ │ ├── main.py │ │ │ │ │ ├── main_widget.py │ │ │ │ │ ├── main_window.py │ │ │ │ │ └── table_model.py │ │ │ │ ├── datavisualize5 │ │ │ │ │ ├── main.py │ │ │ │ │ ├── main_widget.py │ │ │ │ │ ├── main_window.py │ │ │ │ │ └── table_model.py │ │ │ │ ├── datavisualize6 │ │ │ │ │ ├── main.py │ │ │ │ │ ├── main_widget.py │ │ │ │ │ ├── main_window.py │ │ │ │ │ └── table_model.py │ │ │ │ ├── filter_data.rst │ │ │ │ ├── images │ │ │ │ │ ├── QMainWindow-layout.png │ │ │ │ │ └── datavisualization_app.png │ │ │ │ ├── index.rst │ │ │ │ ├── plot_datapoints.rst │ │ │ │ └── read_data.rst │ │ │ ├── expenses │ │ │ │ ├── expenses.rst │ │ │ │ ├── expenses_tool.png │ │ │ │ ├── main.py │ │ │ │ ├── main_snake_prop.py │ │ │ │ └── steps │ │ │ │ │ ├── 01-expenses.py │ │ │ │ │ ├── 02-expenses.py │ │ │ │ │ ├── 03-expenses.py │ │ │ │ │ ├── 04-expenses.py │ │ │ │ │ ├── 05-expenses.py │ │ │ │ │ ├── 06-expenses.py │ │ │ │ │ ├── 07-expenses.py │ │ │ │ │ ├── 08-expenses.py │ │ │ │ │ ├── 09-expenses.py │ │ │ │ │ └── 10-expenses.py │ │ │ ├── index.rst │ │ │ ├── portingguide │ │ │ │ ├── chapter1 │ │ │ │ │ ├── chapter1.rst │ │ │ │ │ ├── createdb.py │ │ │ │ │ ├── images │ │ │ │ │ │ └── chapter1_books.png │ │ │ │ │ ├── initdb.h │ │ │ │ │ └── main.py │ │ │ │ ├── chapter2 │ │ │ │ │ ├── bookdelegate.cpp │ │ │ │ │ ├── bookdelegate.h │ │ │ │ │ ├── bookdelegate.py │ │ │ │ │ ├── chapter2.rst │ │ │ │ │ ├── createdb.py │ │ │ │ │ ├── images │ │ │ │ │ │ ├── chapter2_books.png │ │ │ │ │ │ ├── chapter2_books_with_relation.png │ │ │ │ │ │ └── star.png │ │ │ │ │ └── main.py │ │ │ │ ├── chapter3 │ │ │ │ │ ├── bookdelegate-old.py │ │ │ │ │ ├── bookdelegate.py │ │ │ │ │ ├── books.qrc │ │ │ │ │ ├── bookwindow.cpp │ │ │ │ │ ├── bookwindow.py │ │ │ │ │ ├── bookwindow.ui │ │ │ │ │ ├── chapter3.rst │ │ │ │ │ ├── createdb.py │ │ │ │ │ ├── images │ │ │ │ │ │ ├── chapter3-books.png │ │ │ │ │ │ └── star.png │ │ │ │ │ ├── main-old.py │ │ │ │ │ └── main.py │ │ │ │ ├── hello_world_ex.py │ │ │ │ └── index.rst │ │ │ ├── qmlapp │ │ │ │ ├── logo.png │ │ │ │ ├── main.py │ │ │ │ ├── newpyproject.png │ │ │ │ ├── projectsmode.png │ │ │ │ ├── pyprojname.png │ │ │ │ ├── pyprojxplor.png │ │ │ │ ├── qmlapplication.png │ │ │ │ ├── qmlapplication.rst │ │ │ │ └── view.qml │ │ │ ├── qmlintegration │ │ │ │ ├── main.py │ │ │ │ ├── qmlintegration.rst │ │ │ │ ├── qtquickcontrols2.conf │ │ │ │ ├── style.qrc │ │ │ │ ├── textproperties_default.png │ │ │ │ ├── textproperties_material.png │ │ │ │ └── view.qml │ │ │ └── qmlsqlintegration │ │ │ │ ├── chat.qml │ │ │ │ ├── example_list_view.png │ │ │ │ ├── main.py │ │ │ │ ├── qmlsqlintegration.rst │ │ │ │ └── sqlDialog.py │ │ ├── typesystem_doc.xml.in │ │ └── videos.rst │ ├── libpyside │ │ ├── CMakeLists.txt │ │ ├── PySide2Config-spec.cmake.in │ │ ├── PySide2Config.cmake.in │ │ ├── PySide2ConfigVersion.cmake.in │ │ ├── dynamicqmetaobject.cpp │ │ ├── dynamicqmetaobject.h │ │ ├── dynamicqmetaobject_p.h │ │ ├── feature_select.cpp │ │ ├── feature_select.h │ │ ├── globalreceiverv2.cpp │ │ ├── globalreceiverv2.h │ │ ├── pyside.cpp │ │ ├── pyside.h │ │ ├── pyside2.pc.in │ │ ├── pyside_p.h │ │ ├── pysideclassinfo.cpp │ │ ├── pysideclassinfo.h │ │ ├── pysideclassinfo_p.h │ │ ├── pysidemacros.h │ │ ├── pysidemetafunction.cpp │ │ ├── pysidemetafunction.h │ │ ├── pysidemetafunction_p.h │ │ ├── pysideproperty.cpp │ │ ├── pysideproperty.h │ │ ├── pysideproperty_p.h │ │ ├── pysideqenum.cpp │ │ ├── pysideqenum.h │ │ ├── pysideqflags.cpp │ │ ├── pysideqflags.h │ │ ├── pysidesignal.cpp │ │ ├── pysidesignal.h │ │ ├── pysidesignal_p.h │ │ ├── pysideslot.cpp │ │ ├── pysideslot_p.h │ │ ├── pysidestaticstrings.cpp │ │ ├── pysidestaticstrings.h │ │ ├── pysideweakref.cpp │ │ ├── pysideweakref.h │ │ ├── signalmanager.cpp │ │ └── signalmanager.h │ ├── plugins │ │ ├── CMakeLists.txt │ │ ├── customwidget.cpp │ │ ├── customwidget.h │ │ ├── customwidgets.cpp │ │ └── customwidgets.h │ ├── pyside_version.py │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Qt3DAnimation │ │ └── CMakeLists.txt │ │ ├── Qt3DCore │ │ └── CMakeLists.txt │ │ ├── Qt3DExtras │ │ ├── CMakeLists.txt │ │ └── qt3dextras_test.py │ │ ├── Qt3DInput │ │ └── CMakeLists.txt │ │ ├── Qt3DLogic │ │ └── CMakeLists.txt │ │ ├── Qt3DQuick │ │ └── CMakeLists.txt │ │ ├── Qt3DRender │ │ └── CMakeLists.txt │ │ ├── QtAxContainer │ │ └── CMakeLists.txt │ │ ├── QtCharts │ │ ├── CMakeLists.txt │ │ └── qcharts_test.py │ │ ├── QtConcurrent │ │ └── CMakeLists.txt │ │ ├── QtCore │ │ ├── CMakeLists.txt │ │ ├── attr_cache_py3k.py │ │ ├── blocking_signals_test.py │ │ ├── bug_1019.py │ │ ├── bug_1031.py │ │ ├── bug_1063.py │ │ ├── bug_1069.py │ │ ├── bug_1313.py │ │ ├── bug_278_test.py │ │ ├── bug_332.py │ │ ├── bug_408.py │ │ ├── bug_428.py │ │ ├── bug_462.py │ │ ├── bug_505.py │ │ ├── bug_515.py │ │ ├── bug_606.py │ │ ├── bug_656.py │ │ ├── bug_686.py │ │ ├── bug_699.py │ │ ├── bug_706.py │ │ ├── bug_820.py │ │ ├── bug_826.py │ │ ├── bug_829.py │ │ ├── bug_835.py │ │ ├── bug_920.py │ │ ├── bug_927.py │ │ ├── bug_931.py │ │ ├── bug_938.py │ │ ├── bug_953.py │ │ ├── bug_987.py │ │ ├── bug_994.py │ │ ├── bug_PYSIDE-164.py │ │ ├── bug_PYSIDE-42.py │ │ ├── child_event_test.py │ │ ├── classinfo_test.py │ │ ├── deepcopy_test.py │ │ ├── deletelater_test.py │ │ ├── destroysignal_test.py │ │ ├── duck_punching_test.py │ │ ├── emoji_string_test.py │ │ ├── hash_test.py │ │ ├── inherits_test.py │ │ ├── max_signals.py │ │ ├── missing_symbols_test.py │ │ ├── mockclass_test.py │ │ ├── multiple_feature_test.py │ │ ├── python_conversion.py │ │ ├── qabs_test.py │ │ ├── qabstractitemmodel_test.py │ │ ├── qabstracttransition_test.py │ │ ├── qanimationgroup_test.py │ │ ├── qbitarray_test.py │ │ ├── qbytearray_buffer_protocol_test.py │ │ ├── qbytearray_concatenation_operator_test.py │ │ ├── qbytearray_operator_iadd_test.py │ │ ├── qbytearray_operator_test.py │ │ ├── qbytearray_test.py │ │ ├── qcalendar_test.py │ │ ├── qcbor_test.py │ │ ├── qcollator_test.py │ │ ├── qcommandlineparser_test.py │ │ ├── qcoreapplication_instance_test.py │ │ ├── qcoreapplication_test.py │ │ ├── qdatastream_test.py │ │ ├── qdate_test.py │ │ ├── qdatetime_test.py │ │ ├── qeasingcurve_test.py │ │ ├── qenum_test.py │ │ ├── qevent_test.py │ │ ├── qfile_test.py │ │ ├── qfileinfo_test.py │ │ ├── qfileread_test.py │ │ ├── qflags_test.py │ │ ├── qhandle_test.py │ │ ├── qinstallmsghandler_test.py │ │ ├── qjsondocument_test.py │ │ ├── qlinef_test.py │ │ ├── qlocale_test.py │ │ ├── qlockfile_test.py │ │ ├── qmessageauthenticationcode_test.py │ │ ├── qmetaobject_test.py │ │ ├── qmimedatabase_test.py │ │ ├── qmodelindex_internalpointer_test.py │ │ ├── qobject_children_segfault_test.py │ │ ├── qobject_connect_notify_test.py │ │ ├── qobject_destructor.py │ │ ├── qobject_event_filter_test.py │ │ ├── qobject_inherits_test.py │ │ ├── qobject_objectproperty_test.py │ │ ├── qobject_parent_test.py │ │ ├── qobject_property_test.py │ │ ├── qobject_protected_methods_test.py │ │ ├── qobject_test.py │ │ ├── qobject_timer_event_test.py │ │ ├── qobject_tr_as_instance_test.py │ │ ├── qoperatingsystemversion_test.py │ │ ├── qpoint_test.py │ │ ├── qprocess_test.py │ │ ├── qproperty_decorator.py │ │ ├── qrandomgenerator_test.py │ │ ├── qrect_test.py │ │ ├── qregexp_test.py │ │ ├── qregularexpression_test.py │ │ ├── qresource_test.py │ │ ├── qsettings_test.ini │ │ ├── qsettings_test.py │ │ ├── qsize_test.py │ │ ├── qslot_object_test.py │ │ ├── qsocketnotifier_test.py │ │ ├── qsrand_test.py │ │ ├── qstandardpaths_test.py │ │ ├── qstate_test.py │ │ ├── qstatemachine_test.py │ │ ├── qstorageinfo_test.py │ │ ├── qstring_test.py │ │ ├── qsysinfo_test.py │ │ ├── qtext_codec_test.py │ │ ├── qtextstream_test.py │ │ ├── qthread_prod_cons_test.py │ │ ├── qthread_signal_test.py │ │ ├── qthread_test.py │ │ ├── qtimer_singleshot_test.py │ │ ├── qtimer_timeout_test.py │ │ ├── qtimezone_test.py │ │ ├── qtnamespace_test.py │ │ ├── quoteEnUS.txt │ │ ├── qurl_test.py │ │ ├── qurlquery_test.py │ │ ├── quuid_test.py │ │ ├── qversionnumber_test.py │ │ ├── repr_test.py │ │ ├── resources.qrc │ │ ├── resources_mc.py │ │ ├── sample.png │ │ ├── setprop_on_ctor_test.py │ │ ├── snake_prop_feature_test.py │ │ ├── staticMetaObject_test.py │ │ ├── static_method_test.py │ │ ├── thread_signals_test.py │ │ ├── tr_noop_test.py │ │ ├── translation_test.py │ │ ├── translations │ │ │ ├── trans_latin.qm │ │ │ ├── trans_latin.ts │ │ │ ├── trans_russian.qm │ │ │ └── trans_russian.ts │ │ ├── unaryoperator_test.py │ │ ├── unicode_test.py │ │ └── versioninfo_test.py │ │ ├── QtDataVisualization │ │ ├── CMakeLists.txt │ │ └── datavisualization_test.py │ │ ├── QtDesigner │ │ └── CMakeLists.txt │ │ ├── QtGui │ │ ├── CMakeLists.txt │ │ ├── bug_1091.py │ │ ├── bug_300_test.py │ │ ├── bug_367.py │ │ ├── bug_480.py │ │ ├── bug_606.py │ │ ├── bug_617.py │ │ ├── bug_652.py │ │ ├── bug_660.py │ │ ├── bug_716.py │ │ ├── bug_740.py │ │ ├── bug_743.py │ │ ├── bug_991.py │ │ ├── bug_PYSIDE-344.py │ │ ├── bug_PYSIDE-41.py │ │ ├── deepcopy_test.py │ │ ├── float_to_int_implicit_conversion_test.py │ │ ├── pyside_reload_test.py │ │ ├── qcolor_reduce_test.py │ │ ├── qcolor_test.py │ │ ├── qcursor_test.py │ │ ├── qdatastream_gui_operators_test.py │ │ ├── qdesktopservices_test.py │ │ ├── qfontmetrics_test.py │ │ ├── qguiapplication_test.py │ │ ├── qicon_test.py │ │ ├── qitemselection_test.py │ │ ├── qkeysequence_test.py │ │ ├── qmatrix_test.py │ │ ├── qopenglbuffer_test.py │ │ ├── qopenglwindow_test.py │ │ ├── qpainter_test.py │ │ ├── qpdfwriter_test.py │ │ ├── qpixelformat_test.py │ │ ├── qpixmap_test.py │ │ ├── qpixmapcache_test.py │ │ ├── qpolygonf_test.py │ │ ├── qradialgradient_test.py │ │ ├── qrasterwindow_test.py │ │ ├── qregion_test.py │ │ ├── qstylehints_test.py │ │ ├── qtextdocument_functions.py │ │ ├── qtextdocument_undoredo_test.py │ │ ├── qtextdocumentwriter_test.py │ │ ├── qtextline_test.py │ │ ├── qtransform_test.py │ │ ├── repr_test.py │ │ ├── sample.png │ │ └── timed_app_and_patching_test.py │ │ ├── QtHelp │ │ ├── CMakeLists.txt │ │ ├── help_test.py │ │ └── helpsearchengine_test.py │ │ ├── QtLocation │ │ ├── CMakeLists.txt │ │ └── location.py │ │ ├── QtMacExtras │ │ └── CMakeLists.txt │ │ ├── QtMultimedia │ │ ├── CMakeLists.txt │ │ └── audio_test.py │ │ ├── QtMultimediaWidgets │ │ ├── CMakeLists.txt │ │ └── qmultimediawidgets.py │ │ ├── QtNetwork │ │ ├── CMakeLists.txt │ │ ├── accessManager_test.py │ │ ├── bug_1084.py │ │ ├── bug_446.py │ │ ├── dnslookup_test.py │ │ ├── qipv6address_test.py │ │ ├── qpassworddigestor_test.py │ │ ├── tcpserver_test.py │ │ └── udpsocket_test.py │ │ ├── QtOpenGL │ │ ├── CMakeLists.txt │ │ ├── qglbuffer_test.py │ │ └── qglwidget_test.py │ │ ├── QtOpenGLFunctions │ │ └── CMakeLists.txt │ │ ├── QtPositioning │ │ ├── CMakeLists.txt │ │ └── positioning.py │ │ ├── QtPrintSupport │ │ ├── CMakeLists.txt │ │ ├── bug_500.py │ │ └── returnquadruplesofnumbers_test.py │ │ ├── QtQml │ │ ├── CMakeLists.txt │ │ ├── bug_1029.py │ │ ├── bug_1029.qml │ │ ├── bug_451.py │ │ ├── bug_451.qml │ │ ├── bug_456.py │ │ ├── bug_456.qml │ │ ├── bug_557.py │ │ ├── bug_726.py │ │ ├── bug_726.qml │ │ ├── bug_814.py │ │ ├── bug_814.qml │ │ ├── bug_825.py │ │ ├── bug_825.qml │ │ ├── bug_847.py │ │ ├── bug_847.qml │ │ ├── bug_915.py │ │ ├── bug_926.py │ │ ├── bug_926.qml │ │ ├── bug_951.py │ │ ├── bug_951.qml │ │ ├── bug_995.py │ │ ├── bug_995.qml │ │ ├── bug_997.py │ │ ├── bug_997.qml │ │ ├── connect_python_qml.py │ │ ├── connect_python_qml.qml │ │ ├── hw.qml │ │ ├── javascript_exceptions.py │ │ ├── javascript_exceptions.qml │ │ ├── qqmlincubator_incubateWhile.py │ │ ├── qqmlincubator_incubateWhile.qml │ │ ├── qqmlincubator_incubateWhile_component.qml │ │ ├── qqmlnetwork_test.py │ │ ├── qquickitem_grabToImage.py │ │ ├── qquickitem_grabToImage.qml │ │ ├── qquickview_test.py │ │ ├── registertype.py │ │ ├── registertype.qml │ │ ├── signal_arguments.py │ │ ├── signal_arguments.qml │ │ ├── view.qml │ │ └── viewmodel.qml │ │ ├── QtQuick │ │ └── CMakeLists.txt │ │ ├── QtQuickControls2 │ │ └── CMakeLists.txt │ │ ├── QtQuickWidgets │ │ └── CMakeLists.txt │ │ ├── QtRemoteObjects │ │ └── CMakeLists.txt │ │ ├── QtScript │ │ ├── CMakeLists.txt │ │ ├── base_test.py │ │ ├── bug_1022.py │ │ ├── engine_test.py │ │ ├── property_test.py │ │ └── qscriptvalue_test.py │ │ ├── QtScriptTools │ │ ├── CMakeLists.txt │ │ └── debugger_test.py │ │ ├── QtScxml │ │ ├── CMakeLists.txt │ │ ├── test_dynamic.py │ │ └── trafficlight.scxml │ │ ├── QtSensors │ │ ├── CMakeLists.txt │ │ └── sensors.py │ │ ├── QtSerialPort │ │ ├── CMakeLists.txt │ │ └── serial.py │ │ ├── QtSql │ │ ├── CMakeLists.txt │ │ ├── bug_1013.py │ │ ├── qsqldatabaseandqueries_test.py │ │ └── qvarianttype_test.py │ │ ├── QtSvg │ │ ├── CMakeLists.txt │ │ ├── qsvggenerator_test.py │ │ ├── qsvgrenderer_test.py │ │ ├── qsvgwidget_test.py │ │ └── tiger.svg │ │ ├── QtTest │ │ ├── CMakeLists.txt │ │ ├── click_test.py │ │ ├── eventfilter_test.py │ │ ├── qvalidator_test.py │ │ └── touchevent_test.py │ │ ├── QtTextToSpeech │ │ ├── CMakeLists.txt │ │ └── qtexttospeech_test.py │ │ ├── QtUiTools │ │ ├── CMakeLists.txt │ │ ├── action.ui │ │ ├── bug_1060.py │ │ ├── bug_1060.ui │ │ ├── bug_360.py │ │ ├── bug_376.py │ │ ├── bug_392.py │ │ ├── bug_426.py │ │ ├── bug_426.ui │ │ ├── bug_552.py │ │ ├── bug_552.ui │ │ ├── bug_797.py │ │ ├── bug_909.py │ │ ├── bug_909.ui │ │ ├── bug_913.py │ │ ├── bug_913.ui │ │ ├── bug_958.py │ │ ├── bug_958.ui │ │ ├── bug_965.py │ │ ├── bug_965.ui │ │ ├── loadUiType_test.py │ │ ├── minimal.ui │ │ ├── pycustomwidget.ui │ │ ├── pycustomwidget2.ui │ │ ├── test.ui │ │ ├── ui_test.py │ │ └── uiloader_test.py │ │ ├── QtWebChannel │ │ └── CMakeLists.txt │ │ ├── QtWebEngine │ │ ├── CMakeLists.txt │ │ └── web_engine_initialize.py │ │ ├── QtWebEngineCore │ │ ├── CMakeLists.txt │ │ └── web_engine_custom_scheme.py │ │ ├── QtWebEngineWidgets │ │ ├── CMakeLists.txt │ │ ├── fox.html │ │ └── pyside-474-qtwebengineview.py │ │ ├── QtWebKit │ │ ├── CMakeLists.txt │ │ ├── bug_448.py │ │ ├── bug_694.py │ │ ├── bug_803.py │ │ ├── bug_899.py │ │ ├── bug_959.py │ │ ├── fox.html │ │ ├── qml_plugin_test.py │ │ ├── qmlplugin │ │ │ ├── dummy.pys │ │ │ └── index.html │ │ ├── qvariantlist_property_test.py │ │ ├── shouldInterruptjavascript_test.py │ │ ├── webframe_test.py │ │ ├── webpage_test.py │ │ └── webview_test.py │ │ ├── QtWebKitWidgets │ │ └── CMakeLists.txt │ │ ├── QtWebSockets │ │ └── CMakeLists.txt │ │ ├── QtWidgets │ │ ├── CMakeLists.txt │ │ ├── action_clear.py │ │ ├── add_action_test.py │ │ ├── api2_test.py │ │ ├── application_test.py │ │ ├── bug_1002.py │ │ ├── bug_1006.py │ │ ├── bug_1048.py │ │ ├── bug_1077.py │ │ ├── bug_172.py │ │ ├── bug_243.py │ │ ├── bug_307.py │ │ ├── bug_324.py │ │ ├── bug_338.py │ │ ├── bug_363.py │ │ ├── bug_389.py │ │ ├── bug_400.py │ │ ├── bug_416.py │ │ ├── bug_429.py │ │ ├── bug_430.py │ │ ├── bug_433.py │ │ ├── bug_467.py │ │ ├── bug_493.py │ │ ├── bug_512.py │ │ ├── bug_525.py │ │ ├── bug_546.py │ │ ├── bug_547.py │ │ ├── bug_549.py │ │ ├── bug_569.py │ │ ├── bug_575.py │ │ ├── bug_576.py │ │ ├── bug_585.py │ │ ├── bug_589.py │ │ ├── bug_632.py │ │ ├── bug_635.py │ │ ├── bug_640.py │ │ ├── bug_653.py │ │ ├── bug_662.py │ │ ├── bug_667.py │ │ ├── bug_668.py │ │ ├── bug_674.py │ │ ├── bug_675.py │ │ ├── bug_688.py │ │ ├── bug_693.py │ │ ├── bug_696.py │ │ ├── bug_711.py │ │ ├── bug_714.py │ │ ├── bug_722.py │ │ ├── bug_728.py │ │ ├── bug_736.py │ │ ├── bug_750.py │ │ ├── bug_778.py │ │ ├── bug_785.py │ │ ├── bug_793.py │ │ ├── bug_811.py │ │ ├── bug_834.py │ │ ├── bug_836.py │ │ ├── bug_844.py │ │ ├── bug_854.py │ │ ├── bug_860.py │ │ ├── bug_862.py │ │ ├── bug_871.py │ │ ├── bug_879.py │ │ ├── bug_919.py │ │ ├── bug_921.py │ │ ├── bug_941.py │ │ ├── bug_964.py │ │ ├── bug_967.py │ │ ├── bug_972.py │ │ ├── bug_979.py │ │ ├── bug_988.py │ │ ├── bug_998.py │ │ ├── customproxywidget_test.py │ │ ├── event_filter_test.py │ │ ├── grandparent_method_test.py │ │ ├── hashabletype_test.py │ │ ├── import_test.py │ │ ├── keep_reference_test.py │ │ ├── missing_symbols_test.py │ │ ├── paint_event_test.py │ │ ├── parent_method_test.py │ │ ├── private_mangle_test.py │ │ ├── python_properties_test.py │ │ ├── qabstracttextdocumentlayout_test.py │ │ ├── qaction_test.py │ │ ├── qapp_issue_585.py │ │ ├── qapp_test.py │ │ ├── qapplication_exit_segfault_test.py │ │ ├── qapplication_test.py │ │ ├── qbrush_test.py │ │ ├── qcolormap_test.py │ │ ├── qdynamic_signal.py │ │ ├── qfontdialog_test.py │ │ ├── qformlayout_test.py │ │ ├── qgraphicsitem_isblocked_test.py │ │ ├── qgraphicsitem_test.py │ │ ├── qgraphicsobjectreimpl_test.py │ │ ├── qgraphicsproxywidget_test.py │ │ ├── qgraphicsscene_test.py │ │ ├── qimage_test.py │ │ ├── qinputdialog_get_test.py │ │ ├── qkeysequenceedit_test.py │ │ ├── qlabel_test.py │ │ ├── qlayout_ref_test.py │ │ ├── qlayout_test.py │ │ ├── qlcdnumber_test.py │ │ ├── qlistwidget_test.py │ │ ├── qlistwidgetitem_test.py │ │ ├── qmainwindow_test.py │ │ ├── qmenu_test.py │ │ ├── qmenuadd_test.py │ │ ├── qobject_mi_test.py │ │ ├── qpen_test.py │ │ ├── qpicture_test.py │ │ ├── qpixmap_constructor.py │ │ ├── qpushbutton_test.py │ │ ├── qshortcut_test.py │ │ ├── qsplitter_test.py │ │ ├── qstandarditemmodel_test.py │ │ ├── qstring_qkeysequence_test.py │ │ ├── qstyle_test.py │ │ ├── qtableview_test.py │ │ ├── qtabwidget_test.py │ │ ├── qtabwidgetclear_test.py │ │ ├── qtextedit_signal_test.py │ │ ├── qtextedit_test.py │ │ ├── qtoolbar_test.py │ │ ├── qtoolbox_test.py │ │ ├── qtreeview_test.py │ │ ├── qtreewidget_test.py │ │ ├── qtreewidgetitem_test.py │ │ ├── qvariant_test.py │ │ ├── qwidget_setlayout_test.py │ │ ├── qwidget_test.py │ │ ├── reference_count_test.py │ │ ├── sample.png │ │ ├── signature_test.py │ │ ├── standardpixmap_test.py │ │ ├── test_module_template.py │ │ ├── virtual_protected_inheritance_test.py │ │ ├── virtual_pure_override_test.py │ │ └── wrong_return_test.py │ │ ├── QtWinExtras │ │ └── CMakeLists.txt │ │ ├── QtX11Extras │ │ └── CMakeLists.txt │ │ ├── QtXml │ │ ├── CMakeLists.txt │ │ ├── qdomdocument_test.py │ │ └── qxmlsimplereader_test.py │ │ ├── QtXmlPatterns │ │ ├── CMakeLists.txt │ │ └── import_test.py │ │ ├── init_paths.py │ │ ├── mac │ │ ├── CMakeLists.txt │ │ └── qmacstyle_test.py │ │ ├── manually │ │ ├── README.txt │ │ └── bug_841.py │ │ ├── pysidetest │ │ ├── CMakeLists.txt │ │ ├── all_modules_load_test.py │ │ ├── bug_1016.py │ │ ├── constructor_properties_test.py │ │ ├── curr_errors.txt │ │ ├── decoratedslot_test.py │ │ ├── delegatecreateseditor_test.py │ │ ├── embedding_test.py │ │ ├── enum_test.py │ │ ├── flagstest.cpp │ │ ├── flagstest.h │ │ ├── hiddenobject.cpp │ │ ├── hiddenobject.h │ │ ├── homonymoussignalandmethod_test.py │ │ ├── iterable_test.py │ │ ├── list_signal_test.py │ │ ├── mixin_signal_slots_test.py │ │ ├── modelview_test.py │ │ ├── new_inherited_functions_test.py │ │ ├── notify_id.py │ │ ├── properties_test.py │ │ ├── property_python_test.py │ │ ├── pysidetest_global.h │ │ ├── pysidetest_macros.h │ │ ├── qapp_like_a_macro_test.py │ │ ├── qvariant_test.py │ │ ├── repr_test.py │ │ ├── signal_slot_warning.py │ │ ├── signal_tp_descr_get_test.py │ │ ├── signalandnamespace_test.py │ │ ├── signalemissionfrompython_test.py │ │ ├── signalwithdefaultvalue_test.py │ │ ├── symbols.filter │ │ ├── testobject.cpp │ │ ├── testobject.h │ │ ├── testview.cpp │ │ ├── testview.h │ │ ├── typedef_signal_test.py │ │ ├── typesystem_pysidetest.xml │ │ └── version_test.py │ │ ├── registry │ │ ├── CMakeLists.txt │ │ ├── existence_test.py │ │ ├── exists_darwin_5_14_2_ci.py │ │ ├── exists_red_hat_enterprise_linux_workstation7_6_5_14_2_ci.py │ │ ├── exists_win32_5_14_2_ci.py │ │ ├── exists_x86_64_suse_linux_5_14_2_ci.py │ │ ├── init_platform.py │ │ ├── scrape_testresults.py │ │ └── util.py │ │ ├── run_test.sh │ │ ├── signals │ │ ├── CMakeLists.txt │ │ ├── args_dont_match_test.py │ │ ├── bug_189.py │ │ ├── bug_311.py │ │ ├── bug_312.py │ │ ├── bug_319.py │ │ ├── bug_79.py │ │ ├── decorators_test.py │ │ ├── disconnect_test.py │ │ ├── invalid_callback_test.py │ │ ├── lambda_gui_test.py │ │ ├── lambda_test.py │ │ ├── leaking_signal_test.py │ │ ├── multiple_connections_gui_test.py │ │ ├── multiple_connections_test.py │ │ ├── pysignal_test.py │ │ ├── qobject_destroyed_test.py │ │ ├── qobject_receivers_test.py │ │ ├── qobject_sender_test.py │ │ ├── ref01_test.py │ │ ├── ref02_test.py │ │ ├── ref03_test.py │ │ ├── ref04_test.py │ │ ├── ref05_test.py │ │ ├── ref06_test.py │ │ ├── segfault_proxyparent_test.py │ │ ├── self_connect_test.py │ │ ├── short_circuit_test.py │ │ ├── signal2signal_connect_test.py │ │ ├── signal_across_threads.py │ │ ├── signal_autoconnect_test.py │ │ ├── signal_connectiontype_support_test.py │ │ ├── signal_emission_gui_test.py │ │ ├── signal_emission_test.py │ │ ├── signal_enum_test.py │ │ ├── signal_func_test.py │ │ ├── signal_manager_refcount_test.py │ │ ├── signal_number_limit_test.py │ │ ├── signal_object_test.py │ │ ├── signal_signature_test.py │ │ ├── signal_with_primitive_type_test.py │ │ ├── slot_reference_count_test.py │ │ └── static_metaobject_test.py │ │ ├── support │ │ ├── CMakeLists.txt │ │ └── voidptr_test.py │ │ ├── tools │ │ └── list-class-hierarchy.py │ │ └── util │ │ ├── color.py │ │ ├── helper │ │ ├── __init__.py │ │ ├── basicpyslotcase.py │ │ ├── docmodifier.py │ │ ├── helper.py │ │ ├── helper.pyproject │ │ ├── timedqapplication.py │ │ ├── usesqapplication.py │ │ ├── usesqcoreapplication.py │ │ └── usesqguiapplication.py │ │ ├── httpd.py │ │ ├── module_wrapper │ │ └── PySide │ │ │ ├── QtAssistant.py │ │ │ ├── QtCore.py │ │ │ ├── QtDesigner.py │ │ │ ├── QtGui.py │ │ │ ├── QtHelp.py │ │ │ ├── QtNetwork.py │ │ │ ├── QtScript.py │ │ │ ├── QtSql.py │ │ │ ├── QtSvg.py │ │ │ ├── QtTest.py │ │ │ ├── QtWebKit.py │ │ │ ├── QtXml.py │ │ │ ├── QtXmlPatterns.py │ │ │ └── __init__.py │ │ ├── processtimer.py │ │ ├── py3kcompat.py │ │ ├── pyqt_diff.py │ │ ├── pyqtcheck.py │ │ ├── rename_imports.sh │ │ ├── test_processtimer.py │ │ ├── use_pyqt4.sh │ │ ├── use_pyside.sh │ │ └── valgrind-python.supp └── shiboken2 │ ├── AUTHORS │ ├── ApiExtractor │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── abstractmetabuilder.cpp │ ├── abstractmetabuilder.h │ ├── abstractmetabuilder_p.h │ ├── abstractmetalang.cpp │ ├── abstractmetalang.h │ ├── abstractmetalang_typedefs.h │ ├── apiextractor.cpp │ ├── apiextractor.h │ ├── apiextractormacros.h │ ├── clangparser │ │ ├── clangbuilder.cpp │ │ ├── clangbuilder.h │ │ ├── clangdebugutils.cpp │ │ ├── clangdebugutils.h │ │ ├── clangparser.cpp │ │ ├── clangparser.h │ │ ├── clangutils.cpp │ │ ├── clangutils.h │ │ ├── compilersupport.cpp │ │ └── compilersupport.h │ ├── cmake_uninstall.cmake │ ├── dependency.h │ ├── docparser.cpp │ ├── docparser.h │ ├── doxygenparser.cpp │ ├── doxygenparser.h │ ├── fileout.cpp │ ├── fileout.h │ ├── graph.cpp │ ├── graph.h │ ├── header_paths.h │ ├── icecc.cmake │ ├── include.cpp │ ├── include.h │ ├── merge.xsl │ ├── messages.cpp │ ├── messages.h │ ├── parser │ │ ├── codemodel.cpp │ │ ├── codemodel.h │ │ ├── codemodel_enums.h │ │ ├── codemodel_fwd.h │ │ ├── enumvalue.cpp │ │ └── enumvalue.h │ ├── propertyspec.cpp │ ├── propertyspec.h │ ├── qtcompat.h │ ├── qtdocparser.cpp │ ├── qtdocparser.h │ ├── reporthandler.cpp │ ├── reporthandler.h │ ├── sourcelocation.cpp │ ├── sourcelocation.h │ ├── symbols.filter │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── a.xml │ │ ├── injectedcode.txt │ │ ├── testabstractmetaclass.cpp │ │ ├── testabstractmetaclass.h │ │ ├── testabstractmetatype.cpp │ │ ├── testabstractmetatype.h │ │ ├── testaddfunction.cpp │ │ ├── testaddfunction.h │ │ ├── testarrayargument.cpp │ │ ├── testarrayargument.h │ │ ├── testcodeinjection.cpp │ │ ├── testcodeinjection.h │ │ ├── testcodeinjection.qrc │ │ ├── testcontainer.cpp │ │ ├── testcontainer.h │ │ ├── testconversionoperator.cpp │ │ ├── testconversionoperator.h │ │ ├── testconversionruletag.cpp │ │ ├── testconversionruletag.h │ │ ├── testctorinformation.cpp │ │ ├── testctorinformation.h │ │ ├── testdroptypeentries.cpp │ │ ├── testdroptypeentries.h │ │ ├── testdtorinformation.cpp │ │ ├── testdtorinformation.h │ │ ├── testenum.cpp │ │ ├── testenum.h │ │ ├── testextrainclude.cpp │ │ ├── testextrainclude.h │ │ ├── testfunctiontag.cpp │ │ ├── testfunctiontag.h │ │ ├── testimplicitconversions.cpp │ │ ├── testimplicitconversions.h │ │ ├── testinserttemplate.cpp │ │ ├── testinserttemplate.h │ │ ├── testmodifydocumentation.cpp │ │ ├── testmodifydocumentation.h │ │ ├── testmodifydocumentation.qrc │ │ ├── testmodifyfunction.cpp │ │ ├── testmodifyfunction.h │ │ ├── testmultipleinheritance.cpp │ │ ├── testmultipleinheritance.h │ │ ├── testnamespace.cpp │ │ ├── testnamespace.h │ │ ├── testnestedtypes.cpp │ │ ├── testnestedtypes.h │ │ ├── testnumericaltypedef.cpp │ │ ├── testnumericaltypedef.h │ │ ├── testprimitivetypetag.cpp │ │ ├── testprimitivetypetag.h │ │ ├── testrefcounttag.cpp │ │ ├── testrefcounttag.h │ │ ├── testreferencetopointer.cpp │ │ ├── testreferencetopointer.h │ │ ├── testremovefield.cpp │ │ ├── testremovefield.h │ │ ├── testremoveimplconv.cpp │ │ ├── testremoveimplconv.h │ │ ├── testremoveoperatormethod.cpp │ │ ├── testremoveoperatormethod.h │ │ ├── testresolvetype.cpp │ │ ├── testresolvetype.h │ │ ├── testreverseoperators.cpp │ │ ├── testreverseoperators.h │ │ ├── testtemplates.cpp │ │ ├── testtemplates.h │ │ ├── testtoposort.cpp │ │ ├── testtoposort.h │ │ ├── testtyperevision.cpp │ │ ├── testtyperevision.h │ │ ├── testutil.h │ │ ├── testvaluetypedefaultctortag.cpp │ │ ├── testvaluetypedefaultctortag.h │ │ ├── testvoidarg.cpp │ │ ├── testvoidarg.h │ │ └── utf8code.txt │ ├── typedatabase.cpp │ ├── typedatabase.h │ ├── typedatabase_typedefs.h │ ├── typeparser.cpp │ ├── typeparser.h │ ├── typesystem.cpp │ ├── typesystem.h │ ├── typesystem_enums.h │ ├── typesystem_typedefs.h │ ├── typesystemparser.cpp │ ├── typesystemparser.h │ ├── xmlutils.cpp │ ├── xmlutils.h │ ├── xmlutils_libxslt.cpp │ ├── xmlutils_libxslt.h │ ├── xmlutils_qt.cpp │ └── xmlutils_qt.h │ ├── CMakeLists.txt │ ├── COPYING │ ├── COPYING.libsample │ ├── COPYING.libshiboken │ ├── Doxyfile │ ├── cmake_uninstall.cmake │ ├── data │ ├── CMakeLists.txt │ ├── GeneratorRunnerConfig.cmake.in │ ├── GeneratorRunnerConfigVersion.cmake.in │ ├── Shiboken2Config-spec.cmake.in │ ├── Shiboken2Config.cmake.in │ ├── Shiboken2ConfigVersion.cmake.in │ ├── docgenerator.1 │ ├── generatorrunner.1 │ ├── generatorrunner.pc.in │ ├── shiboken2.pc.in │ └── shiboken_helpers.cmake │ ├── doc │ ├── CMakeLists.txt │ ├── README.md │ ├── _templates │ │ ├── index.html │ │ └── layout.html │ ├── _themes │ │ ├── pysidedocs │ │ │ ├── searchbox.html │ │ │ ├── static │ │ │ │ ├── bg_header.png │ │ │ │ ├── bg_topo.jpg │ │ │ │ ├── fakebar.png │ │ │ │ ├── logo_python.jpg │ │ │ │ ├── logo_qt.png │ │ │ │ ├── pyside.css │ │ │ │ ├── pysidelogo.png │ │ │ │ └── relbar_bg.png │ │ │ └── theme.conf │ │ └── pysidedocs_qthelp │ │ │ ├── domainindex.html │ │ │ ├── static │ │ │ ├── fakebar.png │ │ │ ├── logo_python.jpg │ │ │ ├── logo_qt.png │ │ │ ├── minus.png │ │ │ ├── plus.png │ │ │ ├── pyside.css │ │ │ ├── pysidelogo.png │ │ │ └── relbar_bg.png │ │ │ └── theme.conf │ ├── conf.py.in │ ├── considerations.rst │ ├── dependency-pyside.svg │ ├── examples │ │ ├── index.rst │ │ └── samplebinding.rst │ ├── gettingstarted.rst │ ├── images │ │ ├── .directory │ │ ├── bindinggen-development.png │ │ ├── bindinggen-development.svg │ │ ├── boostgen.png │ │ ├── converter.png │ │ ├── converter.svg │ │ ├── genrunnerarch.png │ │ ├── genrunnerarch.svg │ │ ├── icecream.png │ │ ├── qtforpython-underthehood.png │ │ ├── shibokenqtarch.png │ │ └── shibokenqtarch.svg │ ├── index.rst │ ├── shibokengenerator.rst │ ├── shibokenmodule.rst │ ├── typesystem.rst │ ├── typesystem_arguments.rst │ ├── typesystem_codegeneration.rst │ ├── typesystem_codeinjection.rst │ ├── typesystem_conversionrule.rst │ ├── typesystem_converters.rst │ ├── typesystem_documentation.rst │ ├── typesystem_manipulating_objects.rst │ ├── typesystem_modify_function.rst │ ├── typesystem_ownership.rst │ ├── typesystem_sequenceprotocol.rst │ ├── typesystem_solving_compilation.rst │ ├── typesystem_specifying_types.rst │ ├── typesystem_templates.rst │ └── typesystem_variables.rst │ ├── generator │ ├── CMakeLists.txt │ ├── __init__.py.in │ ├── _config.py.in │ ├── generator.cpp │ ├── generator.h │ ├── indentor.h │ ├── main.cpp │ ├── qtdoc │ │ ├── qtdocgenerator.cpp │ │ └── qtdocgenerator.h │ ├── shiboken2 │ │ ├── cppgenerator.cpp │ │ ├── cppgenerator.h │ │ ├── ctypenames.h │ │ ├── headergenerator.cpp │ │ ├── headergenerator.h │ │ ├── overloaddata.cpp │ │ ├── overloaddata.h │ │ ├── shibokengenerator.cpp │ │ └── shibokengenerator.h │ └── shibokenconfig.h.in │ ├── generatorrunnerconfig.h.in │ ├── generatorrunnermacros.h │ ├── generators │ └── shiboken │ │ └── shiboken.cpp │ ├── icecc.cmake │ ├── libshiboken │ ├── CMakeLists.txt │ ├── autodecref.h │ ├── basewrapper.cpp │ ├── basewrapper.h │ ├── basewrapper_p.h │ ├── bindingmanager.cpp │ ├── bindingmanager.h │ ├── bufferprocs_py37.cpp │ ├── bufferprocs_py37.h │ ├── debugfreehook.cpp │ ├── debugfreehook.h │ ├── embed │ │ ├── embedding_generator.py │ │ ├── module_collector.py │ │ ├── qt_python_license.txt │ │ └── signature_bootstrap.py │ ├── gilstate.cpp │ ├── gilstate.h │ ├── helper.cpp │ ├── helper.h │ ├── pep384_issue33738.cpp │ ├── pep384impl.cpp │ ├── pep384impl.h │ ├── pep384impl_doc.rst │ ├── python25compat.h │ ├── qt_attribution.json │ ├── sbkarrayconverter.cpp │ ├── sbkarrayconverter.h │ ├── sbkarrayconverter_p.h │ ├── sbkconverter.cpp │ ├── sbkconverter.h │ ├── sbkconverter_p.h │ ├── sbkdbg.h │ ├── sbkenum.cpp │ ├── sbkenum.h │ ├── sbkmodule.cpp │ ├── sbkmodule.h │ ├── sbknumpyarrayconverter.cpp │ ├── sbkpython.h │ ├── sbkstaticstrings.cpp │ ├── sbkstaticstrings.h │ ├── sbkstaticstrings_p.h │ ├── sbkstring.cpp │ ├── sbkstring.h │ ├── sbkversion.h.in │ ├── shiboken.h │ ├── shibokenbuffer.cpp │ ├── shibokenbuffer.h │ ├── shibokenmacros.h │ ├── signature.h │ ├── signature │ │ ├── signature.cpp │ │ ├── signature_doc.rst │ │ ├── signature_extend.cpp │ │ ├── signature_globals.cpp │ │ ├── signature_helper.cpp │ │ └── signature_p.h │ ├── threadstatesaver.cpp │ ├── threadstatesaver.h │ ├── tmp-referencetopython │ │ ├── sbkconverter.cpp │ │ └── sbkconverter.h │ ├── typespec.cpp │ ├── typespec.h │ ├── voidptr.cpp │ └── voidptr.h │ ├── shiboken_tool.py │ ├── shiboken_version.py │ ├── shibokenmodule │ ├── CMakeLists.txt │ ├── __init__.py.in │ ├── _config.py.in │ ├── files.dir │ │ └── shibokensupport │ │ │ ├── __feature__.py │ │ │ ├── __init__.py │ │ │ ├── backport_inspect.py │ │ │ ├── fix-complaints.py │ │ │ ├── signature │ │ │ ├── PSF-3.7.0.txt │ │ │ ├── __init__.py │ │ │ ├── errorhandler.py │ │ │ ├── importhandler.py │ │ │ ├── layout.py │ │ │ ├── lib │ │ │ │ ├── __init__.py │ │ │ │ ├── enum_sig.py │ │ │ │ └── tool.py │ │ │ ├── loader.py │ │ │ ├── mapping.py │ │ │ ├── parser.py │ │ │ └── qt_attribution.json │ │ │ └── typing27.py │ ├── nothing.h │ ├── shibokenmodule.txt.in │ └── typesystem_shiboken.xml │ └── tests │ ├── CMakeLists.txt │ ├── dumpcodemodel │ ├── CMakeLists.txt │ └── main.cpp │ ├── libminimal │ ├── CMakeLists.txt │ ├── libminimalmacros.h │ ├── listuser.cpp │ ├── listuser.h │ ├── minbool.h │ ├── obj.cpp │ ├── obj.h │ ├── typedef.cpp │ ├── typedef.h │ └── val.h │ ├── libother │ ├── CMakeLists.txt │ ├── extendsnoimplicitconversion.h │ ├── libothermacros.h │ ├── number.cpp │ ├── number.h │ ├── otherderived.cpp │ ├── otherderived.h │ ├── othermultiplederived.cpp │ ├── othermultiplederived.h │ ├── otherobjecttype.cpp │ ├── otherobjecttype.h │ ├── othertypesystypedef.cpp │ ├── othertypesystypedef.h │ ├── smartptrtester.cpp │ └── smartptrtester.h │ ├── libsample │ ├── CMakeLists.txt │ ├── abstract.cpp │ ├── abstract.h │ ├── blackbox.cpp │ ├── blackbox.h │ ├── bucket.cpp │ ├── bucket.h │ ├── bytearray.cpp │ ├── bytearray.h │ ├── collector.cpp │ ├── collector.h │ ├── complex.cpp │ ├── complex.h │ ├── ctorconvrule.h │ ├── cvlist.h │ ├── derived.cpp │ ├── derived.h │ ├── echo.cpp │ ├── echo.h │ ├── exceptiontest.cpp │ ├── exceptiontest.h │ ├── expression.cpp │ ├── expression.h │ ├── filter.cpp │ ├── filter.h │ ├── functions.cpp │ ├── functions.h │ ├── handle.cpp │ ├── handle.h │ ├── implicitconv.cpp │ ├── implicitconv.h │ ├── injectcode.cpp │ ├── injectcode.h │ ├── libsamplemacros.h │ ├── list.h │ ├── listuser.cpp │ ├── listuser.h │ ├── main.cpp │ ├── mapuser.cpp │ ├── mapuser.h │ ├── modelindex.h │ ├── modifications.cpp │ ├── modifications.h │ ├── modified_constructor.cpp │ ├── modified_constructor.h │ ├── multiple_derived.cpp │ ├── multiple_derived.h │ ├── noimplicitconversion.h │ ├── nondefaultctor.h │ ├── nontypetemplate.h │ ├── null.h │ ├── objectmodel.cpp │ ├── objectmodel.h │ ├── objecttype.cpp │ ├── objecttype.h │ ├── objecttypebyvalue.h │ ├── objecttypeholder.cpp │ ├── objecttypeholder.h │ ├── objecttypelayout.cpp │ ├── objecttypelayout.h │ ├── objecttypeoperators.cpp │ ├── objecttypeoperators.h │ ├── objectview.cpp │ ├── objectview.h │ ├── oddbool.cpp │ ├── oddbool.h │ ├── onlycopy.cpp │ ├── onlycopy.h │ ├── overload.cpp │ ├── overload.h │ ├── overloadsort.cpp │ ├── overloadsort.h │ ├── pairuser.cpp │ ├── pairuser.h │ ├── pen.cpp │ ├── pen.h │ ├── photon.cpp │ ├── photon.h │ ├── point.cpp │ ├── point.h │ ├── pointerholder.h │ ├── pointf.cpp │ ├── pointf.h │ ├── polygon.cpp │ ├── polygon.h │ ├── privatector.h │ ├── privatedtor.h │ ├── protected.cpp │ ├── protected.h │ ├── rect.h │ ├── reference.cpp │ ├── reference.h │ ├── removednamespaces.h │ ├── renaming.cpp │ ├── renaming.h │ ├── sample.cpp │ ├── sample.h │ ├── samplenamespace.cpp │ ├── samplenamespace.h │ ├── sbkdate.cpp │ ├── sbkdate.h │ ├── simplefile.cpp │ ├── simplefile.h │ ├── size.cpp │ ├── size.h │ ├── sometime.cpp │ ├── sometime.h │ ├── str.cpp │ ├── str.h │ ├── strlist.cpp │ ├── strlist.h │ ├── templateptr.cpp │ ├── templateptr.h │ ├── transform.cpp │ ├── transform.h │ ├── typesystypedef.cpp │ ├── typesystypedef.h │ ├── valueandvirtual.h │ ├── virtualmethods.cpp │ ├── virtualmethods.h │ └── voidholder.h │ ├── libsmart │ ├── CMakeLists.txt │ ├── libsmartmacros.h │ ├── smart.cpp │ ├── smart.h │ ├── smart_integer.h │ ├── smart_obj.h │ ├── smart_registry.h │ └── smart_sharedptr.h │ ├── minimalbinding │ ├── CMakeLists.txt │ ├── brace_pattern_test.py │ ├── global.h │ ├── listuser_test.py │ ├── minbool_test.py │ ├── minimal-binding.txt.in │ ├── obj_test.py │ ├── typedef_test.py │ ├── typesystem_minimal.xml │ └── val_test.py │ ├── otherbinding │ ├── CMakeLists.txt │ ├── collector_external_operator_test.py │ ├── conversion_operator_for_class_without_implicit_conversions_test.py │ ├── extended_multiply_operator_test.py │ ├── global.h │ ├── module_reload_test.py │ ├── new_ctor_operator_test.py │ ├── objtypehashes_test.py │ ├── other-binding.txt.in │ ├── otherderived_test.py │ ├── othertypesystypedef_test.py │ ├── signature_test.py │ ├── smartptr_test.py │ ├── test_module_template.py │ ├── typediscovery_test.py │ ├── typesystem_other.xml │ ├── usersprimitivefromothermodule_test.py │ └── wrongctor_test.py │ ├── py3k.py │ ├── py3kcompat.py │ ├── samplebinding │ ├── CMakeLists.txt │ ├── __del___test.py │ ├── abstract_test.py │ ├── addedfunction_test.py │ ├── addedfunction_with_container_args_test.py │ ├── argumentmodifications_test.py │ ├── array_numpy_test.py │ ├── array_sequence_test.py │ ├── bug_554_test.py │ ├── bug_704_test.py │ ├── bytearray_bufferprotocol.cpp │ ├── bytearray_test.py │ ├── child_return_test.py │ ├── class_fields_test.py │ ├── collector_test.py │ ├── complex_test.py │ ├── conversion_operator_test.py │ ├── copy_test.py │ ├── ctorconvrule_test.py │ ├── cyclic_test.py │ ├── date_test.py │ ├── decisor_test.py │ ├── delete_test.py │ ├── deprecated_test.py │ ├── derived_test.py │ ├── duck_punching_test.py │ ├── echo_test.py │ ├── enum_test.py │ ├── enumfromremovednamespace_test.py │ ├── event_loop_call_virtual_test.py │ ├── event_loop_thread_test.py │ ├── exception_test.py │ ├── filter_test.py │ ├── global.h │ ├── handleholder_test.py │ ├── hashabletype_test.py │ ├── ignorederefop_test.py │ ├── implicitconv_numerical_test.py │ ├── implicitconv_test.py │ ├── inheritanceandscope_test.py │ ├── injectcode_test.py │ ├── innerclass_test.py │ ├── intlist_test.py │ ├── invalid_virtual_return_test.py │ ├── keep_reference_test.py │ ├── list_test.py │ ├── lock_test.py │ ├── map_test.py │ ├── metaclass_test.py │ ├── mi_virtual_methods_test.py │ ├── mixed_mi_test.py │ ├── modelindex_test.py │ ├── modelview_test.py │ ├── modifications_test.py │ ├── modified_constructor_test.py │ ├── modifiedvirtualmethods_test.py │ ├── multi_cpp_inheritance_test.py │ ├── multiple_derived_test.py │ ├── namespace_test.py │ ├── newdivision_test.py │ ├── nondefaultctor_test.py │ ├── nontypetemplate_test.py │ ├── nonzero_test.py │ ├── numericaltypedef_test.py │ ├── numpy_test.py │ ├── objecttype_test.py │ ├── objecttype_with_named_args_test.py │ ├── objecttypebyvalue_test.py │ ├── objecttypelayout_test.py │ ├── objecttypeoperators_test.py │ ├── objecttypereferenceasvirtualmethodargument_test.py │ ├── oddbool_test.py │ ├── oldstyleclass_as_number_test.py │ ├── onlycopyclass_test.py │ ├── overflow_test.py │ ├── overload_sorting_test.py │ ├── overload_test.py │ ├── overloadwithdefault_test.py │ ├── ownership_argument_invalidation_test.py │ ├── ownership_delete_child_in_cpp_test.py │ ├── ownership_delete_child_in_python_test.py │ ├── ownership_delete_parent_test.py │ ├── ownership_invalidate_after_use_test.py │ ├── ownership_invalidate_child_test.py │ ├── ownership_invalidate_nonpolymorphic_test.py │ ├── ownership_invalidate_parent_test.py │ ├── ownership_reparenting_test.py │ ├── ownership_transference_test.py │ ├── pair_test.py │ ├── pen_test.py │ ├── point_test.py │ ├── pointerholder_test.py │ ├── pointerprimitivetype_test.py │ ├── pointf_test.py │ ├── primitivereferenceargument_test.py │ ├── privatector_test.py │ ├── privatedtor_test.py │ ├── protected_test.py │ ├── pstrlist_test.py │ ├── pystr_test.py │ ├── python_thread_test.py │ ├── receive_null_cstring_test.py │ ├── reference_test.py │ ├── referencetopointer_test.py │ ├── renaming_test.py │ ├── return_null_test.py │ ├── richcompare_test.py │ ├── sample-binding.txt.in │ ├── sample_test.py │ ├── simplefile_glue.cpp │ ├── simplefile_test.py │ ├── size_test.py │ ├── static_nonstatic_methods_test.py │ ├── str_test.py │ ├── strlist_test.py │ ├── templateinheritingclass_test.py │ ├── time_test.py │ ├── transform_test.py │ ├── typeconverters_test.py │ ├── typedealloc_test.py │ ├── typedtordoublefree_test.py │ ├── typesystem_sample.xml │ ├── typesystypedef_test.py │ ├── unsafe_parent_test.py │ ├── useraddedctor_test.py │ ├── virtualdtor_test.py │ ├── virtualmethods_test.py │ ├── visibilitychange_test.py │ ├── voidholder_test.py │ ├── weakref_test.py │ └── writableclassdict_test.py │ ├── shiboken_paths.py │ ├── shiboken_test_helper.py │ ├── shibokenmodule │ └── module_test.py │ ├── smartbinding │ ├── CMakeLists.txt │ ├── global.h │ ├── smart-binding.txt.in │ ├── smart_pointer_test.py │ └── typesystem_smart.xml │ ├── sphinxtabletest.cpp │ ├── sphinxtabletest.h │ └── test_generator │ ├── CMakeLists.txt │ ├── dummygenerator.cpp │ ├── dummygenerator.h │ ├── dummygentest-project.txt.in │ ├── dummygentest.cpp │ ├── dummygentest.h │ ├── dummygentestconfig.h.in │ ├── main.cpp │ ├── run_test.cmake │ ├── test_global.h │ └── test_typesystem.xml ├── testing ├── __init__.py ├── blacklist.py ├── buildlog.py ├── command.py ├── helper.py ├── parser.py ├── runner.py ├── testing.pyproject └── wheel_tester.py ├── testrunner.py └── tools ├── checklibs.py ├── create_changelog.py ├── debug_renamer.py ├── debug_windows.py ├── dump_metaobject.py ├── leak_finder.py ├── metaobject_dump.py ├── metaobject_dump.pyproject ├── missing_bindings-requirements.txt ├── missing_bindings.py ├── qtpy2cpp.py ├── qtpy2cpp.pyproject └── qtpy2cpp_lib ├── astdump.py ├── formatter.py ├── nodedump.py ├── test_baseline ├── basic_test.py └── uic.py ├── tokenizer.py └── visitor.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.COMMERCIAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/LICENSE.COMMERCIAL -------------------------------------------------------------------------------- /LICENSE.FDL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/LICENSE.FDL -------------------------------------------------------------------------------- /LICENSE.GPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/LICENSE.GPL2 -------------------------------------------------------------------------------- /LICENSE.GPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/LICENSE.GPLv3 -------------------------------------------------------------------------------- /LICENSE.GPLv3-EXCEPT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/LICENSE.GPLv3-EXCEPT -------------------------------------------------------------------------------- /LICENSE.LGPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/LICENSE.LGPLv3 -------------------------------------------------------------------------------- /README.cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/README.cmake.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/README.md -------------------------------------------------------------------------------- /README.pyside2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/README.pyside2.md -------------------------------------------------------------------------------- /README.shiboken2-generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/README.shiboken2-generator.md -------------------------------------------------------------------------------- /README.shiboken2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/README.shiboken2.md -------------------------------------------------------------------------------- /coin/instructions/common_environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/coin/instructions/common_environment.yaml -------------------------------------------------------------------------------- /coin/instructions/execute_license_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/coin/instructions/execute_license_check.yaml -------------------------------------------------------------------------------- /coin/instructions/relocate_pyside.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/coin/instructions/relocate_pyside.yaml -------------------------------------------------------------------------------- /coin/module_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/coin/module_config.yaml -------------------------------------------------------------------------------- /coin_build_instructions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/coin_build_instructions.py -------------------------------------------------------------------------------- /coin_test_instructions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/coin_test_instructions.py -------------------------------------------------------------------------------- /dist/changes-1.2.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/dist/changes-1.2.3 -------------------------------------------------------------------------------- /dist/changes-5.12.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/dist/changes-5.12.1 -------------------------------------------------------------------------------- /dist/changes-5.12.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/dist/changes-5.12.2 -------------------------------------------------------------------------------- /dist/changes-5.12.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/dist/changes-5.12.3 -------------------------------------------------------------------------------- /dist/changes-5.12.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/dist/changes-5.12.4 -------------------------------------------------------------------------------- /dist/changes-5.12.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/dist/changes-5.12.5 -------------------------------------------------------------------------------- /dist/changes-5.12.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/dist/changes-5.12.6 -------------------------------------------------------------------------------- /dist/changes-5.13.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/dist/changes-5.13.0 -------------------------------------------------------------------------------- /dist/changes-5.13.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/dist/changes-5.13.1 -------------------------------------------------------------------------------- /dist/changes-5.13.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/dist/changes-5.13.2 -------------------------------------------------------------------------------- /dist/changes-5.14.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/dist/changes-5.14.0 -------------------------------------------------------------------------------- /dist/changes-5.14.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/dist/changes-5.14.1 -------------------------------------------------------------------------------- /dist/changes-5.14.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/dist/changes-5.14.2 -------------------------------------------------------------------------------- /dist/changes-5.14.2.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/dist/changes-5.14.2.2 -------------------------------------------------------------------------------- /dist/changes-5.14.2.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/dist/changes-5.14.2.3 -------------------------------------------------------------------------------- /dist/changes-5.15.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/dist/changes-5.15.0 -------------------------------------------------------------------------------- /dist/changes-5.15.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/dist/changes-5.15.1 -------------------------------------------------------------------------------- /dist/changes-5.15.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/dist/changes-5.15.2 -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | -------------------------------------------------------------------------------- /examples/3d/3d.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["simple3d.py"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/3d/simple3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/3d/simple3d.py -------------------------------------------------------------------------------- /examples/axcontainer/axcontainer.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["axviewer.py"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/axcontainer/axviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/axcontainer/axviewer.py -------------------------------------------------------------------------------- /examples/charts/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/charts/audio.py -------------------------------------------------------------------------------- /examples/charts/callout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/charts/callout.py -------------------------------------------------------------------------------- /examples/charts/charts.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/charts/charts.pyproject -------------------------------------------------------------------------------- /examples/charts/chartthemes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/charts/chartthemes/README.md -------------------------------------------------------------------------------- /examples/charts/chartthemes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/charts/chartthemes/main.py -------------------------------------------------------------------------------- /examples/charts/chartthemes/themewidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/charts/chartthemes/themewidget.ui -------------------------------------------------------------------------------- /examples/charts/chartthemes/ui_themewidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/charts/chartthemes/ui_themewidget.py -------------------------------------------------------------------------------- /examples/charts/donutbreakdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/charts/donutbreakdown.py -------------------------------------------------------------------------------- /examples/charts/legend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/charts/legend.py -------------------------------------------------------------------------------- /examples/charts/lineandbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/charts/lineandbar.py -------------------------------------------------------------------------------- /examples/charts/linechart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/charts/linechart.py -------------------------------------------------------------------------------- /examples/charts/logvalueaxis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/charts/logvalueaxis.py -------------------------------------------------------------------------------- /examples/charts/memoryusage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/charts/memoryusage.py -------------------------------------------------------------------------------- /examples/charts/modeldata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/charts/modeldata.py -------------------------------------------------------------------------------- /examples/charts/nesteddonuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/charts/nesteddonuts.py -------------------------------------------------------------------------------- /examples/charts/percentbarchart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/charts/percentbarchart.py -------------------------------------------------------------------------------- /examples/charts/piechart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/charts/piechart.py -------------------------------------------------------------------------------- /examples/charts/qmlpolarchart/View1.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/charts/qmlpolarchart/View1.qml -------------------------------------------------------------------------------- /examples/charts/qmlpolarchart/View2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/charts/qmlpolarchart/View2.qml -------------------------------------------------------------------------------- /examples/charts/qmlpolarchart/View3.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/charts/qmlpolarchart/View3.qml -------------------------------------------------------------------------------- /examples/charts/qmlpolarchart/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/charts/qmlpolarchart/main.qml -------------------------------------------------------------------------------- /examples/charts/qmlpolarchart/qmlpolarchart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/charts/qmlpolarchart/qmlpolarchart.py -------------------------------------------------------------------------------- /examples/charts/temperaturerecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/charts/temperaturerecords.py -------------------------------------------------------------------------------- /examples/corelib/threads/mandelbrot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/corelib/threads/mandelbrot.py -------------------------------------------------------------------------------- /examples/corelib/threads/threads.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["mandelbrot.py"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/corelib/tools/codecs/codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/corelib/tools/codecs/codecs.py -------------------------------------------------------------------------------- /examples/corelib/tools/codecs/codecs.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["codecs.py"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/corelib/tools/regexp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/corelib/tools/regexp.py -------------------------------------------------------------------------------- /examples/corelib/tools/settingseditor/settingseditor.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["settingseditor.py"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/corelib/tools/tools.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["regexp.py"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/datavisualization/bars3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/datavisualization/bars3d.py -------------------------------------------------------------------------------- /examples/datavisualization/datavisualization.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["bars3d.py"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/declarative/declarative.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/declarative/declarative.pyproject -------------------------------------------------------------------------------- /examples/declarative/extending/chapter1-basics/chapter1-basics.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["basics.py", "app.qml"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/declarative/extending/chapter2-methods/chapter2-methods.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["methods.py", "app.qml"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/declarative/extending/chapter3-bindings/chapter3-bindings.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["app.qml", "bindings.py"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/declarative/scrolling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/declarative/scrolling.py -------------------------------------------------------------------------------- /examples/declarative/signals/pytoqml1/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/declarative/signals/pytoqml1/main.py -------------------------------------------------------------------------------- /examples/declarative/signals/pytoqml1/pytoqml1.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["main.py", "view.qml"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/declarative/signals/pytoqml1/view.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/declarative/signals/pytoqml1/view.qml -------------------------------------------------------------------------------- /examples/declarative/signals/qmltopy1/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/declarative/signals/qmltopy1/main.py -------------------------------------------------------------------------------- /examples/declarative/signals/qmltopy1/qmltopy1.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["main.py", "view.qml"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/declarative/signals/qmltopy1/view.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/declarative/signals/qmltopy1/view.qml -------------------------------------------------------------------------------- /examples/declarative/signals/qmltopy2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/declarative/signals/qmltopy2/main.py -------------------------------------------------------------------------------- /examples/declarative/signals/qmltopy2/qmltopy2.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["main.py", "view.qml"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/declarative/signals/qmltopy2/view.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/declarative/signals/qmltopy2/view.qml -------------------------------------------------------------------------------- /examples/declarative/signals/qmltopy3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/declarative/signals/qmltopy3/main.py -------------------------------------------------------------------------------- /examples/declarative/signals/qmltopy3/qmltopy3.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["main.py", "view.qml"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/declarative/signals/qmltopy3/view.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/declarative/signals/qmltopy3/view.qml -------------------------------------------------------------------------------- /examples/declarative/signals/qmltopy4/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/declarative/signals/qmltopy4/main.py -------------------------------------------------------------------------------- /examples/declarative/signals/qmltopy4/qmltopy4.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["main.py", "view.qml"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/declarative/signals/qmltopy4/view.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/declarative/signals/qmltopy4/view.qml -------------------------------------------------------------------------------- /examples/declarative/textproperties/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/declarative/textproperties/main.py -------------------------------------------------------------------------------- /examples/declarative/textproperties/textproperties.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["main.py", "view.qml"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/declarative/textproperties/view.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/declarative/textproperties/view.qml -------------------------------------------------------------------------------- /examples/declarative/usingmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/declarative/usingmodel.py -------------------------------------------------------------------------------- /examples/declarative/view.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/declarative/view.qml -------------------------------------------------------------------------------- /examples/examples.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/examples.pyproject -------------------------------------------------------------------------------- /examples/external/matplotlib/requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | -------------------------------------------------------------------------------- /examples/external/matplotlib/widget_3dplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/external/matplotlib/widget_3dplot.py -------------------------------------------------------------------------------- /examples/external/opencv/requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python 2 | -------------------------------------------------------------------------------- /examples/external/scikit/requirements.txt: -------------------------------------------------------------------------------- 1 | scikit-image 2 | -------------------------------------------------------------------------------- /examples/installer_test/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/installer_test/hello.py -------------------------------------------------------------------------------- /examples/installer_test/hello_app.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/installer_test/hello_app.spec -------------------------------------------------------------------------------- /examples/macextras/macextras.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["macpasteboardmime.py"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/macextras/macpasteboardmime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/macextras/macpasteboardmime.py -------------------------------------------------------------------------------- /examples/multimedia/audiooutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/multimedia/audiooutput.py -------------------------------------------------------------------------------- /examples/multimedia/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/multimedia/camera.py -------------------------------------------------------------------------------- /examples/multimedia/multimedia.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/multimedia/multimedia.pyproject -------------------------------------------------------------------------------- /examples/multimedia/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/multimedia/player.py -------------------------------------------------------------------------------- /examples/multimedia/shutter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/multimedia/shutter.svg -------------------------------------------------------------------------------- /examples/network/blockingfortuneclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/network/blockingfortuneclient.py -------------------------------------------------------------------------------- /examples/network/fortuneclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/network/fortuneclient.py -------------------------------------------------------------------------------- /examples/network/fortuneserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/network/fortuneserver.py -------------------------------------------------------------------------------- /examples/network/network.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/network/network.pyproject -------------------------------------------------------------------------------- /examples/network/threadedfortuneserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/network/threadedfortuneserver.py -------------------------------------------------------------------------------- /examples/opengl/2dpainting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/opengl/2dpainting.py -------------------------------------------------------------------------------- /examples/opengl/contextinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/opengl/contextinfo.py -------------------------------------------------------------------------------- /examples/opengl/grabber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/opengl/grabber.py -------------------------------------------------------------------------------- /examples/opengl/hellogl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/opengl/hellogl.py -------------------------------------------------------------------------------- /examples/opengl/hellogl2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/opengl/hellogl2.py -------------------------------------------------------------------------------- /examples/opengl/opengl.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/opengl/opengl.pyproject -------------------------------------------------------------------------------- /examples/opengl/overpainting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/opengl/overpainting.py -------------------------------------------------------------------------------- /examples/opengl/samplebuffers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/opengl/samplebuffers.py -------------------------------------------------------------------------------- /examples/opengl/textures/images/side1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/opengl/textures/images/side1.png -------------------------------------------------------------------------------- /examples/opengl/textures/images/side2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/opengl/textures/images/side2.png -------------------------------------------------------------------------------- /examples/opengl/textures/images/side3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/opengl/textures/images/side3.png -------------------------------------------------------------------------------- /examples/opengl/textures/images/side4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/opengl/textures/images/side4.png -------------------------------------------------------------------------------- /examples/opengl/textures/images/side5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/opengl/textures/images/side5.png -------------------------------------------------------------------------------- /examples/opengl/textures/images/side6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/opengl/textures/images/side6.png -------------------------------------------------------------------------------- /examples/opengl/textures/textures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/opengl/textures/textures.py -------------------------------------------------------------------------------- /examples/opengl/textures/textures.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/opengl/textures/textures.pyproject -------------------------------------------------------------------------------- /examples/opengl/textures/textures.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/opengl/textures/textures.qrc -------------------------------------------------------------------------------- /examples/opengl/textures/textures_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/opengl/textures/textures_rc.py -------------------------------------------------------------------------------- /examples/samplebinding/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/samplebinding/CMakeLists.txt -------------------------------------------------------------------------------- /examples/samplebinding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/samplebinding/README.md -------------------------------------------------------------------------------- /examples/samplebinding/bindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/samplebinding/bindings.h -------------------------------------------------------------------------------- /examples/samplebinding/bindings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/samplebinding/bindings.xml -------------------------------------------------------------------------------- /examples/samplebinding/icecream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/samplebinding/icecream.cpp -------------------------------------------------------------------------------- /examples/samplebinding/icecream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/samplebinding/icecream.h -------------------------------------------------------------------------------- /examples/samplebinding/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/samplebinding/macros.h -------------------------------------------------------------------------------- /examples/samplebinding/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/samplebinding/main.py -------------------------------------------------------------------------------- /examples/samplebinding/truck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/samplebinding/truck.cpp -------------------------------------------------------------------------------- /examples/samplebinding/truck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/samplebinding/truck.h -------------------------------------------------------------------------------- /examples/script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/script/README.md -------------------------------------------------------------------------------- /examples/script/helloscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/script/helloscript.py -------------------------------------------------------------------------------- /examples/script/script.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["README.md", "helloscript.py"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/scriptableapplication/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/scriptableapplication/CMakeLists.txt -------------------------------------------------------------------------------- /examples/scriptableapplication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/scriptableapplication/README.md -------------------------------------------------------------------------------- /examples/scriptableapplication/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/scriptableapplication/main.cpp -------------------------------------------------------------------------------- /examples/scriptableapplication/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/scriptableapplication/mainwindow.cpp -------------------------------------------------------------------------------- /examples/scriptableapplication/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/scriptableapplication/mainwindow.h -------------------------------------------------------------------------------- /examples/scriptableapplication/pyside2.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/scriptableapplication/pyside2.pri -------------------------------------------------------------------------------- /examples/scriptableapplication/pythonutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/scriptableapplication/pythonutils.cpp -------------------------------------------------------------------------------- /examples/scriptableapplication/pythonutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/scriptableapplication/pythonutils.h -------------------------------------------------------------------------------- /examples/sql/books/bookdelegate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/sql/books/bookdelegate.py -------------------------------------------------------------------------------- /examples/sql/books/books.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/sql/books/books.pyproject -------------------------------------------------------------------------------- /examples/sql/books/books.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/sql/books/books.qrc -------------------------------------------------------------------------------- /examples/sql/books/bookwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/sql/books/bookwindow.py -------------------------------------------------------------------------------- /examples/sql/books/bookwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/sql/books/bookwindow.ui -------------------------------------------------------------------------------- /examples/sql/books/createdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/sql/books/createdb.py -------------------------------------------------------------------------------- /examples/sql/books/images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/sql/books/images/star.png -------------------------------------------------------------------------------- /examples/sql/books/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/sql/books/main.py -------------------------------------------------------------------------------- /examples/sql/books/rc_books.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/sql/books/rc_books.py -------------------------------------------------------------------------------- /examples/sql/books/ui_bookwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/sql/books/ui_bookwindow.py -------------------------------------------------------------------------------- /examples/texttospeech/texttospeech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/texttospeech/texttospeech.py -------------------------------------------------------------------------------- /examples/texttospeech/texttospeech.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["texttospeech.py"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/tutorial/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/tutorial/t1.py -------------------------------------------------------------------------------- /examples/tutorial/t10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/tutorial/t10.py -------------------------------------------------------------------------------- /examples/tutorial/t11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/tutorial/t11.py -------------------------------------------------------------------------------- /examples/tutorial/t12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/tutorial/t12.py -------------------------------------------------------------------------------- /examples/tutorial/t13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/tutorial/t13.py -------------------------------------------------------------------------------- /examples/tutorial/t14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/tutorial/t14.py -------------------------------------------------------------------------------- /examples/tutorial/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/tutorial/t2.py -------------------------------------------------------------------------------- /examples/tutorial/t3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/tutorial/t3.py -------------------------------------------------------------------------------- /examples/tutorial/t4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/tutorial/t4.py -------------------------------------------------------------------------------- /examples/tutorial/t5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/tutorial/t5.py -------------------------------------------------------------------------------- /examples/tutorial/t6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/tutorial/t6.py -------------------------------------------------------------------------------- /examples/tutorial/t7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/tutorial/t7.py -------------------------------------------------------------------------------- /examples/tutorial/t8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/tutorial/t8.py -------------------------------------------------------------------------------- /examples/tutorial/t9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/tutorial/t9.py -------------------------------------------------------------------------------- /examples/tutorial/tutorial.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/tutorial/tutorial.pyproject -------------------------------------------------------------------------------- /examples/uiloader/uiloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/uiloader/uiloader.py -------------------------------------------------------------------------------- /examples/utils/pyside2_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/utils/pyside2_config.py -------------------------------------------------------------------------------- /examples/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/utils/utils.py -------------------------------------------------------------------------------- /examples/webchannel/standalone/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/webchannel/standalone/core.py -------------------------------------------------------------------------------- /examples/webchannel/standalone/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/webchannel/standalone/dialog.py -------------------------------------------------------------------------------- /examples/webchannel/standalone/dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/webchannel/standalone/dialog.ui -------------------------------------------------------------------------------- /examples/webchannel/standalone/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/webchannel/standalone/index.html -------------------------------------------------------------------------------- /examples/webchannel/standalone/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/webchannel/standalone/main.py -------------------------------------------------------------------------------- /examples/webchannel/standalone/ui_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/webchannel/standalone/ui_dialog.py -------------------------------------------------------------------------------- /examples/webenginequick/browser.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/webenginequick/browser.qml -------------------------------------------------------------------------------- /examples/webenginequick/quicknanobrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/webenginequick/quicknanobrowser.py -------------------------------------------------------------------------------- /examples/webenginewidgets/simplebrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/webenginewidgets/simplebrowser.py -------------------------------------------------------------------------------- /examples/webenginewidgets/webenginewidgets.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["simplebrowser.py"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/widgetbinding/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgetbinding/CMakeLists.txt -------------------------------------------------------------------------------- /examples/widgetbinding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgetbinding/README.md -------------------------------------------------------------------------------- /examples/widgetbinding/bindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgetbinding/bindings.h -------------------------------------------------------------------------------- /examples/widgetbinding/bindings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgetbinding/bindings.xml -------------------------------------------------------------------------------- /examples/widgetbinding/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgetbinding/dialog.py -------------------------------------------------------------------------------- /examples/widgetbinding/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgetbinding/macros.h -------------------------------------------------------------------------------- /examples/widgetbinding/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgetbinding/main.py -------------------------------------------------------------------------------- /examples/widgetbinding/wigglywidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgetbinding/wigglywidget.cpp -------------------------------------------------------------------------------- /examples/widgetbinding/wigglywidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgetbinding/wigglywidget.h -------------------------------------------------------------------------------- /examples/widgetbinding/wigglywidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgetbinding/wigglywidget.py -------------------------------------------------------------------------------- /examples/widgets/animation/appchooser/k3b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/animation/appchooser/k3b.png -------------------------------------------------------------------------------- /examples/widgets/animation/easing/easing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/animation/easing/easing.py -------------------------------------------------------------------------------- /examples/widgets/animation/easing/easing.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/animation/easing/easing.qrc -------------------------------------------------------------------------------- /examples/widgets/animation/easing/easing_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/animation/easing/easing_rc.py -------------------------------------------------------------------------------- /examples/widgets/animation/easing/form.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/animation/easing/form.ui -------------------------------------------------------------------------------- /examples/widgets/animation/easing/ui_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/animation/easing/ui_form.py -------------------------------------------------------------------------------- /examples/widgets/animation/states/states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/animation/states/states.py -------------------------------------------------------------------------------- /examples/widgets/animation/states/states_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/animation/states/states_rc.py -------------------------------------------------------------------------------- /examples/widgets/codeeditor/codeeditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/codeeditor/codeeditor.py -------------------------------------------------------------------------------- /examples/widgets/codeeditor/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/codeeditor/main.py -------------------------------------------------------------------------------- /examples/widgets/dialogs/dialogs.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/dialogs/dialogs.pyproject -------------------------------------------------------------------------------- /examples/widgets/dialogs/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/dialogs/extension.py -------------------------------------------------------------------------------- /examples/widgets/dialogs/findfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/dialogs/findfiles.py -------------------------------------------------------------------------------- /examples/widgets/dialogs/standarddialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/dialogs/standarddialogs.py -------------------------------------------------------------------------------- /examples/widgets/dialogs/trivialwizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/dialogs/trivialwizard.py -------------------------------------------------------------------------------- /examples/widgets/effects/effects.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["lighting.py"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/widgets/effects/lighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/effects/lighting.py -------------------------------------------------------------------------------- /examples/widgets/gallery/gallery.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/gallery/gallery.pyproject -------------------------------------------------------------------------------- /examples/widgets/gallery/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/gallery/main.py -------------------------------------------------------------------------------- /examples/widgets/gallery/widgetgallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/gallery/widgetgallery.py -------------------------------------------------------------------------------- /examples/widgets/graphicsview/anchorlayout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/graphicsview/anchorlayout.py -------------------------------------------------------------------------------- /examples/widgets/graphicsview/elasticnodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/graphicsview/elasticnodes.py -------------------------------------------------------------------------------- /examples/widgets/itemviews/fetchmore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/itemviews/fetchmore.py -------------------------------------------------------------------------------- /examples/widgets/itemviews/itemviews.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/itemviews/itemviews.pyproject -------------------------------------------------------------------------------- /examples/widgets/layouts/basiclayouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/layouts/basiclayouts.py -------------------------------------------------------------------------------- /examples/widgets/layouts/dynamiclayouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/layouts/dynamiclayouts.py -------------------------------------------------------------------------------- /examples/widgets/layouts/flowlayout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/layouts/flowlayout.py -------------------------------------------------------------------------------- /examples/widgets/layouts/layouts.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/layouts/layouts.pyproject -------------------------------------------------------------------------------- /examples/widgets/mainwindows/mdi/mdi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/mainwindows/mdi/mdi.py -------------------------------------------------------------------------------- /examples/widgets/mainwindows/mdi/mdi.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/mainwindows/mdi/mdi.pyproject -------------------------------------------------------------------------------- /examples/widgets/mainwindows/mdi/mdi.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/mainwindows/mdi/mdi.qrc -------------------------------------------------------------------------------- /examples/widgets/mainwindows/mdi/mdi_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/mainwindows/mdi/mdi_rc.py -------------------------------------------------------------------------------- /examples/widgets/painting/concentriccircles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/painting/concentriccircles.py -------------------------------------------------------------------------------- /examples/widgets/painting/painting.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/painting/painting.pyproject -------------------------------------------------------------------------------- /examples/widgets/richtext/orderform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/richtext/orderform.py -------------------------------------------------------------------------------- /examples/widgets/richtext/richtext.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/richtext/richtext.pyproject -------------------------------------------------------------------------------- /examples/widgets/richtext/syntaxhighlighter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/richtext/syntaxhighlighter.py -------------------------------------------------------------------------------- /examples/widgets/richtext/textobject/textobject.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["textobject.py"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/widgets/state-machine/pingpong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/state-machine/pingpong.py -------------------------------------------------------------------------------- /examples/widgets/state-machine/rogue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/state-machine/rogue.py -------------------------------------------------------------------------------- /examples/widgets/systray/images/bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/systray/images/bad.png -------------------------------------------------------------------------------- /examples/widgets/systray/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/systray/images/heart.png -------------------------------------------------------------------------------- /examples/widgets/systray/images/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/systray/images/trash.png -------------------------------------------------------------------------------- /examples/widgets/systray/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/systray/main.py -------------------------------------------------------------------------------- /examples/widgets/systray/rc_systray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/systray/rc_systray.py -------------------------------------------------------------------------------- /examples/widgets/systray/systray.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/systray/systray.pyproject -------------------------------------------------------------------------------- /examples/widgets/systray/systray.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/systray/systray.qrc -------------------------------------------------------------------------------- /examples/widgets/systray/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/systray/window.py -------------------------------------------------------------------------------- /examples/widgets/threads/thread_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/threads/thread_signals.py -------------------------------------------------------------------------------- /examples/widgets/widgets/tetrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/widgets/tetrix.py -------------------------------------------------------------------------------- /examples/widgets/widgets/widgets.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/widgets/widgets/widgets.pyproject -------------------------------------------------------------------------------- /examples/xml/dombookmarks/dombookmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/xml/dombookmarks/dombookmarks.py -------------------------------------------------------------------------------- /examples/xml/dombookmarks/frank.xbel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/xml/dombookmarks/frank.xbel -------------------------------------------------------------------------------- /examples/xml/dombookmarks/jennifer.xbel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/xml/dombookmarks/jennifer.xbel -------------------------------------------------------------------------------- /examples/xmlpatterns/schema/files/order.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/xmlpatterns/schema/files/order.xsd -------------------------------------------------------------------------------- /examples/xmlpatterns/schema/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/xmlpatterns/schema/schema.py -------------------------------------------------------------------------------- /examples/xmlpatterns/schema/schema.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/xmlpatterns/schema/schema.qrc -------------------------------------------------------------------------------- /examples/xmlpatterns/schema/schema.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/xmlpatterns/schema/schema.ui -------------------------------------------------------------------------------- /examples/xmlpatterns/schema/schema_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/xmlpatterns/schema/schema_rc.py -------------------------------------------------------------------------------- /examples/xmlpatterns/schema/ui_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/examples/xmlpatterns/schema/ui_schema.py -------------------------------------------------------------------------------- /ez_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/ez_setup.py -------------------------------------------------------------------------------- /header.BSD-OLD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/header.BSD-OLD -------------------------------------------------------------------------------- /keyword-errors.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/keyword-errors.lst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/setup.py -------------------------------------------------------------------------------- /sources/cmake_helpers/helpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/cmake_helpers/helpers.cmake -------------------------------------------------------------------------------- /sources/patchelf/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/patchelf/COPYING -------------------------------------------------------------------------------- /sources/patchelf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/patchelf/README -------------------------------------------------------------------------------- /sources/patchelf/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/patchelf/elf.h -------------------------------------------------------------------------------- /sources/patchelf/patchelf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/patchelf/patchelf.cc -------------------------------------------------------------------------------- /sources/pyside2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/CMakeLists.txt -------------------------------------------------------------------------------- /sources/pyside2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/COPYING -------------------------------------------------------------------------------- /sources/pyside2/PySide2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/PySide2/CMakeLists.txt -------------------------------------------------------------------------------- /sources/pyside2/PySide2/QtGui/QtGui_global.post.h.in: -------------------------------------------------------------------------------- 1 | #include "qpytextobject.h" // PySide class 2 | -------------------------------------------------------------------------------- /sources/pyside2/PySide2/QtTest/QtTest_global.post.h.in: -------------------------------------------------------------------------------- 1 | #include "pysideqtesttouch.h" 2 | -------------------------------------------------------------------------------- /sources/pyside2/PySide2/QtX11Extras/QtX11Extras_global.post.h.in: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sources/pyside2/PySide2/__init__.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/PySide2/__init__.py.in -------------------------------------------------------------------------------- /sources/pyside2/PySide2/_config.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/PySide2/_config.py.in -------------------------------------------------------------------------------- /sources/pyside2/PySide2/global.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/PySide2/global.h.in -------------------------------------------------------------------------------- /sources/pyside2/PySide2/glue/qtcharts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/PySide2/glue/qtcharts.cpp -------------------------------------------------------------------------------- /sources/pyside2/PySide2/glue/qtcore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/PySide2/glue/qtcore.cpp -------------------------------------------------------------------------------- /sources/pyside2/PySide2/glue/qtgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/PySide2/glue/qtgui.cpp -------------------------------------------------------------------------------- /sources/pyside2/PySide2/glue/qtnetwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/PySide2/glue/qtnetwork.cpp -------------------------------------------------------------------------------- /sources/pyside2/PySide2/glue/qtopengl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/PySide2/glue/qtopengl.cpp -------------------------------------------------------------------------------- /sources/pyside2/PySide2/glue/qtqml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/PySide2/glue/qtqml.cpp -------------------------------------------------------------------------------- /sources/pyside2/PySide2/glue/qtquick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/PySide2/glue/qtquick.cpp -------------------------------------------------------------------------------- /sources/pyside2/PySide2/glue/qtscript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/PySide2/glue/qtscript.cpp -------------------------------------------------------------------------------- /sources/pyside2/PySide2/glue/qtuitools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/PySide2/glue/qtuitools.cpp -------------------------------------------------------------------------------- /sources/pyside2/PySide2/glue/qtwidgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/PySide2/glue/qtwidgets.cpp -------------------------------------------------------------------------------- /sources/pyside2/PySide2/glue/qtxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/PySide2/glue/qtxml.cpp -------------------------------------------------------------------------------- /sources/pyside2/PySide2/licensecomment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/PySide2/licensecomment.txt -------------------------------------------------------------------------------- /sources/pyside2/PySide2/py.typed.in: -------------------------------------------------------------------------------- 1 | # this is a marker file for mypy 2 | -------------------------------------------------------------------------------- /sources/pyside2/PySide2/pysideqtesttouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/PySide2/pysideqtesttouch.h -------------------------------------------------------------------------------- /sources/pyside2/PySide2/pysidewtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/PySide2/pysidewtypes.h -------------------------------------------------------------------------------- /sources/pyside2/PySide2/qpytextobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/PySide2/qpytextobject.cpp -------------------------------------------------------------------------------- /sources/pyside2/PySide2/qpytextobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/PySide2/qpytextobject.h -------------------------------------------------------------------------------- /sources/pyside2/PySide2/qt.conf.in: -------------------------------------------------------------------------------- 1 | [Paths] 2 | Prefix = @QT_CONF_PREFIX@ 3 | -------------------------------------------------------------------------------- /sources/pyside2/PySide2/support/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/PySide2/support/__init__.py -------------------------------------------------------------------------------- /sources/pyside2/cmake/Macros/icecc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/cmake/Macros/icecc.cmake -------------------------------------------------------------------------------- /sources/pyside2/cmake_uninstall.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/cmake_uninstall.cmake -------------------------------------------------------------------------------- /sources/pyside2/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/CMakeLists.txt -------------------------------------------------------------------------------- /sources/pyside2/doc/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/_templates/layout.html -------------------------------------------------------------------------------- /sources/pyside2/doc/additionaldocs.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/additionaldocs.lst -------------------------------------------------------------------------------- /sources/pyside2/doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/api.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/codesnippets/doc/src/snippets/patternist/anyHTMLElement.xq: -------------------------------------------------------------------------------- 1 | doc('data.xml')/*:body 2 | -------------------------------------------------------------------------------- /sources/pyside2/doc/codesnippets/doc/src/snippets/patternist/bracesIncluded.xq: -------------------------------------------------------------------------------- 1 | {sum((1, 2, 3))} 2 | -------------------------------------------------------------------------------- /sources/pyside2/doc/codesnippets/doc/src/snippets/patternist/bracesIncludedResult.xml: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /sources/pyside2/doc/codesnippets/doc/src/snippets/patternist/bracesOmitted.xq: -------------------------------------------------------------------------------- 1 | sum({(1, 2, 3)}) 2 | -------------------------------------------------------------------------------- /sources/pyside2/doc/codesnippets/doc/src/snippets/patternist/docPlainHTML.xq: -------------------------------------------------------------------------------- 1 | doc("myPlainHTML.html")/body 2 | -------------------------------------------------------------------------------- /sources/pyside2/doc/codesnippets/doc/src/snippets/patternist/emptyParagraphs.xq: -------------------------------------------------------------------------------- 1 | doc('index.html')//p[string-length(.) = 0] 2 | -------------------------------------------------------------------------------- /sources/pyside2/doc/codesnippets/doc/src/snippets/patternist/nextLastParagraph.xq: -------------------------------------------------------------------------------- 1 | doc('index.html')//p[last() - 1] 2 | -------------------------------------------------------------------------------- /sources/pyside2/doc/codesnippets/doc/src/snippets/patternist/nodeConstructorsInPaths.xq: -------------------------------------------------------------------------------- 1 | doc('feed.rss')//item/

{description/node()}

2 | -------------------------------------------------------------------------------- /sources/pyside2/doc/codesnippets/doc/src/snippets/patternist/notIndented.xml: -------------------------------------------------------------------------------- 1 |

Some Text

2 | -------------------------------------------------------------------------------- /sources/pyside2/doc/codesnippets/doc/src/snippets/patternist/oneElementConstructor.xq: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sources/pyside2/doc/codesnippets/doc/src/snippets/patternist/paragraphsExceptTheFiveFirst.xq: -------------------------------------------------------------------------------- 1 | doc('index.html')//p[position() > 5] 2 | -------------------------------------------------------------------------------- /sources/pyside2/doc/codesnippets/doc/src/snippets/patternist/pathAB.xq: -------------------------------------------------------------------------------- 1 | doc('index.html')//p/span 2 | -------------------------------------------------------------------------------- /sources/pyside2/doc/codesnippets/doc/src/snippets/patternist/pathsAllParagraphs.xq: -------------------------------------------------------------------------------- 1 | doc('index.html')//p 2 | -------------------------------------------------------------------------------- /sources/pyside2/doc/codesnippets/doc/src/snippets/patternist/svgDocumentElement.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sources/pyside2/doc/codesnippets/doc/src/snippets/patternist/xmlStylesheet.xq: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sources/pyside2/doc/codesnippets/doc/src/snippets/patternist/xsBooleanTrue.xq: -------------------------------------------------------------------------------- 1 | xs:boolean("true") 2 | -------------------------------------------------------------------------------- /sources/pyside2/doc/codesnippets/doc/src/snippets/patternist/xsvgDocumentElement.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/accountsfile.txt: -------------------------------------------------------------------------------- 1 | 1 + 1 = 2 2 | -------------------------------------------------------------------------------- /sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/reportfile.txt: -------------------------------------------------------------------------------- 1 | Tax this year = 50% 2 | Total profit = 2 3 | -------------------------------------------------------------------------------- /sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/taxfile.txt: -------------------------------------------------------------------------------- 1 | Tax this year = 50% 2 | -------------------------------------------------------------------------------- /sources/pyside2/doc/conf.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/conf.py.in -------------------------------------------------------------------------------- /sources/pyside2/doc/considerations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/considerations.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/contents.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/deployment-cxfreeze.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/deployment-cxfreeze.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/deployment-fbs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/deployment-fbs.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/deployment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/deployment.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/examples/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/examples/index.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/extras/QtCore.QEnum.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/extras/QtCore.QEnum.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/extras/QtCore.Slot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/extras/QtCore.Slot.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/extras/QtCore.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/extras/QtCore.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/extras/QtGui.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/extras/QtGui.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/extras/QtHelp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/extras/QtHelp.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/extras/QtMultimedia.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/extras/QtMultimedia.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/extras/QtNetwork.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/extras/QtNetwork.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/extras/QtOpenGL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/extras/QtOpenGL.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/extras/QtScript.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/extras/QtScript.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/extras/QtSql.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/extras/QtSql.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/extras/QtSvg.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/extras/QtSvg.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/extras/QtTest.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/extras/QtTest.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/extras/QtUiTools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/extras/QtUiTools.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/extras/QtWebKit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/extras/QtWebKit.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/extras/QtXml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/extras/QtXml.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/faq.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/gettingstarted.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/gettingstarted.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/index.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/inheritance_diagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/inheritance_diagram.py -------------------------------------------------------------------------------- /sources/pyside2/doc/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/modules.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/pysideinclude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/pysideinclude.py -------------------------------------------------------------------------------- /sources/pyside2/doc/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/quickstart.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/src/README.md -------------------------------------------------------------------------------- /sources/pyside2/doc/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/tutorials/index.rst -------------------------------------------------------------------------------- /sources/pyside2/doc/typesystem_doc.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/typesystem_doc.xml.in -------------------------------------------------------------------------------- /sources/pyside2/doc/videos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/doc/videos.rst -------------------------------------------------------------------------------- /sources/pyside2/libpyside/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/libpyside/CMakeLists.txt -------------------------------------------------------------------------------- /sources/pyside2/libpyside/feature_select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/libpyside/feature_select.h -------------------------------------------------------------------------------- /sources/pyside2/libpyside/pyside.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/libpyside/pyside.cpp -------------------------------------------------------------------------------- /sources/pyside2/libpyside/pyside.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/libpyside/pyside.h -------------------------------------------------------------------------------- /sources/pyside2/libpyside/pyside2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/libpyside/pyside2.pc.in -------------------------------------------------------------------------------- /sources/pyside2/libpyside/pyside_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/libpyside/pyside_p.h -------------------------------------------------------------------------------- /sources/pyside2/libpyside/pysideclassinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/libpyside/pysideclassinfo.h -------------------------------------------------------------------------------- /sources/pyside2/libpyside/pysidemacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/libpyside/pysidemacros.h -------------------------------------------------------------------------------- /sources/pyside2/libpyside/pysideproperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/libpyside/pysideproperty.h -------------------------------------------------------------------------------- /sources/pyside2/libpyside/pysideqenum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/libpyside/pysideqenum.cpp -------------------------------------------------------------------------------- /sources/pyside2/libpyside/pysideqenum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/libpyside/pysideqenum.h -------------------------------------------------------------------------------- /sources/pyside2/libpyside/pysideqflags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/libpyside/pysideqflags.cpp -------------------------------------------------------------------------------- /sources/pyside2/libpyside/pysideqflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/libpyside/pysideqflags.h -------------------------------------------------------------------------------- /sources/pyside2/libpyside/pysidesignal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/libpyside/pysidesignal.cpp -------------------------------------------------------------------------------- /sources/pyside2/libpyside/pysidesignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/libpyside/pysidesignal.h -------------------------------------------------------------------------------- /sources/pyside2/libpyside/pysidesignal_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/libpyside/pysidesignal_p.h -------------------------------------------------------------------------------- /sources/pyside2/libpyside/pysideslot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/libpyside/pysideslot.cpp -------------------------------------------------------------------------------- /sources/pyside2/libpyside/pysideslot_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/libpyside/pysideslot_p.h -------------------------------------------------------------------------------- /sources/pyside2/libpyside/pysideweakref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/libpyside/pysideweakref.cpp -------------------------------------------------------------------------------- /sources/pyside2/libpyside/pysideweakref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/libpyside/pysideweakref.h -------------------------------------------------------------------------------- /sources/pyside2/libpyside/signalmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/libpyside/signalmanager.cpp -------------------------------------------------------------------------------- /sources/pyside2/libpyside/signalmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/libpyside/signalmanager.h -------------------------------------------------------------------------------- /sources/pyside2/plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /sources/pyside2/plugins/customwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/plugins/customwidget.cpp -------------------------------------------------------------------------------- /sources/pyside2/plugins/customwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/plugins/customwidget.h -------------------------------------------------------------------------------- /sources/pyside2/plugins/customwidgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/plugins/customwidgets.cpp -------------------------------------------------------------------------------- /sources/pyside2/plugins/customwidgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/plugins/customwidgets.h -------------------------------------------------------------------------------- /sources/pyside2/pyside_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/pyside_version.py -------------------------------------------------------------------------------- /sources/pyside2/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/CMakeLists.txt -------------------------------------------------------------------------------- /sources/pyside2/tests/Qt3DAnimation/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Please add some tests, here 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/Qt3DCore/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Please add some tests, here 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/Qt3DExtras/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | PYSIDE_TEST(qt3dextras_test.py) 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/Qt3DInput/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Please add some tests, here 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/Qt3DLogic/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Please add some tests, here 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/Qt3DQuick/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Please add some tests, here 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/Qt3DRender/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Please add some tests, here 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtAxContainer/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Please add some tests, here 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCharts/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | PYSIDE_TEST(qcharts_test.py) 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtConcurrent/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Please add some tests, here 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/CMakeLists.txt -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_1019.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_1019.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_1031.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_1031.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_1063.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_1063.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_1069.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_1069.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_1313.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_1313.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_332.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_332.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_408.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_408.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_428.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_428.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_462.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_462.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_505.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_505.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_515.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_515.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_606.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_606.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_656.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_656.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_686.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_686.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_699.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_699.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_706.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_706.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_820.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_820.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_826.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_826.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_829.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_829.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_835.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_835.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_920.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_920.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_927.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_927.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_931.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_931.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_938.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_938.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_953.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_953.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_987.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_987.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/bug_994.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/bug_994.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/hash_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/hash_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/max_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/max_signals.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/qabs_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/qabs_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/qcbor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/qcbor_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/qdate_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/qdate_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/qenum_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/qenum_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/qevent_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/qevent_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/qfile_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/qfile_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/qflags_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/qflags_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/qlinef_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/qlinef_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/qpoint_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/qpoint_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/qrect_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/qrect_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/qsize_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/qsize_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/qsrand_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/qsrand_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/qstate_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/qstate_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/quoteEnUS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/quoteEnUS.txt -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/qurl_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/qurl_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/quuid_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/quuid_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/repr_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/repr_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/resources.qrc -------------------------------------------------------------------------------- /sources/pyside2/tests/QtCore/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtCore/sample.png -------------------------------------------------------------------------------- /sources/pyside2/tests/QtDataVisualization/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | PYSIDE_TEST(datavisualization_test.py) 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtDesigner/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Please add some tests, here 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtGui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtGui/CMakeLists.txt -------------------------------------------------------------------------------- /sources/pyside2/tests/QtGui/bug_1091.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtGui/bug_1091.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtGui/bug_300_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtGui/bug_300_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtGui/bug_367.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtGui/bug_367.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtGui/bug_480.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtGui/bug_480.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtGui/bug_606.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtGui/bug_606.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtGui/bug_617.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtGui/bug_617.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtGui/bug_652.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtGui/bug_652.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtGui/bug_660.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtGui/bug_660.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtGui/bug_716.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtGui/bug_716.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtGui/bug_740.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtGui/bug_740.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtGui/bug_743.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtGui/bug_743.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtGui/bug_991.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtGui/bug_991.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtGui/qcolor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtGui/qcolor_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtGui/qcursor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtGui/qcursor_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtGui/qicon_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtGui/qicon_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtGui/qmatrix_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtGui/qmatrix_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtGui/qpixmap_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtGui/qpixmap_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtGui/qregion_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtGui/qregion_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtGui/repr_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtGui/repr_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtGui/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtGui/sample.png -------------------------------------------------------------------------------- /sources/pyside2/tests/QtHelp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtHelp/CMakeLists.txt -------------------------------------------------------------------------------- /sources/pyside2/tests/QtHelp/help_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtHelp/help_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtLocation/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | PYSIDE_TEST(location.py) 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtMacExtras/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Please add some tests, here 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtMultimedia/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | PYSIDE_TEST(audio_test.py) 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtMultimediaWidgets/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | PYSIDE_TEST(qmultimediawidgets.py) 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtNetwork/bug_1084.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtNetwork/bug_1084.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtNetwork/bug_446.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtNetwork/bug_446.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtOpenGLFunctions/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Please add some tests, here 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtPositioning/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | PYSIDE_TEST(positioning.py) 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/CMakeLists.txt -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/bug_1029.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/bug_1029.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/bug_1029.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/bug_1029.qml -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/bug_451.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/bug_451.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/bug_451.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/bug_451.qml -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/bug_456.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/bug_456.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/bug_456.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/bug_456.qml -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/bug_557.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/bug_557.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/bug_726.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/bug_726.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/bug_726.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/bug_726.qml -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/bug_814.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/bug_814.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/bug_814.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/bug_814.qml -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/bug_825.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/bug_825.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/bug_825.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/bug_825.qml -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/bug_847.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/bug_847.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/bug_847.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/bug_847.qml -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/bug_915.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/bug_915.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/bug_926.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/bug_926.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/bug_926.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/bug_926.qml -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/bug_951.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/bug_951.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/bug_951.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/bug_951.qml -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/bug_995.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/bug_995.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/bug_995.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/bug_995.qml -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/bug_997.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/bug_997.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/bug_997.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/bug_997.qml -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/hw.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/hw.qml -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/registertype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/registertype.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/view.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/view.qml -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQml/viewmodel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtQml/viewmodel.qml -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQuick/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Please add some tests, here 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQuickControls2/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Please add some tests, here 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtQuickWidgets/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Please add some tests, here 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtRemoteObjects/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Please add some tests, here 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtScript/base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtScript/base_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtScript/bug_1022.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtScript/bug_1022.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtScriptTools/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | PYSIDE_TEST(debugger_test.py) 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtScxml/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | PYSIDE_TEST(test_dynamic.py) 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtSensors/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | PYSIDE_TEST(sensors.py) 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtSensors/sensors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtSensors/sensors.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtSerialPort/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | PYSIDE_TEST(serial.py) 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtSql/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtSql/CMakeLists.txt -------------------------------------------------------------------------------- /sources/pyside2/tests/QtSql/bug_1013.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtSql/bug_1013.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtSvg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtSvg/CMakeLists.txt -------------------------------------------------------------------------------- /sources/pyside2/tests/QtSvg/tiger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtSvg/tiger.svg -------------------------------------------------------------------------------- /sources/pyside2/tests/QtTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtTest/CMakeLists.txt -------------------------------------------------------------------------------- /sources/pyside2/tests/QtTest/click_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtTest/click_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtTextToSpeech/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | PYSIDE_TEST(qtexttospeech_test.py) 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtUiTools/action.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtUiTools/action.ui -------------------------------------------------------------------------------- /sources/pyside2/tests/QtUiTools/bug_1060.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtUiTools/bug_1060.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtUiTools/bug_1060.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtUiTools/bug_1060.ui -------------------------------------------------------------------------------- /sources/pyside2/tests/QtUiTools/bug_360.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtUiTools/bug_360.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtUiTools/bug_376.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtUiTools/bug_376.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtUiTools/bug_392.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtUiTools/bug_392.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtUiTools/bug_426.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtUiTools/bug_426.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtUiTools/bug_426.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtUiTools/bug_426.ui -------------------------------------------------------------------------------- /sources/pyside2/tests/QtUiTools/bug_552.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtUiTools/bug_552.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtUiTools/bug_552.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtUiTools/bug_552.ui -------------------------------------------------------------------------------- /sources/pyside2/tests/QtUiTools/bug_797.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtUiTools/bug_797.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtUiTools/bug_909.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtUiTools/bug_909.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtUiTools/bug_909.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtUiTools/bug_909.ui -------------------------------------------------------------------------------- /sources/pyside2/tests/QtUiTools/bug_913.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtUiTools/bug_913.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtUiTools/bug_913.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtUiTools/bug_913.ui -------------------------------------------------------------------------------- /sources/pyside2/tests/QtUiTools/bug_958.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtUiTools/bug_958.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtUiTools/bug_958.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtUiTools/bug_958.ui -------------------------------------------------------------------------------- /sources/pyside2/tests/QtUiTools/bug_965.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtUiTools/bug_965.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtUiTools/bug_965.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtUiTools/bug_965.ui -------------------------------------------------------------------------------- /sources/pyside2/tests/QtUiTools/minimal.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtUiTools/minimal.ui -------------------------------------------------------------------------------- /sources/pyside2/tests/QtUiTools/test.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtUiTools/test.ui -------------------------------------------------------------------------------- /sources/pyside2/tests/QtUiTools/ui_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtUiTools/ui_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWebChannel/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Please add some tests, here 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWebKit/bug_448.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWebKit/bug_448.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWebKit/bug_694.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWebKit/bug_694.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWebKit/bug_803.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWebKit/bug_803.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWebKit/bug_899.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWebKit/bug_899.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWebKit/bug_959.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWebKit/bug_959.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWebKit/fox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWebKit/fox.html -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWebKit/qmlplugin/dummy.pys: -------------------------------------------------------------------------------- 1 | Foobar! 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWebKitWidgets/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Please add some tests, here 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWebSockets/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Please add some tests, here 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_1002.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_1002.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_1006.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_1006.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_1048.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_1048.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_1077.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_1077.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_172.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_172.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_243.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_243.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_307.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_307.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_324.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_324.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_338.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_338.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_363.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_363.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_389.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_389.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_400.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_400.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_416.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_416.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_429.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_429.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_430.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_430.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_433.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_433.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_467.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_467.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_493.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_493.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_512.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_525.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_525.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_546.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_546.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_547.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_547.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_549.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_549.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_569.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_569.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_575.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_575.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_576.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_576.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_585.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_585.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_589.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_589.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_632.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_632.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_635.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_635.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_640.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_640.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_653.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_653.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_662.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_662.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_667.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_667.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_668.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_668.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_674.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_674.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_675.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_675.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_688.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_688.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_693.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_693.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_696.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_696.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_711.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_711.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_714.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_714.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_722.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_722.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_728.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_728.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_736.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_736.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_750.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_750.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_778.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_778.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_785.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_785.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_793.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_793.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_811.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_811.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_834.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_834.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_836.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_836.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_844.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_844.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_854.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_854.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_860.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_860.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_862.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_862.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_871.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_871.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_879.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_879.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_919.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_919.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_921.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_921.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_941.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_941.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_964.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_964.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_967.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_967.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_972.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_972.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_979.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_979.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_988.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_988.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/bug_998.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/bug_998.py -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWidgets/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtWidgets/sample.png -------------------------------------------------------------------------------- /sources/pyside2/tests/QtWinExtras/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Please add some tests, here 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtX11Extras/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Please add some tests, here 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/QtXml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/QtXml/CMakeLists.txt -------------------------------------------------------------------------------- /sources/pyside2/tests/QtXmlPatterns/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | PYSIDE_TEST(import_test.py) 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/init_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/init_paths.py -------------------------------------------------------------------------------- /sources/pyside2/tests/mac/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | PYSIDE_TEST(qmacstyle_test.py) 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/mac/qmacstyle_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/mac/qmacstyle_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/manually/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/manually/README.txt -------------------------------------------------------------------------------- /sources/pyside2/tests/manually/bug_841.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/manually/bug_841.py -------------------------------------------------------------------------------- /sources/pyside2/tests/pysidetest/testview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/pysidetest/testview.h -------------------------------------------------------------------------------- /sources/pyside2/tests/registry/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/registry/util.py -------------------------------------------------------------------------------- /sources/pyside2/tests/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/run_test.sh -------------------------------------------------------------------------------- /sources/pyside2/tests/signals/bug_189.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/signals/bug_189.py -------------------------------------------------------------------------------- /sources/pyside2/tests/signals/bug_311.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/signals/bug_311.py -------------------------------------------------------------------------------- /sources/pyside2/tests/signals/bug_312.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/signals/bug_312.py -------------------------------------------------------------------------------- /sources/pyside2/tests/signals/bug_319.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/signals/bug_319.py -------------------------------------------------------------------------------- /sources/pyside2/tests/signals/bug_79.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/signals/bug_79.py -------------------------------------------------------------------------------- /sources/pyside2/tests/signals/ref01_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/signals/ref01_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/signals/ref02_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/signals/ref02_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/signals/ref03_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/signals/ref03_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/signals/ref04_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/signals/ref04_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/signals/ref05_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/signals/ref05_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/signals/ref06_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/signals/ref06_test.py -------------------------------------------------------------------------------- /sources/pyside2/tests/support/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | PYSIDE_TEST(voidptr_test.py) 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/util/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/util/color.py -------------------------------------------------------------------------------- /sources/pyside2/tests/util/helper/__init__.py: -------------------------------------------------------------------------------- 1 | # This file intentionally left blank. 2 | -------------------------------------------------------------------------------- /sources/pyside2/tests/util/helper/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/util/helper/helper.py -------------------------------------------------------------------------------- /sources/pyside2/tests/util/httpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/util/httpd.py -------------------------------------------------------------------------------- /sources/pyside2/tests/util/module_wrapper/PySide/QtAssistant.py: -------------------------------------------------------------------------------- 1 | 2 | from PyQt4.QtAssistant import * 3 | -------------------------------------------------------------------------------- /sources/pyside2/tests/util/module_wrapper/PySide/QtCore.py: -------------------------------------------------------------------------------- 1 | 2 | from PyQt4.QtCore import * 3 | -------------------------------------------------------------------------------- /sources/pyside2/tests/util/module_wrapper/PySide/QtDesigner.py: -------------------------------------------------------------------------------- 1 | 2 | from PyQt4.QtDesigner import * 3 | -------------------------------------------------------------------------------- /sources/pyside2/tests/util/module_wrapper/PySide/QtGui.py: -------------------------------------------------------------------------------- 1 | 2 | from PyQt4.QtGui import * 3 | -------------------------------------------------------------------------------- /sources/pyside2/tests/util/module_wrapper/PySide/QtHelp.py: -------------------------------------------------------------------------------- 1 | 2 | from PyQt4.QtHelp import * 3 | -------------------------------------------------------------------------------- /sources/pyside2/tests/util/module_wrapper/PySide/QtNetwork.py: -------------------------------------------------------------------------------- 1 | 2 | from PyQt4.QtNetwork import * 3 | -------------------------------------------------------------------------------- /sources/pyside2/tests/util/module_wrapper/PySide/QtScript.py: -------------------------------------------------------------------------------- 1 | 2 | from PyQt4.QtScript import * 3 | -------------------------------------------------------------------------------- /sources/pyside2/tests/util/module_wrapper/PySide/QtSql.py: -------------------------------------------------------------------------------- 1 | 2 | from PyQt4.QtSql import * 3 | -------------------------------------------------------------------------------- /sources/pyside2/tests/util/module_wrapper/PySide/QtSvg.py: -------------------------------------------------------------------------------- 1 | 2 | from PyQt4.QtSvg import * 3 | -------------------------------------------------------------------------------- /sources/pyside2/tests/util/module_wrapper/PySide/QtTest.py: -------------------------------------------------------------------------------- 1 | 2 | from PyQt4.QtTest import * 3 | -------------------------------------------------------------------------------- /sources/pyside2/tests/util/module_wrapper/PySide/QtWebKit.py: -------------------------------------------------------------------------------- 1 | 2 | from PyQt4.QtWebKit import * 3 | -------------------------------------------------------------------------------- /sources/pyside2/tests/util/module_wrapper/PySide/QtXml.py: -------------------------------------------------------------------------------- 1 | 2 | from PyQt4.QtXml import * 3 | -------------------------------------------------------------------------------- /sources/pyside2/tests/util/module_wrapper/PySide/QtXmlPatterns.py: -------------------------------------------------------------------------------- 1 | 2 | from PyQt4.QtXmlPatterns import * 3 | -------------------------------------------------------------------------------- /sources/pyside2/tests/util/module_wrapper/PySide/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/pyside2/tests/util/processtimer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/util/processtimer.py -------------------------------------------------------------------------------- /sources/pyside2/tests/util/py3kcompat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/util/py3kcompat.py -------------------------------------------------------------------------------- /sources/pyside2/tests/util/pyqt_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/util/pyqt_diff.py -------------------------------------------------------------------------------- /sources/pyside2/tests/util/pyqtcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/util/pyqtcheck.py -------------------------------------------------------------------------------- /sources/pyside2/tests/util/use_pyqt4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/util/use_pyqt4.sh -------------------------------------------------------------------------------- /sources/pyside2/tests/util/use_pyside.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/pyside2/tests/util/use_pyside.sh -------------------------------------------------------------------------------- /sources/shiboken2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/AUTHORS -------------------------------------------------------------------------------- /sources/shiboken2/ApiExtractor/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/ApiExtractor/AUTHORS -------------------------------------------------------------------------------- /sources/shiboken2/ApiExtractor/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/ApiExtractor/COPYING -------------------------------------------------------------------------------- /sources/shiboken2/ApiExtractor/dependency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/ApiExtractor/dependency.h -------------------------------------------------------------------------------- /sources/shiboken2/ApiExtractor/docparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/ApiExtractor/docparser.h -------------------------------------------------------------------------------- /sources/shiboken2/ApiExtractor/fileout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/ApiExtractor/fileout.cpp -------------------------------------------------------------------------------- /sources/shiboken2/ApiExtractor/fileout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/ApiExtractor/fileout.h -------------------------------------------------------------------------------- /sources/shiboken2/ApiExtractor/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/ApiExtractor/graph.cpp -------------------------------------------------------------------------------- /sources/shiboken2/ApiExtractor/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/ApiExtractor/graph.h -------------------------------------------------------------------------------- /sources/shiboken2/ApiExtractor/icecc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/ApiExtractor/icecc.cmake -------------------------------------------------------------------------------- /sources/shiboken2/ApiExtractor/include.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/ApiExtractor/include.cpp -------------------------------------------------------------------------------- /sources/shiboken2/ApiExtractor/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/ApiExtractor/include.h -------------------------------------------------------------------------------- /sources/shiboken2/ApiExtractor/merge.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/ApiExtractor/merge.xsl -------------------------------------------------------------------------------- /sources/shiboken2/ApiExtractor/messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/ApiExtractor/messages.cpp -------------------------------------------------------------------------------- /sources/shiboken2/ApiExtractor/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/ApiExtractor/messages.h -------------------------------------------------------------------------------- /sources/shiboken2/ApiExtractor/qtcompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/ApiExtractor/qtcompat.h -------------------------------------------------------------------------------- /sources/shiboken2/ApiExtractor/tests/a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/ApiExtractor/tests/a.xml -------------------------------------------------------------------------------- /sources/shiboken2/ApiExtractor/tests/utf8code.txt: -------------------------------------------------------------------------------- 1 | áéíóú -------------------------------------------------------------------------------- /sources/shiboken2/ApiExtractor/typeparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/ApiExtractor/typeparser.h -------------------------------------------------------------------------------- /sources/shiboken2/ApiExtractor/typesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/ApiExtractor/typesystem.h -------------------------------------------------------------------------------- /sources/shiboken2/ApiExtractor/xmlutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/ApiExtractor/xmlutils.cpp -------------------------------------------------------------------------------- /sources/shiboken2/ApiExtractor/xmlutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/ApiExtractor/xmlutils.h -------------------------------------------------------------------------------- /sources/shiboken2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/CMakeLists.txt -------------------------------------------------------------------------------- /sources/shiboken2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/COPYING -------------------------------------------------------------------------------- /sources/shiboken2/COPYING.libsample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/COPYING.libsample -------------------------------------------------------------------------------- /sources/shiboken2/COPYING.libshiboken: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/COPYING.libshiboken -------------------------------------------------------------------------------- /sources/shiboken2/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/Doxyfile -------------------------------------------------------------------------------- /sources/shiboken2/cmake_uninstall.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/cmake_uninstall.cmake -------------------------------------------------------------------------------- /sources/shiboken2/data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/data/CMakeLists.txt -------------------------------------------------------------------------------- /sources/shiboken2/data/docgenerator.1: -------------------------------------------------------------------------------- 1 | generatorrunner.1 -------------------------------------------------------------------------------- /sources/shiboken2/data/generatorrunner.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/data/generatorrunner.1 -------------------------------------------------------------------------------- /sources/shiboken2/data/shiboken2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/data/shiboken2.pc.in -------------------------------------------------------------------------------- /sources/shiboken2/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/doc/CMakeLists.txt -------------------------------------------------------------------------------- /sources/shiboken2/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/doc/README.md -------------------------------------------------------------------------------- /sources/shiboken2/doc/_templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/doc/_templates/index.html -------------------------------------------------------------------------------- /sources/shiboken2/doc/conf.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/doc/conf.py.in -------------------------------------------------------------------------------- /sources/shiboken2/doc/considerations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/doc/considerations.rst -------------------------------------------------------------------------------- /sources/shiboken2/doc/dependency-pyside.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/doc/dependency-pyside.svg -------------------------------------------------------------------------------- /sources/shiboken2/doc/examples/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/doc/examples/index.rst -------------------------------------------------------------------------------- /sources/shiboken2/doc/gettingstarted.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/doc/gettingstarted.rst -------------------------------------------------------------------------------- /sources/shiboken2/doc/images/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | ShowPreview=true 3 | Timestamp=2009,5,5,17,43,26 4 | -------------------------------------------------------------------------------- /sources/shiboken2/doc/images/boostgen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/doc/images/boostgen.png -------------------------------------------------------------------------------- /sources/shiboken2/doc/images/converter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/doc/images/converter.png -------------------------------------------------------------------------------- /sources/shiboken2/doc/images/converter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/doc/images/converter.svg -------------------------------------------------------------------------------- /sources/shiboken2/doc/images/icecream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/doc/images/icecream.png -------------------------------------------------------------------------------- /sources/shiboken2/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/doc/index.rst -------------------------------------------------------------------------------- /sources/shiboken2/doc/shibokengenerator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/doc/shibokengenerator.rst -------------------------------------------------------------------------------- /sources/shiboken2/doc/shibokenmodule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/doc/shibokenmodule.rst -------------------------------------------------------------------------------- /sources/shiboken2/doc/typesystem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/doc/typesystem.rst -------------------------------------------------------------------------------- /sources/shiboken2/generator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/generator/CMakeLists.txt -------------------------------------------------------------------------------- /sources/shiboken2/generator/__init__.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/generator/__init__.py.in -------------------------------------------------------------------------------- /sources/shiboken2/generator/_config.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/generator/_config.py.in -------------------------------------------------------------------------------- /sources/shiboken2/generator/generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/generator/generator.cpp -------------------------------------------------------------------------------- /sources/shiboken2/generator/generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/generator/generator.h -------------------------------------------------------------------------------- /sources/shiboken2/generator/indentor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/generator/indentor.h -------------------------------------------------------------------------------- /sources/shiboken2/generator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/generator/main.cpp -------------------------------------------------------------------------------- /sources/shiboken2/generatorrunnermacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/generatorrunnermacros.h -------------------------------------------------------------------------------- /sources/shiboken2/icecc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/icecc.cmake -------------------------------------------------------------------------------- /sources/shiboken2/libshiboken/autodecref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/libshiboken/autodecref.h -------------------------------------------------------------------------------- /sources/shiboken2/libshiboken/basewrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/libshiboken/basewrapper.h -------------------------------------------------------------------------------- /sources/shiboken2/libshiboken/gilstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/libshiboken/gilstate.cpp -------------------------------------------------------------------------------- /sources/shiboken2/libshiboken/gilstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/libshiboken/gilstate.h -------------------------------------------------------------------------------- /sources/shiboken2/libshiboken/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/libshiboken/helper.cpp -------------------------------------------------------------------------------- /sources/shiboken2/libshiboken/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/libshiboken/helper.h -------------------------------------------------------------------------------- /sources/shiboken2/libshiboken/pep384impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/libshiboken/pep384impl.h -------------------------------------------------------------------------------- /sources/shiboken2/libshiboken/sbkdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/libshiboken/sbkdbg.h -------------------------------------------------------------------------------- /sources/shiboken2/libshiboken/sbkenum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/libshiboken/sbkenum.cpp -------------------------------------------------------------------------------- /sources/shiboken2/libshiboken/sbkenum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/libshiboken/sbkenum.h -------------------------------------------------------------------------------- /sources/shiboken2/libshiboken/sbkmodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/libshiboken/sbkmodule.cpp -------------------------------------------------------------------------------- /sources/shiboken2/libshiboken/sbkmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/libshiboken/sbkmodule.h -------------------------------------------------------------------------------- /sources/shiboken2/libshiboken/sbkpython.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/libshiboken/sbkpython.h -------------------------------------------------------------------------------- /sources/shiboken2/libshiboken/sbkstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/libshiboken/sbkstring.cpp -------------------------------------------------------------------------------- /sources/shiboken2/libshiboken/sbkstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/libshiboken/sbkstring.h -------------------------------------------------------------------------------- /sources/shiboken2/libshiboken/shiboken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/libshiboken/shiboken.h -------------------------------------------------------------------------------- /sources/shiboken2/libshiboken/signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/libshiboken/signature.h -------------------------------------------------------------------------------- /sources/shiboken2/libshiboken/typespec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/libshiboken/typespec.cpp -------------------------------------------------------------------------------- /sources/shiboken2/libshiboken/typespec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/libshiboken/typespec.h -------------------------------------------------------------------------------- /sources/shiboken2/libshiboken/voidptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/libshiboken/voidptr.cpp -------------------------------------------------------------------------------- /sources/shiboken2/libshiboken/voidptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/libshiboken/voidptr.h -------------------------------------------------------------------------------- /sources/shiboken2/shiboken_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/shiboken_tool.py -------------------------------------------------------------------------------- /sources/shiboken2/shiboken_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/shiboken_version.py -------------------------------------------------------------------------------- /sources/shiboken2/shibokenmodule/nothing.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/shiboken2/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/CMakeLists.txt -------------------------------------------------------------------------------- /sources/shiboken2/tests/libminimal/obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libminimal/obj.cpp -------------------------------------------------------------------------------- /sources/shiboken2/tests/libminimal/obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libminimal/obj.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/libminimal/val.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libminimal/val.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/libother/number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libother/number.cpp -------------------------------------------------------------------------------- /sources/shiboken2/tests/libother/number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libother/number.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/bucket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/bucket.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/complex.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/cvlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/cvlist.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/derived.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/derived.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/echo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/echo.cpp -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/echo.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/filter.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/handle.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/list.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/main.cpp -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/mapuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/mapuser.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/null.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/oddbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/oddbool.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/pen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/pen.cpp -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/pen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/pen.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/photon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/photon.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/point.cpp -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/point.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/pointf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/pointf.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/polygon.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/rect.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/sample.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/sbkdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/sbkdate.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/size.cpp -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/size.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/str.cpp -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/str.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsample/strlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsample/strlist.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsmart/smart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsmart/smart.cpp -------------------------------------------------------------------------------- /sources/shiboken2/tests/libsmart/smart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/libsmart/smart.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/py3k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/py3k.py -------------------------------------------------------------------------------- /sources/shiboken2/tests/py3kcompat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/py3kcompat.py -------------------------------------------------------------------------------- /sources/shiboken2/tests/shiboken_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/shiboken_paths.py -------------------------------------------------------------------------------- /sources/shiboken2/tests/sphinxtabletest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/sphinxtabletest.cpp -------------------------------------------------------------------------------- /sources/shiboken2/tests/sphinxtabletest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/sources/shiboken2/tests/sphinxtabletest.h -------------------------------------------------------------------------------- /sources/shiboken2/tests/test_generator/test_global.h: -------------------------------------------------------------------------------- 1 | struct Dummy {}; 2 | -------------------------------------------------------------------------------- /testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/testing/__init__.py -------------------------------------------------------------------------------- /testing/blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/testing/blacklist.py -------------------------------------------------------------------------------- /testing/buildlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/testing/buildlog.py -------------------------------------------------------------------------------- /testing/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/testing/command.py -------------------------------------------------------------------------------- /testing/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/testing/helper.py -------------------------------------------------------------------------------- /testing/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/testing/parser.py -------------------------------------------------------------------------------- /testing/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/testing/runner.py -------------------------------------------------------------------------------- /testing/testing.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/testing/testing.pyproject -------------------------------------------------------------------------------- /testing/wheel_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/testing/wheel_tester.py -------------------------------------------------------------------------------- /testrunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/testrunner.py -------------------------------------------------------------------------------- /tools/checklibs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/tools/checklibs.py -------------------------------------------------------------------------------- /tools/create_changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/tools/create_changelog.py -------------------------------------------------------------------------------- /tools/debug_renamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/tools/debug_renamer.py -------------------------------------------------------------------------------- /tools/debug_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/tools/debug_windows.py -------------------------------------------------------------------------------- /tools/dump_metaobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/tools/dump_metaobject.py -------------------------------------------------------------------------------- /tools/leak_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/tools/leak_finder.py -------------------------------------------------------------------------------- /tools/metaobject_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/tools/metaobject_dump.py -------------------------------------------------------------------------------- /tools/metaobject_dump.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/tools/metaobject_dump.pyproject -------------------------------------------------------------------------------- /tools/missing_bindings-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/tools/missing_bindings-requirements.txt -------------------------------------------------------------------------------- /tools/missing_bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/tools/missing_bindings.py -------------------------------------------------------------------------------- /tools/qtpy2cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/tools/qtpy2cpp.py -------------------------------------------------------------------------------- /tools/qtpy2cpp.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/tools/qtpy2cpp.pyproject -------------------------------------------------------------------------------- /tools/qtpy2cpp_lib/astdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/tools/qtpy2cpp_lib/astdump.py -------------------------------------------------------------------------------- /tools/qtpy2cpp_lib/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/tools/qtpy2cpp_lib/formatter.py -------------------------------------------------------------------------------- /tools/qtpy2cpp_lib/nodedump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/tools/qtpy2cpp_lib/nodedump.py -------------------------------------------------------------------------------- /tools/qtpy2cpp_lib/test_baseline/uic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/tools/qtpy2cpp_lib/test_baseline/uic.py -------------------------------------------------------------------------------- /tools/qtpy2cpp_lib/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/tools/qtpy2cpp_lib/tokenizer.py -------------------------------------------------------------------------------- /tools/qtpy2cpp_lib/visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyside/pyside2-setup/HEAD/tools/qtpy2cpp_lib/visitor.py --------------------------------------------------------------------------------