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.
Files changed (366) hide show
  1. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/.gitignore +1 -0
  2. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/.pre-commit-config.yaml +5 -0
  3. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/PKG-INFO +1 -1
  4. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/DataTypes.hpp +8 -8
  5. quickgraphlib-0.1.0a19/QuickGraphLib/GraphItems/BaseHandles.qml +76 -0
  6. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/CMakeLists.txt +12 -0
  7. quickgraphlib-0.1.0a19/QuickGraphLib/GraphItems/Ellipse.qml +59 -0
  8. quickgraphlib-0.1.0a19/QuickGraphLib/GraphItems/EllipseHandles.qml +340 -0
  9. quickgraphlib-0.1.0a19/QuickGraphLib/GraphItems/GraphHandle.qml +166 -0
  10. quickgraphlib-0.1.0a19/QuickGraphLib/GraphItems/LineSegment.qml +44 -0
  11. quickgraphlib-0.1.0a19/QuickGraphLib/GraphItems/LineSegmentHandles.qml +252 -0
  12. quickgraphlib-0.1.0a19/QuickGraphLib/GraphItems/Polygon.qml +48 -0
  13. quickgraphlib-0.1.0a19/QuickGraphLib/GraphItems/PolygonHandles.qml +171 -0
  14. quickgraphlib-0.1.0a19/QuickGraphLib/GraphItems/Polyline.qml +41 -0
  15. quickgraphlib-0.1.0a19/QuickGraphLib/GraphItems/PolylineHandles.qml +170 -0
  16. quickgraphlib-0.1.0a19/QuickGraphLib/GraphItems/Rectangle.qml +64 -0
  17. quickgraphlib-0.1.0a19/QuickGraphLib/GraphItems/RectangleHandles.qml +316 -0
  18. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/helpers/GridHelper.cpp +1 -1
  19. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/helpers/GridHelper.hpp +7 -4
  20. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/helpers/HistogramHelper.hpp +8 -5
  21. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/ImageView.cpp +57 -25
  22. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/ImageView.hpp +18 -4
  23. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/Plugin.cpp +1 -1
  24. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/_version.py +3 -3
  25. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/bindings/ShibokenHelpers.cpp +20 -20
  26. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/bindings/ShibokenHelpers.hpp +2 -2
  27. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/helpers/AxisHelper.cpp +9 -9
  28. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/helpers/AxisHelper.hpp +17 -13
  29. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/helpers/Helpers.cpp +219 -10
  30. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/helpers/Helpers.hpp +14 -0
  31. quickgraphlib-0.1.0a19/examples/ColorMappedImages.png +0 -0
  32. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ColorMappedImages.qml +42 -1
  33. quickgraphlib-0.1.0a19/examples/Ellipse.png +0 -0
  34. quickgraphlib-0.1.0a19/examples/Ellipse.qdoc +15 -0
  35. quickgraphlib-0.1.0a19/examples/Ellipse.qml +55 -0
  36. quickgraphlib-0.1.0a19/examples/LineSegment.png +0 -0
  37. quickgraphlib-0.1.0a19/examples/LineSegment.qdoc +15 -0
  38. quickgraphlib-0.1.0a19/examples/LineSegment.qml +77 -0
  39. quickgraphlib-0.1.0a19/examples/Polygon.png +0 -0
  40. quickgraphlib-0.1.0a19/examples/Polygon.qdoc +15 -0
  41. quickgraphlib-0.1.0a19/examples/Polygon.qml +59 -0
  42. quickgraphlib-0.1.0a19/examples/Polyline.png +0 -0
  43. quickgraphlib-0.1.0a19/examples/Polyline.qdoc +15 -0
  44. quickgraphlib-0.1.0a19/examples/Polyline.qml +57 -0
  45. quickgraphlib-0.1.0a19/examples/Rectangle.png +0 -0
  46. quickgraphlib-0.1.0a19/examples/Rectangle.qdoc +15 -0
  47. quickgraphlib-0.1.0a19/examples/Rectangle.qml +55 -0
  48. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/requirements.txt +1 -0
  49. quickgraphlib-0.1.0a19/tests/qml/EllipseGeometryTests.qml +110 -0
  50. quickgraphlib-0.1.0a19/tests/qml/ExportFromPythonTest.qml +18 -0
  51. quickgraphlib-0.1.0a19/tests/qml/ExportFromQMLTest.qml +54 -0
  52. quickgraphlib-0.1.0a19/tests/qml/GraphHandleStackingTests.qml +53 -0
  53. quickgraphlib-0.1.0a19/tests/qml/RectangleHandlesGeometryTests.qml +135 -0
  54. quickgraphlib-0.1.0a19/tests/qml/RoiBodyHitTests.qml +167 -0
  55. quickgraphlib-0.1.0a19/tests/qml/RoiClickSignalTests.qml +34 -0
  56. quickgraphlib-0.1.0a19/tests/qml/RoiHandleCursorTests.qml +116 -0
  57. quickgraphlib-0.1.0a19/tests/qml/RoiHoverTests.qml +74 -0
  58. quickgraphlib-0.1.0a19/tests/qml/RoiResizeHandleTests.qml +71 -0
  59. quickgraphlib-0.1.0a19/tests/reference_images/ColorMappedImages.dat +0 -0
  60. quickgraphlib-0.1.0a19/tests/reference_images/ColorMappedImages.png +0 -0
  61. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ColorMappedImages.svg +82 -16
  62. quickgraphlib-0.1.0a19/tests/reference_images/ColorMappedImages_grab.png +0 -0
  63. quickgraphlib-0.1.0a19/tests/reference_images/Ellipse.dat +0 -0
  64. quickgraphlib-0.1.0a19/tests/reference_images/Ellipse.png +0 -0
  65. quickgraphlib-0.1.0a19/tests/reference_images/Ellipse.svg +831 -0
  66. quickgraphlib-0.1.0a19/tests/reference_images/Ellipse_grab.png +0 -0
  67. quickgraphlib-0.1.0a19/tests/reference_images/LineSegment.dat +0 -0
  68. quickgraphlib-0.1.0a19/tests/reference_images/LineSegment.png +0 -0
  69. quickgraphlib-0.1.0a19/tests/reference_images/LineSegment.svg +771 -0
  70. quickgraphlib-0.1.0a19/tests/reference_images/LineSegment_grab.png +0 -0
  71. quickgraphlib-0.1.0a19/tests/reference_images/Polygon.dat +0 -0
  72. quickgraphlib-0.1.0a19/tests/reference_images/Polygon.png +0 -0
  73. quickgraphlib-0.1.0a19/tests/reference_images/Polygon.svg +886 -0
  74. quickgraphlib-0.1.0a19/tests/reference_images/Polygon_grab.png +0 -0
  75. quickgraphlib-0.1.0a19/tests/reference_images/Polyline.dat +0 -0
  76. quickgraphlib-0.1.0a19/tests/reference_images/Polyline.png +0 -0
  77. quickgraphlib-0.1.0a19/tests/reference_images/Polyline.svg +886 -0
  78. quickgraphlib-0.1.0a19/tests/reference_images/Polyline_grab.png +0 -0
  79. quickgraphlib-0.1.0a19/tests/reference_images/Rectangle.dat +0 -0
  80. quickgraphlib-0.1.0a19/tests/reference_images/Rectangle.png +0 -0
  81. quickgraphlib-0.1.0a19/tests/reference_images/Rectangle.svg +849 -0
  82. quickgraphlib-0.1.0a19/tests/reference_images/Rectangle_grab.png +0 -0
  83. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/test_exports.py +4 -68
  84. quickgraphlib-0.1.0a19/tests/test_roi_hit_test_helpers.py +121 -0
  85. quickgraphlib-0.1.0a19/tests/test_roi_hit_tests.py +153 -0
  86. quickgraphlib-0.1.0a18/examples/ColorMappedImages.png +0 -0
  87. quickgraphlib-0.1.0a18/tests/reference_images/ColorMappedImages.dat +0 -0
  88. quickgraphlib-0.1.0a18/tests/reference_images/ColorMappedImages.png +0 -0
  89. quickgraphlib-0.1.0a18/tests/reference_images/ColorMappedImages_grab.png +0 -0
  90. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/.clang-format +0 -0
  91. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/CMakeLists.txt +0 -0
  92. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/LICENCE +0 -0
  93. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/AntialiasingContainer.qml +0 -0
  94. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/Axis.qml +0 -0
  95. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/CMakeLists.txt +0 -0
  96. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/ColorMaps.cpp +0 -0
  97. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/ColorMaps.hpp +0 -0
  98. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/DataTypes.cpp +0 -0
  99. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/Global.hpp +0 -0
  100. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphArea.qml +0 -0
  101. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/AxHLine.qml +0 -0
  102. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/AxHSpan.qml +0 -0
  103. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/AxVLine.qml +0 -0
  104. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/AxVSpan.qml +0 -0
  105. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/BarHorizontal.qml +0 -0
  106. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/BarVertical.qml +0 -0
  107. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/BasicLegend.qml +0 -0
  108. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/BasicLegendItem.qml +0 -0
  109. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/BoxPlotHorizontal.qml +0 -0
  110. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/BoxPlotVertical.qml +0 -0
  111. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/ColorMesh.qml +0 -0
  112. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/Contour.qml +0 -0
  113. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/GraphItemDragHandler.qml +0 -0
  114. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/Grid.qml +0 -0
  115. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/Histogram.qml +0 -0
  116. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/Line.qml +0 -0
  117. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/Marker.qml +0 -0
  118. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/GraphItems/helpers/HistogramHelper.cpp +0 -0
  119. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/PreFabs/CMakeLists.txt +0 -0
  120. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/PreFabs/ImageAxes.qml +0 -0
  121. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/PreFabs/XYAxes.qml +0 -0
  122. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/QuickGraphLib.hpp +0 -0
  123. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/ScalingContainer.qml +0 -0
  124. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/ShapeRepeater.qml +0 -0
  125. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/TickLabel.qml +0 -0
  126. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/ZoomPanHandler.qml +0 -0
  127. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/__init__.py +0 -0
  128. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/bindings/Bindings.hpp +0 -0
  129. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/bindings/Bindings.xml +0 -0
  130. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/bindings/CMakeLists.txt +0 -0
  131. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/bindings/glue/DataTypes.cpp +0 -0
  132. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/bindings/pyigen.py +0 -0
  133. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/consts.py +0 -0
  134. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/contours.py +0 -0
  135. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/doc/AxesGridLayout.drawio +0 -0
  136. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/doc/AxesGridLayout.svg +0 -0
  137. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/doc/export.qdoc +0 -0
  138. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/doc/graphitems.qdoc +0 -0
  139. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/doc/graphstructure.qdoc +0 -0
  140. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/doc/index.qdoc +0 -0
  141. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/doc/interaction.qdoc +0 -0
  142. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/doc/module-cpp.qdoc +0 -0
  143. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/doc/module.qdoc +0 -0
  144. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/doc/prefabs.qdoc +0 -0
  145. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/doc/python_helpers.qdoc +0 -0
  146. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/helpers/Foreign.hpp +0 -0
  147. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/helpers/ShapeRepeaterHelper.cpp +0 -0
  148. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/helpers/ShapeRepeaterHelper.hpp +0 -0
  149. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/QuickGraphLib/py.typed +0 -0
  150. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/README.md +0 -0
  151. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/activate_venv.ps1 +0 -0
  152. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/ci/find_qt.py +0 -0
  153. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/ci/fixup_qt.py +0 -0
  154. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/ci/setup_qt.py +0 -0
  155. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/docs/build_docs.py +0 -0
  156. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/docs/config.qdocconf +0 -0
  157. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/docs/style.css +0 -0
  158. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/AllTheAxes.png +0 -0
  159. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/AllTheAxes.qdoc +0 -0
  160. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/AllTheAxes.qml +0 -0
  161. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BarChartHorizontal.png +0 -0
  162. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BarChartHorizontal.qdoc +0 -0
  163. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BarChartHorizontal.qml +0 -0
  164. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BarChartVertical.png +0 -0
  165. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BarChartVertical.qdoc +0 -0
  166. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BarChartVertical.qml +0 -0
  167. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BasicHistogram.png +0 -0
  168. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BasicHistogram.qdoc +0 -0
  169. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BasicHistogram.qml +0 -0
  170. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BasicSinGraph.png +0 -0
  171. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BasicSinGraph.qdoc +0 -0
  172. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BasicSinGraph.qml +0 -0
  173. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BasicSinGraphNoPrefabs.png +0 -0
  174. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BasicSinGraphNoPrefabs.qdoc +0 -0
  175. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BasicSinGraphNoPrefabs.qml +0 -0
  176. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BoxPlots.png +0 -0
  177. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BoxPlots.qdoc +0 -0
  178. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BoxPlots.qml +0 -0
  179. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BuiltinColormaps.png +0 -0
  180. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BuiltinColormaps.qdoc +0 -0
  181. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/BuiltinColormaps.qml +0 -0
  182. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ColorMappedImages.qdoc +0 -0
  183. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ColorMesh.png +0 -0
  184. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ColorMesh.qdoc +0 -0
  185. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ColorMesh.qml +0 -0
  186. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Complex.png +0 -0
  187. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Complex.qdoc +0 -0
  188. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Complex.qml +0 -0
  189. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Contours.png +0 -0
  190. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Contours.qdoc +0 -0
  191. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Contours.qml +0 -0
  192. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Conway.png +0 -0
  193. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Conway.qdoc +0 -0
  194. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Conway.qml +0 -0
  195. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/DarkSinGraph.png +0 -0
  196. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/DarkSinGraph.qdoc +0 -0
  197. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/DarkSinGraph.qml +0 -0
  198. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/DraggableRegion.png +0 -0
  199. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/DraggableRegion.qdoc +0 -0
  200. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/DraggableRegion.qml +0 -0
  201. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ExampleGallery.png +0 -0
  202. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ExampleGallery.qml +0 -0
  203. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ImageAlignment.png +0 -0
  204. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ImageAlignment.qdoc +0 -0
  205. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ImageAlignment.qml +0 -0
  206. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/InvertedAxes.png +0 -0
  207. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/InvertedAxes.qdoc +0 -0
  208. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/InvertedAxes.qml +0 -0
  209. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/LogGraph.png +0 -0
  210. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/LogGraph.qdoc +0 -0
  211. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/LogGraph.qml +0 -0
  212. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/PeakButtons.png +0 -0
  213. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/PeakButtons.qdoc +0 -0
  214. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/PeakButtons.qml +0 -0
  215. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ReadoutLine.png +0 -0
  216. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ReadoutLine.qdoc +0 -0
  217. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ReadoutLine.qml +0 -0
  218. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ScalingGraph.png +0 -0
  219. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ScalingGraph.qdoc +0 -0
  220. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ScalingGraph.qml +0 -0
  221. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Scatter.png +0 -0
  222. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Scatter.qdoc +0 -0
  223. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Scatter.qml +0 -0
  224. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/SpansAndLines.png +0 -0
  225. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/SpansAndLines.qdoc +0 -0
  226. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/SpansAndLines.qml +0 -0
  227. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Subgraphs.png +0 -0
  228. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Subgraphs.qdoc +0 -0
  229. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/Subgraphs.qml +0 -0
  230. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/TwinX.png +0 -0
  231. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/TwinX.qdoc +0 -0
  232. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/TwinX.qml +0 -0
  233. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ZoomableAsImage.png +0 -0
  234. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ZoomableAsImage.qdoc +0 -0
  235. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ZoomableAsImage.qml +0 -0
  236. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ZoomableAxes.png +0 -0
  237. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ZoomableAxes.qdoc +0 -0
  238. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/ZoomableAxes.qml +0 -0
  239. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/__init__.py +0 -0
  240. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/conway.py +0 -0
  241. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/examples/gallery.py +0 -0
  242. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/pyproject.toml +0 -0
  243. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/setup_venv.ps1 +0 -0
  244. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/__init__.py +0 -0
  245. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/extra_examples/500px-Kittyply_edit1.jpg +0 -0
  246. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/extra_examples/ImageExport.qml +0 -0
  247. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/extra_examples/SVG_Logo.svg +0 -0
  248. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/extra_examples/VectorImageExport.qml +0 -0
  249. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/fonts/DejaVuSans-Bold.ttf +0 -0
  250. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/fonts/DejaVuSans-BoldOblique.ttf +0 -0
  251. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/fonts/DejaVuSans-Oblique.ttf +0 -0
  252. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/fonts/DejaVuSans.ttf +0 -0
  253. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/fonts/LICENSE +0 -0
  254. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/python_exporter.py +0 -0
  255. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/AllTheAxes.dat +0 -0
  256. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/AllTheAxes.png +0 -0
  257. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/AllTheAxes.svg +0 -0
  258. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/AllTheAxes_grab.png +0 -0
  259. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BarChartHorizontal.dat +0 -0
  260. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BarChartHorizontal.png +0 -0
  261. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BarChartHorizontal.svg +0 -0
  262. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BarChartHorizontal_grab.png +0 -0
  263. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BarChartVertical.dat +0 -0
  264. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BarChartVertical.png +0 -0
  265. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BarChartVertical.svg +0 -0
  266. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BarChartVertical_grab.png +0 -0
  267. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BasicHistogram.dat +0 -0
  268. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BasicHistogram.png +0 -0
  269. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BasicHistogram.svg +0 -0
  270. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BasicHistogram_grab.png +0 -0
  271. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BasicSinGraph.dat +0 -0
  272. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BasicSinGraph.png +0 -0
  273. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BasicSinGraph.svg +0 -0
  274. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BasicSinGraphNoPrefabs.dat +0 -0
  275. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BasicSinGraphNoPrefabs.png +0 -0
  276. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BasicSinGraphNoPrefabs.svg +0 -0
  277. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BasicSinGraphNoPrefabs_grab.png +0 -0
  278. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BasicSinGraph_grab.png +0 -0
  279. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BoxPlots.dat +0 -0
  280. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BoxPlots.png +0 -0
  281. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BoxPlots.svg +0 -0
  282. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BoxPlots_grab.png +0 -0
  283. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BuiltinColormaps.dat +0 -0
  284. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BuiltinColormaps.png +0 -0
  285. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BuiltinColormaps.svg +0 -0
  286. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/BuiltinColormaps_grab.png +0 -0
  287. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ColorMesh.dat +0 -0
  288. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ColorMesh.png +0 -0
  289. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ColorMesh.svg +0 -0
  290. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ColorMesh_grab.png +0 -0
  291. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Complex.dat +0 -0
  292. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Complex.png +0 -0
  293. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Complex.svg +0 -0
  294. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Complex_grab.png +0 -0
  295. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Contours.dat +0 -0
  296. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Contours.png +0 -0
  297. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Contours.svg +0 -0
  298. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Contours_grab.png +0 -0
  299. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Conway.dat +0 -0
  300. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Conway.png +0 -0
  301. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Conway.svg +0 -0
  302. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Conway_grab.png +0 -0
  303. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/DarkSinGraph.dat +0 -0
  304. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/DarkSinGraph.png +0 -0
  305. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/DarkSinGraph.svg +0 -0
  306. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/DarkSinGraph_grab.png +0 -0
  307. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/DraggableRegion.dat +0 -0
  308. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/DraggableRegion.png +0 -0
  309. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/DraggableRegion.svg +0 -0
  310. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/DraggableRegion_grab.png +0 -0
  311. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ImageAlignment.dat +0 -0
  312. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ImageAlignment.png +0 -0
  313. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ImageAlignment.svg +0 -0
  314. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ImageAlignment_grab.png +0 -0
  315. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ImageExport.dat +0 -0
  316. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ImageExport.png +0 -0
  317. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ImageExport.svg +0 -0
  318. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ImageExport_grab.png +0 -0
  319. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/InvertedAxes.dat +0 -0
  320. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/InvertedAxes.png +0 -0
  321. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/InvertedAxes.svg +0 -0
  322. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/InvertedAxes_grab.png +0 -0
  323. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/LogGraph.dat +0 -0
  324. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/LogGraph.png +0 -0
  325. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/LogGraph.svg +0 -0
  326. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/LogGraph_grab.png +0 -0
  327. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/PeakButtons.dat +0 -0
  328. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/PeakButtons.png +0 -0
  329. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/PeakButtons.svg +0 -0
  330. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/PeakButtons_grab.png +0 -0
  331. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ReadoutLine.dat +0 -0
  332. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ReadoutLine.png +0 -0
  333. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ReadoutLine.svg +0 -0
  334. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ReadoutLine_grab.png +0 -0
  335. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ScalingGraph.dat +0 -0
  336. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ScalingGraph.png +0 -0
  337. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ScalingGraph.svg +0 -0
  338. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ScalingGraph_grab.png +0 -0
  339. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Scatter.dat +0 -0
  340. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Scatter.png +0 -0
  341. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Scatter.svg +0 -0
  342. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Scatter_grab.png +0 -0
  343. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/SpansAndLines.dat +0 -0
  344. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/SpansAndLines.png +0 -0
  345. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/SpansAndLines.svg +0 -0
  346. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/SpansAndLines_grab.png +0 -0
  347. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Subgraphs.dat +0 -0
  348. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Subgraphs.png +0 -0
  349. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Subgraphs.svg +0 -0
  350. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/Subgraphs_grab.png +0 -0
  351. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/TwinX.dat +0 -0
  352. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/TwinX.png +0 -0
  353. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/TwinX.svg +0 -0
  354. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/TwinX_grab.png +0 -0
  355. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/VectorImageExport.dat +0 -0
  356. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/VectorImageExport.png +0 -0
  357. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/VectorImageExport.svg +0 -0
  358. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/VectorImageExport_grab.png +0 -0
  359. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ZoomableAsImage.dat +0 -0
  360. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ZoomableAsImage.png +0 -0
  361. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ZoomableAsImage.svg +0 -0
  362. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ZoomableAsImage_grab.png +0 -0
  363. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ZoomableAxes.dat +0 -0
  364. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ZoomableAxes.png +0 -0
  365. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ZoomableAxes.svg +0 -0
  366. {quickgraphlib-0.1.0a18 → quickgraphlib-0.1.0a19}/tests/reference_images/ZoomableAxes_grab.png +0 -0
@@ -2,6 +2,7 @@
2
2
  .mypy_cache
3
3
  __pycache__
4
4
  venv
5
+ build/
5
6
  dist
6
7
  *.egg-info
7
8
  aqtinstall.log
@@ -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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: QuickGraphLib
3
- Version: 0.1.0a18
3
+ Version: 0.1.0a19
4
4
  Summary: A scientific graphing library for QtQuick
5
5
  Author-Email: Matthew Joyce <matthew.joyce@refeyn.com>
6
6
  License: MIT License
@@ -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> &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); }
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> &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); }
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
+ }