QuickGraphLib 0.1.0a18__tar.gz → 0.1.0a19__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/.gitignore +1 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/.pre-commit-config.yaml +5 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/PKG-INFO +1 -1
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/DataTypes.hpp +8 -8
- quickgraphlib-0.1.0a19/QuickGraphLib/GraphItems/BaseHandles.qml +76 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/CMakeLists.txt +12 -0
- quickgraphlib-0.1.0a19/QuickGraphLib/GraphItems/Ellipse.qml +59 -0
- quickgraphlib-0.1.0a19/QuickGraphLib/GraphItems/EllipseHandles.qml +340 -0
- quickgraphlib-0.1.0a19/QuickGraphLib/GraphItems/GraphHandle.qml +166 -0
- quickgraphlib-0.1.0a19/QuickGraphLib/GraphItems/LineSegment.qml +44 -0
- quickgraphlib-0.1.0a19/QuickGraphLib/GraphItems/LineSegmentHandles.qml +252 -0
- quickgraphlib-0.1.0a19/QuickGraphLib/GraphItems/Polygon.qml +48 -0
- quickgraphlib-0.1.0a19/QuickGraphLib/GraphItems/PolygonHandles.qml +171 -0
- quickgraphlib-0.1.0a19/QuickGraphLib/GraphItems/Polyline.qml +41 -0
- quickgraphlib-0.1.0a19/QuickGraphLib/GraphItems/PolylineHandles.qml +170 -0
- quickgraphlib-0.1.0a19/QuickGraphLib/GraphItems/Rectangle.qml +64 -0
- quickgraphlib-0.1.0a19/QuickGraphLib/GraphItems/RectangleHandles.qml +316 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/helpers/GridHelper.cpp +1 -1
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/helpers/GridHelper.hpp +7 -4
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/helpers/HistogramHelper.hpp +8 -5
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/ImageView.cpp +57 -25
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/ImageView.hpp +18 -4
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/Plugin.cpp +1 -1
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/_version.py +3 -3
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/bindings/ShibokenHelpers.cpp +20 -20
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/bindings/ShibokenHelpers.hpp +2 -2
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/helpers/AxisHelper.cpp +9 -9
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/helpers/AxisHelper.hpp +17 -13
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/helpers/Helpers.cpp +219 -10
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/helpers/Helpers.hpp +14 -0
- quickgraphlib-0.1.0a19/examples/ColorMappedImages.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ColorMappedImages.qml +42 -1
- quickgraphlib-0.1.0a19/examples/Ellipse.png +0 -0
- quickgraphlib-0.1.0a19/examples/Ellipse.qdoc +15 -0
- quickgraphlib-0.1.0a19/examples/Ellipse.qml +55 -0
- quickgraphlib-0.1.0a19/examples/LineSegment.png +0 -0
- quickgraphlib-0.1.0a19/examples/LineSegment.qdoc +15 -0
- quickgraphlib-0.1.0a19/examples/LineSegment.qml +77 -0
- quickgraphlib-0.1.0a19/examples/Polygon.png +0 -0
- quickgraphlib-0.1.0a19/examples/Polygon.qdoc +15 -0
- quickgraphlib-0.1.0a19/examples/Polygon.qml +59 -0
- quickgraphlib-0.1.0a19/examples/Polyline.png +0 -0
- quickgraphlib-0.1.0a19/examples/Polyline.qdoc +15 -0
- quickgraphlib-0.1.0a19/examples/Polyline.qml +57 -0
- quickgraphlib-0.1.0a19/examples/Rectangle.png +0 -0
- quickgraphlib-0.1.0a19/examples/Rectangle.qdoc +15 -0
- quickgraphlib-0.1.0a19/examples/Rectangle.qml +55 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/requirements.txt +1 -0
- quickgraphlib-0.1.0a19/tests/qml/EllipseGeometryTests.qml +110 -0
- quickgraphlib-0.1.0a19/tests/qml/ExportFromPythonTest.qml +18 -0
- quickgraphlib-0.1.0a19/tests/qml/ExportFromQMLTest.qml +54 -0
- quickgraphlib-0.1.0a19/tests/qml/GraphHandleStackingTests.qml +53 -0
- quickgraphlib-0.1.0a19/tests/qml/RectangleHandlesGeometryTests.qml +135 -0
- quickgraphlib-0.1.0a19/tests/qml/RoiBodyHitTests.qml +167 -0
- quickgraphlib-0.1.0a19/tests/qml/RoiClickSignalTests.qml +34 -0
- quickgraphlib-0.1.0a19/tests/qml/RoiHandleCursorTests.qml +116 -0
- quickgraphlib-0.1.0a19/tests/qml/RoiHoverTests.qml +74 -0
- quickgraphlib-0.1.0a19/tests/qml/RoiResizeHandleTests.qml +71 -0
- quickgraphlib-0.1.0a19/tests/reference_images/ColorMappedImages.dat +0 -0
- quickgraphlib-0.1.0a19/tests/reference_images/ColorMappedImages.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ColorMappedImages.svg +82 -16
- quickgraphlib-0.1.0a19/tests/reference_images/ColorMappedImages_grab.png +0 -0
- quickgraphlib-0.1.0a19/tests/reference_images/Ellipse.dat +0 -0
- quickgraphlib-0.1.0a19/tests/reference_images/Ellipse.png +0 -0
- quickgraphlib-0.1.0a19/tests/reference_images/Ellipse.svg +831 -0
- quickgraphlib-0.1.0a19/tests/reference_images/Ellipse_grab.png +0 -0
- quickgraphlib-0.1.0a19/tests/reference_images/LineSegment.dat +0 -0
- quickgraphlib-0.1.0a19/tests/reference_images/LineSegment.png +0 -0
- quickgraphlib-0.1.0a19/tests/reference_images/LineSegment.svg +771 -0
- quickgraphlib-0.1.0a19/tests/reference_images/LineSegment_grab.png +0 -0
- quickgraphlib-0.1.0a19/tests/reference_images/Polygon.dat +0 -0
- quickgraphlib-0.1.0a19/tests/reference_images/Polygon.png +0 -0
- quickgraphlib-0.1.0a19/tests/reference_images/Polygon.svg +886 -0
- quickgraphlib-0.1.0a19/tests/reference_images/Polygon_grab.png +0 -0
- quickgraphlib-0.1.0a19/tests/reference_images/Polyline.dat +0 -0
- quickgraphlib-0.1.0a19/tests/reference_images/Polyline.png +0 -0
- quickgraphlib-0.1.0a19/tests/reference_images/Polyline.svg +886 -0
- quickgraphlib-0.1.0a19/tests/reference_images/Polyline_grab.png +0 -0
- quickgraphlib-0.1.0a19/tests/reference_images/Rectangle.dat +0 -0
- quickgraphlib-0.1.0a19/tests/reference_images/Rectangle.png +0 -0
- quickgraphlib-0.1.0a19/tests/reference_images/Rectangle.svg +849 -0
- quickgraphlib-0.1.0a19/tests/reference_images/Rectangle_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/test_exports.py +4 -68
- quickgraphlib-0.1.0a19/tests/test_roi_hit_test_helpers.py +121 -0
- quickgraphlib-0.1.0a19/tests/test_roi_hit_tests.py +153 -0
- quickgraphlib-0.1.0a18/examples/ColorMappedImages.png +0 -0
- quickgraphlib-0.1.0a18/tests/reference_images/ColorMappedImages.dat +0 -0
- quickgraphlib-0.1.0a18/tests/reference_images/ColorMappedImages.png +0 -0
- quickgraphlib-0.1.0a18/tests/reference_images/ColorMappedImages_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/.clang-format +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/CMakeLists.txt +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/LICENCE +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/AntialiasingContainer.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/Axis.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/CMakeLists.txt +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/ColorMaps.cpp +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/ColorMaps.hpp +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/DataTypes.cpp +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/Global.hpp +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphArea.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/AxHLine.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/AxHSpan.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/AxVLine.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/AxVSpan.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/BarHorizontal.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/BarVertical.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/BasicLegend.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/BasicLegendItem.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/BoxPlotHorizontal.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/BoxPlotVertical.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/ColorMesh.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/Contour.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/GraphItemDragHandler.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/Grid.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/Histogram.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/Line.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/Marker.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/helpers/HistogramHelper.cpp +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/PreFabs/CMakeLists.txt +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/PreFabs/ImageAxes.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/PreFabs/XYAxes.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/QuickGraphLib.hpp +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/ScalingContainer.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/ShapeRepeater.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/TickLabel.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/ZoomPanHandler.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/__init__.py +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/bindings/Bindings.hpp +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/bindings/Bindings.xml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/bindings/CMakeLists.txt +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/bindings/glue/DataTypes.cpp +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/bindings/pyigen.py +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/consts.py +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/contours.py +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/doc/AxesGridLayout.drawio +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/doc/AxesGridLayout.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/doc/export.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/doc/graphitems.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/doc/graphstructure.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/doc/index.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/doc/interaction.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/doc/module-cpp.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/doc/module.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/doc/prefabs.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/doc/python_helpers.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/helpers/Foreign.hpp +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/helpers/ShapeRepeaterHelper.cpp +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/helpers/ShapeRepeaterHelper.hpp +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/py.typed +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/README.md +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/activate_venv.ps1 +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/ci/find_qt.py +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/ci/fixup_qt.py +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/ci/setup_qt.py +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/docs/build_docs.py +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/docs/config.qdocconf +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/docs/style.css +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/AllTheAxes.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/AllTheAxes.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/AllTheAxes.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BarChartHorizontal.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BarChartHorizontal.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BarChartHorizontal.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BarChartVertical.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BarChartVertical.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BarChartVertical.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BasicHistogram.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BasicHistogram.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BasicHistogram.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BasicSinGraph.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BasicSinGraph.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BasicSinGraph.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BasicSinGraphNoPrefabs.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BasicSinGraphNoPrefabs.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BasicSinGraphNoPrefabs.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BoxPlots.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BoxPlots.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BoxPlots.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BuiltinColormaps.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BuiltinColormaps.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BuiltinColormaps.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ColorMappedImages.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ColorMesh.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ColorMesh.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ColorMesh.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Complex.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Complex.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Complex.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Contours.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Contours.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Contours.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Conway.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Conway.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Conway.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/DarkSinGraph.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/DarkSinGraph.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/DarkSinGraph.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/DraggableRegion.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/DraggableRegion.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/DraggableRegion.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ExampleGallery.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ExampleGallery.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ImageAlignment.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ImageAlignment.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ImageAlignment.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/InvertedAxes.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/InvertedAxes.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/InvertedAxes.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/LogGraph.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/LogGraph.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/LogGraph.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/PeakButtons.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/PeakButtons.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/PeakButtons.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ReadoutLine.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ReadoutLine.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ReadoutLine.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ScalingGraph.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ScalingGraph.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ScalingGraph.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Scatter.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Scatter.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Scatter.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/SpansAndLines.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/SpansAndLines.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/SpansAndLines.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Subgraphs.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Subgraphs.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Subgraphs.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/TwinX.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/TwinX.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/TwinX.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ZoomableAsImage.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ZoomableAsImage.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ZoomableAsImage.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ZoomableAxes.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ZoomableAxes.qdoc +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ZoomableAxes.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/__init__.py +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/conway.py +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/gallery.py +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/pyproject.toml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/setup_venv.ps1 +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/__init__.py +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/extra_examples/500px-Kittyply_edit1.jpg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/extra_examples/ImageExport.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/extra_examples/SVG_Logo.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/extra_examples/VectorImageExport.qml +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/fonts/DejaVuSans-Bold.ttf +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/fonts/DejaVuSans-BoldOblique.ttf +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/fonts/DejaVuSans-Oblique.ttf +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/fonts/DejaVuSans.ttf +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/fonts/LICENSE +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/python_exporter.py +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/AllTheAxes.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/AllTheAxes.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/AllTheAxes.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/AllTheAxes_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BarChartHorizontal.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BarChartHorizontal.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BarChartHorizontal.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BarChartHorizontal_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BarChartVertical.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BarChartVertical.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BarChartVertical.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BarChartVertical_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BasicHistogram.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BasicHistogram.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BasicHistogram.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BasicHistogram_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BasicSinGraph.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BasicSinGraph.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BasicSinGraph.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BasicSinGraphNoPrefabs.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BasicSinGraphNoPrefabs.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BasicSinGraphNoPrefabs.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BasicSinGraphNoPrefabs_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BasicSinGraph_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BoxPlots.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BoxPlots.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BoxPlots.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BoxPlots_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BuiltinColormaps.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BuiltinColormaps.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BuiltinColormaps.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BuiltinColormaps_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ColorMesh.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ColorMesh.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ColorMesh.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ColorMesh_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Complex.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Complex.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Complex.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Complex_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Contours.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Contours.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Contours.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Contours_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Conway.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Conway.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Conway.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Conway_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/DarkSinGraph.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/DarkSinGraph.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/DarkSinGraph.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/DarkSinGraph_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/DraggableRegion.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/DraggableRegion.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/DraggableRegion.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/DraggableRegion_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ImageAlignment.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ImageAlignment.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ImageAlignment.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ImageAlignment_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ImageExport.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ImageExport.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ImageExport.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ImageExport_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/InvertedAxes.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/InvertedAxes.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/InvertedAxes.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/InvertedAxes_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/LogGraph.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/LogGraph.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/LogGraph.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/LogGraph_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/PeakButtons.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/PeakButtons.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/PeakButtons.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/PeakButtons_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ReadoutLine.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ReadoutLine.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ReadoutLine.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ReadoutLine_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ScalingGraph.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ScalingGraph.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ScalingGraph.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ScalingGraph_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Scatter.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Scatter.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Scatter.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Scatter_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/SpansAndLines.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/SpansAndLines.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/SpansAndLines.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/SpansAndLines_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Subgraphs.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Subgraphs.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Subgraphs.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Subgraphs_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/TwinX.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/TwinX.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/TwinX.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/TwinX_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/VectorImageExport.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/VectorImageExport.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/VectorImageExport.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/VectorImageExport_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ZoomableAsImage.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ZoomableAsImage.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ZoomableAsImage.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ZoomableAsImage_grab.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ZoomableAxes.dat +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ZoomableAxes.png +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ZoomableAxes.svg +0 -0
- {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ZoomableAxes_grab.png +0 -0
|
@@ -18,6 +18,11 @@ repos:
|
|
|
18
18
|
entry: venv/Scripts/ruff.exe format
|
|
19
19
|
language: system
|
|
20
20
|
types: [python]
|
|
21
|
+
- id: clang_format
|
|
22
|
+
name: "Format C/C++ files"
|
|
23
|
+
entry: venv/Scripts/clang-format.exe -i
|
|
24
|
+
types_or: [c, c++]
|
|
25
|
+
language: system
|
|
21
26
|
- id: gersemi
|
|
22
27
|
name: gersemi
|
|
23
28
|
entry: venv/Scripts/gersemi.exe -i
|
|
@@ -12,11 +12,11 @@ class QGL_EXPORT QGLPolygonF : public QPolygonF {
|
|
|
12
12
|
public:
|
|
13
13
|
using QPolygonF::QPolygonF;
|
|
14
14
|
QGLPolygonF() = default;
|
|
15
|
-
QGLPolygonF(const QList<QPointF
|
|
16
|
-
QGLPolygonF(const QPolygonF
|
|
17
|
-
QGLPolygonF(QList<QPointF
|
|
18
|
-
QGLPolygonF(QPolygonF
|
|
19
|
-
inline void swap(QGLPolygonF
|
|
15
|
+
QGLPolygonF(const QList<QPointF>& v) : QPolygonF(v) {}
|
|
16
|
+
QGLPolygonF(const QPolygonF& v) : QPolygonF(v) {}
|
|
17
|
+
QGLPolygonF(QList<QPointF>&& v) noexcept : QPolygonF(std::move(v)) {}
|
|
18
|
+
QGLPolygonF(QPolygonF&& v) noexcept : QPolygonF(std::move(v)) {}
|
|
19
|
+
inline void swap(QGLPolygonF& other) { QPolygonF::swap(other); }
|
|
20
20
|
operator QVariant() const;
|
|
21
21
|
};
|
|
22
22
|
Q_DECLARE_SHARED(QGLPolygonF)
|
|
@@ -25,9 +25,9 @@ class QGL_EXPORT QGLDoubleList : public QList<qreal> {
|
|
|
25
25
|
public:
|
|
26
26
|
using QList<qreal>::QList;
|
|
27
27
|
QGLDoubleList() = default;
|
|
28
|
-
QGLDoubleList(const QList<qreal
|
|
29
|
-
QGLDoubleList(QList<qreal
|
|
30
|
-
inline void swap(QGLDoubleList
|
|
28
|
+
QGLDoubleList(const QList<qreal>& v) : QList<qreal>(v) {}
|
|
29
|
+
QGLDoubleList(QList<qreal>&& v) noexcept : QList<qreal>(std::move(v)) {}
|
|
30
|
+
inline void swap(QGLDoubleList& other) { QList<qreal>::swap(other); }
|
|
31
31
|
operator QVariant() const;
|
|
32
32
|
};
|
|
33
33
|
Q_DECLARE_SHARED(QGLDoubleList)
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
// SPDX-FileCopyrightText: Copyright (c) 2024 Refeyn Ltd and other QuickGraphLib contributors
|
|
2
|
+
// SPDX-License-Identifier: MIT
|
|
3
|
+
|
|
4
|
+
import QtQuick
|
|
5
|
+
|
|
6
|
+
/*!
|
|
7
|
+
\qmltype BaseHandles
|
|
8
|
+
\inqmlmodule QuickGraphLib.GraphItems
|
|
9
|
+
\inherits QtQuick::Item
|
|
10
|
+
\internal
|
|
11
|
+
\brief Shared base contract for graph handle overlays.
|
|
12
|
+
|
|
13
|
+
BaseHandles centralizes the common styling, click and movement signal contract used by
|
|
14
|
+
concrete handle overlay items. Applications should instantiate the concrete handle types rather
|
|
15
|
+
than BaseHandles directly.
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
Item {
|
|
19
|
+
id: root
|
|
20
|
+
|
|
21
|
+
property bool _bodyHovered: false
|
|
22
|
+
|
|
23
|
+
/*!
|
|
24
|
+
Must be assigned the data transform of the graph area this handle item is paired to.
|
|
25
|
+
|
|
26
|
+
\sa GraphArea::dataTransform
|
|
27
|
+
*/
|
|
28
|
+
required property matrix4x4 dataTransform
|
|
29
|
+
/*!
|
|
30
|
+
The normal handle fill color.
|
|
31
|
+
*/
|
|
32
|
+
property color handleFillColor: "white"
|
|
33
|
+
/*!
|
|
34
|
+
The handle fill color used while hovered.
|
|
35
|
+
*/
|
|
36
|
+
property color handleHoverFillColor: "#fff6bf"
|
|
37
|
+
/*!
|
|
38
|
+
The handle fill color used while selected or dragged.
|
|
39
|
+
*/
|
|
40
|
+
property color handleSelectedFillColor: "#ffd24d"
|
|
41
|
+
/*!
|
|
42
|
+
The handle outline color.
|
|
43
|
+
*/
|
|
44
|
+
property color handleStrokeColor: "#333333"
|
|
45
|
+
/*!
|
|
46
|
+
The handle outline width.
|
|
47
|
+
*/
|
|
48
|
+
property real handleStrokeWidth: 1
|
|
49
|
+
/*!
|
|
50
|
+
Whether handles should be visible.
|
|
51
|
+
*/
|
|
52
|
+
property bool handlesVisible: selected
|
|
53
|
+
/*!
|
|
54
|
+
Whether the pointer is currently over the shape body.
|
|
55
|
+
*/
|
|
56
|
+
readonly property bool hovered: enabled && _bodyHovered
|
|
57
|
+
/*!
|
|
58
|
+
Whether the handle item should be drawn in the selected state.
|
|
59
|
+
*/
|
|
60
|
+
property bool selected: false
|
|
61
|
+
|
|
62
|
+
/*!
|
|
63
|
+
Emitted when the body of the handle item is clicked.
|
|
64
|
+
*/
|
|
65
|
+
signal bodyClicked
|
|
66
|
+
|
|
67
|
+
/*!
|
|
68
|
+
Emitted when \a handle is clicked.
|
|
69
|
+
*/
|
|
70
|
+
signal handleClicked(GraphHandle handle)
|
|
71
|
+
|
|
72
|
+
/*!
|
|
73
|
+
Emitted when \a handle has moved to \a position in data coordinates.
|
|
74
|
+
*/
|
|
75
|
+
signal handleMoved(GraphHandle handle, point position)
|
|
76
|
+
}
|
|
@@ -6,7 +6,9 @@ set(QGL_GI_QML_FILES
|
|
|
6
6
|
AxVLine.qml
|
|
7
7
|
BarHorizontal.qml
|
|
8
8
|
BarVertical.qml
|
|
9
|
+
BaseHandles.qml
|
|
9
10
|
BasicLegend.qml
|
|
11
|
+
GraphHandle.qml
|
|
10
12
|
BoxPlotHorizontal.qml
|
|
11
13
|
BoxPlotVertical.qml
|
|
12
14
|
GraphItemDragHandler.qml
|
|
@@ -16,8 +18,18 @@ set(QGL_GI_QML_FILES
|
|
|
16
18
|
AxVSpan.qml
|
|
17
19
|
BasicLegendItem.qml
|
|
18
20
|
Contour.qml
|
|
21
|
+
Ellipse.qml
|
|
22
|
+
EllipseHandles.qml
|
|
19
23
|
Grid.qml
|
|
20
24
|
Line.qml
|
|
25
|
+
LineSegmentHandles.qml
|
|
26
|
+
LineSegment.qml
|
|
27
|
+
Polygon.qml
|
|
28
|
+
PolygonHandles.qml
|
|
29
|
+
Polyline.qml
|
|
30
|
+
PolylineHandles.qml
|
|
31
|
+
Rectangle.qml
|
|
32
|
+
RectangleHandles.qml
|
|
21
33
|
ColorMesh.qml
|
|
22
34
|
)
|
|
23
35
|
qt_add_qml_module(QuickGraphLibGraphItems
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
// SPDX-FileCopyrightText: Copyright (c) 2024 Refeyn Ltd and other QuickGraphLib contributors
|
|
2
|
+
// SPDX-License-Identifier: MIT
|
|
3
|
+
|
|
4
|
+
import QtQuick
|
|
5
|
+
import QtQuick.Shapes as QQS
|
|
6
|
+
import QuickGraphLib as QuickGraphLib
|
|
7
|
+
|
|
8
|
+
/*!
|
|
9
|
+
\qmltype Ellipse
|
|
10
|
+
\inqmlmodule QuickGraphLib.GraphItems
|
|
11
|
+
\inherits QtQuick::Shapes::ShapePath
|
|
12
|
+
\brief Displays an ellipse in data coordinates.
|
|
13
|
+
|
|
14
|
+
Draws an ellipse from a bounding Qt rect in data coordinates. The style can be adjusted using the
|
|
15
|
+
\l {ShapePath::fillColor} {fillColor}, \l {ShapePath::strokeColor} {strokeColor} and
|
|
16
|
+
\l {ShapePath::strokeWidth} {strokeWidth} properties.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
QQS.ShapePath {
|
|
20
|
+
id: root
|
|
21
|
+
|
|
22
|
+
readonly property real _dataBottom: _normalizedDataRect.bottom
|
|
23
|
+
readonly property point _dataCenter: Qt.point((_normalizedDataRect.left + _normalizedDataRect.right) / 2, (_normalizedDataRect.top + _normalizedDataRect.bottom) / 2)
|
|
24
|
+
readonly property real _dataLeft: _normalizedDataRect.left
|
|
25
|
+
readonly property real _dataRight: _normalizedDataRect.right
|
|
26
|
+
readonly property point _dataRightCenter: Qt.point(_dataRight, _dataCenter.y)
|
|
27
|
+
readonly property real _dataTop: _normalizedDataRect.top
|
|
28
|
+
readonly property point _dataTopCenter: Qt.point(_dataCenter.x, _dataTop)
|
|
29
|
+
readonly property point _mappedCenter: dataTransform.map(_dataCenter)
|
|
30
|
+
readonly property rect _mappedRect: dataTransform.mapRect(_normalizedDataRect)
|
|
31
|
+
readonly property point _mappedRightCenter: dataTransform.map(_dataRightCenter)
|
|
32
|
+
readonly property point _mappedTopCenter: dataTransform.map(_dataTopCenter)
|
|
33
|
+
readonly property rect _normalizedDataRect: QuickGraphLib.Helpers.normalizedRect(dataRect)
|
|
34
|
+
readonly property real _radiusX: _mappedRect.width / 2
|
|
35
|
+
readonly property real _radiusY: _mappedRect.height / 2
|
|
36
|
+
/*!
|
|
37
|
+
The ellipse bounding rectangle in data coordinates.
|
|
38
|
+
*/
|
|
39
|
+
required property rect dataRect
|
|
40
|
+
|
|
41
|
+
/*!
|
|
42
|
+
Must be assigned the data transform of the graph area this ellipse is paired to.
|
|
43
|
+
|
|
44
|
+
\sa GraphArea::dataTransform
|
|
45
|
+
*/
|
|
46
|
+
required property matrix4x4 dataTransform
|
|
47
|
+
|
|
48
|
+
fillColor: "transparent"
|
|
49
|
+
pathHints: QQS.ShapePath.PathConvex | QQS.ShapePath.PathSolid
|
|
50
|
+
|
|
51
|
+
PathAngleArc {
|
|
52
|
+
centerX: root._mappedCenter.x
|
|
53
|
+
centerY: root._mappedCenter.y
|
|
54
|
+
radiusX: root._radiusX
|
|
55
|
+
radiusY: root._radiusY
|
|
56
|
+
startAngle: 0
|
|
57
|
+
sweepAngle: 360
|
|
58
|
+
}
|
|
59
|
+
}
|
|
@@ -0,0 +1,340 @@
|
|
|
1
|
+
// SPDX-FileCopyrightText: Copyright (c) 2024 Refeyn Ltd and other QuickGraphLib contributors
|
|
2
|
+
// SPDX-License-Identifier: MIT
|
|
3
|
+
|
|
4
|
+
import QtQuick
|
|
5
|
+
import QuickGraphLib as QuickGraphLib
|
|
6
|
+
|
|
7
|
+
/*!
|
|
8
|
+
\qmltype EllipseHandles
|
|
9
|
+
\inqmlmodule QuickGraphLib.GraphItems
|
|
10
|
+
\inherits QtQuick::Item
|
|
11
|
+
\brief Interaction overlay for an elliptical region of interest.
|
|
12
|
+
|
|
13
|
+
EllipseHandles provides selection, body dragging and optional cardinal resize handles for an
|
|
14
|
+
ellipse. It does not own the ellipse data; instead it emits movement and resize signals so
|
|
15
|
+
applications can update their own model.
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
BaseHandles {
|
|
19
|
+
id: root
|
|
20
|
+
|
|
21
|
+
enum HandleMode {
|
|
22
|
+
NoHandles,
|
|
23
|
+
Cardinal,
|
|
24
|
+
CardinalAndCenter
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
property bool _bodyDragging: false
|
|
28
|
+
readonly property point _bottomHandlePoint: Qt.point(_centerPoint.x, _dataBottom)
|
|
29
|
+
readonly property point _centerPoint: Qt.point((_dataLeft + _dataRight) / 2, (_dataTop + _dataBottom) / 2)
|
|
30
|
+
readonly property real _dataBottom: Math.max(dataRect.y, dataRect.y + dataRect.height)
|
|
31
|
+
readonly property real _dataLeft: Math.min(dataRect.x, dataRect.x + dataRect.width)
|
|
32
|
+
readonly property real _dataRight: Math.max(dataRect.x, dataRect.x + dataRect.width)
|
|
33
|
+
readonly property real _dataTop: Math.min(dataRect.y, dataRect.y + dataRect.height)
|
|
34
|
+
property point _lastDragPoint: Qt.point(0, 0)
|
|
35
|
+
readonly property point _leftHandlePoint: Qt.point(_dataLeft, _centerPoint.y)
|
|
36
|
+
readonly property point _mappedBottomHandle: dataTransform.map(_bottomHandlePoint)
|
|
37
|
+
readonly property point _mappedCenter: dataTransform.map(_centerPoint)
|
|
38
|
+
readonly property point _mappedLeftHandle: dataTransform.map(_leftHandlePoint)
|
|
39
|
+
readonly property point _mappedRightHandle: dataTransform.map(_rightHandlePoint)
|
|
40
|
+
readonly property point _mappedTopHandle: dataTransform.map(_topHandlePoint)
|
|
41
|
+
readonly property point _rightHandlePoint: Qt.point(_dataRight, _centerPoint.y)
|
|
42
|
+
readonly property point _topHandlePoint: Qt.point(_centerPoint.x, _dataTop)
|
|
43
|
+
/*!
|
|
44
|
+
A direct reference to the bottom resize handle.
|
|
45
|
+
*/
|
|
46
|
+
readonly property alias bottomHandle: bottomGraphHandle
|
|
47
|
+
/*!
|
|
48
|
+
Optional visual delegate used for cardinal resize handles.
|
|
49
|
+
|
|
50
|
+
The delegate can read the handle state through \c parent.handle.
|
|
51
|
+
*/
|
|
52
|
+
property Component cardinalHandleDelegate: null
|
|
53
|
+
/*!
|
|
54
|
+
The default shape used for cardinal resize handles.
|
|
55
|
+
*/
|
|
56
|
+
property int cardinalHandleShape: GraphHandle.Square
|
|
57
|
+
/*!
|
|
58
|
+
Whether cardinal resize handles can resize the ellipse.
|
|
59
|
+
*/
|
|
60
|
+
property bool cardinalHandlesMovable: true
|
|
61
|
+
/*!
|
|
62
|
+
A direct reference to the optional center move handle.
|
|
63
|
+
*/
|
|
64
|
+
readonly property alias centerHandle: centerGraphHandle
|
|
65
|
+
/*!
|
|
66
|
+
Optional visual delegate used for the center move handle.
|
|
67
|
+
|
|
68
|
+
The delegate can read the handle state through \c parent.handle.
|
|
69
|
+
*/
|
|
70
|
+
property Component centerHandleDelegate: null
|
|
71
|
+
/*!
|
|
72
|
+
The default shape used for the center move handle.
|
|
73
|
+
*/
|
|
74
|
+
property int centerHandleShape: GraphHandle.Circle
|
|
75
|
+
/*!
|
|
76
|
+
The visual size and hit target size of the center handle.
|
|
77
|
+
*/
|
|
78
|
+
property real centerHandleSize: handleSize
|
|
79
|
+
/*!
|
|
80
|
+
The ellipse bounding rectangle in data coordinates.
|
|
81
|
+
*/
|
|
82
|
+
required property rect dataRect
|
|
83
|
+
|
|
84
|
+
/*!
|
|
85
|
+
Which built-in handles should be shown.
|
|
86
|
+
*/
|
|
87
|
+
property int handleMode: EllipseHandles.Cardinal
|
|
88
|
+
/*!
|
|
89
|
+
The visual size and hit target size of cardinal resize handles.
|
|
90
|
+
*/
|
|
91
|
+
property real handleSize: 8
|
|
92
|
+
/*!
|
|
93
|
+
GraphHandle objects rendered by this item.
|
|
94
|
+
*/
|
|
95
|
+
readonly property var handles: [leftGraphHandle, rightGraphHandle, topGraphHandle, bottomGraphHandle, centerGraphHandle]
|
|
96
|
+
|
|
97
|
+
/*!
|
|
98
|
+
A direct reference to the left resize handle.
|
|
99
|
+
*/
|
|
100
|
+
readonly property alias leftHandle: leftGraphHandle
|
|
101
|
+
/*!
|
|
102
|
+
The minimum height emitted when resize handles are dragged toward the opposite edge.
|
|
103
|
+
*/
|
|
104
|
+
property real minimumDataHeight: 0
|
|
105
|
+
/*!
|
|
106
|
+
The minimum width emitted when resize handles are dragged toward the opposite edge.
|
|
107
|
+
*/
|
|
108
|
+
property real minimumDataWidth: 0
|
|
109
|
+
/*!
|
|
110
|
+
Whether dragging the ellipse body should emit movement signals.
|
|
111
|
+
*/
|
|
112
|
+
property bool movable: true
|
|
113
|
+
/*!
|
|
114
|
+
A direct reference to the right resize handle.
|
|
115
|
+
*/
|
|
116
|
+
readonly property alias rightHandle: rightGraphHandle
|
|
117
|
+
/*!
|
|
118
|
+
A direct reference to the top resize handle.
|
|
119
|
+
*/
|
|
120
|
+
readonly property alias topHandle: topGraphHandle
|
|
121
|
+
|
|
122
|
+
/*!
|
|
123
|
+
Emitted when the ellipse body has moved by \a delta in data coordinates.
|
|
124
|
+
*/
|
|
125
|
+
signal moved(point delta)
|
|
126
|
+
/*!
|
|
127
|
+
Emitted when a handle has resized the ellipse to \a dataRect.
|
|
128
|
+
*/
|
|
129
|
+
signal resized(rect dataRect)
|
|
130
|
+
|
|
131
|
+
function _bodyScenePoint(localPoint) {
|
|
132
|
+
return root.mapFromItem(bodyMouseArea, localPoint);
|
|
133
|
+
}
|
|
134
|
+
function _containsBodyPoint(localPoint) {
|
|
135
|
+
return _containsBodyScenePoint(_bodyScenePoint(localPoint));
|
|
136
|
+
}
|
|
137
|
+
function _containsBodyScenePoint(scenePoint) {
|
|
138
|
+
let radiusX = Math.abs(root._mappedRightHandle.x - root._mappedCenter.x);
|
|
139
|
+
let radiusY = Math.abs(root._mappedTopHandle.y - root._mappedCenter.y);
|
|
140
|
+
return QuickGraphLib.Helpers.isInsideEllipse(scenePoint, root._mappedCenter, radiusX, radiusY);
|
|
141
|
+
}
|
|
142
|
+
function _resizedFromHandle(handle, position) {
|
|
143
|
+
let minimumWidth = Math.max(0, root.minimumDataWidth);
|
|
144
|
+
let minimumHeight = Math.max(0, root.minimumDataHeight);
|
|
145
|
+
if (handle.objectName === "left") {
|
|
146
|
+
return QuickGraphLib.Helpers.clampedResizeRect(Qt.point(position.x, root._dataTop), Qt.point(root._dataRight, root._dataBottom), minimumWidth, 0, -1, -1);
|
|
147
|
+
}
|
|
148
|
+
if (handle.objectName === "right") {
|
|
149
|
+
return QuickGraphLib.Helpers.clampedResizeRect(Qt.point(position.x, root._dataBottom), Qt.point(root._dataLeft, root._dataTop), minimumWidth, 0, 1, 1);
|
|
150
|
+
}
|
|
151
|
+
if (handle.objectName === "top") {
|
|
152
|
+
return QuickGraphLib.Helpers.clampedResizeRect(Qt.point(root._dataLeft, position.y), Qt.point(root._dataRight, root._dataBottom), 0, minimumHeight, -1, -1);
|
|
153
|
+
}
|
|
154
|
+
if (handle.objectName === "bottom") {
|
|
155
|
+
return QuickGraphLib.Helpers.clampedResizeRect(Qt.point(root._dataRight, position.y), Qt.point(root._dataLeft, root._dataTop), 0, minimumHeight, 1, 1);
|
|
156
|
+
}
|
|
157
|
+
return root.dataRect;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
height: parent ? parent.height : 0
|
|
161
|
+
width: parent ? parent.width : 0
|
|
162
|
+
x: 0
|
|
163
|
+
y: 0
|
|
164
|
+
|
|
165
|
+
MouseArea {
|
|
166
|
+
id: bodyMouseArea
|
|
167
|
+
|
|
168
|
+
property real _bodyBottom: Math.max(root._mappedTopHandle.y, root._mappedBottomHandle.y)
|
|
169
|
+
property real _bodyLeft: Math.min(root._mappedLeftHandle.x, root._mappedRightHandle.x)
|
|
170
|
+
property real _bodyRight: Math.max(root._mappedLeftHandle.x, root._mappedRightHandle.x)
|
|
171
|
+
property real _bodyTop: Math.min(root._mappedTopHandle.y, root._mappedBottomHandle.y)
|
|
172
|
+
|
|
173
|
+
cursorShape: root.movable && (root._bodyHovered || root._bodyDragging) ? Qt.SizeAllCursor : Qt.ArrowCursor
|
|
174
|
+
enabled: root.enabled
|
|
175
|
+
height: _bodyBottom - _bodyTop
|
|
176
|
+
hoverEnabled: true
|
|
177
|
+
width: _bodyRight - _bodyLeft
|
|
178
|
+
x: _bodyLeft
|
|
179
|
+
y: _bodyTop
|
|
180
|
+
|
|
181
|
+
onCanceled: {
|
|
182
|
+
root._bodyDragging = false;
|
|
183
|
+
}
|
|
184
|
+
onExited: {
|
|
185
|
+
root._bodyHovered = false;
|
|
186
|
+
}
|
|
187
|
+
onPositionChanged: event => {
|
|
188
|
+
root._bodyHovered = root._containsBodyPoint(Qt.point(event.x, event.y));
|
|
189
|
+
if (!root._bodyDragging || !root.movable)
|
|
190
|
+
return;
|
|
191
|
+
let currentPoint = root.dataTransform.inverted().map(root.mapFromItem(bodyMouseArea, Qt.point(event.x, event.y)));
|
|
192
|
+
let delta = Qt.point(currentPoint.x - root._lastDragPoint.x, currentPoint.y - root._lastDragPoint.y);
|
|
193
|
+
root._lastDragPoint = currentPoint;
|
|
194
|
+
root.moved(delta);
|
|
195
|
+
}
|
|
196
|
+
onPressed: event => {
|
|
197
|
+
if (!root._containsBodyPoint(Qt.point(event.x, event.y))) {
|
|
198
|
+
root._bodyDragging = false;
|
|
199
|
+
event.accepted = false;
|
|
200
|
+
return;
|
|
201
|
+
}
|
|
202
|
+
root._bodyDragging = true;
|
|
203
|
+
root.bodyClicked();
|
|
204
|
+
root._lastDragPoint = root.dataTransform.inverted().map(root.mapFromItem(bodyMouseArea, Qt.point(event.x, event.y)));
|
|
205
|
+
}
|
|
206
|
+
onReleased: {
|
|
207
|
+
root._bodyDragging = false;
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
GraphHandle {
|
|
211
|
+
id: leftGraphHandle
|
|
212
|
+
|
|
213
|
+
cursorShape: Qt.SizeHorCursor
|
|
214
|
+
dataTransform: root.dataTransform
|
|
215
|
+
delegate: root.cardinalHandleDelegate
|
|
216
|
+
fillColor: root.handleFillColor
|
|
217
|
+
hoverFillColor: root.handleHoverFillColor
|
|
218
|
+
movable: root.cardinalHandlesMovable
|
|
219
|
+
objectName: "left"
|
|
220
|
+
position: root._leftHandlePoint
|
|
221
|
+
role: GraphHandle.Resize
|
|
222
|
+
selected: root.selected
|
|
223
|
+
selectedFillColor: root.handleSelectedFillColor
|
|
224
|
+
shape: root.cardinalHandleShape
|
|
225
|
+
size: root.handleSize
|
|
226
|
+
strokeColor: root.handleStrokeColor
|
|
227
|
+
strokeWidth: root.handleStrokeWidth
|
|
228
|
+
visible: root.handlesVisible && root.handleMode !== EllipseHandles.NoHandles
|
|
229
|
+
|
|
230
|
+
onClicked: root.handleClicked(leftGraphHandle)
|
|
231
|
+
onMoved: position => {
|
|
232
|
+
root.handleMoved(leftGraphHandle, position);
|
|
233
|
+
root.resized(root._resizedFromHandle(leftGraphHandle, position));
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
GraphHandle {
|
|
237
|
+
id: rightGraphHandle
|
|
238
|
+
|
|
239
|
+
cursorShape: Qt.SizeHorCursor
|
|
240
|
+
dataTransform: root.dataTransform
|
|
241
|
+
delegate: root.cardinalHandleDelegate
|
|
242
|
+
fillColor: root.handleFillColor
|
|
243
|
+
hoverFillColor: root.handleHoverFillColor
|
|
244
|
+
movable: root.cardinalHandlesMovable
|
|
245
|
+
objectName: "right"
|
|
246
|
+
position: root._rightHandlePoint
|
|
247
|
+
role: GraphHandle.Resize
|
|
248
|
+
selected: root.selected
|
|
249
|
+
selectedFillColor: root.handleSelectedFillColor
|
|
250
|
+
shape: root.cardinalHandleShape
|
|
251
|
+
size: root.handleSize
|
|
252
|
+
strokeColor: root.handleStrokeColor
|
|
253
|
+
strokeWidth: root.handleStrokeWidth
|
|
254
|
+
visible: root.handlesVisible && root.handleMode !== EllipseHandles.NoHandles
|
|
255
|
+
|
|
256
|
+
onClicked: root.handleClicked(rightGraphHandle)
|
|
257
|
+
onMoved: position => {
|
|
258
|
+
root.handleMoved(rightGraphHandle, position);
|
|
259
|
+
root.resized(root._resizedFromHandle(rightGraphHandle, position));
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
GraphHandle {
|
|
263
|
+
id: topGraphHandle
|
|
264
|
+
|
|
265
|
+
cursorShape: Qt.SizeVerCursor
|
|
266
|
+
dataTransform: root.dataTransform
|
|
267
|
+
delegate: root.cardinalHandleDelegate
|
|
268
|
+
fillColor: root.handleFillColor
|
|
269
|
+
hoverFillColor: root.handleHoverFillColor
|
|
270
|
+
movable: root.cardinalHandlesMovable
|
|
271
|
+
objectName: "top"
|
|
272
|
+
position: root._topHandlePoint
|
|
273
|
+
role: GraphHandle.Resize
|
|
274
|
+
selected: root.selected
|
|
275
|
+
selectedFillColor: root.handleSelectedFillColor
|
|
276
|
+
shape: root.cardinalHandleShape
|
|
277
|
+
size: root.handleSize
|
|
278
|
+
strokeColor: root.handleStrokeColor
|
|
279
|
+
strokeWidth: root.handleStrokeWidth
|
|
280
|
+
visible: root.handlesVisible && root.handleMode !== EllipseHandles.NoHandles
|
|
281
|
+
|
|
282
|
+
onClicked: root.handleClicked(topGraphHandle)
|
|
283
|
+
onMoved: position => {
|
|
284
|
+
root.handleMoved(topGraphHandle, position);
|
|
285
|
+
root.resized(root._resizedFromHandle(topGraphHandle, position));
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
GraphHandle {
|
|
289
|
+
id: bottomGraphHandle
|
|
290
|
+
|
|
291
|
+
cursorShape: Qt.SizeVerCursor
|
|
292
|
+
dataTransform: root.dataTransform
|
|
293
|
+
delegate: root.cardinalHandleDelegate
|
|
294
|
+
fillColor: root.handleFillColor
|
|
295
|
+
hoverFillColor: root.handleHoverFillColor
|
|
296
|
+
movable: root.cardinalHandlesMovable
|
|
297
|
+
objectName: "bottom"
|
|
298
|
+
position: root._bottomHandlePoint
|
|
299
|
+
role: GraphHandle.Resize
|
|
300
|
+
selected: root.selected
|
|
301
|
+
selectedFillColor: root.handleSelectedFillColor
|
|
302
|
+
shape: root.cardinalHandleShape
|
|
303
|
+
size: root.handleSize
|
|
304
|
+
strokeColor: root.handleStrokeColor
|
|
305
|
+
strokeWidth: root.handleStrokeWidth
|
|
306
|
+
visible: root.handlesVisible && root.handleMode !== EllipseHandles.NoHandles
|
|
307
|
+
|
|
308
|
+
onClicked: root.handleClicked(bottomGraphHandle)
|
|
309
|
+
onMoved: position => {
|
|
310
|
+
root.handleMoved(bottomGraphHandle, position);
|
|
311
|
+
root.resized(root._resizedFromHandle(bottomGraphHandle, position));
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
GraphHandle {
|
|
315
|
+
id: centerGraphHandle
|
|
316
|
+
|
|
317
|
+
cursorShape: Qt.SizeAllCursor
|
|
318
|
+
dataTransform: root.dataTransform
|
|
319
|
+
delegate: root.centerHandleDelegate
|
|
320
|
+
fillColor: root.handleFillColor
|
|
321
|
+
hoverFillColor: root.handleHoverFillColor
|
|
322
|
+
movable: root.movable
|
|
323
|
+
objectName: "center"
|
|
324
|
+
position: root._centerPoint
|
|
325
|
+
role: GraphHandle.Move
|
|
326
|
+
selected: root.selected
|
|
327
|
+
selectedFillColor: root.handleSelectedFillColor
|
|
328
|
+
shape: root.centerHandleShape
|
|
329
|
+
size: root.centerHandleSize
|
|
330
|
+
strokeColor: root.handleStrokeColor
|
|
331
|
+
strokeWidth: root.handleStrokeWidth
|
|
332
|
+
visible: root.handlesVisible && root.handleMode === EllipseHandles.CardinalAndCenter
|
|
333
|
+
|
|
334
|
+
onClicked: root.handleClicked(centerGraphHandle)
|
|
335
|
+
onMoved: position => {
|
|
336
|
+
root.handleMoved(centerGraphHandle, position);
|
|
337
|
+
root.moved(Qt.point(position.x - centerGraphHandle.position.x, position.y - centerGraphHandle.position.y));
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
}
|