├── .gitignore ├── LICENSE ├── PyQt5 ├── donut_chart_breakdown │ ├── custom_model.py │ ├── donut_chart_breakdown.pro │ ├── main.py │ └── main.qml ├── hbarmodelmapper │ ├── custom_model.py │ ├── hbarmodelmapper.pro │ ├── main.py │ └── main.qml ├── hpiemodelmapper │ ├── custom_model.py │ ├── hpiemodelmapper.pro │ ├── main.py │ └── main.qml ├── hxymodelmapper │ ├── custom_model.py │ ├── hxymodelmapper.pro │ ├── main.py │ └── main.qml ├── opengl │ ├── fbo_texture │ │ ├── fbo_texture.pro │ │ ├── main.py │ │ ├── simple_texture.fs │ │ └── simple_texture.vs │ ├── opengl_under_qml │ │ ├── main.py │ │ ├── main.qml │ │ ├── main.qmlc │ │ ├── opengl_under_qml.pro │ │ ├── squircle.py │ │ └── squircle_renderer.py │ ├── opengl_under_qml_fbo │ │ ├── main.py │ │ ├── main.qml │ │ ├── main.qmlc │ │ ├── opengl_under_qml_with_fbo.pro │ │ ├── squircle.py │ │ └── squircle_renderer.py │ ├── opengl_under_qml_thread │ │ ├── main.py │ │ ├── main.qml │ │ ├── main.qmlc │ │ ├── opengl_under_qml_thread.pro │ │ ├── squircle.py │ │ └── squircle_renderer.py │ ├── qoffscreensurface │ │ ├── julia_texture.fs │ │ ├── main.py │ │ ├── opengl_window.py │ │ ├── qoffscreensurface.pro │ │ ├── simple_texture.fs │ │ ├── simple_texture.vs │ │ └── texture_uploader.py │ ├── textured_quad │ │ ├── main.py │ │ ├── simple_texture.fs │ │ ├── simple_texture.vs │ │ └── textured_quad.pro │ ├── time_monitor_overlay │ │ ├── main.py │ │ ├── simple.fs │ │ ├── simple.vs │ │ └── time_monitor_overlay.pro │ └── triangle_simple │ │ ├── main.py │ │ ├── simple.fs │ │ ├── simple.vs │ │ └── triangle_simple.pro ├── qml_painted_item │ ├── main.py │ ├── main.qml │ ├── main.qmlc │ ├── qml_painted_item.pro │ └── text_balloon.py ├── vbarmodelmapper │ ├── custom_model.py │ ├── main.py │ ├── main.qml │ └── vbarmodelmapper.pro ├── vboxplotmodelmapper │ ├── custom_model.py │ ├── main.py │ ├── main.qml │ └── vboxplotmodelmapper.pro ├── vpiemodelmapper │ ├── custom_model.py │ ├── main.py │ ├── main.qml │ └── vpiemodelmapper.pro └── vxymodelmapper │ ├── custom_model.py │ ├── main.py │ ├── main.qml │ └── vxymodelmapper.pro ├── README.md └── Screenshots ├── bar_series.png ├── box_plot_series.png ├── donut_chart_breakdown.png ├── fbo_texture.png ├── julia.png ├── lena-soderberg.png ├── line_series.png ├── opengl_under_qml.png ├── opengl_under_qml_fbo.png ├── palette.ppm ├── pie_series.png ├── qml_painted_item.png ├── qt_creator_build_settings.png ├── qt_creator_run_settings.png ├── time_monitor_overlay.png └── triangle_simple.png /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.pro.user -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/LICENSE -------------------------------------------------------------------------------- /PyQt5/donut_chart_breakdown/custom_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/donut_chart_breakdown/custom_model.py -------------------------------------------------------------------------------- /PyQt5/donut_chart_breakdown/donut_chart_breakdown.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/donut_chart_breakdown/donut_chart_breakdown.pro -------------------------------------------------------------------------------- /PyQt5/donut_chart_breakdown/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/donut_chart_breakdown/main.py -------------------------------------------------------------------------------- /PyQt5/donut_chart_breakdown/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/donut_chart_breakdown/main.qml -------------------------------------------------------------------------------- /PyQt5/hbarmodelmapper/custom_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/hbarmodelmapper/custom_model.py -------------------------------------------------------------------------------- /PyQt5/hbarmodelmapper/hbarmodelmapper.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/hbarmodelmapper/hbarmodelmapper.pro -------------------------------------------------------------------------------- /PyQt5/hbarmodelmapper/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/hbarmodelmapper/main.py -------------------------------------------------------------------------------- /PyQt5/hbarmodelmapper/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/hbarmodelmapper/main.qml -------------------------------------------------------------------------------- /PyQt5/hpiemodelmapper/custom_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/hpiemodelmapper/custom_model.py -------------------------------------------------------------------------------- /PyQt5/hpiemodelmapper/hpiemodelmapper.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/hpiemodelmapper/hpiemodelmapper.pro -------------------------------------------------------------------------------- /PyQt5/hpiemodelmapper/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/hpiemodelmapper/main.py -------------------------------------------------------------------------------- /PyQt5/hpiemodelmapper/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/hpiemodelmapper/main.qml -------------------------------------------------------------------------------- /PyQt5/hxymodelmapper/custom_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/hxymodelmapper/custom_model.py -------------------------------------------------------------------------------- /PyQt5/hxymodelmapper/hxymodelmapper.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/hxymodelmapper/hxymodelmapper.pro -------------------------------------------------------------------------------- /PyQt5/hxymodelmapper/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/hxymodelmapper/main.py -------------------------------------------------------------------------------- /PyQt5/hxymodelmapper/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/hxymodelmapper/main.qml -------------------------------------------------------------------------------- /PyQt5/opengl/fbo_texture/fbo_texture.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/fbo_texture/fbo_texture.pro -------------------------------------------------------------------------------- /PyQt5/opengl/fbo_texture/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/fbo_texture/main.py -------------------------------------------------------------------------------- /PyQt5/opengl/fbo_texture/simple_texture.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/fbo_texture/simple_texture.fs -------------------------------------------------------------------------------- /PyQt5/opengl/fbo_texture/simple_texture.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/fbo_texture/simple_texture.vs -------------------------------------------------------------------------------- /PyQt5/opengl/opengl_under_qml/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/opengl_under_qml/main.py -------------------------------------------------------------------------------- /PyQt5/opengl/opengl_under_qml/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/opengl_under_qml/main.qml -------------------------------------------------------------------------------- /PyQt5/opengl/opengl_under_qml/main.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/opengl_under_qml/main.qmlc -------------------------------------------------------------------------------- /PyQt5/opengl/opengl_under_qml/opengl_under_qml.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/opengl_under_qml/opengl_under_qml.pro -------------------------------------------------------------------------------- /PyQt5/opengl/opengl_under_qml/squircle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/opengl_under_qml/squircle.py -------------------------------------------------------------------------------- /PyQt5/opengl/opengl_under_qml/squircle_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/opengl_under_qml/squircle_renderer.py -------------------------------------------------------------------------------- /PyQt5/opengl/opengl_under_qml_fbo/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/opengl_under_qml_fbo/main.py -------------------------------------------------------------------------------- /PyQt5/opengl/opengl_under_qml_fbo/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/opengl_under_qml_fbo/main.qml -------------------------------------------------------------------------------- /PyQt5/opengl/opengl_under_qml_fbo/main.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/opengl_under_qml_fbo/main.qmlc -------------------------------------------------------------------------------- /PyQt5/opengl/opengl_under_qml_fbo/opengl_under_qml_with_fbo.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/opengl_under_qml_fbo/opengl_under_qml_with_fbo.pro -------------------------------------------------------------------------------- /PyQt5/opengl/opengl_under_qml_fbo/squircle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/opengl_under_qml_fbo/squircle.py -------------------------------------------------------------------------------- /PyQt5/opengl/opengl_under_qml_fbo/squircle_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/opengl_under_qml_fbo/squircle_renderer.py -------------------------------------------------------------------------------- /PyQt5/opengl/opengl_under_qml_thread/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/opengl_under_qml_thread/main.py -------------------------------------------------------------------------------- /PyQt5/opengl/opengl_under_qml_thread/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/opengl_under_qml_thread/main.qml -------------------------------------------------------------------------------- /PyQt5/opengl/opengl_under_qml_thread/main.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/opengl_under_qml_thread/main.qmlc -------------------------------------------------------------------------------- /PyQt5/opengl/opengl_under_qml_thread/opengl_under_qml_thread.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/opengl_under_qml_thread/opengl_under_qml_thread.pro -------------------------------------------------------------------------------- /PyQt5/opengl/opengl_under_qml_thread/squircle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/opengl_under_qml_thread/squircle.py -------------------------------------------------------------------------------- /PyQt5/opengl/opengl_under_qml_thread/squircle_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/opengl_under_qml_thread/squircle_renderer.py -------------------------------------------------------------------------------- /PyQt5/opengl/qoffscreensurface/julia_texture.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/qoffscreensurface/julia_texture.fs -------------------------------------------------------------------------------- /PyQt5/opengl/qoffscreensurface/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/qoffscreensurface/main.py -------------------------------------------------------------------------------- /PyQt5/opengl/qoffscreensurface/opengl_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/qoffscreensurface/opengl_window.py -------------------------------------------------------------------------------- /PyQt5/opengl/qoffscreensurface/qoffscreensurface.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/qoffscreensurface/qoffscreensurface.pro -------------------------------------------------------------------------------- /PyQt5/opengl/qoffscreensurface/simple_texture.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/qoffscreensurface/simple_texture.fs -------------------------------------------------------------------------------- /PyQt5/opengl/qoffscreensurface/simple_texture.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/qoffscreensurface/simple_texture.vs -------------------------------------------------------------------------------- /PyQt5/opengl/qoffscreensurface/texture_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/qoffscreensurface/texture_uploader.py -------------------------------------------------------------------------------- /PyQt5/opengl/textured_quad/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/textured_quad/main.py -------------------------------------------------------------------------------- /PyQt5/opengl/textured_quad/simple_texture.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/textured_quad/simple_texture.fs -------------------------------------------------------------------------------- /PyQt5/opengl/textured_quad/simple_texture.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/textured_quad/simple_texture.vs -------------------------------------------------------------------------------- /PyQt5/opengl/textured_quad/textured_quad.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/textured_quad/textured_quad.pro -------------------------------------------------------------------------------- /PyQt5/opengl/time_monitor_overlay/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/time_monitor_overlay/main.py -------------------------------------------------------------------------------- /PyQt5/opengl/time_monitor_overlay/simple.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/time_monitor_overlay/simple.fs -------------------------------------------------------------------------------- /PyQt5/opengl/time_monitor_overlay/simple.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/time_monitor_overlay/simple.vs -------------------------------------------------------------------------------- /PyQt5/opengl/time_monitor_overlay/time_monitor_overlay.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/time_monitor_overlay/time_monitor_overlay.pro -------------------------------------------------------------------------------- /PyQt5/opengl/triangle_simple/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/triangle_simple/main.py -------------------------------------------------------------------------------- /PyQt5/opengl/triangle_simple/simple.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/triangle_simple/simple.fs -------------------------------------------------------------------------------- /PyQt5/opengl/triangle_simple/simple.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/triangle_simple/simple.vs -------------------------------------------------------------------------------- /PyQt5/opengl/triangle_simple/triangle_simple.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/opengl/triangle_simple/triangle_simple.pro -------------------------------------------------------------------------------- /PyQt5/qml_painted_item/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/qml_painted_item/main.py -------------------------------------------------------------------------------- /PyQt5/qml_painted_item/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/qml_painted_item/main.qml -------------------------------------------------------------------------------- /PyQt5/qml_painted_item/main.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/qml_painted_item/main.qmlc -------------------------------------------------------------------------------- /PyQt5/qml_painted_item/qml_painted_item.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/qml_painted_item/qml_painted_item.pro -------------------------------------------------------------------------------- /PyQt5/qml_painted_item/text_balloon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/qml_painted_item/text_balloon.py -------------------------------------------------------------------------------- /PyQt5/vbarmodelmapper/custom_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/vbarmodelmapper/custom_model.py -------------------------------------------------------------------------------- /PyQt5/vbarmodelmapper/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/vbarmodelmapper/main.py -------------------------------------------------------------------------------- /PyQt5/vbarmodelmapper/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/vbarmodelmapper/main.qml -------------------------------------------------------------------------------- /PyQt5/vbarmodelmapper/vbarmodelmapper.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/vbarmodelmapper/vbarmodelmapper.pro -------------------------------------------------------------------------------- /PyQt5/vboxplotmodelmapper/custom_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/vboxplotmodelmapper/custom_model.py -------------------------------------------------------------------------------- /PyQt5/vboxplotmodelmapper/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/vboxplotmodelmapper/main.py -------------------------------------------------------------------------------- /PyQt5/vboxplotmodelmapper/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/vboxplotmodelmapper/main.qml -------------------------------------------------------------------------------- /PyQt5/vboxplotmodelmapper/vboxplotmodelmapper.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/vboxplotmodelmapper/vboxplotmodelmapper.pro -------------------------------------------------------------------------------- /PyQt5/vpiemodelmapper/custom_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/vpiemodelmapper/custom_model.py -------------------------------------------------------------------------------- /PyQt5/vpiemodelmapper/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/vpiemodelmapper/main.py -------------------------------------------------------------------------------- /PyQt5/vpiemodelmapper/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/vpiemodelmapper/main.qml -------------------------------------------------------------------------------- /PyQt5/vpiemodelmapper/vpiemodelmapper.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/vpiemodelmapper/vpiemodelmapper.pro -------------------------------------------------------------------------------- /PyQt5/vxymodelmapper/custom_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/vxymodelmapper/custom_model.py -------------------------------------------------------------------------------- /PyQt5/vxymodelmapper/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/vxymodelmapper/main.py -------------------------------------------------------------------------------- /PyQt5/vxymodelmapper/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/vxymodelmapper/main.qml -------------------------------------------------------------------------------- /PyQt5/vxymodelmapper/vxymodelmapper.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/PyQt5/vxymodelmapper/vxymodelmapper.pro -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/bar_series.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/Screenshots/bar_series.png -------------------------------------------------------------------------------- /Screenshots/box_plot_series.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/Screenshots/box_plot_series.png -------------------------------------------------------------------------------- /Screenshots/donut_chart_breakdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/Screenshots/donut_chart_breakdown.png -------------------------------------------------------------------------------- /Screenshots/fbo_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/Screenshots/fbo_texture.png -------------------------------------------------------------------------------- /Screenshots/julia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/Screenshots/julia.png -------------------------------------------------------------------------------- /Screenshots/lena-soderberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/Screenshots/lena-soderberg.png -------------------------------------------------------------------------------- /Screenshots/line_series.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/Screenshots/line_series.png -------------------------------------------------------------------------------- /Screenshots/opengl_under_qml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/Screenshots/opengl_under_qml.png -------------------------------------------------------------------------------- /Screenshots/opengl_under_qml_fbo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/Screenshots/opengl_under_qml_fbo.png -------------------------------------------------------------------------------- /Screenshots/palette.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/Screenshots/palette.ppm -------------------------------------------------------------------------------- /Screenshots/pie_series.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/Screenshots/pie_series.png -------------------------------------------------------------------------------- /Screenshots/qml_painted_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/Screenshots/qml_painted_item.png -------------------------------------------------------------------------------- /Screenshots/qt_creator_build_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/Screenshots/qt_creator_build_settings.png -------------------------------------------------------------------------------- /Screenshots/qt_creator_run_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/Screenshots/qt_creator_run_settings.png -------------------------------------------------------------------------------- /Screenshots/time_monitor_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/Screenshots/time_monitor_overlay.png -------------------------------------------------------------------------------- /Screenshots/triangle_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upcios/PyQtSamples/HEAD/Screenshots/triangle_simple.png --------------------------------------------------------------------------------