├── .gitignore ├── 3d └── simple3d │ ├── doc │ ├── simple3d.png │ └── simple3d.rst │ ├── simple3d.py │ └── simple3d.pyproject ├── LICENSE ├── README.md ├── axcontainer └── axviewer │ ├── axviewer.py │ ├── axviewer.pyproject │ └── doc │ ├── axviewer.png │ └── axviewer.rst ├── bluetooth └── btscanner │ ├── btscanner.pyproject │ ├── device.py │ ├── device.ui │ ├── doc │ └── btscanner.rst │ ├── main.py │ ├── service.py │ ├── service.ui │ ├── ui_device.py │ └── ui_service.py ├── charts ├── areachart │ ├── areachart.py │ ├── areachart.pyproject │ └── doc │ │ ├── areachart.png │ │ └── areachart.rst ├── audio │ ├── audio.py │ ├── audio.pyproject │ └── doc │ │ ├── audio.png │ │ └── audio.rst ├── barchart │ ├── barchart.py │ ├── barchart.pyproject │ └── doc │ │ ├── barchart.png │ │ └── barchart.rst ├── callout │ ├── callout.py │ ├── callout.pyproject │ └── doc │ │ ├── callout.png │ │ └── callout.rst ├── chartthemes │ ├── README.md │ ├── chartthemes.pyproject │ ├── doc │ │ ├── chartthemes.png │ │ └── chartthemes.rst │ ├── main.py │ ├── themewidget.ui │ └── ui_themewidget.py ├── donutbreakdown │ ├── doc │ │ ├── donutbreakdown.png │ │ └── donutbreakdown.rst │ ├── donutbreakdown.py │ └── donutbreakdown.pyproject ├── dynamicspline │ ├── chart.py │ ├── doc │ │ ├── dynamicspline.rst │ │ ├── dynamicspline1.png │ │ └── dynamicspline2.png │ ├── dynamicspline.pyproject │ └── main.py ├── legend │ ├── doc │ │ ├── legend.png │ │ └── legend.rst │ ├── legend.py │ └── legend.pyproject ├── lineandbar │ ├── doc │ │ ├── lineandbar.png │ │ └── lineandbar.rst │ ├── lineandbar.py │ └── lineandbar.pyproject ├── linechart │ ├── doc │ │ ├── linechart.png │ │ └── linechart.rst │ ├── linechart.py │ └── linechart.pyproject ├── logvalueaxis │ ├── doc │ │ ├── logvalueaxis.png │ │ └── logvalueaxis.rst │ ├── logvalueaxis.py │ └── logvalueaxis.pyproject ├── memoryusage │ ├── doc │ │ ├── memoryusage.png │ │ └── memoryusage.rst │ ├── memoryusage.py │ └── memoryusage.pyproject ├── modeldata │ ├── doc │ │ ├── modeldata.png │ │ └── modeldata.rst │ ├── modeldata.py │ └── modeldata.pyproject ├── nesteddonuts │ ├── doc │ │ ├── nesteddonuts.png │ │ └── nesteddonuts.rst │ ├── nesteddonuts.py │ └── nesteddonuts.pyproject ├── percentbarchart │ ├── doc │ │ ├── percentbarchart.png │ │ └── percentbarchart.rst │ ├── percentbarchart.py │ └── percentbarchart.pyproject ├── piechart │ ├── doc │ │ ├── piechart.png │ │ └── piechart.rst │ ├── piechart.py │ └── piechart.pyproject ├── qmlpolarchart │ ├── View1.qml │ ├── View2.qml │ ├── View3.qml │ ├── doc │ │ ├── qmlpolarchart.png │ │ └── qmlpolarchart.rst │ ├── main.qml │ ├── qmlpolarchart.py │ └── qmlpolarchart.pyproject └── temperaturerecords │ ├── doc │ ├── temperaturerecords.png │ └── temperaturerecords.rst │ ├── temperaturerecords.py │ └── temperaturerecords.pyproject ├── corelib ├── ipc │ └── sharedmemory │ │ ├── dialog.py │ │ ├── dialog.ui │ │ ├── image.png │ │ ├── main.py │ │ ├── qt.png │ │ ├── sharedmemory.pyproject │ │ └── ui_dialog.py ├── mimetypesbrowser │ ├── doc │ │ ├── mimetypesbrowser.png │ │ └── mimetypesbrowser.rst │ ├── mainwindow.py │ ├── mimetypemodel.py │ ├── mimetypesbrowser.py │ └── mimetypesbrowser.pyproject ├── settingseditor │ ├── doc │ │ ├── settingseditor.png │ │ └── settingseditor.rst │ ├── settingseditor.py │ └── settingseditor.pyproject └── threads │ ├── doc │ ├── threads.png │ └── threads.rst │ ├── mandelbrot.py │ └── threads.pyproject ├── datavisualization ├── bars3d │ ├── bars3d.py │ ├── bars3d.pyproject │ └── doc │ │ ├── bars3d.png │ │ └── bars3d.rst └── surface │ ├── doc │ ├── surface.rst │ └── surface_mountain.png │ ├── main.py │ ├── mountain.png │ ├── surface.pyproject │ └── surfacegraph.py ├── dbus ├── listnames │ ├── listnames.py │ └── listnames.pyproject └── pingpong │ ├── ping.py │ ├── pingpong.pyproject │ └── pong.py ├── declarative ├── editingmodel │ ├── MovingRectangle.qml │ ├── doc │ │ ├── editingmodel.rst │ │ └── qabstractlistmodelqml.png │ ├── main.py │ ├── main.pyproject │ ├── main.qml │ └── model.py ├── 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 ├── objectlistmodel │ ├── doc │ │ ├── objectlistmodel.png │ │ └── objectlistmodel.rst │ ├── objectlistmodel.py │ ├── objectlistmodel.pyproject │ └── view.qml ├── openglunderqml │ ├── doc │ │ ├── openglunderqml.rst │ │ └── squircle.png │ ├── main.py │ ├── main.qml │ ├── openglunderqml.pyproject │ ├── squircle.py │ └── squirclerenderer.py ├── referenceexamples │ ├── adding │ │ ├── adding.pyproject │ │ ├── doc │ │ │ └── adding.rst │ │ ├── example.qml │ │ ├── main.py │ │ └── person.py │ ├── attached │ │ ├── attached.pyproject │ │ ├── birthdayparty.py │ │ ├── doc │ │ │ └── attached.rst │ │ ├── example.qml │ │ ├── main.py │ │ └── person.py │ ├── binding │ │ ├── binding.pyproject │ │ ├── birthdayparty.py │ │ ├── doc │ │ │ └── binding.rst │ │ ├── example.qml │ │ ├── happybirthdaysong.py │ │ ├── main.py │ │ └── person.py │ ├── coercion │ │ ├── birthdayparty.py │ │ ├── coercion.pyproject │ │ ├── doc │ │ │ └── coercion.rst │ │ ├── example.qml │ │ ├── main.py │ │ └── person.py │ ├── default │ │ ├── birthdayparty.py │ │ ├── default.pyproject │ │ ├── doc │ │ │ └── default.rst │ │ ├── example.qml │ │ ├── main.py │ │ └── person.py │ ├── extended │ │ ├── doc │ │ │ └── extended.rst │ │ ├── example.qml │ │ ├── extended.pyproject │ │ └── main.py │ ├── grouped │ │ ├── birthdayparty.py │ │ ├── doc │ │ │ └── grouped.rst │ │ ├── example.qml │ │ ├── grouped.pyproject │ │ ├── main.py │ │ └── person.py │ ├── methods │ │ ├── birthdayparty.py │ │ ├── doc │ │ │ └── methods.rst │ │ ├── example.qml │ │ ├── main.py │ │ ├── methods.pyproject │ │ └── person.py │ ├── properties │ │ ├── birthdayparty.py │ │ ├── doc │ │ │ └── properties.rst │ │ ├── example.qml │ │ ├── main.py │ │ ├── person.py │ │ └── properties.pyproject │ └── valuesource │ │ ├── birthdayparty.py │ │ ├── doc │ │ └── valuesource.rst │ │ ├── example.qml │ │ ├── happybirthdaysong.py │ │ ├── main.py │ │ ├── person.py │ │ └── valuesource.pyproject ├── rendercontrol │ └── rendercontrol_opengl │ │ ├── cuberenderer.py │ │ ├── demo.qml │ │ ├── doc │ │ └── rendercontrol_opengl.rst │ │ ├── main.py │ │ ├── rendercontrol_opengl.pyproject │ │ └── window_singlethreaded.py ├── signals │ ├── pytoqml1 │ │ ├── main.py │ │ ├── pytoqml1.pyproject │ │ └── view.qml │ ├── pytoqml2 │ │ ├── main.py │ │ ├── pytoqml2.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 ├── stringlistmodel │ ├── doc │ │ ├── stringlistmodel.png │ │ └── stringlistmodel.rst │ ├── stringlistmodel.py │ ├── stringlistmodel.pyproject │ └── view.qml ├── textproperties │ ├── doc │ │ ├── textproperties.png │ │ └── textproperties.rst │ ├── main.py │ ├── textproperties.pyproject │ └── view.qml └── usingmodel │ ├── doc │ ├── usingmodel.png │ └── usingmodel.rst │ ├── usingmodel.py │ ├── usingmodel.pyproject │ └── view.qml ├── designer └── taskmenuextension │ ├── doc │ ├── taskmenuextension.png │ └── taskmenuextension.rst │ ├── main.py │ ├── registertictactoe.py │ ├── taskmenuextension.pyproject │ ├── tictactoe.py │ ├── tictactoeplugin.py │ └── tictactoetaskmenu.py ├── examples.pyproject ├── external ├── matplotlib │ ├── widget3d │ │ ├── doc │ │ │ ├── widget3d.png │ │ │ └── widget3d.rst │ │ ├── requirements.txt │ │ ├── widget3d.py │ │ └── widget3d.pyproject │ └── widget_gaussian │ │ ├── doc │ │ ├── widget_gaussian.png │ │ └── widget_gaussian.rst │ │ ├── requirements.txt │ │ ├── widget_gaussian.py │ │ └── widget_gaussian.pyproject ├── opencv │ ├── doc │ │ ├── opencv.png │ │ └── opencv.rst │ ├── opencv.pyproject │ ├── requirements.txt │ └── webcam_pattern_detection.py ├── pandas │ ├── dataframe_model.py │ ├── doc │ │ ├── pandas.rst │ │ └── pandas_simple.png │ ├── iris.csv │ ├── pandas.pyproject │ └── requirements.txt └── scikit │ ├── doc │ ├── scikit.png │ └── scikit.rst │ ├── requirements.txt │ ├── scikit.pyproject │ └── staining_colors_separation.py ├── installer_test └── hello.py ├── macextras └── macpasteboardmime │ ├── macpasteboardmime.py │ └── macpasteboardmime.pyproject ├── multimedia ├── audiooutput │ ├── audiooutput.py │ ├── audiooutput.pyproject │ └── doc │ │ ├── audiooutput.png │ │ └── audiooutput.rst ├── audiosource │ ├── audiosource.py │ ├── audiosource.pyproject │ └── doc │ │ ├── audiosource.png │ │ └── audiosource.rst ├── camera │ ├── camera.py │ ├── camera.pyproject │ ├── doc │ │ ├── camera.png │ │ └── camera.rst │ └── shutter.svg └── player │ ├── doc │ ├── player.png │ └── player.rst │ ├── player.py │ └── player.pyproject ├── network ├── blockingfortuneclient │ ├── blockingfortuneclient.py │ └── blockingfortuneclient.pyproject ├── downloader │ ├── doc │ │ ├── downloader.png │ │ └── downloader.rst │ ├── downloader.py │ └── downloader.pyproject ├── fortuneclient │ ├── fortuneclient.py │ └── fortuneclient.pyproject ├── fortuneserver │ ├── fortuneserver.py │ └── fortuneserver.pyproject ├── loopback │ ├── dialog.py │ ├── doc │ │ ├── loopback.png │ │ └── loopback.rst │ ├── loopback.pyproject │ └── main.py └── threadedfortuneserver │ ├── threadedfortuneserver.py │ └── threadedfortuneserver.pyproject ├── networkauth └── redditclient │ ├── doc │ ├── redditclient.png │ └── redditclient.rst │ ├── main.py │ ├── redditclient.pyproject │ ├── redditmodel.py │ └── redditwrapper.py ├── opengl ├── contextinfo │ ├── contextinfo.py │ ├── contextinfo.pyproject │ └── doc │ │ ├── contextinfo.png │ │ └── contextinfo.rst ├── hellogl2 │ ├── doc │ │ ├── hellogl2.png │ │ └── hellogl2.rst │ ├── hellogl2.py │ └── hellogl2.pyproject ├── textures │ ├── doc │ │ ├── textures.png │ │ └── textures.rst │ ├── images │ │ ├── side1.png │ │ ├── side2.png │ │ ├── side3.png │ │ ├── side4.png │ │ ├── side5.png │ │ └── side6.png │ ├── textures.py │ ├── textures.pyproject │ ├── textures.qrc │ └── textures_rc.py └── threadedqopenglwidget │ ├── doc │ ├── threadedqopenglwidget.png │ └── threadedqopenglwidget.rst │ ├── glwidget.py │ ├── main.py │ ├── mainwindow.py │ ├── renderer.py │ └── threadedqopenglwidget.pyproject ├── quick └── painteditem │ ├── doc │ ├── painteditem.png │ └── painteditem.rst │ ├── main.qml │ ├── painteditem.py │ └── painteditem.pyproject ├── quick3d ├── customgeometry │ ├── customgeometry.pyproject │ ├── doc │ │ ├── customgeometry-example.jpg │ │ └── customgeometry.rst │ ├── examplepoint.py │ ├── exampletriangle.py │ ├── main.py │ ├── main.qml │ ├── qt_logo_rect.png │ ├── resources.qrc │ └── resources_rc.py └── intro │ ├── doc │ ├── intro.png │ └── intro.rst │ ├── intro.pyproject │ ├── main.py │ └── main.qml ├── quickcontrols2 └── gallery │ ├── +Material │ └── ToolBar.qml │ ├── ToolBar.qml │ ├── doc │ ├── gallery.png │ ├── gallery.rst │ └── images │ │ ├── qtquickcontrols2-gallery-drawer.png │ │ ├── qtquickcontrols2-gallery-menu.png │ │ └── qtquickcontrols2-gallery-welcome.png │ ├── gallery.py │ ├── gallery.pyproject │ ├── gallery.qml │ ├── gallery.qrc │ ├── icons │ └── gallery │ │ ├── 20x20 │ │ ├── back.png │ │ ├── drawer.png │ │ └── menu.png │ │ ├── 20x20@2 │ │ ├── back.png │ │ ├── drawer.png │ │ └── menu.png │ │ ├── 20x20@3 │ │ ├── back.png │ │ ├── drawer.png │ │ └── menu.png │ │ ├── 20x20@4 │ │ ├── back.png │ │ ├── drawer.png │ │ └── menu.png │ │ └── index.theme │ ├── images │ ├── arrow.png │ ├── arrow@2x.png │ ├── arrow@3x.png │ ├── arrow@4x.png │ ├── arrows.png │ ├── arrows@2x.png │ ├── arrows@3x.png │ ├── arrows@4x.png │ ├── qt-logo.png │ ├── qt-logo@2x.png │ ├── qt-logo@3x.png │ └── qt-logo@4x.png │ ├── pages │ ├── BusyIndicatorPage.qml │ ├── ButtonPage.qml │ ├── CheckBoxPage.qml │ ├── ComboBoxPage.qml │ ├── DelayButtonPage.qml │ ├── DelegatePage.qml │ ├── DialPage.qml │ ├── DialogPage.qml │ ├── FramePage.qml │ ├── GroupBoxPage.qml │ ├── PageIndicatorPage.qml │ ├── ProgressBarPage.qml │ ├── RadioButtonPage.qml │ ├── RangeSliderPage.qml │ ├── ScrollBarPage.qml │ ├── ScrollIndicatorPage.qml │ ├── ScrollablePage.qml │ ├── SliderPage.qml │ ├── SpinBoxPage.qml │ ├── StackViewPage.qml │ ├── SwipeViewPage.qml │ ├── SwitchPage.qml │ ├── TabBarPage.qml │ ├── TextAreaPage.qml │ ├── TextFieldPage.qml │ ├── ToolTipPage.qml │ └── TumblerPage.qml │ ├── qmldir │ ├── qtquickcontrols2.conf │ └── rc_gallery.py ├── remoteobjects └── modelview │ ├── modelview.pyproject │ ├── modelviewclient.py │ └── modelviewserver.py ├── samplebinding ├── CMakeLists.txt ├── bindings.h ├── bindings.xml ├── doc │ ├── samplebinding.pyproject │ └── samplebinding.rst ├── icecream.cpp ├── icecream.h ├── macros.h ├── main.py ├── truck.cpp └── truck.h ├── scriptableapplication ├── CMakeLists.txt ├── doc │ ├── scriptableapplication.pyproject │ └── scriptableapplication.rst ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── pyside.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 │ ├── doc │ │ ├── books.png │ │ └── books.rst │ ├── images │ │ └── star.png │ ├── main.py │ ├── rc_books.py │ └── ui_bookwindow.py └── relationaltablemodel │ ├── connection.py │ └── relationaltablemodel.py ├── uitools └── uiloader │ ├── uiloader.py │ └── uiloader.pyproject ├── utils └── pyside_config.py ├── webchannel └── standalone │ ├── core.py │ ├── dialog.py │ ├── dialog.ui │ ├── doc │ ├── standalone.png │ └── standalone.rst │ ├── index.html │ ├── main.py │ ├── standalone.pyproject │ ├── ui_dialog.py │ ├── websocketclientwrapper.py │ └── websockettransport.py ├── webenginequick └── nanobrowser │ ├── browser.qml │ ├── doc │ ├── nanobrowser.png │ └── nanobrowser.rst │ ├── nanobrowser.pyproject │ └── quicknanobrowser.py ├── webenginewidgets ├── markdowneditor │ ├── document.py │ ├── main.py │ ├── mainwindow.py │ ├── mainwindow.ui │ ├── markdowneditor.pyproject │ ├── previewpage.py │ ├── rc_markdowneditor.py │ ├── resources │ │ ├── 3rdparty │ │ │ ├── MARKDOWN-LICENSE.txt │ │ │ ├── MARKED-LICENSE.txt │ │ │ ├── markdown.css │ │ │ ├── marked.js │ │ │ └── qt_attribution.json │ │ ├── default.md │ │ ├── index.html │ │ └── markdowneditor.qrc │ └── ui_mainwindow.py ├── simplebrowser │ ├── doc │ │ ├── simplebrowser.png │ │ └── simplebrowser.rst │ ├── simplebrowser.py │ └── simplebrowser.pyproject └── tabbedbrowser │ ├── bookmarkwidget.py │ ├── browsertabwidget.py │ ├── doc │ ├── tabbedbrowser.png │ └── tabbedbrowser.rst │ ├── downloadwidget.py │ ├── findtoolbar.py │ ├── historywindow.py │ ├── main.py │ ├── tabbedbrowser.pyproject │ └── webengineview.py ├── widgetbinding ├── CMakeLists.txt ├── README.md ├── bindings.h ├── bindings.xml ├── dialog.py ├── macros.h ├── main.py ├── registerwigglywidget.py ├── wigglywidget.cpp ├── wigglywidget.h └── wigglywidget.py ├── widgets ├── animation │ ├── animatedtiles │ │ ├── animatedtiles.py │ │ ├── animatedtiles.pyproject │ │ ├── animatedtiles.qrc │ │ ├── animatedtiles_rc.py │ │ ├── doc │ │ │ ├── animatedtiles.png │ │ │ └── animatedtiles.rst │ │ └── 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 │ │ ├── doc │ │ │ ├── appchooser.png │ │ │ └── appchooser.rst │ │ └── k3b.png │ ├── easing │ │ ├── doc │ │ │ ├── easing.png │ │ │ └── easing.rst │ │ ├── easing.py │ │ ├── easing.pyproject │ │ ├── form.ui │ │ ├── images │ │ │ └── qt-logo.png │ │ └── ui_form.py │ └── states │ │ ├── doc │ │ ├── states.png │ │ └── states.rst │ │ ├── states.py │ │ ├── states.pyproject │ │ └── states_rc.py ├── codeeditor │ ├── codeeditor.py │ ├── codeeditor.pyproject │ ├── doc │ │ ├── codeeditor.png │ │ └── codeeditor.rst │ └── main.py ├── desktop │ └── screenshot │ │ ├── doc │ │ ├── screenshot.png │ │ └── screenshot.rst │ │ ├── screenshot.py │ │ └── screenshot.pyproject ├── dialogs │ ├── classwizard │ │ ├── classwizard.py │ │ ├── classwizard.pyproject │ │ ├── classwizard.qrc │ │ ├── classwizard_rc.py │ │ ├── doc │ │ │ ├── classwizard.png │ │ │ └── classwizard.rst │ │ ├── images │ │ │ ├── background.png │ │ │ ├── banner.png │ │ │ └── watermark1.png │ │ └── listchooser.py │ ├── extension │ │ ├── extension.py │ │ └── extension.pyproject │ ├── findfiles │ │ ├── findfiles.py │ │ └── findfiles.pyproject │ ├── standarddialogs │ │ ├── standarddialogs.py │ │ └── standarddialogs.pyproject │ ├── tabdialog │ │ ├── doc │ │ │ ├── tabdialog.png │ │ │ └── tabdialog.rst │ │ ├── tabdialog.py │ │ └── tabdialog.pyproject │ └── trivialwizard │ │ ├── trivialwizard.py │ │ └── trivialwizard.pyproject ├── draganddrop │ ├── draggableicons │ │ ├── doc │ │ │ ├── draggableicons.png │ │ │ └── draggableicons.rst │ │ ├── draggableicons.py │ │ ├── draggableicons.qrc │ │ └── images │ │ │ ├── boat.png │ │ │ ├── car.png │ │ │ └── house.png │ └── draggabletext │ │ ├── draggabletext.py │ │ ├── draggabletext.pyproject │ │ ├── draggabletext.qrc │ │ ├── draggabletext_rc.py │ │ └── words.txt ├── effects │ ├── blurpicker │ │ ├── blureffect.py │ │ ├── blurpicker.py │ │ ├── blurpicker.pyproject │ │ ├── doc │ │ │ ├── blurpicker.png │ │ │ └── blurpicker.rst │ │ ├── images │ │ │ ├── README.txt │ │ │ ├── accessories-calculator.png │ │ │ ├── accessories-text-editor.png │ │ │ ├── background.jpg │ │ │ ├── help-browser.png │ │ │ ├── internet-group-chat.png │ │ │ ├── internet-mail.png │ │ │ ├── internet-web-browser.png │ │ │ ├── office-calendar.png │ │ │ └── system-users.png │ │ └── main.py │ └── lighting │ │ ├── lighting.py │ │ └── lighting.pyproject ├── gettext │ ├── gettext.pyproject │ └── main.py ├── graphicsview │ ├── anchorlayout │ │ ├── anchorlayout.py │ │ └── anchorlayout.pyproject │ ├── 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 │ │ ├── elasticnodes.py │ │ └── elasticnodes.pyproject ├── imageviewer │ ├── imageviewer.py │ ├── imageviewer.pyproject │ └── main.py ├── itemviews │ ├── address_book │ │ ├── adddialogwidget.py │ │ ├── address_book.py │ │ ├── address_book.pyproject │ │ ├── addresswidget.py │ │ ├── doc │ │ │ ├── address_book.png │ │ │ └── address_book.rst │ │ ├── newaddresstab.py │ │ └── tablemodel.py │ ├── basicfiltermodel │ │ ├── basicsortfiltermodel.py │ │ └── basicsortfiltermodel.pyproject │ ├── editabletreemodel │ │ ├── default.txt │ │ ├── doc │ │ │ ├── editabletreemodel.png │ │ │ └── editabletreemodel.rst │ │ ├── editabletreemodel.pyproject │ │ ├── main.py │ │ ├── mainwindow.py │ │ ├── treeitem.py │ │ └── treemodel.py │ ├── fetchmore │ │ ├── fetchmore.py │ │ └── fetchmore.pyproject │ ├── jsonmodel │ │ ├── doc │ │ │ ├── jsonmodel.png │ │ │ └── jsonmodel.rst │ │ ├── example.json │ │ ├── jsonmodel.py │ │ └── jsonmodel.pyproject │ └── stardelegate │ │ ├── doc │ │ ├── stardelegate.png │ │ └── stardelegate.rst │ │ ├── stardelegate.py │ │ ├── stardelegate.pyproject │ │ ├── stareditor.py │ │ └── starrating.py ├── layouts │ ├── basiclayouts │ │ ├── basiclayouts.py │ │ ├── basiclayouts.pyproject │ │ └── doc │ │ │ ├── basiclayouts.png │ │ │ └── basiclayouts.rst │ ├── borderlayout │ │ ├── borderlayout.py │ │ ├── borderlayout.pyproject │ │ └── doc │ │ │ ├── borderlayout.png │ │ │ └── borderlayout.rst │ ├── dynamiclayouts │ │ ├── doc │ │ │ ├── dynamiclayouts.png │ │ │ └── dynamiclayouts.rst │ │ ├── dynamiclayouts.py │ │ └── dynamiclayouts.pyproject │ └── flowlayout │ │ ├── doc │ │ ├── flowlayout.png │ │ └── flowlayout.rst │ │ ├── flowlayout.py │ │ └── flowlayout.pyproject ├── linguist │ ├── example_de.ts │ ├── linguist.pyproject │ ├── linguist.qrc │ ├── linguist_rc.py │ └── main.py ├── 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 │ │ ├── doc │ │ │ ├── dockwidgets.png │ │ │ └── dockwidgets.rst │ │ ├── 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 │ │ ├── doc │ │ │ ├── basicdrawing.png │ │ │ └── basicdrawing.rst │ │ └── images │ │ │ ├── brick.png │ │ │ └── qt-logo.png │ ├── concentriccircles │ │ ├── concentriccircles.py │ │ ├── concentriccircles.pyproject │ │ └── doc │ │ │ ├── concentriccircles.png │ │ │ └── concentriccircles.rst │ ├── painter │ │ ├── doc │ │ │ ├── painter.png │ │ │ └── painter.rst │ │ ├── painter.py │ │ └── painter.pyproject │ └── plot │ │ ├── doc │ │ ├── plot.png │ │ └── plot.rst │ │ ├── plot.py │ │ └── plot.pyproject ├── richtext │ ├── orderform │ │ ├── orderform.py │ │ └── orderform.pyproject │ ├── syntaxhighlighter │ │ ├── doc │ │ │ ├── syntaxhighlighter.png │ │ │ └── syntaxhighlighter.rst │ │ ├── examples │ │ │ └── example │ │ ├── syntaxhighlighter.py │ │ └── syntaxhighlighter.pyproject │ ├── textedit │ │ ├── doc │ │ │ ├── textedit.png │ │ │ └── textedit.rst │ │ ├── example.html │ │ ├── images │ │ │ ├── logo32.png │ │ │ ├── mac │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox.png │ │ │ │ ├── editcopy.png │ │ │ │ ├── editcut.png │ │ │ │ ├── editpaste.png │ │ │ │ ├── editredo.png │ │ │ │ ├── editundo.png │ │ │ │ ├── exportpdf.png │ │ │ │ ├── filenew.png │ │ │ │ ├── fileopen.png │ │ │ │ ├── fileprint.png │ │ │ │ ├── filesave.png │ │ │ │ ├── format-indent-less.png │ │ │ │ ├── format-indent-more.png │ │ │ │ ├── textbold.png │ │ │ │ ├── textcenter.png │ │ │ │ ├── textitalic.png │ │ │ │ ├── textjustify.png │ │ │ │ ├── textleft.png │ │ │ │ ├── textright.png │ │ │ │ ├── textunder.png │ │ │ │ ├── textundercolor.png │ │ │ │ ├── zoomin.png │ │ │ │ └── zoomout.png │ │ │ └── win │ │ │ │ ├── checkbox-checked.png │ │ │ │ ├── checkbox.png │ │ │ │ ├── editcopy.png │ │ │ │ ├── editcut.png │ │ │ │ ├── editpaste.png │ │ │ │ ├── editredo.png │ │ │ │ ├── editundo.png │ │ │ │ ├── exportpdf.png │ │ │ │ ├── filenew.png │ │ │ │ ├── fileopen.png │ │ │ │ ├── fileprint.png │ │ │ │ ├── filesave.png │ │ │ │ ├── format-indent-less.png │ │ │ │ ├── format-indent-more.png │ │ │ │ ├── textbold.png │ │ │ │ ├── textcenter.png │ │ │ │ ├── textitalic.png │ │ │ │ ├── textjustify.png │ │ │ │ ├── textleft.png │ │ │ │ ├── textright.png │ │ │ │ ├── textunder.png │ │ │ │ ├── textundercolor.png │ │ │ │ ├── zoomin.png │ │ │ │ └── zoomout.png │ │ ├── main.py │ │ ├── textedit.py │ │ ├── textedit.pyproject │ │ ├── textedit.qrc │ │ └── textedit_rc.py │ └── textobject │ │ ├── doc │ │ ├── textobject.png │ │ └── textobject.rst │ │ ├── files │ │ └── heart.svg │ │ ├── textobject.py │ │ └── textobject.pyproject ├── state-machine │ ├── eventtrans │ │ ├── eventtrans.py │ │ └── eventtrans.pyproject │ ├── factstates │ │ ├── factstates.py │ │ └── factstates.pyproject │ ├── ping_pong │ │ ├── ping_pong.py │ │ └── ping_pong.pyproject │ ├── rogue │ │ ├── rogue.py │ │ └── rogue.pyproject │ ├── trafficlight │ │ ├── doc │ │ │ ├── trafficlight.png │ │ │ └── trafficlight.rst │ │ ├── trafficlight.py │ │ └── trafficlight.pyproject │ └── twowaybutton │ │ ├── twowaybutton.py │ │ └── twowaybutton.pyproject ├── systray │ ├── images │ │ ├── bad.png │ │ ├── heart.png │ │ └── trash.png │ ├── main.py │ ├── rc_systray.py │ ├── systray.pyproject │ ├── systray.qrc │ └── window.py ├── tetrix │ ├── doc │ │ ├── tetrix-screenshot.png │ │ └── tetrix.rst │ ├── tetrix.py │ └── tetrix.pyproject ├── thread_signals │ ├── thread_signals.py │ └── thread_signals.pyproject ├── tools │ └── regularexpression │ │ ├── doc │ │ ├── regularexpression.png │ │ └── regularexpression.rst │ │ ├── regularexpression.py │ │ ├── regularexpression.pyproject │ │ └── regularexpressiondialog.py ├── tutorials │ ├── addressbook │ │ ├── addressbook.pyproject │ │ ├── doc │ │ │ ├── addressbook.png │ │ │ └── addressbook.rst │ │ ├── part1.py │ │ ├── part2.py │ │ ├── part3.py │ │ ├── part4.py │ │ ├── part5.py │ │ ├── part6.py │ │ └── part7.py │ └── cannon │ │ ├── cannon.pyproject │ │ ├── doc │ │ ├── cannon.png │ │ └── cannon.rst │ │ ├── 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 └── widgetsgallery │ ├── doc │ ├── widgetsgallery.png │ └── widgetsgallery.rst │ ├── main.py │ ├── widgetgallery.py │ └── widgetsgallery.pyproject └── xml └── dombookmarks ├── doc ├── dombookmarks.png └── dombookmarks.rst ├── dombookmarks.py ├── dombookmarks.pyproject ├── frank.xbel └── jennifer.xbel /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /3d/simple3d/doc/simple3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/3d/simple3d/doc/simple3d.png -------------------------------------------------------------------------------- /3d/simple3d/doc/simple3d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/3d/simple3d/doc/simple3d.rst -------------------------------------------------------------------------------- /3d/simple3d/simple3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/3d/simple3d/simple3d.py -------------------------------------------------------------------------------- /3d/simple3d/simple3d.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["simple3d.py"] 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/README.md -------------------------------------------------------------------------------- /axcontainer/axviewer/axviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/axcontainer/axviewer/axviewer.py -------------------------------------------------------------------------------- /axcontainer/axviewer/axviewer.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["axviewer.py"] 3 | } 4 | -------------------------------------------------------------------------------- /axcontainer/axviewer/doc/axviewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/axcontainer/axviewer/doc/axviewer.png -------------------------------------------------------------------------------- /axcontainer/axviewer/doc/axviewer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/axcontainer/axviewer/doc/axviewer.rst -------------------------------------------------------------------------------- /bluetooth/btscanner/btscanner.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/bluetooth/btscanner/btscanner.pyproject -------------------------------------------------------------------------------- /bluetooth/btscanner/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/bluetooth/btscanner/device.py -------------------------------------------------------------------------------- /bluetooth/btscanner/device.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/bluetooth/btscanner/device.ui -------------------------------------------------------------------------------- /bluetooth/btscanner/doc/btscanner.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/bluetooth/btscanner/doc/btscanner.rst -------------------------------------------------------------------------------- /bluetooth/btscanner/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/bluetooth/btscanner/main.py -------------------------------------------------------------------------------- /bluetooth/btscanner/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/bluetooth/btscanner/service.py -------------------------------------------------------------------------------- /bluetooth/btscanner/service.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/bluetooth/btscanner/service.ui -------------------------------------------------------------------------------- /bluetooth/btscanner/ui_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/bluetooth/btscanner/ui_device.py -------------------------------------------------------------------------------- /bluetooth/btscanner/ui_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/bluetooth/btscanner/ui_service.py -------------------------------------------------------------------------------- /charts/areachart/areachart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/areachart/areachart.py -------------------------------------------------------------------------------- /charts/areachart/areachart.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["areachart.py"] 3 | } 4 | -------------------------------------------------------------------------------- /charts/areachart/doc/areachart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/areachart/doc/areachart.png -------------------------------------------------------------------------------- /charts/areachart/doc/areachart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/areachart/doc/areachart.rst -------------------------------------------------------------------------------- /charts/audio/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/audio/audio.py -------------------------------------------------------------------------------- /charts/audio/audio.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["audio.py"] 3 | } 4 | -------------------------------------------------------------------------------- /charts/audio/doc/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/audio/doc/audio.png -------------------------------------------------------------------------------- /charts/audio/doc/audio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/audio/doc/audio.rst -------------------------------------------------------------------------------- /charts/barchart/barchart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/barchart/barchart.py -------------------------------------------------------------------------------- /charts/barchart/barchart.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["barchart.py"] 3 | } 4 | -------------------------------------------------------------------------------- /charts/barchart/doc/barchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/barchart/doc/barchart.png -------------------------------------------------------------------------------- /charts/barchart/doc/barchart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/barchart/doc/barchart.rst -------------------------------------------------------------------------------- /charts/callout/callout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/callout/callout.py -------------------------------------------------------------------------------- /charts/callout/callout.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["callout.py"] 3 | } 4 | -------------------------------------------------------------------------------- /charts/callout/doc/callout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/callout/doc/callout.png -------------------------------------------------------------------------------- /charts/callout/doc/callout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/callout/doc/callout.rst -------------------------------------------------------------------------------- /charts/chartthemes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/chartthemes/README.md -------------------------------------------------------------------------------- /charts/chartthemes/chartthemes.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/chartthemes/chartthemes.pyproject -------------------------------------------------------------------------------- /charts/chartthemes/doc/chartthemes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/chartthemes/doc/chartthemes.png -------------------------------------------------------------------------------- /charts/chartthemes/doc/chartthemes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/chartthemes/doc/chartthemes.rst -------------------------------------------------------------------------------- /charts/chartthemes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/chartthemes/main.py -------------------------------------------------------------------------------- /charts/chartthemes/themewidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/chartthemes/themewidget.ui -------------------------------------------------------------------------------- /charts/chartthemes/ui_themewidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/chartthemes/ui_themewidget.py -------------------------------------------------------------------------------- /charts/donutbreakdown/doc/donutbreakdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/donutbreakdown/doc/donutbreakdown.png -------------------------------------------------------------------------------- /charts/donutbreakdown/doc/donutbreakdown.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/donutbreakdown/doc/donutbreakdown.rst -------------------------------------------------------------------------------- /charts/donutbreakdown/donutbreakdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/donutbreakdown/donutbreakdown.py -------------------------------------------------------------------------------- /charts/donutbreakdown/donutbreakdown.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["donutbreakdown.py"] 3 | } 4 | -------------------------------------------------------------------------------- /charts/dynamicspline/chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/dynamicspline/chart.py -------------------------------------------------------------------------------- /charts/dynamicspline/doc/dynamicspline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/dynamicspline/doc/dynamicspline.rst -------------------------------------------------------------------------------- /charts/dynamicspline/doc/dynamicspline1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/dynamicspline/doc/dynamicspline1.png -------------------------------------------------------------------------------- /charts/dynamicspline/doc/dynamicspline2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/dynamicspline/doc/dynamicspline2.png -------------------------------------------------------------------------------- /charts/dynamicspline/dynamicspline.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/dynamicspline/dynamicspline.pyproject -------------------------------------------------------------------------------- /charts/dynamicspline/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/dynamicspline/main.py -------------------------------------------------------------------------------- /charts/legend/doc/legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/legend/doc/legend.png -------------------------------------------------------------------------------- /charts/legend/doc/legend.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/legend/doc/legend.rst -------------------------------------------------------------------------------- /charts/legend/legend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/legend/legend.py -------------------------------------------------------------------------------- /charts/legend/legend.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["legend.py"] 3 | } 4 | -------------------------------------------------------------------------------- /charts/lineandbar/doc/lineandbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/lineandbar/doc/lineandbar.png -------------------------------------------------------------------------------- /charts/lineandbar/doc/lineandbar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/lineandbar/doc/lineandbar.rst -------------------------------------------------------------------------------- /charts/lineandbar/lineandbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/lineandbar/lineandbar.py -------------------------------------------------------------------------------- /charts/lineandbar/lineandbar.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["lineandbar.py"] 3 | } 4 | -------------------------------------------------------------------------------- /charts/linechart/doc/linechart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/linechart/doc/linechart.png -------------------------------------------------------------------------------- /charts/linechart/doc/linechart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/linechart/doc/linechart.rst -------------------------------------------------------------------------------- /charts/linechart/linechart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/linechart/linechart.py -------------------------------------------------------------------------------- /charts/linechart/linechart.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["linechart.py"] 3 | } 4 | -------------------------------------------------------------------------------- /charts/logvalueaxis/doc/logvalueaxis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/logvalueaxis/doc/logvalueaxis.png -------------------------------------------------------------------------------- /charts/logvalueaxis/doc/logvalueaxis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/logvalueaxis/doc/logvalueaxis.rst -------------------------------------------------------------------------------- /charts/logvalueaxis/logvalueaxis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/logvalueaxis/logvalueaxis.py -------------------------------------------------------------------------------- /charts/logvalueaxis/logvalueaxis.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["logvalueaxis.py"] 3 | } 4 | -------------------------------------------------------------------------------- /charts/memoryusage/doc/memoryusage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/memoryusage/doc/memoryusage.png -------------------------------------------------------------------------------- /charts/memoryusage/doc/memoryusage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/memoryusage/doc/memoryusage.rst -------------------------------------------------------------------------------- /charts/memoryusage/memoryusage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/memoryusage/memoryusage.py -------------------------------------------------------------------------------- /charts/memoryusage/memoryusage.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["memoryusage.py"] 3 | } 4 | -------------------------------------------------------------------------------- /charts/modeldata/doc/modeldata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/modeldata/doc/modeldata.png -------------------------------------------------------------------------------- /charts/modeldata/doc/modeldata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/modeldata/doc/modeldata.rst -------------------------------------------------------------------------------- /charts/modeldata/modeldata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/modeldata/modeldata.py -------------------------------------------------------------------------------- /charts/modeldata/modeldata.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["modeldata.py"] 3 | } 4 | -------------------------------------------------------------------------------- /charts/nesteddonuts/doc/nesteddonuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/nesteddonuts/doc/nesteddonuts.png -------------------------------------------------------------------------------- /charts/nesteddonuts/doc/nesteddonuts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/nesteddonuts/doc/nesteddonuts.rst -------------------------------------------------------------------------------- /charts/nesteddonuts/nesteddonuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/nesteddonuts/nesteddonuts.py -------------------------------------------------------------------------------- /charts/nesteddonuts/nesteddonuts.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["nesteddonuts.py"] 3 | } 4 | -------------------------------------------------------------------------------- /charts/percentbarchart/doc/percentbarchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/percentbarchart/doc/percentbarchart.png -------------------------------------------------------------------------------- /charts/percentbarchart/doc/percentbarchart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/percentbarchart/doc/percentbarchart.rst -------------------------------------------------------------------------------- /charts/percentbarchart/percentbarchart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/percentbarchart/percentbarchart.py -------------------------------------------------------------------------------- /charts/percentbarchart/percentbarchart.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["percentbarchart.py"] 3 | } 4 | -------------------------------------------------------------------------------- /charts/piechart/doc/piechart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/piechart/doc/piechart.png -------------------------------------------------------------------------------- /charts/piechart/doc/piechart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/piechart/doc/piechart.rst -------------------------------------------------------------------------------- /charts/piechart/piechart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/piechart/piechart.py -------------------------------------------------------------------------------- /charts/piechart/piechart.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["piechart.py"] 3 | } 4 | -------------------------------------------------------------------------------- /charts/qmlpolarchart/View1.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/qmlpolarchart/View1.qml -------------------------------------------------------------------------------- /charts/qmlpolarchart/View2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/qmlpolarchart/View2.qml -------------------------------------------------------------------------------- /charts/qmlpolarchart/View3.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/qmlpolarchart/View3.qml -------------------------------------------------------------------------------- /charts/qmlpolarchart/doc/qmlpolarchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/qmlpolarchart/doc/qmlpolarchart.png -------------------------------------------------------------------------------- /charts/qmlpolarchart/doc/qmlpolarchart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/qmlpolarchart/doc/qmlpolarchart.rst -------------------------------------------------------------------------------- /charts/qmlpolarchart/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/qmlpolarchart/main.qml -------------------------------------------------------------------------------- /charts/qmlpolarchart/qmlpolarchart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/qmlpolarchart/qmlpolarchart.py -------------------------------------------------------------------------------- /charts/qmlpolarchart/qmlpolarchart.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/qmlpolarchart/qmlpolarchart.pyproject -------------------------------------------------------------------------------- /charts/temperaturerecords/doc/temperaturerecords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/temperaturerecords/doc/temperaturerecords.png -------------------------------------------------------------------------------- /charts/temperaturerecords/doc/temperaturerecords.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/temperaturerecords/doc/temperaturerecords.rst -------------------------------------------------------------------------------- /charts/temperaturerecords/temperaturerecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/charts/temperaturerecords/temperaturerecords.py -------------------------------------------------------------------------------- /charts/temperaturerecords/temperaturerecords.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["temperaturerecords.py"] 3 | } 4 | -------------------------------------------------------------------------------- /corelib/ipc/sharedmemory/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/corelib/ipc/sharedmemory/dialog.py -------------------------------------------------------------------------------- /corelib/ipc/sharedmemory/dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/corelib/ipc/sharedmemory/dialog.ui -------------------------------------------------------------------------------- /corelib/ipc/sharedmemory/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/corelib/ipc/sharedmemory/image.png -------------------------------------------------------------------------------- /corelib/ipc/sharedmemory/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/corelib/ipc/sharedmemory/main.py -------------------------------------------------------------------------------- /corelib/ipc/sharedmemory/qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/corelib/ipc/sharedmemory/qt.png -------------------------------------------------------------------------------- /corelib/ipc/sharedmemory/sharedmemory.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/corelib/ipc/sharedmemory/sharedmemory.pyproject -------------------------------------------------------------------------------- /corelib/ipc/sharedmemory/ui_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/corelib/ipc/sharedmemory/ui_dialog.py -------------------------------------------------------------------------------- /corelib/mimetypesbrowser/doc/mimetypesbrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/corelib/mimetypesbrowser/doc/mimetypesbrowser.png -------------------------------------------------------------------------------- /corelib/mimetypesbrowser/doc/mimetypesbrowser.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/corelib/mimetypesbrowser/doc/mimetypesbrowser.rst -------------------------------------------------------------------------------- /corelib/mimetypesbrowser/mainwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/corelib/mimetypesbrowser/mainwindow.py -------------------------------------------------------------------------------- /corelib/mimetypesbrowser/mimetypemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/corelib/mimetypesbrowser/mimetypemodel.py -------------------------------------------------------------------------------- /corelib/mimetypesbrowser/mimetypesbrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/corelib/mimetypesbrowser/mimetypesbrowser.py -------------------------------------------------------------------------------- /corelib/mimetypesbrowser/mimetypesbrowser.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["mimetypesbrowser.py"] 3 | } 4 | -------------------------------------------------------------------------------- /corelib/settingseditor/doc/settingseditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/corelib/settingseditor/doc/settingseditor.png -------------------------------------------------------------------------------- /corelib/settingseditor/doc/settingseditor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/corelib/settingseditor/doc/settingseditor.rst -------------------------------------------------------------------------------- /corelib/settingseditor/settingseditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/corelib/settingseditor/settingseditor.py -------------------------------------------------------------------------------- /corelib/settingseditor/settingseditor.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["settingseditor.py"] 3 | } 4 | -------------------------------------------------------------------------------- /corelib/threads/doc/threads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/corelib/threads/doc/threads.png -------------------------------------------------------------------------------- /corelib/threads/doc/threads.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/corelib/threads/doc/threads.rst -------------------------------------------------------------------------------- /corelib/threads/mandelbrot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/corelib/threads/mandelbrot.py -------------------------------------------------------------------------------- /corelib/threads/threads.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["mandelbrot.py"] 3 | } 4 | -------------------------------------------------------------------------------- /datavisualization/bars3d/bars3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/datavisualization/bars3d/bars3d.py -------------------------------------------------------------------------------- /datavisualization/bars3d/bars3d.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["bars3d.py"] 3 | } 4 | -------------------------------------------------------------------------------- /datavisualization/bars3d/doc/bars3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/datavisualization/bars3d/doc/bars3d.png -------------------------------------------------------------------------------- /datavisualization/bars3d/doc/bars3d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/datavisualization/bars3d/doc/bars3d.rst -------------------------------------------------------------------------------- /datavisualization/surface/doc/surface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/datavisualization/surface/doc/surface.rst -------------------------------------------------------------------------------- /datavisualization/surface/doc/surface_mountain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/datavisualization/surface/doc/surface_mountain.png -------------------------------------------------------------------------------- /datavisualization/surface/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/datavisualization/surface/main.py -------------------------------------------------------------------------------- /datavisualization/surface/mountain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/datavisualization/surface/mountain.png -------------------------------------------------------------------------------- /datavisualization/surface/surface.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/datavisualization/surface/surface.pyproject -------------------------------------------------------------------------------- /datavisualization/surface/surfacegraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/datavisualization/surface/surfacegraph.py -------------------------------------------------------------------------------- /dbus/listnames/listnames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/dbus/listnames/listnames.py -------------------------------------------------------------------------------- /dbus/listnames/listnames.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["listnames.py"] 3 | } 4 | -------------------------------------------------------------------------------- /dbus/pingpong/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/dbus/pingpong/ping.py -------------------------------------------------------------------------------- /dbus/pingpong/pingpong.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/dbus/pingpong/pingpong.pyproject -------------------------------------------------------------------------------- /dbus/pingpong/pong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/dbus/pingpong/pong.py -------------------------------------------------------------------------------- /declarative/editingmodel/MovingRectangle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/editingmodel/MovingRectangle.qml -------------------------------------------------------------------------------- /declarative/editingmodel/doc/editingmodel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/editingmodel/doc/editingmodel.rst -------------------------------------------------------------------------------- /declarative/editingmodel/doc/qabstractlistmodelqml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/editingmodel/doc/qabstractlistmodelqml.png -------------------------------------------------------------------------------- /declarative/editingmodel/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/editingmodel/main.py -------------------------------------------------------------------------------- /declarative/editingmodel/main.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/editingmodel/main.pyproject -------------------------------------------------------------------------------- /declarative/editingmodel/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/editingmodel/main.qml -------------------------------------------------------------------------------- /declarative/editingmodel/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/editingmodel/model.py -------------------------------------------------------------------------------- /declarative/extending/chapter1-basics/app.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/extending/chapter1-basics/app.qml -------------------------------------------------------------------------------- /declarative/extending/chapter1-basics/basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/extending/chapter1-basics/basics.py -------------------------------------------------------------------------------- /declarative/extending/chapter1-basics/chapter1-basics.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["basics.py", "app.qml"] 3 | } 4 | -------------------------------------------------------------------------------- /declarative/extending/chapter2-methods/app.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/extending/chapter2-methods/app.qml -------------------------------------------------------------------------------- /declarative/extending/chapter2-methods/chapter2-methods.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["methods.py", "app.qml"] 3 | } 4 | -------------------------------------------------------------------------------- /declarative/extending/chapter2-methods/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/extending/chapter2-methods/methods.py -------------------------------------------------------------------------------- /declarative/extending/chapter3-bindings/app.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/extending/chapter3-bindings/app.qml -------------------------------------------------------------------------------- /declarative/extending/chapter3-bindings/bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/extending/chapter3-bindings/bindings.py -------------------------------------------------------------------------------- /declarative/extending/chapter3-bindings/chapter3-bindings.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["app.qml", "bindings.py"] 3 | } 4 | -------------------------------------------------------------------------------- /declarative/extending/chapter4-customPropertyTypes/chapter4-customPropertyTypes.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["app.qml", "customPropertyTypes.py"] 3 | } 4 | -------------------------------------------------------------------------------- /declarative/extending/chapter5-listproperties/app.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/extending/chapter5-listproperties/app.qml -------------------------------------------------------------------------------- /declarative/extending/chapter5-listproperties/chapter5-listproperties.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["app.qml", "listproperties.py"] 3 | } 4 | -------------------------------------------------------------------------------- /declarative/objectlistmodel/doc/objectlistmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/objectlistmodel/doc/objectlistmodel.png -------------------------------------------------------------------------------- /declarative/objectlistmodel/doc/objectlistmodel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/objectlistmodel/doc/objectlistmodel.rst -------------------------------------------------------------------------------- /declarative/objectlistmodel/objectlistmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/objectlistmodel/objectlistmodel.py -------------------------------------------------------------------------------- /declarative/objectlistmodel/objectlistmodel.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["objectlistmodel.py", "view.qml"] 3 | } 4 | -------------------------------------------------------------------------------- /declarative/objectlistmodel/view.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/objectlistmodel/view.qml -------------------------------------------------------------------------------- /declarative/openglunderqml/doc/openglunderqml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/openglunderqml/doc/openglunderqml.rst -------------------------------------------------------------------------------- /declarative/openglunderqml/doc/squircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/openglunderqml/doc/squircle.png -------------------------------------------------------------------------------- /declarative/openglunderqml/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/openglunderqml/main.py -------------------------------------------------------------------------------- /declarative/openglunderqml/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/openglunderqml/main.qml -------------------------------------------------------------------------------- /declarative/openglunderqml/openglunderqml.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/openglunderqml/openglunderqml.pyproject -------------------------------------------------------------------------------- /declarative/openglunderqml/squircle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/openglunderqml/squircle.py -------------------------------------------------------------------------------- /declarative/openglunderqml/squirclerenderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/openglunderqml/squirclerenderer.py -------------------------------------------------------------------------------- /declarative/referenceexamples/adding/adding.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/adding/adding.pyproject -------------------------------------------------------------------------------- /declarative/referenceexamples/adding/doc/adding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/adding/doc/adding.rst -------------------------------------------------------------------------------- /declarative/referenceexamples/adding/example.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/adding/example.qml -------------------------------------------------------------------------------- /declarative/referenceexamples/adding/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/adding/main.py -------------------------------------------------------------------------------- /declarative/referenceexamples/adding/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/adding/person.py -------------------------------------------------------------------------------- /declarative/referenceexamples/attached/example.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/attached/example.qml -------------------------------------------------------------------------------- /declarative/referenceexamples/attached/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/attached/main.py -------------------------------------------------------------------------------- /declarative/referenceexamples/attached/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/attached/person.py -------------------------------------------------------------------------------- /declarative/referenceexamples/binding/birthdayparty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/binding/birthdayparty.py -------------------------------------------------------------------------------- /declarative/referenceexamples/binding/doc/binding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/binding/doc/binding.rst -------------------------------------------------------------------------------- /declarative/referenceexamples/binding/example.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/binding/example.qml -------------------------------------------------------------------------------- /declarative/referenceexamples/binding/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/binding/main.py -------------------------------------------------------------------------------- /declarative/referenceexamples/binding/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/binding/person.py -------------------------------------------------------------------------------- /declarative/referenceexamples/coercion/example.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/coercion/example.qml -------------------------------------------------------------------------------- /declarative/referenceexamples/coercion/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/coercion/main.py -------------------------------------------------------------------------------- /declarative/referenceexamples/coercion/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/coercion/person.py -------------------------------------------------------------------------------- /declarative/referenceexamples/default/birthdayparty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/default/birthdayparty.py -------------------------------------------------------------------------------- /declarative/referenceexamples/default/doc/default.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/default/doc/default.rst -------------------------------------------------------------------------------- /declarative/referenceexamples/default/example.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/default/example.qml -------------------------------------------------------------------------------- /declarative/referenceexamples/default/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/default/main.py -------------------------------------------------------------------------------- /declarative/referenceexamples/default/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/default/person.py -------------------------------------------------------------------------------- /declarative/referenceexamples/extended/example.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/extended/example.qml -------------------------------------------------------------------------------- /declarative/referenceexamples/extended/extended.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["main.py", "example.qml"] 3 | } 4 | -------------------------------------------------------------------------------- /declarative/referenceexamples/extended/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/extended/main.py -------------------------------------------------------------------------------- /declarative/referenceexamples/grouped/birthdayparty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/grouped/birthdayparty.py -------------------------------------------------------------------------------- /declarative/referenceexamples/grouped/doc/grouped.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/grouped/doc/grouped.rst -------------------------------------------------------------------------------- /declarative/referenceexamples/grouped/example.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/grouped/example.qml -------------------------------------------------------------------------------- /declarative/referenceexamples/grouped/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/grouped/main.py -------------------------------------------------------------------------------- /declarative/referenceexamples/grouped/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/grouped/person.py -------------------------------------------------------------------------------- /declarative/referenceexamples/methods/birthdayparty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/methods/birthdayparty.py -------------------------------------------------------------------------------- /declarative/referenceexamples/methods/doc/methods.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/methods/doc/methods.rst -------------------------------------------------------------------------------- /declarative/referenceexamples/methods/example.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/methods/example.qml -------------------------------------------------------------------------------- /declarative/referenceexamples/methods/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/methods/main.py -------------------------------------------------------------------------------- /declarative/referenceexamples/methods/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/methods/person.py -------------------------------------------------------------------------------- /declarative/referenceexamples/properties/example.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/properties/example.qml -------------------------------------------------------------------------------- /declarative/referenceexamples/properties/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/properties/main.py -------------------------------------------------------------------------------- /declarative/referenceexamples/properties/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/properties/person.py -------------------------------------------------------------------------------- /declarative/referenceexamples/valuesource/example.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/valuesource/example.qml -------------------------------------------------------------------------------- /declarative/referenceexamples/valuesource/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/valuesource/main.py -------------------------------------------------------------------------------- /declarative/referenceexamples/valuesource/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/referenceexamples/valuesource/person.py -------------------------------------------------------------------------------- /declarative/rendercontrol/rendercontrol_opengl/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/rendercontrol/rendercontrol_opengl/main.py -------------------------------------------------------------------------------- /declarative/signals/pytoqml1/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/signals/pytoqml1/main.py -------------------------------------------------------------------------------- /declarative/signals/pytoqml1/pytoqml1.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["main.py", "view.qml"] 3 | } 4 | -------------------------------------------------------------------------------- /declarative/signals/pytoqml1/view.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/signals/pytoqml1/view.qml -------------------------------------------------------------------------------- /declarative/signals/pytoqml2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/signals/pytoqml2/main.py -------------------------------------------------------------------------------- /declarative/signals/pytoqml2/pytoqml2.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["main.py", "view.qml"] 3 | } 4 | -------------------------------------------------------------------------------- /declarative/signals/pytoqml2/view.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/signals/pytoqml2/view.qml -------------------------------------------------------------------------------- /declarative/signals/qmltopy1/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/signals/qmltopy1/main.py -------------------------------------------------------------------------------- /declarative/signals/qmltopy1/qmltopy1.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["main.py", "view.qml"] 3 | } 4 | -------------------------------------------------------------------------------- /declarative/signals/qmltopy1/view.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/signals/qmltopy1/view.qml -------------------------------------------------------------------------------- /declarative/signals/qmltopy2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/signals/qmltopy2/main.py -------------------------------------------------------------------------------- /declarative/signals/qmltopy2/qmltopy2.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["main.py", "view.qml"] 3 | } 4 | -------------------------------------------------------------------------------- /declarative/signals/qmltopy2/view.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/signals/qmltopy2/view.qml -------------------------------------------------------------------------------- /declarative/signals/qmltopy3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/signals/qmltopy3/main.py -------------------------------------------------------------------------------- /declarative/signals/qmltopy3/qmltopy3.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["main.py", "view.qml"] 3 | } 4 | -------------------------------------------------------------------------------- /declarative/signals/qmltopy3/view.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/signals/qmltopy3/view.qml -------------------------------------------------------------------------------- /declarative/signals/qmltopy4/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/signals/qmltopy4/main.py -------------------------------------------------------------------------------- /declarative/signals/qmltopy4/qmltopy4.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["main.py", "view.qml"] 3 | } 4 | -------------------------------------------------------------------------------- /declarative/signals/qmltopy4/view.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/signals/qmltopy4/view.qml -------------------------------------------------------------------------------- /declarative/stringlistmodel/doc/stringlistmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/stringlistmodel/doc/stringlistmodel.png -------------------------------------------------------------------------------- /declarative/stringlistmodel/doc/stringlistmodel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/stringlistmodel/doc/stringlistmodel.rst -------------------------------------------------------------------------------- /declarative/stringlistmodel/stringlistmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/stringlistmodel/stringlistmodel.py -------------------------------------------------------------------------------- /declarative/stringlistmodel/stringlistmodel.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["stringlistmodel.py", "view.qml"] 3 | } 4 | -------------------------------------------------------------------------------- /declarative/stringlistmodel/view.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/stringlistmodel/view.qml -------------------------------------------------------------------------------- /declarative/textproperties/doc/textproperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/textproperties/doc/textproperties.png -------------------------------------------------------------------------------- /declarative/textproperties/doc/textproperties.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/textproperties/doc/textproperties.rst -------------------------------------------------------------------------------- /declarative/textproperties/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/textproperties/main.py -------------------------------------------------------------------------------- /declarative/textproperties/textproperties.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["main.py", "view.qml"] 3 | } 4 | -------------------------------------------------------------------------------- /declarative/textproperties/view.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/textproperties/view.qml -------------------------------------------------------------------------------- /declarative/usingmodel/doc/usingmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/usingmodel/doc/usingmodel.png -------------------------------------------------------------------------------- /declarative/usingmodel/doc/usingmodel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/usingmodel/doc/usingmodel.rst -------------------------------------------------------------------------------- /declarative/usingmodel/usingmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/usingmodel/usingmodel.py -------------------------------------------------------------------------------- /declarative/usingmodel/usingmodel.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["view.qml", "usingmodel.py"] 3 | } 4 | -------------------------------------------------------------------------------- /declarative/usingmodel/view.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/declarative/usingmodel/view.qml -------------------------------------------------------------------------------- /designer/taskmenuextension/doc/taskmenuextension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/designer/taskmenuextension/doc/taskmenuextension.png -------------------------------------------------------------------------------- /designer/taskmenuextension/doc/taskmenuextension.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/designer/taskmenuextension/doc/taskmenuextension.rst -------------------------------------------------------------------------------- /designer/taskmenuextension/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/designer/taskmenuextension/main.py -------------------------------------------------------------------------------- /designer/taskmenuextension/registertictactoe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/designer/taskmenuextension/registertictactoe.py -------------------------------------------------------------------------------- /designer/taskmenuextension/taskmenuextension.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/designer/taskmenuextension/taskmenuextension.pyproject -------------------------------------------------------------------------------- /designer/taskmenuextension/tictactoe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/designer/taskmenuextension/tictactoe.py -------------------------------------------------------------------------------- /designer/taskmenuextension/tictactoeplugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/designer/taskmenuextension/tictactoeplugin.py -------------------------------------------------------------------------------- /designer/taskmenuextension/tictactoetaskmenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/designer/taskmenuextension/tictactoetaskmenu.py -------------------------------------------------------------------------------- /examples.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/examples.pyproject -------------------------------------------------------------------------------- /external/matplotlib/widget3d/doc/widget3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/external/matplotlib/widget3d/doc/widget3d.png -------------------------------------------------------------------------------- /external/matplotlib/widget3d/doc/widget3d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/external/matplotlib/widget3d/doc/widget3d.rst -------------------------------------------------------------------------------- /external/matplotlib/widget3d/requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | numpy 3 | -------------------------------------------------------------------------------- /external/matplotlib/widget3d/widget3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/external/matplotlib/widget3d/widget3d.py -------------------------------------------------------------------------------- /external/matplotlib/widget3d/widget3d.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["widget3d.py"] 3 | } 4 | -------------------------------------------------------------------------------- /external/matplotlib/widget_gaussian/requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | scipy 3 | numpy 4 | -------------------------------------------------------------------------------- /external/matplotlib/widget_gaussian/widget_gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/external/matplotlib/widget_gaussian/widget_gaussian.py -------------------------------------------------------------------------------- /external/matplotlib/widget_gaussian/widget_gaussian.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["widget_gaussian.py"] 3 | } 4 | -------------------------------------------------------------------------------- /external/opencv/doc/opencv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/external/opencv/doc/opencv.png -------------------------------------------------------------------------------- /external/opencv/doc/opencv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/external/opencv/doc/opencv.rst -------------------------------------------------------------------------------- /external/opencv/opencv.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["webcam_pattern_detection.py"] 3 | } 4 | -------------------------------------------------------------------------------- /external/opencv/requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python 2 | -------------------------------------------------------------------------------- /external/opencv/webcam_pattern_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/external/opencv/webcam_pattern_detection.py -------------------------------------------------------------------------------- /external/pandas/dataframe_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/external/pandas/dataframe_model.py -------------------------------------------------------------------------------- /external/pandas/doc/pandas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/external/pandas/doc/pandas.rst -------------------------------------------------------------------------------- /external/pandas/doc/pandas_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/external/pandas/doc/pandas_simple.png -------------------------------------------------------------------------------- /external/pandas/iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/external/pandas/iris.csv -------------------------------------------------------------------------------- /external/pandas/pandas.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["dataframe_model.py"] 3 | } 4 | -------------------------------------------------------------------------------- /external/pandas/requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | -------------------------------------------------------------------------------- /external/scikit/doc/scikit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/external/scikit/doc/scikit.png -------------------------------------------------------------------------------- /external/scikit/doc/scikit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/external/scikit/doc/scikit.rst -------------------------------------------------------------------------------- /external/scikit/requirements.txt: -------------------------------------------------------------------------------- 1 | scikit-image 2 | -------------------------------------------------------------------------------- /external/scikit/scikit.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["staining_colors_separation.py"] 3 | } 4 | -------------------------------------------------------------------------------- /external/scikit/staining_colors_separation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/external/scikit/staining_colors_separation.py -------------------------------------------------------------------------------- /installer_test/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/installer_test/hello.py -------------------------------------------------------------------------------- /macextras/macpasteboardmime/macpasteboardmime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/macextras/macpasteboardmime/macpasteboardmime.py -------------------------------------------------------------------------------- /macextras/macpasteboardmime/macpasteboardmime.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["macpasteboardmime.py"] 3 | } 4 | -------------------------------------------------------------------------------- /multimedia/audiooutput/audiooutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/multimedia/audiooutput/audiooutput.py -------------------------------------------------------------------------------- /multimedia/audiooutput/audiooutput.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["audiooutput.py"] 3 | } 4 | -------------------------------------------------------------------------------- /multimedia/audiooutput/doc/audiooutput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/multimedia/audiooutput/doc/audiooutput.png -------------------------------------------------------------------------------- /multimedia/audiooutput/doc/audiooutput.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/multimedia/audiooutput/doc/audiooutput.rst -------------------------------------------------------------------------------- /multimedia/audiosource/audiosource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/multimedia/audiosource/audiosource.py -------------------------------------------------------------------------------- /multimedia/audiosource/audiosource.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["audiosource.py"] 3 | } 4 | -------------------------------------------------------------------------------- /multimedia/audiosource/doc/audiosource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/multimedia/audiosource/doc/audiosource.png -------------------------------------------------------------------------------- /multimedia/audiosource/doc/audiosource.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/multimedia/audiosource/doc/audiosource.rst -------------------------------------------------------------------------------- /multimedia/camera/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/multimedia/camera/camera.py -------------------------------------------------------------------------------- /multimedia/camera/camera.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["camera.py"] 3 | } 4 | -------------------------------------------------------------------------------- /multimedia/camera/doc/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/multimedia/camera/doc/camera.png -------------------------------------------------------------------------------- /multimedia/camera/doc/camera.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/multimedia/camera/doc/camera.rst -------------------------------------------------------------------------------- /multimedia/camera/shutter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/multimedia/camera/shutter.svg -------------------------------------------------------------------------------- /multimedia/player/doc/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/multimedia/player/doc/player.png -------------------------------------------------------------------------------- /multimedia/player/doc/player.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/multimedia/player/doc/player.rst -------------------------------------------------------------------------------- /multimedia/player/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/multimedia/player/player.py -------------------------------------------------------------------------------- /multimedia/player/player.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["player.py"] 3 | } 4 | -------------------------------------------------------------------------------- /network/blockingfortuneclient/blockingfortuneclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/network/blockingfortuneclient/blockingfortuneclient.py -------------------------------------------------------------------------------- /network/blockingfortuneclient/blockingfortuneclient.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["blockingfortuneclient.py"] 3 | } 4 | -------------------------------------------------------------------------------- /network/downloader/doc/downloader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/network/downloader/doc/downloader.png -------------------------------------------------------------------------------- /network/downloader/doc/downloader.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/network/downloader/doc/downloader.rst -------------------------------------------------------------------------------- /network/downloader/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/network/downloader/downloader.py -------------------------------------------------------------------------------- /network/downloader/downloader.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["downloader.py"] 3 | } 4 | -------------------------------------------------------------------------------- /network/fortuneclient/fortuneclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/network/fortuneclient/fortuneclient.py -------------------------------------------------------------------------------- /network/fortuneclient/fortuneclient.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["fortuneclient.py"] 3 | } 4 | -------------------------------------------------------------------------------- /network/fortuneserver/fortuneserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/network/fortuneserver/fortuneserver.py -------------------------------------------------------------------------------- /network/fortuneserver/fortuneserver.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["fortuneserver.py"] 3 | } 4 | -------------------------------------------------------------------------------- /network/loopback/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/network/loopback/dialog.py -------------------------------------------------------------------------------- /network/loopback/doc/loopback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/network/loopback/doc/loopback.png -------------------------------------------------------------------------------- /network/loopback/doc/loopback.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/network/loopback/doc/loopback.rst -------------------------------------------------------------------------------- /network/loopback/loopback.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/network/loopback/loopback.pyproject -------------------------------------------------------------------------------- /network/loopback/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/network/loopback/main.py -------------------------------------------------------------------------------- /network/threadedfortuneserver/threadedfortuneserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/network/threadedfortuneserver/threadedfortuneserver.py -------------------------------------------------------------------------------- /network/threadedfortuneserver/threadedfortuneserver.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["threadedfortuneserver.py"] 3 | } 4 | -------------------------------------------------------------------------------- /networkauth/redditclient/doc/redditclient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/networkauth/redditclient/doc/redditclient.png -------------------------------------------------------------------------------- /networkauth/redditclient/doc/redditclient.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/networkauth/redditclient/doc/redditclient.rst -------------------------------------------------------------------------------- /networkauth/redditclient/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/networkauth/redditclient/main.py -------------------------------------------------------------------------------- /networkauth/redditclient/redditclient.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/networkauth/redditclient/redditclient.pyproject -------------------------------------------------------------------------------- /networkauth/redditclient/redditmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/networkauth/redditclient/redditmodel.py -------------------------------------------------------------------------------- /networkauth/redditclient/redditwrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/networkauth/redditclient/redditwrapper.py -------------------------------------------------------------------------------- /opengl/contextinfo/contextinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/opengl/contextinfo/contextinfo.py -------------------------------------------------------------------------------- /opengl/contextinfo/contextinfo.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["contextinfo.py"] 3 | } 4 | -------------------------------------------------------------------------------- /opengl/contextinfo/doc/contextinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/opengl/contextinfo/doc/contextinfo.png -------------------------------------------------------------------------------- /opengl/contextinfo/doc/contextinfo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/opengl/contextinfo/doc/contextinfo.rst -------------------------------------------------------------------------------- /opengl/hellogl2/doc/hellogl2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/opengl/hellogl2/doc/hellogl2.png -------------------------------------------------------------------------------- /opengl/hellogl2/doc/hellogl2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/opengl/hellogl2/doc/hellogl2.rst -------------------------------------------------------------------------------- /opengl/hellogl2/hellogl2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/opengl/hellogl2/hellogl2.py -------------------------------------------------------------------------------- /opengl/hellogl2/hellogl2.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["hellogl2.py"] 3 | } 4 | -------------------------------------------------------------------------------- /opengl/textures/doc/textures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/opengl/textures/doc/textures.png -------------------------------------------------------------------------------- /opengl/textures/doc/textures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/opengl/textures/doc/textures.rst -------------------------------------------------------------------------------- /opengl/textures/images/side1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/opengl/textures/images/side1.png -------------------------------------------------------------------------------- /opengl/textures/images/side2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/opengl/textures/images/side2.png -------------------------------------------------------------------------------- /opengl/textures/images/side3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/opengl/textures/images/side3.png -------------------------------------------------------------------------------- /opengl/textures/images/side4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/opengl/textures/images/side4.png -------------------------------------------------------------------------------- /opengl/textures/images/side5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/opengl/textures/images/side5.png -------------------------------------------------------------------------------- /opengl/textures/images/side6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/opengl/textures/images/side6.png -------------------------------------------------------------------------------- /opengl/textures/textures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/opengl/textures/textures.py -------------------------------------------------------------------------------- /opengl/textures/textures.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/opengl/textures/textures.pyproject -------------------------------------------------------------------------------- /opengl/textures/textures.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/opengl/textures/textures.qrc -------------------------------------------------------------------------------- /opengl/textures/textures_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/opengl/textures/textures_rc.py -------------------------------------------------------------------------------- /opengl/threadedqopenglwidget/glwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/opengl/threadedqopenglwidget/glwidget.py -------------------------------------------------------------------------------- /opengl/threadedqopenglwidget/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/opengl/threadedqopenglwidget/main.py -------------------------------------------------------------------------------- /opengl/threadedqopenglwidget/mainwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/opengl/threadedqopenglwidget/mainwindow.py -------------------------------------------------------------------------------- /opengl/threadedqopenglwidget/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/opengl/threadedqopenglwidget/renderer.py -------------------------------------------------------------------------------- /quick/painteditem/doc/painteditem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quick/painteditem/doc/painteditem.png -------------------------------------------------------------------------------- /quick/painteditem/doc/painteditem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quick/painteditem/doc/painteditem.rst -------------------------------------------------------------------------------- /quick/painteditem/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quick/painteditem/main.qml -------------------------------------------------------------------------------- /quick/painteditem/painteditem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quick/painteditem/painteditem.py -------------------------------------------------------------------------------- /quick/painteditem/painteditem.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quick/painteditem/painteditem.pyproject -------------------------------------------------------------------------------- /quick3d/customgeometry/customgeometry.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quick3d/customgeometry/customgeometry.pyproject -------------------------------------------------------------------------------- /quick3d/customgeometry/doc/customgeometry-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quick3d/customgeometry/doc/customgeometry-example.jpg -------------------------------------------------------------------------------- /quick3d/customgeometry/doc/customgeometry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quick3d/customgeometry/doc/customgeometry.rst -------------------------------------------------------------------------------- /quick3d/customgeometry/examplepoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quick3d/customgeometry/examplepoint.py -------------------------------------------------------------------------------- /quick3d/customgeometry/exampletriangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quick3d/customgeometry/exampletriangle.py -------------------------------------------------------------------------------- /quick3d/customgeometry/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quick3d/customgeometry/main.py -------------------------------------------------------------------------------- /quick3d/customgeometry/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quick3d/customgeometry/main.qml -------------------------------------------------------------------------------- /quick3d/customgeometry/qt_logo_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quick3d/customgeometry/qt_logo_rect.png -------------------------------------------------------------------------------- /quick3d/customgeometry/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quick3d/customgeometry/resources.qrc -------------------------------------------------------------------------------- /quick3d/customgeometry/resources_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quick3d/customgeometry/resources_rc.py -------------------------------------------------------------------------------- /quick3d/intro/doc/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quick3d/intro/doc/intro.png -------------------------------------------------------------------------------- /quick3d/intro/doc/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quick3d/intro/doc/intro.rst -------------------------------------------------------------------------------- /quick3d/intro/intro.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quick3d/intro/intro.pyproject -------------------------------------------------------------------------------- /quick3d/intro/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quick3d/intro/main.py -------------------------------------------------------------------------------- /quick3d/intro/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quick3d/intro/main.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/+Material/ToolBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/+Material/ToolBar.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/ToolBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/ToolBar.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/doc/gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/doc/gallery.png -------------------------------------------------------------------------------- /quickcontrols2/gallery/doc/gallery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/doc/gallery.rst -------------------------------------------------------------------------------- /quickcontrols2/gallery/gallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/gallery.py -------------------------------------------------------------------------------- /quickcontrols2/gallery/gallery.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/gallery.pyproject -------------------------------------------------------------------------------- /quickcontrols2/gallery/gallery.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/gallery.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/gallery.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/gallery.qrc -------------------------------------------------------------------------------- /quickcontrols2/gallery/icons/gallery/20x20/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/icons/gallery/20x20/back.png -------------------------------------------------------------------------------- /quickcontrols2/gallery/icons/gallery/20x20/drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/icons/gallery/20x20/drawer.png -------------------------------------------------------------------------------- /quickcontrols2/gallery/icons/gallery/20x20/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/icons/gallery/20x20/menu.png -------------------------------------------------------------------------------- /quickcontrols2/gallery/icons/gallery/20x20@2/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/icons/gallery/20x20@2/back.png -------------------------------------------------------------------------------- /quickcontrols2/gallery/icons/gallery/20x20@2/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/icons/gallery/20x20@2/menu.png -------------------------------------------------------------------------------- /quickcontrols2/gallery/icons/gallery/20x20@3/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/icons/gallery/20x20@3/back.png -------------------------------------------------------------------------------- /quickcontrols2/gallery/icons/gallery/20x20@3/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/icons/gallery/20x20@3/menu.png -------------------------------------------------------------------------------- /quickcontrols2/gallery/icons/gallery/20x20@4/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/icons/gallery/20x20@4/back.png -------------------------------------------------------------------------------- /quickcontrols2/gallery/icons/gallery/20x20@4/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/icons/gallery/20x20@4/menu.png -------------------------------------------------------------------------------- /quickcontrols2/gallery/icons/gallery/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/icons/gallery/index.theme -------------------------------------------------------------------------------- /quickcontrols2/gallery/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/images/arrow.png -------------------------------------------------------------------------------- /quickcontrols2/gallery/images/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/images/arrow@2x.png -------------------------------------------------------------------------------- /quickcontrols2/gallery/images/arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/images/arrow@3x.png -------------------------------------------------------------------------------- /quickcontrols2/gallery/images/arrow@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/images/arrow@4x.png -------------------------------------------------------------------------------- /quickcontrols2/gallery/images/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/images/arrows.png -------------------------------------------------------------------------------- /quickcontrols2/gallery/images/arrows@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/images/arrows@2x.png -------------------------------------------------------------------------------- /quickcontrols2/gallery/images/arrows@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/images/arrows@3x.png -------------------------------------------------------------------------------- /quickcontrols2/gallery/images/arrows@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/images/arrows@4x.png -------------------------------------------------------------------------------- /quickcontrols2/gallery/images/qt-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/images/qt-logo.png -------------------------------------------------------------------------------- /quickcontrols2/gallery/images/qt-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/images/qt-logo@2x.png -------------------------------------------------------------------------------- /quickcontrols2/gallery/images/qt-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/images/qt-logo@3x.png -------------------------------------------------------------------------------- /quickcontrols2/gallery/images/qt-logo@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/images/qt-logo@4x.png -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/BusyIndicatorPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/BusyIndicatorPage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/ButtonPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/ButtonPage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/CheckBoxPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/CheckBoxPage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/ComboBoxPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/ComboBoxPage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/DelayButtonPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/DelayButtonPage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/DelegatePage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/DelegatePage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/DialPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/DialPage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/DialogPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/DialogPage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/FramePage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/FramePage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/GroupBoxPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/GroupBoxPage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/PageIndicatorPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/PageIndicatorPage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/ProgressBarPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/ProgressBarPage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/RadioButtonPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/RadioButtonPage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/RangeSliderPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/RangeSliderPage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/ScrollBarPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/ScrollBarPage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/ScrollIndicatorPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/ScrollIndicatorPage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/ScrollablePage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/ScrollablePage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/SliderPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/SliderPage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/SpinBoxPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/SpinBoxPage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/StackViewPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/StackViewPage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/SwipeViewPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/SwipeViewPage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/SwitchPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/SwitchPage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/TabBarPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/TabBarPage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/TextAreaPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/TextAreaPage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/TextFieldPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/TextFieldPage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/ToolTipPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/ToolTipPage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/pages/TumblerPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/pages/TumblerPage.qml -------------------------------------------------------------------------------- /quickcontrols2/gallery/qmldir: -------------------------------------------------------------------------------- 1 | module App 2 | -------------------------------------------------------------------------------- /quickcontrols2/gallery/qtquickcontrols2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/qtquickcontrols2.conf -------------------------------------------------------------------------------- /quickcontrols2/gallery/rc_gallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/quickcontrols2/gallery/rc_gallery.py -------------------------------------------------------------------------------- /remoteobjects/modelview/modelview.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/remoteobjects/modelview/modelview.pyproject -------------------------------------------------------------------------------- /remoteobjects/modelview/modelviewclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/remoteobjects/modelview/modelviewclient.py -------------------------------------------------------------------------------- /remoteobjects/modelview/modelviewserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/remoteobjects/modelview/modelviewserver.py -------------------------------------------------------------------------------- /samplebinding/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/samplebinding/CMakeLists.txt -------------------------------------------------------------------------------- /samplebinding/bindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/samplebinding/bindings.h -------------------------------------------------------------------------------- /samplebinding/bindings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/samplebinding/bindings.xml -------------------------------------------------------------------------------- /samplebinding/doc/samplebinding.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/samplebinding/doc/samplebinding.pyproject -------------------------------------------------------------------------------- /samplebinding/doc/samplebinding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/samplebinding/doc/samplebinding.rst -------------------------------------------------------------------------------- /samplebinding/icecream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/samplebinding/icecream.cpp -------------------------------------------------------------------------------- /samplebinding/icecream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/samplebinding/icecream.h -------------------------------------------------------------------------------- /samplebinding/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/samplebinding/macros.h -------------------------------------------------------------------------------- /samplebinding/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/samplebinding/main.py -------------------------------------------------------------------------------- /samplebinding/truck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/samplebinding/truck.cpp -------------------------------------------------------------------------------- /samplebinding/truck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/samplebinding/truck.h -------------------------------------------------------------------------------- /scriptableapplication/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/scriptableapplication/CMakeLists.txt -------------------------------------------------------------------------------- /scriptableapplication/doc/scriptableapplication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/scriptableapplication/doc/scriptableapplication.rst -------------------------------------------------------------------------------- /scriptableapplication/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/scriptableapplication/main.cpp -------------------------------------------------------------------------------- /scriptableapplication/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/scriptableapplication/mainwindow.cpp -------------------------------------------------------------------------------- /scriptableapplication/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/scriptableapplication/mainwindow.h -------------------------------------------------------------------------------- /scriptableapplication/pyside.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/scriptableapplication/pyside.pri -------------------------------------------------------------------------------- /scriptableapplication/pythonutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/scriptableapplication/pythonutils.cpp -------------------------------------------------------------------------------- /scriptableapplication/pythonutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/scriptableapplication/pythonutils.h -------------------------------------------------------------------------------- /scriptableapplication/scriptableapplication.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/scriptableapplication/scriptableapplication.pro -------------------------------------------------------------------------------- /scriptableapplication/scriptableapplication.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/scriptableapplication/scriptableapplication.xml -------------------------------------------------------------------------------- /scriptableapplication/wrappedclasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/scriptableapplication/wrappedclasses.h -------------------------------------------------------------------------------- /sql/books/bookdelegate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/sql/books/bookdelegate.py -------------------------------------------------------------------------------- /sql/books/books.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/sql/books/books.pyproject -------------------------------------------------------------------------------- /sql/books/books.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/sql/books/books.qrc -------------------------------------------------------------------------------- /sql/books/bookwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/sql/books/bookwindow.py -------------------------------------------------------------------------------- /sql/books/bookwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/sql/books/bookwindow.ui -------------------------------------------------------------------------------- /sql/books/createdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/sql/books/createdb.py -------------------------------------------------------------------------------- /sql/books/doc/books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/sql/books/doc/books.png -------------------------------------------------------------------------------- /sql/books/doc/books.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/sql/books/doc/books.rst -------------------------------------------------------------------------------- /sql/books/images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/sql/books/images/star.png -------------------------------------------------------------------------------- /sql/books/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/sql/books/main.py -------------------------------------------------------------------------------- /sql/books/rc_books.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/sql/books/rc_books.py -------------------------------------------------------------------------------- /sql/books/ui_bookwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/sql/books/ui_bookwindow.py -------------------------------------------------------------------------------- /sql/relationaltablemodel/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/sql/relationaltablemodel/connection.py -------------------------------------------------------------------------------- /sql/relationaltablemodel/relationaltablemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/sql/relationaltablemodel/relationaltablemodel.py -------------------------------------------------------------------------------- /uitools/uiloader/uiloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/uitools/uiloader/uiloader.py -------------------------------------------------------------------------------- /uitools/uiloader/uiloader.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["uiloader.py"] 3 | } 4 | -------------------------------------------------------------------------------- /utils/pyside_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/utils/pyside_config.py -------------------------------------------------------------------------------- /webchannel/standalone/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webchannel/standalone/core.py -------------------------------------------------------------------------------- /webchannel/standalone/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webchannel/standalone/dialog.py -------------------------------------------------------------------------------- /webchannel/standalone/dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webchannel/standalone/dialog.ui -------------------------------------------------------------------------------- /webchannel/standalone/doc/standalone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webchannel/standalone/doc/standalone.png -------------------------------------------------------------------------------- /webchannel/standalone/doc/standalone.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webchannel/standalone/doc/standalone.rst -------------------------------------------------------------------------------- /webchannel/standalone/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webchannel/standalone/index.html -------------------------------------------------------------------------------- /webchannel/standalone/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webchannel/standalone/main.py -------------------------------------------------------------------------------- /webchannel/standalone/standalone.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webchannel/standalone/standalone.pyproject -------------------------------------------------------------------------------- /webchannel/standalone/ui_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webchannel/standalone/ui_dialog.py -------------------------------------------------------------------------------- /webchannel/standalone/websocketclientwrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webchannel/standalone/websocketclientwrapper.py -------------------------------------------------------------------------------- /webchannel/standalone/websockettransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webchannel/standalone/websockettransport.py -------------------------------------------------------------------------------- /webenginequick/nanobrowser/browser.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webenginequick/nanobrowser/browser.qml -------------------------------------------------------------------------------- /webenginequick/nanobrowser/doc/nanobrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webenginequick/nanobrowser/doc/nanobrowser.png -------------------------------------------------------------------------------- /webenginequick/nanobrowser/doc/nanobrowser.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webenginequick/nanobrowser/doc/nanobrowser.rst -------------------------------------------------------------------------------- /webenginequick/nanobrowser/nanobrowser.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webenginequick/nanobrowser/nanobrowser.pyproject -------------------------------------------------------------------------------- /webenginequick/nanobrowser/quicknanobrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webenginequick/nanobrowser/quicknanobrowser.py -------------------------------------------------------------------------------- /webenginewidgets/markdowneditor/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webenginewidgets/markdowneditor/document.py -------------------------------------------------------------------------------- /webenginewidgets/markdowneditor/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webenginewidgets/markdowneditor/main.py -------------------------------------------------------------------------------- /webenginewidgets/markdowneditor/mainwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webenginewidgets/markdowneditor/mainwindow.py -------------------------------------------------------------------------------- /webenginewidgets/markdowneditor/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webenginewidgets/markdowneditor/mainwindow.ui -------------------------------------------------------------------------------- /webenginewidgets/markdowneditor/previewpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webenginewidgets/markdowneditor/previewpage.py -------------------------------------------------------------------------------- /webenginewidgets/markdowneditor/ui_mainwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webenginewidgets/markdowneditor/ui_mainwindow.py -------------------------------------------------------------------------------- /webenginewidgets/simplebrowser/simplebrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webenginewidgets/simplebrowser/simplebrowser.py -------------------------------------------------------------------------------- /webenginewidgets/simplebrowser/simplebrowser.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["simplebrowser.py"] 3 | } 4 | -------------------------------------------------------------------------------- /webenginewidgets/tabbedbrowser/bookmarkwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webenginewidgets/tabbedbrowser/bookmarkwidget.py -------------------------------------------------------------------------------- /webenginewidgets/tabbedbrowser/browsertabwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webenginewidgets/tabbedbrowser/browsertabwidget.py -------------------------------------------------------------------------------- /webenginewidgets/tabbedbrowser/downloadwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webenginewidgets/tabbedbrowser/downloadwidget.py -------------------------------------------------------------------------------- /webenginewidgets/tabbedbrowser/findtoolbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webenginewidgets/tabbedbrowser/findtoolbar.py -------------------------------------------------------------------------------- /webenginewidgets/tabbedbrowser/historywindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webenginewidgets/tabbedbrowser/historywindow.py -------------------------------------------------------------------------------- /webenginewidgets/tabbedbrowser/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webenginewidgets/tabbedbrowser/main.py -------------------------------------------------------------------------------- /webenginewidgets/tabbedbrowser/webengineview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/webenginewidgets/tabbedbrowser/webengineview.py -------------------------------------------------------------------------------- /widgetbinding/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgetbinding/CMakeLists.txt -------------------------------------------------------------------------------- /widgetbinding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgetbinding/README.md -------------------------------------------------------------------------------- /widgetbinding/bindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgetbinding/bindings.h -------------------------------------------------------------------------------- /widgetbinding/bindings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgetbinding/bindings.xml -------------------------------------------------------------------------------- /widgetbinding/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgetbinding/dialog.py -------------------------------------------------------------------------------- /widgetbinding/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgetbinding/macros.h -------------------------------------------------------------------------------- /widgetbinding/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgetbinding/main.py -------------------------------------------------------------------------------- /widgetbinding/registerwigglywidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgetbinding/registerwigglywidget.py -------------------------------------------------------------------------------- /widgetbinding/wigglywidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgetbinding/wigglywidget.cpp -------------------------------------------------------------------------------- /widgetbinding/wigglywidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgetbinding/wigglywidget.h -------------------------------------------------------------------------------- /widgetbinding/wigglywidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgetbinding/wigglywidget.py -------------------------------------------------------------------------------- /widgets/animation/animatedtiles/animatedtiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/animatedtiles/animatedtiles.py -------------------------------------------------------------------------------- /widgets/animation/animatedtiles/animatedtiles.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/animatedtiles/animatedtiles.qrc -------------------------------------------------------------------------------- /widgets/animation/animatedtiles/animatedtiles_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/animatedtiles/animatedtiles_rc.py -------------------------------------------------------------------------------- /widgets/animation/animatedtiles/images/centered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/animatedtiles/images/centered.png -------------------------------------------------------------------------------- /widgets/animation/animatedtiles/images/ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/animatedtiles/images/ellipse.png -------------------------------------------------------------------------------- /widgets/animation/animatedtiles/images/figure8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/animatedtiles/images/figure8.png -------------------------------------------------------------------------------- /widgets/animation/animatedtiles/images/kinetic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/animatedtiles/images/kinetic.png -------------------------------------------------------------------------------- /widgets/animation/animatedtiles/images/random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/animatedtiles/images/random.png -------------------------------------------------------------------------------- /widgets/animation/animatedtiles/images/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/animatedtiles/images/tile.png -------------------------------------------------------------------------------- /widgets/animation/appchooser/akregator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/appchooser/akregator.png -------------------------------------------------------------------------------- /widgets/animation/appchooser/appchooser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/appchooser/appchooser.py -------------------------------------------------------------------------------- /widgets/animation/appchooser/appchooser.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/appchooser/appchooser.pyproject -------------------------------------------------------------------------------- /widgets/animation/appchooser/appchooser.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/appchooser/appchooser.qrc -------------------------------------------------------------------------------- /widgets/animation/appchooser/appchooser_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/appchooser/appchooser_rc.py -------------------------------------------------------------------------------- /widgets/animation/appchooser/digikam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/appchooser/digikam.png -------------------------------------------------------------------------------- /widgets/animation/appchooser/doc/appchooser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/appchooser/doc/appchooser.png -------------------------------------------------------------------------------- /widgets/animation/appchooser/doc/appchooser.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/appchooser/doc/appchooser.rst -------------------------------------------------------------------------------- /widgets/animation/appchooser/k3b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/appchooser/k3b.png -------------------------------------------------------------------------------- /widgets/animation/easing/doc/easing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/easing/doc/easing.png -------------------------------------------------------------------------------- /widgets/animation/easing/doc/easing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/easing/doc/easing.rst -------------------------------------------------------------------------------- /widgets/animation/easing/easing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/easing/easing.py -------------------------------------------------------------------------------- /widgets/animation/easing/easing.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/easing/easing.pyproject -------------------------------------------------------------------------------- /widgets/animation/easing/form.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/easing/form.ui -------------------------------------------------------------------------------- /widgets/animation/easing/images/qt-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/easing/images/qt-logo.png -------------------------------------------------------------------------------- /widgets/animation/easing/ui_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/easing/ui_form.py -------------------------------------------------------------------------------- /widgets/animation/states/doc/states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/states/doc/states.png -------------------------------------------------------------------------------- /widgets/animation/states/doc/states.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/states/doc/states.rst -------------------------------------------------------------------------------- /widgets/animation/states/states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/states/states.py -------------------------------------------------------------------------------- /widgets/animation/states/states.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/states/states.pyproject -------------------------------------------------------------------------------- /widgets/animation/states/states_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/animation/states/states_rc.py -------------------------------------------------------------------------------- /widgets/codeeditor/codeeditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/codeeditor/codeeditor.py -------------------------------------------------------------------------------- /widgets/codeeditor/codeeditor.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/codeeditor/codeeditor.pyproject -------------------------------------------------------------------------------- /widgets/codeeditor/doc/codeeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/codeeditor/doc/codeeditor.png -------------------------------------------------------------------------------- /widgets/codeeditor/doc/codeeditor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/codeeditor/doc/codeeditor.rst -------------------------------------------------------------------------------- /widgets/codeeditor/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/codeeditor/main.py -------------------------------------------------------------------------------- /widgets/desktop/screenshot/doc/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/desktop/screenshot/doc/screenshot.png -------------------------------------------------------------------------------- /widgets/desktop/screenshot/doc/screenshot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/desktop/screenshot/doc/screenshot.rst -------------------------------------------------------------------------------- /widgets/desktop/screenshot/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/desktop/screenshot/screenshot.py -------------------------------------------------------------------------------- /widgets/desktop/screenshot/screenshot.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["screenshot.py"] 3 | } 4 | -------------------------------------------------------------------------------- /widgets/dialogs/classwizard/classwizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/dialogs/classwizard/classwizard.py -------------------------------------------------------------------------------- /widgets/dialogs/classwizard/classwizard.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/dialogs/classwizard/classwizard.pyproject -------------------------------------------------------------------------------- /widgets/dialogs/classwizard/classwizard.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/dialogs/classwizard/classwizard.qrc -------------------------------------------------------------------------------- /widgets/dialogs/classwizard/classwizard_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/dialogs/classwizard/classwizard_rc.py -------------------------------------------------------------------------------- /widgets/dialogs/classwizard/doc/classwizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/dialogs/classwizard/doc/classwizard.png -------------------------------------------------------------------------------- /widgets/dialogs/classwizard/doc/classwizard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/dialogs/classwizard/doc/classwizard.rst -------------------------------------------------------------------------------- /widgets/dialogs/classwizard/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/dialogs/classwizard/images/background.png -------------------------------------------------------------------------------- /widgets/dialogs/classwizard/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/dialogs/classwizard/images/banner.png -------------------------------------------------------------------------------- /widgets/dialogs/classwizard/images/watermark1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/dialogs/classwizard/images/watermark1.png -------------------------------------------------------------------------------- /widgets/dialogs/classwizard/listchooser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/dialogs/classwizard/listchooser.py -------------------------------------------------------------------------------- /widgets/dialogs/extension/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/dialogs/extension/extension.py -------------------------------------------------------------------------------- /widgets/dialogs/extension/extension.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["extension.py"] 3 | } 4 | -------------------------------------------------------------------------------- /widgets/dialogs/findfiles/findfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/dialogs/findfiles/findfiles.py -------------------------------------------------------------------------------- /widgets/dialogs/findfiles/findfiles.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/dialogs/findfiles/findfiles.pyproject -------------------------------------------------------------------------------- /widgets/dialogs/standarddialogs/standarddialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/dialogs/standarddialogs/standarddialogs.py -------------------------------------------------------------------------------- /widgets/dialogs/standarddialogs/standarddialogs.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["standarddialogs.py"] 3 | } 4 | -------------------------------------------------------------------------------- /widgets/dialogs/tabdialog/doc/tabdialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/dialogs/tabdialog/doc/tabdialog.png -------------------------------------------------------------------------------- /widgets/dialogs/tabdialog/doc/tabdialog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/dialogs/tabdialog/doc/tabdialog.rst -------------------------------------------------------------------------------- /widgets/dialogs/tabdialog/tabdialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/dialogs/tabdialog/tabdialog.py -------------------------------------------------------------------------------- /widgets/dialogs/tabdialog/tabdialog.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["tabdialog.py"] 3 | } 4 | -------------------------------------------------------------------------------- /widgets/dialogs/trivialwizard/trivialwizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/dialogs/trivialwizard/trivialwizard.py -------------------------------------------------------------------------------- /widgets/dialogs/trivialwizard/trivialwizard.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["trivialwizard.py"] 3 | } 4 | -------------------------------------------------------------------------------- /widgets/draganddrop/draggableicons/images/boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/draganddrop/draggableicons/images/boat.png -------------------------------------------------------------------------------- /widgets/draganddrop/draggableicons/images/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/draganddrop/draggableicons/images/car.png -------------------------------------------------------------------------------- /widgets/draganddrop/draggableicons/images/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/draganddrop/draggableicons/images/house.png -------------------------------------------------------------------------------- /widgets/draganddrop/draggabletext/draggabletext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/draganddrop/draggabletext/draggabletext.py -------------------------------------------------------------------------------- /widgets/draganddrop/draggabletext/draggabletext.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/draganddrop/draggabletext/draggabletext.qrc -------------------------------------------------------------------------------- /widgets/draganddrop/draggabletext/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/draganddrop/draggabletext/words.txt -------------------------------------------------------------------------------- /widgets/effects/blurpicker/blureffect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/effects/blurpicker/blureffect.py -------------------------------------------------------------------------------- /widgets/effects/blurpicker/blurpicker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/effects/blurpicker/blurpicker.py -------------------------------------------------------------------------------- /widgets/effects/blurpicker/blurpicker.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/effects/blurpicker/blurpicker.pyproject -------------------------------------------------------------------------------- /widgets/effects/blurpicker/doc/blurpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/effects/blurpicker/doc/blurpicker.png -------------------------------------------------------------------------------- /widgets/effects/blurpicker/doc/blurpicker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/effects/blurpicker/doc/blurpicker.rst -------------------------------------------------------------------------------- /widgets/effects/blurpicker/images/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/effects/blurpicker/images/README.txt -------------------------------------------------------------------------------- /widgets/effects/blurpicker/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/effects/blurpicker/images/background.jpg -------------------------------------------------------------------------------- /widgets/effects/blurpicker/images/help-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/effects/blurpicker/images/help-browser.png -------------------------------------------------------------------------------- /widgets/effects/blurpicker/images/internet-mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/effects/blurpicker/images/internet-mail.png -------------------------------------------------------------------------------- /widgets/effects/blurpicker/images/system-users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/effects/blurpicker/images/system-users.png -------------------------------------------------------------------------------- /widgets/effects/blurpicker/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/effects/blurpicker/main.py -------------------------------------------------------------------------------- /widgets/effects/lighting/lighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/effects/lighting/lighting.py -------------------------------------------------------------------------------- /widgets/effects/lighting/lighting.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["lighting.py"] 3 | } 4 | -------------------------------------------------------------------------------- /widgets/gettext/gettext.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/gettext/gettext.pyproject -------------------------------------------------------------------------------- /widgets/gettext/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/gettext/main.py -------------------------------------------------------------------------------- /widgets/graphicsview/anchorlayout/anchorlayout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/graphicsview/anchorlayout/anchorlayout.py -------------------------------------------------------------------------------- /widgets/graphicsview/anchorlayout/anchorlayout.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["anchorlayout.py"] 3 | } 4 | -------------------------------------------------------------------------------- /widgets/graphicsview/collidingmice/collidingmice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/graphicsview/collidingmice/collidingmice.py -------------------------------------------------------------------------------- /widgets/graphicsview/collidingmice/mice_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/graphicsview/collidingmice/mice_rc.py -------------------------------------------------------------------------------- /widgets/graphicsview/diagramscene/diagramscene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/graphicsview/diagramscene/diagramscene.py -------------------------------------------------------------------------------- /widgets/graphicsview/diagramscene/diagramscene.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/graphicsview/diagramscene/diagramscene.qrc -------------------------------------------------------------------------------- /widgets/graphicsview/diagramscene/images/bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/graphicsview/diagramscene/images/bold.png -------------------------------------------------------------------------------- /widgets/graphicsview/diagramscene/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/graphicsview/diagramscene/images/delete.png -------------------------------------------------------------------------------- /widgets/graphicsview/diagramscene/images/italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/graphicsview/diagramscene/images/italic.png -------------------------------------------------------------------------------- /widgets/graphicsview/dragdroprobot/dragdroprobot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/graphicsview/dragdroprobot/dragdroprobot.py -------------------------------------------------------------------------------- /widgets/graphicsview/dragdroprobot/images/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/graphicsview/dragdroprobot/images/head.png -------------------------------------------------------------------------------- /widgets/graphicsview/elasticnodes/elasticnodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/graphicsview/elasticnodes/elasticnodes.py -------------------------------------------------------------------------------- /widgets/graphicsview/elasticnodes/elasticnodes.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["elasticnodes.py"] 3 | } 4 | -------------------------------------------------------------------------------- /widgets/imageviewer/imageviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/imageviewer/imageviewer.py -------------------------------------------------------------------------------- /widgets/imageviewer/imageviewer.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/imageviewer/imageviewer.pyproject -------------------------------------------------------------------------------- /widgets/imageviewer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/imageviewer/main.py -------------------------------------------------------------------------------- /widgets/itemviews/address_book/adddialogwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/itemviews/address_book/adddialogwidget.py -------------------------------------------------------------------------------- /widgets/itemviews/address_book/address_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/itemviews/address_book/address_book.py -------------------------------------------------------------------------------- /widgets/itemviews/address_book/addresswidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/itemviews/address_book/addresswidget.py -------------------------------------------------------------------------------- /widgets/itemviews/address_book/doc/address_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/itemviews/address_book/doc/address_book.png -------------------------------------------------------------------------------- /widgets/itemviews/address_book/doc/address_book.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/itemviews/address_book/doc/address_book.rst -------------------------------------------------------------------------------- /widgets/itemviews/address_book/newaddresstab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/itemviews/address_book/newaddresstab.py -------------------------------------------------------------------------------- /widgets/itemviews/address_book/tablemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/itemviews/address_book/tablemodel.py -------------------------------------------------------------------------------- /widgets/itemviews/editabletreemodel/default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/itemviews/editabletreemodel/default.txt -------------------------------------------------------------------------------- /widgets/itemviews/editabletreemodel/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/itemviews/editabletreemodel/main.py -------------------------------------------------------------------------------- /widgets/itemviews/editabletreemodel/mainwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/itemviews/editabletreemodel/mainwindow.py -------------------------------------------------------------------------------- /widgets/itemviews/editabletreemodel/treeitem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/itemviews/editabletreemodel/treeitem.py -------------------------------------------------------------------------------- /widgets/itemviews/editabletreemodel/treemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/itemviews/editabletreemodel/treemodel.py -------------------------------------------------------------------------------- /widgets/itemviews/fetchmore/fetchmore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/itemviews/fetchmore/fetchmore.py -------------------------------------------------------------------------------- /widgets/itemviews/fetchmore/fetchmore.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["fetchmore.py"] 3 | } 4 | -------------------------------------------------------------------------------- /widgets/itemviews/jsonmodel/doc/jsonmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/itemviews/jsonmodel/doc/jsonmodel.png -------------------------------------------------------------------------------- /widgets/itemviews/jsonmodel/doc/jsonmodel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/itemviews/jsonmodel/doc/jsonmodel.rst -------------------------------------------------------------------------------- /widgets/itemviews/jsonmodel/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/itemviews/jsonmodel/example.json -------------------------------------------------------------------------------- /widgets/itemviews/jsonmodel/jsonmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/itemviews/jsonmodel/jsonmodel.py -------------------------------------------------------------------------------- /widgets/itemviews/jsonmodel/jsonmodel.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/itemviews/jsonmodel/jsonmodel.pyproject -------------------------------------------------------------------------------- /widgets/itemviews/stardelegate/doc/stardelegate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/itemviews/stardelegate/doc/stardelegate.png -------------------------------------------------------------------------------- /widgets/itemviews/stardelegate/doc/stardelegate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/itemviews/stardelegate/doc/stardelegate.rst -------------------------------------------------------------------------------- /widgets/itemviews/stardelegate/stardelegate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/itemviews/stardelegate/stardelegate.py -------------------------------------------------------------------------------- /widgets/itemviews/stardelegate/stareditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/itemviews/stardelegate/stareditor.py -------------------------------------------------------------------------------- /widgets/itemviews/stardelegate/starrating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/itemviews/stardelegate/starrating.py -------------------------------------------------------------------------------- /widgets/layouts/basiclayouts/basiclayouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/layouts/basiclayouts/basiclayouts.py -------------------------------------------------------------------------------- /widgets/layouts/basiclayouts/basiclayouts.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["basiclayouts.py"] 3 | } 4 | -------------------------------------------------------------------------------- /widgets/layouts/basiclayouts/doc/basiclayouts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/layouts/basiclayouts/doc/basiclayouts.png -------------------------------------------------------------------------------- /widgets/layouts/basiclayouts/doc/basiclayouts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/layouts/basiclayouts/doc/basiclayouts.rst -------------------------------------------------------------------------------- /widgets/layouts/borderlayout/borderlayout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/layouts/borderlayout/borderlayout.py -------------------------------------------------------------------------------- /widgets/layouts/borderlayout/borderlayout.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["borderlayout.py"] 3 | } 4 | -------------------------------------------------------------------------------- /widgets/layouts/borderlayout/doc/borderlayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/layouts/borderlayout/doc/borderlayout.png -------------------------------------------------------------------------------- /widgets/layouts/borderlayout/doc/borderlayout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/layouts/borderlayout/doc/borderlayout.rst -------------------------------------------------------------------------------- /widgets/layouts/dynamiclayouts/dynamiclayouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/layouts/dynamiclayouts/dynamiclayouts.py -------------------------------------------------------------------------------- /widgets/layouts/dynamiclayouts/dynamiclayouts.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["dynamiclayouts.py"] 3 | } 4 | -------------------------------------------------------------------------------- /widgets/layouts/flowlayout/doc/flowlayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/layouts/flowlayout/doc/flowlayout.png -------------------------------------------------------------------------------- /widgets/layouts/flowlayout/doc/flowlayout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/layouts/flowlayout/doc/flowlayout.rst -------------------------------------------------------------------------------- /widgets/layouts/flowlayout/flowlayout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/layouts/flowlayout/flowlayout.py -------------------------------------------------------------------------------- /widgets/layouts/flowlayout/flowlayout.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["flowlayout.py"] 3 | } 4 | -------------------------------------------------------------------------------- /widgets/linguist/example_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/linguist/example_de.ts -------------------------------------------------------------------------------- /widgets/linguist/linguist.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/linguist/linguist.pyproject -------------------------------------------------------------------------------- /widgets/linguist/linguist.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/linguist/linguist.qrc -------------------------------------------------------------------------------- /widgets/linguist/linguist_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/linguist/linguist_rc.py -------------------------------------------------------------------------------- /widgets/linguist/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/linguist/main.py -------------------------------------------------------------------------------- /widgets/mainwindows/application/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/application/application.py -------------------------------------------------------------------------------- /widgets/mainwindows/application/application.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/application/application.qrc -------------------------------------------------------------------------------- /widgets/mainwindows/application/application_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/application/application_rc.py -------------------------------------------------------------------------------- /widgets/mainwindows/application/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/application/images/copy.png -------------------------------------------------------------------------------- /widgets/mainwindows/application/images/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/application/images/cut.png -------------------------------------------------------------------------------- /widgets/mainwindows/application/images/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/application/images/new.png -------------------------------------------------------------------------------- /widgets/mainwindows/application/images/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/application/images/open.png -------------------------------------------------------------------------------- /widgets/mainwindows/application/images/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/application/images/paste.png -------------------------------------------------------------------------------- /widgets/mainwindows/application/images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/application/images/save.png -------------------------------------------------------------------------------- /widgets/mainwindows/dockwidgets/doc/dockwidgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/dockwidgets/doc/dockwidgets.png -------------------------------------------------------------------------------- /widgets/mainwindows/dockwidgets/doc/dockwidgets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/dockwidgets/doc/dockwidgets.rst -------------------------------------------------------------------------------- /widgets/mainwindows/dockwidgets/dockwidgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/dockwidgets/dockwidgets.py -------------------------------------------------------------------------------- /widgets/mainwindows/dockwidgets/dockwidgets.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/dockwidgets/dockwidgets.qrc -------------------------------------------------------------------------------- /widgets/mainwindows/dockwidgets/dockwidgets_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/dockwidgets/dockwidgets_rc.py -------------------------------------------------------------------------------- /widgets/mainwindows/dockwidgets/images/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/dockwidgets/images/new.png -------------------------------------------------------------------------------- /widgets/mainwindows/dockwidgets/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/dockwidgets/images/print.png -------------------------------------------------------------------------------- /widgets/mainwindows/dockwidgets/images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/dockwidgets/images/save.png -------------------------------------------------------------------------------- /widgets/mainwindows/dockwidgets/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/dockwidgets/images/undo.png -------------------------------------------------------------------------------- /widgets/mainwindows/mdi/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/mdi/images/copy.png -------------------------------------------------------------------------------- /widgets/mainwindows/mdi/images/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/mdi/images/cut.png -------------------------------------------------------------------------------- /widgets/mainwindows/mdi/images/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/mdi/images/new.png -------------------------------------------------------------------------------- /widgets/mainwindows/mdi/images/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/mdi/images/open.png -------------------------------------------------------------------------------- /widgets/mainwindows/mdi/images/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/mdi/images/paste.png -------------------------------------------------------------------------------- /widgets/mainwindows/mdi/images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/mdi/images/save.png -------------------------------------------------------------------------------- /widgets/mainwindows/mdi/mdi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/mdi/mdi.py -------------------------------------------------------------------------------- /widgets/mainwindows/mdi/mdi.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/mdi/mdi.pyproject -------------------------------------------------------------------------------- /widgets/mainwindows/mdi/mdi.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/mdi/mdi.qrc -------------------------------------------------------------------------------- /widgets/mainwindows/mdi/mdi_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/mainwindows/mdi/mdi_rc.py -------------------------------------------------------------------------------- /widgets/painting/basicdrawing/basicdrawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/painting/basicdrawing/basicdrawing.py -------------------------------------------------------------------------------- /widgets/painting/basicdrawing/basicdrawing.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/painting/basicdrawing/basicdrawing.qrc -------------------------------------------------------------------------------- /widgets/painting/basicdrawing/basicdrawing_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/painting/basicdrawing/basicdrawing_rc.py -------------------------------------------------------------------------------- /widgets/painting/basicdrawing/doc/basicdrawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/painting/basicdrawing/doc/basicdrawing.png -------------------------------------------------------------------------------- /widgets/painting/basicdrawing/doc/basicdrawing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/painting/basicdrawing/doc/basicdrawing.rst -------------------------------------------------------------------------------- /widgets/painting/basicdrawing/images/brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/painting/basicdrawing/images/brick.png -------------------------------------------------------------------------------- /widgets/painting/basicdrawing/images/qt-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/painting/basicdrawing/images/qt-logo.png -------------------------------------------------------------------------------- /widgets/painting/painter/doc/painter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/painting/painter/doc/painter.png -------------------------------------------------------------------------------- /widgets/painting/painter/doc/painter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/painting/painter/doc/painter.rst -------------------------------------------------------------------------------- /widgets/painting/painter/painter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/painting/painter/painter.py -------------------------------------------------------------------------------- /widgets/painting/painter/painter.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["painter.py"] 3 | } 4 | -------------------------------------------------------------------------------- /widgets/painting/plot/doc/plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/painting/plot/doc/plot.png -------------------------------------------------------------------------------- /widgets/painting/plot/doc/plot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/painting/plot/doc/plot.rst -------------------------------------------------------------------------------- /widgets/painting/plot/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/painting/plot/plot.py -------------------------------------------------------------------------------- /widgets/painting/plot/plot.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["plot.py"] 3 | } 4 | -------------------------------------------------------------------------------- /widgets/richtext/orderform/orderform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/orderform/orderform.py -------------------------------------------------------------------------------- /widgets/richtext/orderform/orderform.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["orderform.py"] 3 | } 4 | -------------------------------------------------------------------------------- /widgets/richtext/syntaxhighlighter/examples/example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/syntaxhighlighter/examples/example -------------------------------------------------------------------------------- /widgets/richtext/textedit/doc/textedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/doc/textedit.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/doc/textedit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/doc/textedit.rst -------------------------------------------------------------------------------- /widgets/richtext/textedit/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/example.html -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/logo32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/logo32.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/mac/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/mac/checkbox.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/mac/editcopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/mac/editcopy.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/mac/editcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/mac/editcut.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/mac/editpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/mac/editpaste.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/mac/editredo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/mac/editredo.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/mac/editundo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/mac/editundo.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/mac/exportpdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/mac/exportpdf.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/mac/filenew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/mac/filenew.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/mac/fileopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/mac/fileopen.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/mac/fileprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/mac/fileprint.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/mac/filesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/mac/filesave.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/mac/textbold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/mac/textbold.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/mac/textcenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/mac/textcenter.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/mac/textitalic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/mac/textitalic.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/mac/textleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/mac/textleft.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/mac/textright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/mac/textright.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/mac/textunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/mac/textunder.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/mac/zoomin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/mac/zoomin.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/mac/zoomout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/mac/zoomout.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/win/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/win/checkbox.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/win/editcopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/win/editcopy.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/win/editcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/win/editcut.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/win/editpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/win/editpaste.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/win/editredo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/win/editredo.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/win/editundo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/win/editundo.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/win/exportpdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/win/exportpdf.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/win/filenew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/win/filenew.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/win/fileopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/win/fileopen.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/win/fileprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/win/fileprint.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/win/filesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/win/filesave.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/win/textbold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/win/textbold.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/win/textcenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/win/textcenter.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/win/textitalic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/win/textitalic.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/win/textleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/win/textleft.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/win/textright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/win/textright.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/win/textunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/win/textunder.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/win/zoomin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/win/zoomin.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/images/win/zoomout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/images/win/zoomout.png -------------------------------------------------------------------------------- /widgets/richtext/textedit/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/main.py -------------------------------------------------------------------------------- /widgets/richtext/textedit/textedit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/textedit.py -------------------------------------------------------------------------------- /widgets/richtext/textedit/textedit.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/textedit.pyproject -------------------------------------------------------------------------------- /widgets/richtext/textedit/textedit.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/textedit.qrc -------------------------------------------------------------------------------- /widgets/richtext/textedit/textedit_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textedit/textedit_rc.py -------------------------------------------------------------------------------- /widgets/richtext/textobject/doc/textobject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textobject/doc/textobject.png -------------------------------------------------------------------------------- /widgets/richtext/textobject/doc/textobject.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textobject/doc/textobject.rst -------------------------------------------------------------------------------- /widgets/richtext/textobject/files/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textobject/files/heart.svg -------------------------------------------------------------------------------- /widgets/richtext/textobject/textobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/richtext/textobject/textobject.py -------------------------------------------------------------------------------- /widgets/richtext/textobject/textobject.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["textobject.py"] 3 | } 4 | -------------------------------------------------------------------------------- /widgets/state-machine/eventtrans/eventtrans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/state-machine/eventtrans/eventtrans.py -------------------------------------------------------------------------------- /widgets/state-machine/eventtrans/eventtrans.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["eventtrans.py"] 3 | } 4 | -------------------------------------------------------------------------------- /widgets/state-machine/factstates/factstates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/state-machine/factstates/factstates.py -------------------------------------------------------------------------------- /widgets/state-machine/factstates/factstates.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["factstates.py"] 3 | } 4 | -------------------------------------------------------------------------------- /widgets/state-machine/ping_pong/ping_pong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/state-machine/ping_pong/ping_pong.py -------------------------------------------------------------------------------- /widgets/state-machine/ping_pong/ping_pong.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["ping_pong.py"] 3 | } 4 | -------------------------------------------------------------------------------- /widgets/state-machine/rogue/rogue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/state-machine/rogue/rogue.py -------------------------------------------------------------------------------- /widgets/state-machine/rogue/rogue.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["rogue.py"] 3 | } 4 | -------------------------------------------------------------------------------- /widgets/state-machine/trafficlight/trafficlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/state-machine/trafficlight/trafficlight.py -------------------------------------------------------------------------------- /widgets/state-machine/trafficlight/trafficlight.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["trafficlight.py"] 3 | } 4 | -------------------------------------------------------------------------------- /widgets/state-machine/twowaybutton/twowaybutton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/state-machine/twowaybutton/twowaybutton.py -------------------------------------------------------------------------------- /widgets/state-machine/twowaybutton/twowaybutton.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["twowaybutton.py"] 3 | } 4 | -------------------------------------------------------------------------------- /widgets/systray/images/bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/systray/images/bad.png -------------------------------------------------------------------------------- /widgets/systray/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/systray/images/heart.png -------------------------------------------------------------------------------- /widgets/systray/images/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/systray/images/trash.png -------------------------------------------------------------------------------- /widgets/systray/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/systray/main.py -------------------------------------------------------------------------------- /widgets/systray/rc_systray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/systray/rc_systray.py -------------------------------------------------------------------------------- /widgets/systray/systray.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/systray/systray.pyproject -------------------------------------------------------------------------------- /widgets/systray/systray.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/systray/systray.qrc -------------------------------------------------------------------------------- /widgets/systray/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/systray/window.py -------------------------------------------------------------------------------- /widgets/tetrix/doc/tetrix-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tetrix/doc/tetrix-screenshot.png -------------------------------------------------------------------------------- /widgets/tetrix/doc/tetrix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tetrix/doc/tetrix.rst -------------------------------------------------------------------------------- /widgets/tetrix/tetrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tetrix/tetrix.py -------------------------------------------------------------------------------- /widgets/tetrix/tetrix.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["tetrix.py"] 3 | } 4 | -------------------------------------------------------------------------------- /widgets/thread_signals/thread_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/thread_signals/thread_signals.py -------------------------------------------------------------------------------- /widgets/thread_signals/thread_signals.pyproject: -------------------------------------------------------------------------------- 1 | { 2 | "files": ["thread_signals.py"] 3 | } 4 | -------------------------------------------------------------------------------- /widgets/tutorials/addressbook/addressbook.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/addressbook/addressbook.pyproject -------------------------------------------------------------------------------- /widgets/tutorials/addressbook/doc/addressbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/addressbook/doc/addressbook.png -------------------------------------------------------------------------------- /widgets/tutorials/addressbook/doc/addressbook.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/addressbook/doc/addressbook.rst -------------------------------------------------------------------------------- /widgets/tutorials/addressbook/part1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/addressbook/part1.py -------------------------------------------------------------------------------- /widgets/tutorials/addressbook/part2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/addressbook/part2.py -------------------------------------------------------------------------------- /widgets/tutorials/addressbook/part3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/addressbook/part3.py -------------------------------------------------------------------------------- /widgets/tutorials/addressbook/part4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/addressbook/part4.py -------------------------------------------------------------------------------- /widgets/tutorials/addressbook/part5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/addressbook/part5.py -------------------------------------------------------------------------------- /widgets/tutorials/addressbook/part6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/addressbook/part6.py -------------------------------------------------------------------------------- /widgets/tutorials/addressbook/part7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/addressbook/part7.py -------------------------------------------------------------------------------- /widgets/tutorials/cannon/cannon.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/cannon/cannon.pyproject -------------------------------------------------------------------------------- /widgets/tutorials/cannon/doc/cannon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/cannon/doc/cannon.png -------------------------------------------------------------------------------- /widgets/tutorials/cannon/doc/cannon.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/cannon/doc/cannon.rst -------------------------------------------------------------------------------- /widgets/tutorials/cannon/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/cannon/t1.py -------------------------------------------------------------------------------- /widgets/tutorials/cannon/t10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/cannon/t10.py -------------------------------------------------------------------------------- /widgets/tutorials/cannon/t11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/cannon/t11.py -------------------------------------------------------------------------------- /widgets/tutorials/cannon/t12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/cannon/t12.py -------------------------------------------------------------------------------- /widgets/tutorials/cannon/t13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/cannon/t13.py -------------------------------------------------------------------------------- /widgets/tutorials/cannon/t14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/cannon/t14.py -------------------------------------------------------------------------------- /widgets/tutorials/cannon/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/cannon/t2.py -------------------------------------------------------------------------------- /widgets/tutorials/cannon/t3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/cannon/t3.py -------------------------------------------------------------------------------- /widgets/tutorials/cannon/t4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/cannon/t4.py -------------------------------------------------------------------------------- /widgets/tutorials/cannon/t5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/cannon/t5.py -------------------------------------------------------------------------------- /widgets/tutorials/cannon/t6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/cannon/t6.py -------------------------------------------------------------------------------- /widgets/tutorials/cannon/t7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/cannon/t7.py -------------------------------------------------------------------------------- /widgets/tutorials/cannon/t8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/cannon/t8.py -------------------------------------------------------------------------------- /widgets/tutorials/cannon/t9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/tutorials/cannon/t9.py -------------------------------------------------------------------------------- /widgets/widgetsgallery/doc/widgetsgallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/widgetsgallery/doc/widgetsgallery.png -------------------------------------------------------------------------------- /widgets/widgetsgallery/doc/widgetsgallery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/widgetsgallery/doc/widgetsgallery.rst -------------------------------------------------------------------------------- /widgets/widgetsgallery/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/widgetsgallery/main.py -------------------------------------------------------------------------------- /widgets/widgetsgallery/widgetgallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/widgetsgallery/widgetgallery.py -------------------------------------------------------------------------------- /widgets/widgetsgallery/widgetsgallery.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/widgets/widgetsgallery/widgetsgallery.pyproject -------------------------------------------------------------------------------- /xml/dombookmarks/doc/dombookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/xml/dombookmarks/doc/dombookmarks.png -------------------------------------------------------------------------------- /xml/dombookmarks/doc/dombookmarks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/xml/dombookmarks/doc/dombookmarks.rst -------------------------------------------------------------------------------- /xml/dombookmarks/dombookmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/xml/dombookmarks/dombookmarks.py -------------------------------------------------------------------------------- /xml/dombookmarks/dombookmarks.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/xml/dombookmarks/dombookmarks.pyproject -------------------------------------------------------------------------------- /xml/dombookmarks/frank.xbel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/xml/dombookmarks/frank.xbel -------------------------------------------------------------------------------- /xml/dombookmarks/jennifer.xbel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyfire/pyside6-examples/HEAD/xml/dombookmarks/jennifer.xbel --------------------------------------------------------------------------------