PlotPy 2.1.1__tar.gz → 2.2.0__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 (509) hide show
  1. {PlotPy-2.1.1 → PlotPy-2.2.0}/PKG-INFO +2 -2
  2. {PlotPy-2.1.1 → PlotPy-2.2.0}/PlotPy.egg-info/PKG-INFO +2 -2
  3. {PlotPy-2.1.1 → PlotPy-2.2.0}/PlotPy.egg-info/SOURCES.txt +181 -172
  4. {PlotPy-2.1.1 → PlotPy-2.2.0}/PlotPy.egg-info/requires.txt +1 -1
  5. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/dev/guiqwt_to_plotpy.rst +1 -0
  6. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/dev/v1_to_v2.rst +1 -0
  7. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/signals.rst +1 -0
  8. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/requirements.rst +18 -18
  9. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/__init__.py +2 -2
  10. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/builder/curvemarker.py +1 -1
  11. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/builder/image.py +14 -14
  12. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/config.py +1 -1
  13. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/constants.py +22 -1
  14. PlotPy-2.2.0/plotpy/data/colormaps_default.json +17070 -0
  15. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/events.py +132 -19
  16. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/external/sliders/_misc.py +1 -1
  17. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/external/sliders/_range_style.py +1 -1
  18. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/image/base.py +16 -6
  19. PlotPy-2.2.0/plotpy/locale/fr/LC_MESSAGES/plotpy.mo +0 -0
  20. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/mathutils/colormap.py +11 -3
  21. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/panels/csection/csitem.py +1 -1
  22. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/plot/base.py +10 -3
  23. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/styles/base.py +1 -0
  24. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/styles/curve.py +1 -1
  25. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/styles/image.py +5 -5
  26. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/styles/polygonmap.py +1 -1
  27. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/features/test_imagesuperp.py +1 -1
  28. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/tools/test_cross_section_line.py +1 -0
  29. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/tools/test_cross_section_oblique.py +2 -0
  30. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/tools/test_get_rectangle_with_svg.py +1 -1
  31. PlotPy-2.2.0/plotpy/tests/unit/test_aspect_ratio_tool.py +38 -0
  32. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/unit/test_baseplot.py +0 -1
  33. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/unit/test_builder_image.py +1 -0
  34. PlotPy-2.2.0/plotpy/tests/unit/test_display_coords_tool.py +29 -0
  35. PlotPy-2.2.0/plotpy/tests/unit/test_line_cross_section_tool.py +29 -0
  36. PlotPy-2.2.0/plotpy/tests/unit/test_multiline_tools.py +64 -0
  37. PlotPy-2.2.0/plotpy/tests/unit/test_oblique_cross_section_tool.py +29 -0
  38. PlotPy-2.2.0/plotpy/tests/unit/test_plot_image.py +146 -0
  39. PlotPy-2.2.0/plotpy/tests/unit/test_point_tools.py +163 -0
  40. PlotPy-2.2.0/plotpy/tests/unit/test_rect_zoom.py +69 -0
  41. PlotPy-2.2.0/plotpy/tests/unit/test_shape_tools.py +181 -0
  42. PlotPy-2.2.0/plotpy/tests/unit/utils.py +158 -0
  43. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tools/base.py +6 -2
  44. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tools/cross_section.py +1 -1
  45. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tools/curve.py +27 -36
  46. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tools/image.py +7 -6
  47. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/widgets/colormap/manager.py +95 -26
  48. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/widgets/colormap/widget.py +27 -36
  49. {PlotPy-2.1.1 → PlotPy-2.2.0}/pyproject.toml +1 -1
  50. {PlotPy-2.1.1 → PlotPy-2.2.0}/src/contour2d.c +96 -96
  51. {PlotPy-2.1.1 → PlotPy-2.2.0}/src/histogram2d.c +97 -97
  52. {PlotPy-2.1.1 → PlotPy-2.2.0}/src/mandelbrot.c +97 -97
  53. PlotPy-2.1.1/plotpy/data/colormaps_default.json +0 -8990
  54. PlotPy-2.1.1/plotpy/locale/fr/LC_MESSAGES/plotpy.mo +0 -0
  55. PlotPy-2.1.1/plotpy/tests/unit/test_plot_image.py +0 -141
  56. {PlotPy-2.1.1 → PlotPy-2.2.0}/LICENSE +0 -0
  57. {PlotPy-2.1.1 → PlotPy-2.2.0}/MANIFEST.in +0 -0
  58. {PlotPy-2.1.1 → PlotPy-2.2.0}/PlotPy.egg-info/dependency_links.txt +0 -0
  59. {PlotPy-2.1.1 → PlotPy-2.2.0}/PlotPy.egg-info/entry_points.txt +0 -0
  60. {PlotPy-2.1.1 → PlotPy-2.2.0}/PlotPy.egg-info/top_level.txt +0 -0
  61. {PlotPy-2.1.1 → PlotPy-2.2.0}/README.md +0 -0
  62. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/_static/favicon.ico +0 -0
  63. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/changelog.rst +0 -0
  64. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/conf.py +0 -0
  65. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/dev/build.rst +0 -0
  66. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/dev/contribute.rst +0 -0
  67. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/dev/guiqwt_to_plotpy.csv +0 -0
  68. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/dev/index.rst +0 -0
  69. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/dev/platforms.rst +0 -0
  70. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/dev/v1_to_guidata_v3.csv +0 -0
  71. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/dev/v1_to_v2.csv +0 -0
  72. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/colormapmanager.rst +0 -0
  73. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/events.rst +0 -0
  74. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/fit.rst +0 -0
  75. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/fliprotate.rst +0 -0
  76. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/imagefile.rst +0 -0
  77. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/index.rst +0 -0
  78. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/io.rst +0 -0
  79. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/items/builder.rst +0 -0
  80. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/items/examples.rst +0 -0
  81. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/items/index.rst +0 -0
  82. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/items/overview.rst +0 -0
  83. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/items/reference.rst +0 -0
  84. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/mathutils/colormaps.rst +0 -0
  85. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/mathutils/geometry.rst +0 -0
  86. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/mathutils/index.rst +0 -0
  87. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/mathutils/scaler.rst +0 -0
  88. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/panels/index.rst +0 -0
  89. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/panels/overview.rst +0 -0
  90. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/panels/reference.rst +0 -0
  91. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/plot/examples.rst +0 -0
  92. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/plot/index.rst +0 -0
  93. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/plot/overview.rst +0 -0
  94. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/plot/reference.rst +0 -0
  95. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/pyplot.rst +0 -0
  96. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/resizedialog.rst +0 -0
  97. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/rotatecrop.rst +0 -0
  98. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/selectdialog.rst +0 -0
  99. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/styles/index.rst +0 -0
  100. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/styles/overview.rst +0 -0
  101. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/styles/reference.rst +0 -0
  102. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/tools/examples.rst +0 -0
  103. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/tools/index.rst +0 -0
  104. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/tools/overview.rst +0 -0
  105. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/features/tools/reference.rst +0 -0
  106. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/my_plot_manager.png +0 -0
  107. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/my_plot_manager.svg +0 -0
  108. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/panorama.png +0 -0
  109. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/panorama.svg +0 -0
  110. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/plot_widgets.png +0 -0
  111. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/plot_widgets.svg +0 -0
  112. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/plotpy-banner.png +0 -0
  113. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/plotpy-vertical.png +0 -0
  114. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/screenshots/__init__.png +0 -0
  115. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/screenshots/computations.png +0 -0
  116. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/screenshots/contrast.png +0 -0
  117. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/screenshots/cross_section.png +0 -0
  118. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/screenshots/cross_section2.png +0 -0
  119. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/screenshots/dotarraydemo.png +0 -0
  120. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/screenshots/filtertest1.png +0 -0
  121. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/screenshots/filtertest2.png +0 -0
  122. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/screenshots/fit.png +0 -0
  123. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/screenshots/get_point.png +0 -0
  124. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/screenshots/hist2d.png +0 -0
  125. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/screenshots/image_plot_tools.png +0 -0
  126. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/screenshots/imagefilter.png +0 -0
  127. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/screenshots/imagesuperp.png +0 -0
  128. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/screenshots/imagexy.png +0 -0
  129. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/screenshots/manager.png +0 -0
  130. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/screenshots/mandelbrot.png +0 -0
  131. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/screenshots/pcolor.png +0 -0
  132. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/screenshots/plot.png +0 -0
  133. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/screenshots/simple_dialog.png +0 -0
  134. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/screenshots/simple_window.png +0 -0
  135. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/images/screenshots/transform.png +0 -0
  136. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/index.rst +0 -0
  137. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/intro/examples.rst +0 -0
  138. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/intro/index.rst +0 -0
  139. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/intro/installation.rst +0 -0
  140. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/intro/licenses.rst +0 -0
  141. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/intro/motivation.rst +0 -0
  142. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/intro/overview.rst +0 -0
  143. {PlotPy-2.1.1 → PlotPy-2.2.0}/doc/update_requirements.py +0 -0
  144. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/builder/__init__.py +0 -0
  145. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/builder/annotation.py +0 -0
  146. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/builder/label.py +0 -0
  147. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/builder/plot.py +0 -0
  148. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/builder/shape.py +0 -0
  149. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/coords.py +0 -0
  150. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/apply.png +0 -0
  151. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/arredit.png +0 -0
  152. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/arrow_down.png +0 -0
  153. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/arrow_up.png +0 -0
  154. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/autorefresh.png +0 -0
  155. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/autoscale.png +0 -0
  156. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/axes.png +0 -0
  157. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/busy.png +0 -0
  158. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/cell_edit.png +0 -0
  159. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/center.png +0 -0
  160. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/cmap_edit.png +0 -0
  161. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/contrast.png +0 -0
  162. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/copy.png +0 -0
  163. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/copytoclipboard.png +0 -0
  164. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/csapplylut.png +0 -0
  165. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/csautoscale.png +0 -0
  166. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/csection.png +0 -0
  167. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/csection_a.png +0 -0
  168. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/csection_line.png +0 -0
  169. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/csection_oblique.png +0 -0
  170. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/csperimage.png +0 -0
  171. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/curve_downsample.png +0 -0
  172. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/curvestyles/dots.png +0 -0
  173. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/curvestyles/lines.png +0 -0
  174. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/curvestyles/steps.png +0 -0
  175. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/curvestyles/sticks.png +0 -0
  176. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/curvetypes/xfy.png +0 -0
  177. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/curvetypes/yfx.png +0 -0
  178. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/delete.png +0 -0
  179. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/edit.png +0 -0
  180. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/edit_point_selection.png +0 -0
  181. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/editors/edit.png +0 -0
  182. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/editors/edit_add.png +0 -0
  183. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/editors/editcopy.png +0 -0
  184. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/editors/editdelete.png +0 -0
  185. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/editors/editpaste.png +0 -0
  186. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/editors/fileimport.png +0 -0
  187. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/editors/filesave.png +0 -0
  188. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/editors/imshow.png +0 -0
  189. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/editors/insert.png +0 -0
  190. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/editors/plot.png +0 -0
  191. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/editors/rename.png +0 -0
  192. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/eliminate_outliers.png +0 -0
  193. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/eraser.png +0 -0
  194. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/exit.png +0 -0
  195. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/expander_down.png +0 -0
  196. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/expander_right.png +0 -0
  197. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/export.png +0 -0
  198. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/file.png +0 -0
  199. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/fileclose.png +0 -0
  200. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/fileimport.png +0 -0
  201. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filenew.png +0 -0
  202. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/fileopen.png +0 -0
  203. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filesave.png +0 -0
  204. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filesaveas.png +0 -0
  205. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/doc.png +0 -0
  206. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/gif.png +0 -0
  207. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/html.png +0 -0
  208. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/jpg.png +0 -0
  209. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/pdf.png +0 -0
  210. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/png.png +0 -0
  211. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/pps.png +0 -0
  212. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/ps.png +0 -0
  213. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/tar.png +0 -0
  214. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/tgz.png +0 -0
  215. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/tif.png +0 -0
  216. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/txt.png +0 -0
  217. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/xls.png +0 -0
  218. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/zip.png +0 -0
  219. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/font.png +0 -0
  220. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/full_range.png +0 -0
  221. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/funct.png +0 -0
  222. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/hcursor.png +0 -0
  223. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/hflip.png +0 -0
  224. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/imagestats.png +0 -0
  225. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/item_list.png +0 -0
  226. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/items/annotation.png +0 -0
  227. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/items/curve.png +0 -0
  228. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/items/errorbar.png +0 -0
  229. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/items/grid.png +0 -0
  230. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/items/histogram.png +0 -0
  231. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/items/histogram2d.png +0 -0
  232. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/items/image.png +0 -0
  233. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/items/label.png +0 -0
  234. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/items/legend.png +0 -0
  235. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/items/polygonmap.png +0 -0
  236. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/magnifier.png +0 -0
  237. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markers/cross.png +0 -0
  238. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markers/diamond.png +0 -0
  239. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markers/ellipse.png +0 -0
  240. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markers/hexagon.png +0 -0
  241. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markers/point.png +0 -0
  242. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markers/square.png +0 -0
  243. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markers/star.png +0 -0
  244. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markers/triangle_d.png +0 -0
  245. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markers/triangle_l.png +0 -0
  246. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markers/triangle_r.png +0 -0
  247. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markers/triangle_u.png +0 -0
  248. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markers/xcross.png +0 -0
  249. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markerstyles/cross_marker.png +0 -0
  250. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markerstyles/horiz_marker.png +0 -0
  251. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markerstyles/vert_marker.png +0 -0
  252. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/mask/mask_circle.png +0 -0
  253. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/mask/mask_circle_outside.png +0 -0
  254. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/mask/mask_rectangle.png +0 -0
  255. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/mask/mask_rectangle_outside.png +0 -0
  256. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/mask/mask_tool.png +0 -0
  257. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/max.png +0 -0
  258. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/min.png +0 -0
  259. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/move.png +0 -0
  260. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/multipoint_selection.png +0 -0
  261. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/none.png +0 -0
  262. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/not_found.png +0 -0
  263. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/on_curve.png +0 -0
  264. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/bdiagpattern.png +0 -0
  265. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/crosspattern.png +0 -0
  266. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/dense1pattern.png +0 -0
  267. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/dense2pattern.png +0 -0
  268. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/dense3pattern.png +0 -0
  269. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/dense4pattern.png +0 -0
  270. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/dense5pattern.png +0 -0
  271. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/dense6pattern.png +0 -0
  272. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/dense7pattern.png +0 -0
  273. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/diagcrosspattern.png +0 -0
  274. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/fdiagpattern.png +0 -0
  275. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/horpattern.png +0 -0
  276. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/nobrush.png +0 -0
  277. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/solidpattern.png +0 -0
  278. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/verpattern.png +0 -0
  279. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/plotpy-banner.svg +0 -0
  280. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/plotpy-vertical.svg +0 -0
  281. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/plotpy.svg +0 -0
  282. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/point_selection.png +0 -0
  283. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/print.png +0 -0
  284. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/python.png +0 -0
  285. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/quickview.png +0 -0
  286. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/rectangular_select.png +0 -0
  287. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/refresh.png +0 -0
  288. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/save_all.png +0 -0
  289. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/scales/lin_lin.png +0 -0
  290. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/scales/lin_log.png +0 -0
  291. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/scales/log_lin.png +0 -0
  292. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/scales/log_log.png +0 -0
  293. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/selection.png +0 -0
  294. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/settings.png +0 -0
  295. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/shape.png +0 -0
  296. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/shapes/circle.png +0 -0
  297. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/shapes/contour.png +0 -0
  298. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/shapes/ellipse_shape.png +0 -0
  299. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/shapes/freeform.png +0 -0
  300. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/shapes/gtaxes.png +0 -0
  301. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/shapes/marker.png +0 -0
  302. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/shapes/oblique_rectangle.png +0 -0
  303. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/shapes/point_shape.png +0 -0
  304. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/shapes/polyline.png +0 -0
  305. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/shapes/rectangle.png +0 -0
  306. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/shapes/segment.png +0 -0
  307. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/snapshot.png +0 -0
  308. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/styles/dash.png +0 -0
  309. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/styles/dashdot.png +0 -0
  310. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/styles/dashdotdot.png +0 -0
  311. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/styles/dot.png +0 -0
  312. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/styles/solid.png +0 -0
  313. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/trash.png +0 -0
  314. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/trimage_lock.png +0 -0
  315. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/trimage_unlock.png +0 -0
  316. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/vcursor.png +0 -0
  317. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/vflip.png +0 -0
  318. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/xcursor.png +0 -0
  319. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/xmax.png +0 -0
  320. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/xmin.png +0 -0
  321. {PlotPy-2.1.1/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/xrange.png +0 -0
  322. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/external/__init__.py +0 -0
  323. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/external/sliders/__init__.py +0 -0
  324. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/external/sliders/_generic_range_slider.py +0 -0
  325. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/external/sliders/_generic_slider.py +0 -0
  326. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/external/sliders/_labeled.py +0 -0
  327. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/external/sliders/_sliders.py +0 -0
  328. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/interfaces/__init__.py +0 -0
  329. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/interfaces/items.py +0 -0
  330. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/interfaces/panel.py +0 -0
  331. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/interfaces/plotmanager.py +0 -0
  332. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/io.py +0 -0
  333. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/__init__.py +0 -0
  334. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/annotation.py +0 -0
  335. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/contour.py +0 -0
  336. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/curve/__init__.py +0 -0
  337. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/curve/base.py +0 -0
  338. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/curve/errorbar.py +0 -0
  339. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/grid.py +0 -0
  340. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/histogram.py +0 -0
  341. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/image/__init__.py +0 -0
  342. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/image/filter.py +0 -0
  343. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/image/image_items.py +0 -0
  344. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/image/masked.py +0 -0
  345. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/image/misc.py +0 -0
  346. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/image/transform.py +0 -0
  347. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/label.py +0 -0
  348. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/polygonmap.py +0 -0
  349. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/shape/__init__.py +0 -0
  350. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/shape/axis.py +0 -0
  351. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/shape/base.py +0 -0
  352. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/shape/ellipse.py +0 -0
  353. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/shape/marker.py +0 -0
  354. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/shape/point.py +0 -0
  355. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/shape/polygon.py +0 -0
  356. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/shape/range.py +0 -0
  357. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/shape/rectangle.py +0 -0
  358. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/shape/segment.py +0 -0
  359. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/items/shape/svg.py +0 -0
  360. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/lutrange.py +0 -0
  361. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/mathutils/__init__.py +0 -0
  362. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/mathutils/arrayfuncs.py +0 -0
  363. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/mathutils/geometry.py +0 -0
  364. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/mathutils/scaler.py +0 -0
  365. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/panels/__init__.py +0 -0
  366. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/panels/base.py +0 -0
  367. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/panels/contrastadjustment.py +0 -0
  368. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/panels/csection/__init__.py +0 -0
  369. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/panels/csection/csplot.py +0 -0
  370. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/panels/csection/cswidget.py +0 -0
  371. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/panels/itemlist.py +0 -0
  372. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/plot/__init__.py +0 -0
  373. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/plot/interactive.py +0 -0
  374. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/plot/manager.py +0 -0
  375. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/plot/plotwidget.py +0 -0
  376. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/pyplot.py +0 -0
  377. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/styles/__init__.py +0 -0
  378. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/styles/axes.py +0 -0
  379. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/styles/errorbar.py +0 -0
  380. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/styles/histogram.py +0 -0
  381. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/styles/label.py +0 -0
  382. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/styles/shape.py +0 -0
  383. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/__init__.py +0 -0
  384. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/benchmarks/__init__.py +0 -0
  385. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/benchmarks/test_benchmarks.py +0 -0
  386. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/benchmarks/test_bigimages.py +0 -0
  387. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/benchmarks/test_loadtest.py +0 -0
  388. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/conftest.py +0 -0
  389. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/data/brain.png +0 -0
  390. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/data/brain_cylinder.png +0 -0
  391. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/data/mr-brain.dcm +0 -0
  392. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/data/svg_target.svg +0 -0
  393. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/data/svg_tool.svg +0 -0
  394. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/data.py +0 -0
  395. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/features/__init__.py +0 -0
  396. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/features/test_auto_curve_image.py +0 -0
  397. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/features/test_autoscale_shapes.py +0 -0
  398. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/features/test_builder.py +0 -0
  399. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/features/test_colormap_editor.py +0 -0
  400. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/features/test_colormap_manager.py +0 -0
  401. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/features/test_computations.py +0 -0
  402. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/features/test_contrast.py +0 -0
  403. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/features/test_cursors.py +0 -0
  404. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/features/test_dicom_image.py +0 -0
  405. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/features/test_fit.py +0 -0
  406. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/features/test_image_coords.py +0 -0
  407. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/features/test_imagefilter.py +0 -0
  408. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/features/test_loadsaveitems_hdf5.py +0 -0
  409. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/features/test_loadsaveitems_json.py +0 -0
  410. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/features/test_loadsaveitems_pickle.py +0 -0
  411. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/features/test_manager.py +0 -0
  412. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/features/test_no_auto_tools.py +0 -0
  413. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/features/test_plot_log.py +0 -0
  414. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/features/test_plot_types.py +0 -0
  415. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/features/test_plot_yreverse.py +0 -0
  416. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/features/test_pyplot.py +0 -0
  417. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/features/test_resize.py +0 -0
  418. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/items/__init__.py +0 -0
  419. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/items/test_annotations.py +0 -0
  420. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/items/test_curves.py +0 -0
  421. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/items/test_hist2d.py +0 -0
  422. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/items/test_histogram.py +0 -0
  423. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/items/test_image.py +0 -0
  424. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/items/test_image_contour.py +0 -0
  425. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/items/test_image_masked.py +0 -0
  426. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/items/test_image_masked_xy.py +0 -0
  427. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/items/test_image_rgb.py +0 -0
  428. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/items/test_image_xy.py +0 -0
  429. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/items/test_mandelbrot.py +0 -0
  430. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/items/test_pcolor.py +0 -0
  431. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/items/test_polygons.py +0 -0
  432. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/items/test_svgshapes.py +0 -0
  433. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/items/test_transform.py +0 -0
  434. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/tools/__init__.py +0 -0
  435. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/tools/test_actiontool.py +0 -0
  436. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/tools/test_cross_section.py +0 -0
  437. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/tools/test_customize_shape_tool.py +0 -0
  438. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/tools/test_downsample_curve.py +0 -0
  439. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/tools/test_edit_point.py +0 -0
  440. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/tools/test_get_point.py +0 -0
  441. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/tools/test_get_points.py +0 -0
  442. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/tools/test_get_rectangle.py +0 -0
  443. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/tools/test_get_segment.py +0 -0
  444. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/tools/test_image_plot_tools.py +0 -0
  445. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/unit/__init__.py +0 -0
  446. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/unit/test_builder_annotation.py +0 -0
  447. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/unit/test_builder_curve.py +0 -0
  448. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/unit/test_builder_shape.py +0 -0
  449. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/unit/test_contour.py +0 -0
  450. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/unit/test_fontparam.py +0 -0
  451. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/unit/test_geometry.py +0 -0
  452. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/unit/test_highprecisionxy.py +0 -0
  453. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/unit/test_io.py +0 -0
  454. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/unit/test_line.py +0 -0
  455. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/unit/test_plot_curve.py +0 -0
  456. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/unit/test_seg_dist.py +0 -0
  457. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/unit/test_styles.py +0 -0
  458. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/unit/test_tools_export.py +0 -0
  459. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/vistools.py +0 -0
  460. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/widgets/__init__.py +0 -0
  461. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/widgets/test_dotarraydemo.py +0 -0
  462. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/widgets/test_filtertest1.py +0 -0
  463. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/widgets/test_filtertest2.py +0 -0
  464. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/widgets/test_fliprotate.py +0 -0
  465. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/widgets/test_plot_timecurve.py +0 -0
  466. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/widgets/test_qtdesigner.py +0 -0
  467. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/widgets/test_qtdesigner.ui +0 -0
  468. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/widgets/test_resize_dialog.py +0 -0
  469. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/widgets/test_rotatecrop.py +0 -0
  470. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/widgets/test_simple_dialog.py +0 -0
  471. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/widgets/test_simple_window.py +0 -0
  472. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tests/widgets/test_syncplot.py +0 -0
  473. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tools/__init__.py +0 -0
  474. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tools/annotation.py +0 -0
  475. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tools/axes.py +0 -0
  476. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tools/cursor.py +0 -0
  477. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tools/item.py +0 -0
  478. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tools/label.py +0 -0
  479. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tools/misc.py +0 -0
  480. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tools/plot.py +0 -0
  481. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tools/selection.py +0 -0
  482. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/tools/shape.py +0 -0
  483. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/widgets/__init__.py +0 -0
  484. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/widgets/about.py +0 -0
  485. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/widgets/basetransform.py +0 -0
  486. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/widgets/colormap/__init__.py +0 -0
  487. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/widgets/colormap/_slider.py +0 -0
  488. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/widgets/colormap/editor.py +0 -0
  489. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/widgets/fit.py +0 -0
  490. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/widgets/fliprotate.py +0 -0
  491. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/widgets/imagefile.py +0 -0
  492. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/widgets/qtdesigner.py +0 -0
  493. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/widgets/resizedialog.py +0 -0
  494. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/widgets/rotatecrop.py +0 -0
  495. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy/widgets/selectdialog.py +0 -0
  496. {PlotPy-2.1.1 → PlotPy-2.2.0}/plotpy-tests.desktop +0 -0
  497. {PlotPy-2.1.1 → PlotPy-2.2.0}/qtdesigner/plotplugin.py +0 -0
  498. {PlotPy-2.1.1 → PlotPy-2.2.0}/setup.cfg +0 -0
  499. {PlotPy-2.1.1 → PlotPy-2.2.0}/setup.py +0 -0
  500. {PlotPy-2.1.1 → PlotPy-2.2.0}/src/arrays.hpp +0 -0
  501. {PlotPy-2.1.1 → PlotPy-2.2.0}/src/contour2d.pyx +0 -0
  502. {PlotPy-2.1.1 → PlotPy-2.2.0}/src/debug.hpp +0 -0
  503. {PlotPy-2.1.1 → PlotPy-2.2.0}/src/histogram2d.pyx +0 -0
  504. {PlotPy-2.1.1 → PlotPy-2.2.0}/src/mandelbrot.pyx +0 -0
  505. {PlotPy-2.1.1 → PlotPy-2.2.0}/src/pcolor.cpp +0 -0
  506. {PlotPy-2.1.1 → PlotPy-2.2.0}/src/points.hpp +0 -0
  507. {PlotPy-2.1.1 → PlotPy-2.2.0}/src/scaler.cpp +0 -0
  508. {PlotPy-2.1.1 → PlotPy-2.2.0}/src/scaler.hpp +0 -0
  509. {PlotPy-2.1.1 → PlotPy-2.2.0}/src/traits.hpp +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: PlotPy
3
- Version: 2.1.1
3
+ Version: 2.2.0
4
4
  Summary: Curve and image plotting tools for Python/Qt applications
5
5
  Author-email: Codra <p.raybaut@codra.fr>
6
6
  License: BSD 3-Clause License
@@ -55,7 +55,7 @@ Requires-Python: <4,>=3.8
55
55
  Description-Content-Type: text/markdown
56
56
  License-File: LICENSE
57
57
  Requires-Dist: guidata>=3.1
58
- Requires-Dist: PythonQwt>=0.10
58
+ Requires-Dist: PythonQwt>=0.12.1
59
59
  Requires-Dist: NumPy>=1.17
60
60
  Requires-Dist: SciPy>=1.3
61
61
  Requires-Dist: Pillow
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: PlotPy
3
- Version: 2.1.1
3
+ Version: 2.2.0
4
4
  Summary: Curve and image plotting tools for Python/Qt applications
5
5
  Author-email: Codra <p.raybaut@codra.fr>
6
6
  License: BSD 3-Clause License
@@ -55,7 +55,7 @@ Requires-Python: <4,>=3.8
55
55
  Description-Content-Type: text/markdown
56
56
  License-File: LICENSE
57
57
  Requires-Dist: guidata>=3.1
58
- Requires-Dist: PythonQwt>=0.10
58
+ Requires-Dist: PythonQwt>=0.12.1
59
59
  Requires-Dist: NumPy>=1.17
60
60
  Requires-Dist: SciPy>=1.3
61
61
  Requires-Dist: Pillow
@@ -117,6 +117,178 @@ plotpy/builder/label.py
117
117
  plotpy/builder/plot.py
118
118
  plotpy/builder/shape.py
119
119
  plotpy/data/colormaps_default.json
120
+ plotpy/data/icons/apply.png
121
+ plotpy/data/icons/arredit.png
122
+ plotpy/data/icons/arrow_down.png
123
+ plotpy/data/icons/arrow_up.png
124
+ plotpy/data/icons/autorefresh.png
125
+ plotpy/data/icons/autoscale.png
126
+ plotpy/data/icons/axes.png
127
+ plotpy/data/icons/busy.png
128
+ plotpy/data/icons/cell_edit.png
129
+ plotpy/data/icons/center.png
130
+ plotpy/data/icons/cmap_edit.png
131
+ plotpy/data/icons/contrast.png
132
+ plotpy/data/icons/copy.png
133
+ plotpy/data/icons/copytoclipboard.png
134
+ plotpy/data/icons/csapplylut.png
135
+ plotpy/data/icons/csautoscale.png
136
+ plotpy/data/icons/csection.png
137
+ plotpy/data/icons/csection_a.png
138
+ plotpy/data/icons/csection_line.png
139
+ plotpy/data/icons/csection_oblique.png
140
+ plotpy/data/icons/csperimage.png
141
+ plotpy/data/icons/curve_downsample.png
142
+ plotpy/data/icons/delete.png
143
+ plotpy/data/icons/edit.png
144
+ plotpy/data/icons/edit_point_selection.png
145
+ plotpy/data/icons/eliminate_outliers.png
146
+ plotpy/data/icons/eraser.png
147
+ plotpy/data/icons/exit.png
148
+ plotpy/data/icons/expander_down.png
149
+ plotpy/data/icons/expander_right.png
150
+ plotpy/data/icons/export.png
151
+ plotpy/data/icons/file.png
152
+ plotpy/data/icons/fileclose.png
153
+ plotpy/data/icons/fileimport.png
154
+ plotpy/data/icons/filenew.png
155
+ plotpy/data/icons/fileopen.png
156
+ plotpy/data/icons/filesave.png
157
+ plotpy/data/icons/filesaveas.png
158
+ plotpy/data/icons/font.png
159
+ plotpy/data/icons/full_range.png
160
+ plotpy/data/icons/funct.png
161
+ plotpy/data/icons/hcursor.png
162
+ plotpy/data/icons/hflip.png
163
+ plotpy/data/icons/imagestats.png
164
+ plotpy/data/icons/item_list.png
165
+ plotpy/data/icons/magnifier.png
166
+ plotpy/data/icons/max.png
167
+ plotpy/data/icons/min.png
168
+ plotpy/data/icons/move.png
169
+ plotpy/data/icons/multipoint_selection.png
170
+ plotpy/data/icons/none.png
171
+ plotpy/data/icons/not_found.png
172
+ plotpy/data/icons/on_curve.png
173
+ plotpy/data/icons/plotpy-banner.svg
174
+ plotpy/data/icons/plotpy-vertical.svg
175
+ plotpy/data/icons/plotpy.svg
176
+ plotpy/data/icons/point_selection.png
177
+ plotpy/data/icons/print.png
178
+ plotpy/data/icons/python.png
179
+ plotpy/data/icons/quickview.png
180
+ plotpy/data/icons/rectangular_select.png
181
+ plotpy/data/icons/refresh.png
182
+ plotpy/data/icons/save_all.png
183
+ plotpy/data/icons/selection.png
184
+ plotpy/data/icons/settings.png
185
+ plotpy/data/icons/shape.png
186
+ plotpy/data/icons/snapshot.png
187
+ plotpy/data/icons/trash.png
188
+ plotpy/data/icons/trimage_lock.png
189
+ plotpy/data/icons/trimage_unlock.png
190
+ plotpy/data/icons/vcursor.png
191
+ plotpy/data/icons/vflip.png
192
+ plotpy/data/icons/xcursor.png
193
+ plotpy/data/icons/xmax.png
194
+ plotpy/data/icons/xmin.png
195
+ plotpy/data/icons/xrange.png
196
+ plotpy/data/icons/curvestyles/dots.png
197
+ plotpy/data/icons/curvestyles/lines.png
198
+ plotpy/data/icons/curvestyles/steps.png
199
+ plotpy/data/icons/curvestyles/sticks.png
200
+ plotpy/data/icons/curvetypes/xfy.png
201
+ plotpy/data/icons/curvetypes/yfx.png
202
+ plotpy/data/icons/editors/edit.png
203
+ plotpy/data/icons/editors/edit_add.png
204
+ plotpy/data/icons/editors/editcopy.png
205
+ plotpy/data/icons/editors/editdelete.png
206
+ plotpy/data/icons/editors/editpaste.png
207
+ plotpy/data/icons/editors/fileimport.png
208
+ plotpy/data/icons/editors/filesave.png
209
+ plotpy/data/icons/editors/imshow.png
210
+ plotpy/data/icons/editors/insert.png
211
+ plotpy/data/icons/editors/plot.png
212
+ plotpy/data/icons/editors/rename.png
213
+ plotpy/data/icons/filetypes/doc.png
214
+ plotpy/data/icons/filetypes/gif.png
215
+ plotpy/data/icons/filetypes/html.png
216
+ plotpy/data/icons/filetypes/jpg.png
217
+ plotpy/data/icons/filetypes/pdf.png
218
+ plotpy/data/icons/filetypes/png.png
219
+ plotpy/data/icons/filetypes/pps.png
220
+ plotpy/data/icons/filetypes/ps.png
221
+ plotpy/data/icons/filetypes/tar.png
222
+ plotpy/data/icons/filetypes/tgz.png
223
+ plotpy/data/icons/filetypes/tif.png
224
+ plotpy/data/icons/filetypes/txt.png
225
+ plotpy/data/icons/filetypes/xls.png
226
+ plotpy/data/icons/filetypes/zip.png
227
+ plotpy/data/icons/items/annotation.png
228
+ plotpy/data/icons/items/curve.png
229
+ plotpy/data/icons/items/errorbar.png
230
+ plotpy/data/icons/items/grid.png
231
+ plotpy/data/icons/items/histogram.png
232
+ plotpy/data/icons/items/histogram2d.png
233
+ plotpy/data/icons/items/image.png
234
+ plotpy/data/icons/items/label.png
235
+ plotpy/data/icons/items/legend.png
236
+ plotpy/data/icons/items/polygonmap.png
237
+ plotpy/data/icons/markers/cross.png
238
+ plotpy/data/icons/markers/diamond.png
239
+ plotpy/data/icons/markers/ellipse.png
240
+ plotpy/data/icons/markers/hexagon.png
241
+ plotpy/data/icons/markers/point.png
242
+ plotpy/data/icons/markers/square.png
243
+ plotpy/data/icons/markers/star.png
244
+ plotpy/data/icons/markers/triangle_d.png
245
+ plotpy/data/icons/markers/triangle_l.png
246
+ plotpy/data/icons/markers/triangle_r.png
247
+ plotpy/data/icons/markers/triangle_u.png
248
+ plotpy/data/icons/markers/xcross.png
249
+ plotpy/data/icons/markerstyles/cross_marker.png
250
+ plotpy/data/icons/markerstyles/horiz_marker.png
251
+ plotpy/data/icons/markerstyles/vert_marker.png
252
+ plotpy/data/icons/mask/mask_circle.png
253
+ plotpy/data/icons/mask/mask_circle_outside.png
254
+ plotpy/data/icons/mask/mask_rectangle.png
255
+ plotpy/data/icons/mask/mask_rectangle_outside.png
256
+ plotpy/data/icons/mask/mask_tool.png
257
+ plotpy/data/icons/patterns/bdiagpattern.png
258
+ plotpy/data/icons/patterns/crosspattern.png
259
+ plotpy/data/icons/patterns/dense1pattern.png
260
+ plotpy/data/icons/patterns/dense2pattern.png
261
+ plotpy/data/icons/patterns/dense3pattern.png
262
+ plotpy/data/icons/patterns/dense4pattern.png
263
+ plotpy/data/icons/patterns/dense5pattern.png
264
+ plotpy/data/icons/patterns/dense6pattern.png
265
+ plotpy/data/icons/patterns/dense7pattern.png
266
+ plotpy/data/icons/patterns/diagcrosspattern.png
267
+ plotpy/data/icons/patterns/fdiagpattern.png
268
+ plotpy/data/icons/patterns/horpattern.png
269
+ plotpy/data/icons/patterns/nobrush.png
270
+ plotpy/data/icons/patterns/solidpattern.png
271
+ plotpy/data/icons/patterns/verpattern.png
272
+ plotpy/data/icons/scales/lin_lin.png
273
+ plotpy/data/icons/scales/lin_log.png
274
+ plotpy/data/icons/scales/log_lin.png
275
+ plotpy/data/icons/scales/log_log.png
276
+ plotpy/data/icons/shapes/circle.png
277
+ plotpy/data/icons/shapes/contour.png
278
+ plotpy/data/icons/shapes/ellipse_shape.png
279
+ plotpy/data/icons/shapes/freeform.png
280
+ plotpy/data/icons/shapes/gtaxes.png
281
+ plotpy/data/icons/shapes/marker.png
282
+ plotpy/data/icons/shapes/oblique_rectangle.png
283
+ plotpy/data/icons/shapes/point_shape.png
284
+ plotpy/data/icons/shapes/polyline.png
285
+ plotpy/data/icons/shapes/rectangle.png
286
+ plotpy/data/icons/shapes/segment.png
287
+ plotpy/data/icons/styles/dash.png
288
+ plotpy/data/icons/styles/dashdot.png
289
+ plotpy/data/icons/styles/dashdotdot.png
290
+ plotpy/data/icons/styles/dot.png
291
+ plotpy/data/icons/styles/solid.png
120
292
  plotpy/external/__init__.py
121
293
  plotpy/external/sliders/__init__.py
122
294
  plotpy/external/sliders/_generic_range_slider.py
@@ -125,178 +297,6 @@ plotpy/external/sliders/_labeled.py
125
297
  plotpy/external/sliders/_misc.py
126
298
  plotpy/external/sliders/_range_style.py
127
299
  plotpy/external/sliders/_sliders.py
128
- plotpy/images/apply.png
129
- plotpy/images/arredit.png
130
- plotpy/images/arrow_down.png
131
- plotpy/images/arrow_up.png
132
- plotpy/images/autorefresh.png
133
- plotpy/images/autoscale.png
134
- plotpy/images/axes.png
135
- plotpy/images/busy.png
136
- plotpy/images/cell_edit.png
137
- plotpy/images/center.png
138
- plotpy/images/cmap_edit.png
139
- plotpy/images/contrast.png
140
- plotpy/images/copy.png
141
- plotpy/images/copytoclipboard.png
142
- plotpy/images/csapplylut.png
143
- plotpy/images/csautoscale.png
144
- plotpy/images/csection.png
145
- plotpy/images/csection_a.png
146
- plotpy/images/csection_line.png
147
- plotpy/images/csection_oblique.png
148
- plotpy/images/csperimage.png
149
- plotpy/images/curve_downsample.png
150
- plotpy/images/delete.png
151
- plotpy/images/edit.png
152
- plotpy/images/edit_point_selection.png
153
- plotpy/images/eliminate_outliers.png
154
- plotpy/images/eraser.png
155
- plotpy/images/exit.png
156
- plotpy/images/expander_down.png
157
- plotpy/images/expander_right.png
158
- plotpy/images/export.png
159
- plotpy/images/file.png
160
- plotpy/images/fileclose.png
161
- plotpy/images/fileimport.png
162
- plotpy/images/filenew.png
163
- plotpy/images/fileopen.png
164
- plotpy/images/filesave.png
165
- plotpy/images/filesaveas.png
166
- plotpy/images/font.png
167
- plotpy/images/full_range.png
168
- plotpy/images/funct.png
169
- plotpy/images/hcursor.png
170
- plotpy/images/hflip.png
171
- plotpy/images/imagestats.png
172
- plotpy/images/item_list.png
173
- plotpy/images/magnifier.png
174
- plotpy/images/max.png
175
- plotpy/images/min.png
176
- plotpy/images/move.png
177
- plotpy/images/multipoint_selection.png
178
- plotpy/images/none.png
179
- plotpy/images/not_found.png
180
- plotpy/images/on_curve.png
181
- plotpy/images/plotpy-banner.svg
182
- plotpy/images/plotpy-vertical.svg
183
- plotpy/images/plotpy.svg
184
- plotpy/images/point_selection.png
185
- plotpy/images/print.png
186
- plotpy/images/python.png
187
- plotpy/images/quickview.png
188
- plotpy/images/rectangular_select.png
189
- plotpy/images/refresh.png
190
- plotpy/images/save_all.png
191
- plotpy/images/selection.png
192
- plotpy/images/settings.png
193
- plotpy/images/shape.png
194
- plotpy/images/snapshot.png
195
- plotpy/images/trash.png
196
- plotpy/images/trimage_lock.png
197
- plotpy/images/trimage_unlock.png
198
- plotpy/images/vcursor.png
199
- plotpy/images/vflip.png
200
- plotpy/images/xcursor.png
201
- plotpy/images/xmax.png
202
- plotpy/images/xmin.png
203
- plotpy/images/xrange.png
204
- plotpy/images/curvestyles/dots.png
205
- plotpy/images/curvestyles/lines.png
206
- plotpy/images/curvestyles/steps.png
207
- plotpy/images/curvestyles/sticks.png
208
- plotpy/images/curvetypes/xfy.png
209
- plotpy/images/curvetypes/yfx.png
210
- plotpy/images/editors/edit.png
211
- plotpy/images/editors/edit_add.png
212
- plotpy/images/editors/editcopy.png
213
- plotpy/images/editors/editdelete.png
214
- plotpy/images/editors/editpaste.png
215
- plotpy/images/editors/fileimport.png
216
- plotpy/images/editors/filesave.png
217
- plotpy/images/editors/imshow.png
218
- plotpy/images/editors/insert.png
219
- plotpy/images/editors/plot.png
220
- plotpy/images/editors/rename.png
221
- plotpy/images/filetypes/doc.png
222
- plotpy/images/filetypes/gif.png
223
- plotpy/images/filetypes/html.png
224
- plotpy/images/filetypes/jpg.png
225
- plotpy/images/filetypes/pdf.png
226
- plotpy/images/filetypes/png.png
227
- plotpy/images/filetypes/pps.png
228
- plotpy/images/filetypes/ps.png
229
- plotpy/images/filetypes/tar.png
230
- plotpy/images/filetypes/tgz.png
231
- plotpy/images/filetypes/tif.png
232
- plotpy/images/filetypes/txt.png
233
- plotpy/images/filetypes/xls.png
234
- plotpy/images/filetypes/zip.png
235
- plotpy/images/items/annotation.png
236
- plotpy/images/items/curve.png
237
- plotpy/images/items/errorbar.png
238
- plotpy/images/items/grid.png
239
- plotpy/images/items/histogram.png
240
- plotpy/images/items/histogram2d.png
241
- plotpy/images/items/image.png
242
- plotpy/images/items/label.png
243
- plotpy/images/items/legend.png
244
- plotpy/images/items/polygonmap.png
245
- plotpy/images/markers/cross.png
246
- plotpy/images/markers/diamond.png
247
- plotpy/images/markers/ellipse.png
248
- plotpy/images/markers/hexagon.png
249
- plotpy/images/markers/point.png
250
- plotpy/images/markers/square.png
251
- plotpy/images/markers/star.png
252
- plotpy/images/markers/triangle_d.png
253
- plotpy/images/markers/triangle_l.png
254
- plotpy/images/markers/triangle_r.png
255
- plotpy/images/markers/triangle_u.png
256
- plotpy/images/markers/xcross.png
257
- plotpy/images/markerstyles/cross_marker.png
258
- plotpy/images/markerstyles/horiz_marker.png
259
- plotpy/images/markerstyles/vert_marker.png
260
- plotpy/images/mask/mask_circle.png
261
- plotpy/images/mask/mask_circle_outside.png
262
- plotpy/images/mask/mask_rectangle.png
263
- plotpy/images/mask/mask_rectangle_outside.png
264
- plotpy/images/mask/mask_tool.png
265
- plotpy/images/patterns/bdiagpattern.png
266
- plotpy/images/patterns/crosspattern.png
267
- plotpy/images/patterns/dense1pattern.png
268
- plotpy/images/patterns/dense2pattern.png
269
- plotpy/images/patterns/dense3pattern.png
270
- plotpy/images/patterns/dense4pattern.png
271
- plotpy/images/patterns/dense5pattern.png
272
- plotpy/images/patterns/dense6pattern.png
273
- plotpy/images/patterns/dense7pattern.png
274
- plotpy/images/patterns/diagcrosspattern.png
275
- plotpy/images/patterns/fdiagpattern.png
276
- plotpy/images/patterns/horpattern.png
277
- plotpy/images/patterns/nobrush.png
278
- plotpy/images/patterns/solidpattern.png
279
- plotpy/images/patterns/verpattern.png
280
- plotpy/images/scales/lin_lin.png
281
- plotpy/images/scales/lin_log.png
282
- plotpy/images/scales/log_lin.png
283
- plotpy/images/scales/log_log.png
284
- plotpy/images/shapes/circle.png
285
- plotpy/images/shapes/contour.png
286
- plotpy/images/shapes/ellipse_shape.png
287
- plotpy/images/shapes/freeform.png
288
- plotpy/images/shapes/gtaxes.png
289
- plotpy/images/shapes/marker.png
290
- plotpy/images/shapes/oblique_rectangle.png
291
- plotpy/images/shapes/point_shape.png
292
- plotpy/images/shapes/polyline.png
293
- plotpy/images/shapes/rectangle.png
294
- plotpy/images/shapes/segment.png
295
- plotpy/images/styles/dash.png
296
- plotpy/images/styles/dashdot.png
297
- plotpy/images/styles/dashdotdot.png
298
- plotpy/images/styles/dot.png
299
- plotpy/images/styles/solid.png
300
300
  plotpy/interfaces/__init__.py
301
301
  plotpy/interfaces/items.py
302
302
  plotpy/interfaces/panel.py
@@ -426,22 +426,31 @@ plotpy/tests/tools/test_get_rectangle_with_svg.py
426
426
  plotpy/tests/tools/test_get_segment.py
427
427
  plotpy/tests/tools/test_image_plot_tools.py
428
428
  plotpy/tests/unit/__init__.py
429
+ plotpy/tests/unit/test_aspect_ratio_tool.py
429
430
  plotpy/tests/unit/test_baseplot.py
430
431
  plotpy/tests/unit/test_builder_annotation.py
431
432
  plotpy/tests/unit/test_builder_curve.py
432
433
  plotpy/tests/unit/test_builder_image.py
433
434
  plotpy/tests/unit/test_builder_shape.py
434
435
  plotpy/tests/unit/test_contour.py
436
+ plotpy/tests/unit/test_display_coords_tool.py
435
437
  plotpy/tests/unit/test_fontparam.py
436
438
  plotpy/tests/unit/test_geometry.py
437
439
  plotpy/tests/unit/test_highprecisionxy.py
438
440
  plotpy/tests/unit/test_io.py
439
441
  plotpy/tests/unit/test_line.py
442
+ plotpy/tests/unit/test_line_cross_section_tool.py
443
+ plotpy/tests/unit/test_multiline_tools.py
444
+ plotpy/tests/unit/test_oblique_cross_section_tool.py
440
445
  plotpy/tests/unit/test_plot_curve.py
441
446
  plotpy/tests/unit/test_plot_image.py
447
+ plotpy/tests/unit/test_point_tools.py
448
+ plotpy/tests/unit/test_rect_zoom.py
442
449
  plotpy/tests/unit/test_seg_dist.py
450
+ plotpy/tests/unit/test_shape_tools.py
443
451
  plotpy/tests/unit/test_styles.py
444
452
  plotpy/tests/unit/test_tools_export.py
453
+ plotpy/tests/unit/utils.py
445
454
  plotpy/tests/widgets/__init__.py
446
455
  plotpy/tests/widgets/test_dotarraydemo.py
447
456
  plotpy/tests/widgets/test_filtertest1.py
@@ -1,5 +1,5 @@
1
1
  guidata>=3.1
2
- PythonQwt>=0.10
2
+ PythonQwt>=0.12.1
3
3
  NumPy>=1.17
4
4
  SciPy>=1.3
5
5
  Pillow
@@ -189,6 +189,7 @@ functions are:
189
189
  * :py:attr:`plotpy.constants.LUTAlpha.LINEAR`
190
190
  * :py:attr:`plotpy.constants.LUTAlpha.SIGMOID`
191
191
  * :py:attr:`plotpy.constants.LUTAlpha.TANH`
192
+ * :py:attr:`plotpy.constants.LUTAlpha.STEP`
192
193
 
193
194
  .. warning:: The ``alpha_mask`` parameter has been removed from the methods
194
195
  :py:meth:`.PlotBuilder.image`, :py:meth:`.PlotBuilder.xyimage`,
@@ -77,6 +77,7 @@ functions are:
77
77
  * :py:attr:`plotpy.constants.LUTAlpha.LINEAR`
78
78
  * :py:attr:`plotpy.constants.LUTAlpha.SIGMOID`
79
79
  * :py:attr:`plotpy.constants.LUTAlpha.TANH`
80
+ * :py:attr:`plotpy.constants.LUTAlpha.STEP`
80
81
 
81
82
  .. warning:: The ``alpha_mask`` parameter has been removed from the methods
82
83
  :py:meth:`.PlotBuilder.image`, :py:meth:`.PlotBuilder.xyimage`,
@@ -24,6 +24,7 @@ Signals emitted by :py:class:`.BasePlot` objects:
24
24
  - :py:attr:`.BasePlot.SIG_ANNOTATION_CHANGED`
25
25
  - :py:attr:`.BasePlot.SIG_RANGE_CHANGED`
26
26
  - :py:attr:`.BasePlot.SIG_ITEMS_CHANGED`
27
+ - :py:attr:`.BasePlot.SIG_ITEM_PARAMETERS_CHANGED`
27
28
  - :py:attr:`.BasePlot.SIG_ACTIVE_ITEM_CHANGED`
28
29
  - :py:attr:`.BasePlot.SIG_ITEM_REMOVED`
29
30
  - :py:attr:`.BasePlot.SIG_ITEM_SELECTION_CHANGED`
@@ -9,12 +9,12 @@ The :mod:`plotpy` package requires the following Python modules:
9
9
  - Summary
10
10
  * - Python
11
11
  - >=3.8, <4
12
- -
12
+ -
13
13
  * - guidata
14
14
  - >=3.1
15
15
  - Automatic GUI generation for easy dataset editing and display
16
16
  * - PythonQwt
17
- - >=0.10
17
+ - >=0.12.1
18
18
  - Qt plotting widgets for Python
19
19
  * - NumPy
20
20
  - >=1.17
@@ -23,10 +23,10 @@ The :mod:`plotpy` package requires the following Python modules:
23
23
  - >=1.3
24
24
  - Fundamental algorithms for scientific computing in Python
25
25
  * - Pillow
26
- -
26
+ -
27
27
  - Python Imaging Library (Fork)
28
28
  * - tifffile
29
- -
29
+ -
30
30
  - Read and write TIFF files
31
31
  * - PyQt5
32
32
  - >=5.11
@@ -42,19 +42,19 @@ Optional modules for development:
42
42
  - Version
43
43
  - Summary
44
44
  * - black
45
- -
45
+ -
46
46
  - The uncompromising code formatter.
47
47
  * - isort
48
- -
48
+ -
49
49
  - A Python utility / library to sort Python imports.
50
50
  * - pylint
51
- -
51
+ -
52
52
  - python code static checker
53
53
  * - Coverage
54
- -
54
+ -
55
55
  - Code coverage measurement for Python
56
56
  * - Cython
57
- -
57
+ -
58
58
  - The Cython compiler for writing C extensions in the Python language.
59
59
 
60
60
  Optional modules for building the documentation:
@@ -67,22 +67,22 @@ Optional modules for building the documentation:
67
67
  - Version
68
68
  - Summary
69
69
  * - PyQt5
70
- -
70
+ -
71
71
  - Python bindings for the Qt cross platform application toolkit
72
72
  * - sphinx
73
- -
73
+ -
74
74
  - Python documentation generator
75
75
  * - myst_parser
76
- -
76
+ -
77
77
  - An extended [CommonMark](https://spec.commonmark.org/) compliant parser,
78
78
  * - sphinx-copybutton
79
- -
79
+ -
80
80
  - Add a copy button to each of your code cells.
81
81
  * - sphinx_qt_documentation
82
- -
82
+ -
83
83
  - Plugin for proper resolve intersphinx references for Qt elements
84
84
  * - python-docs-theme
85
- -
85
+ -
86
86
  - The Sphinx theme for the CPython docs and related projects
87
87
 
88
88
  Optional modules for running test suite:
@@ -95,11 +95,11 @@ Optional modules for running test suite:
95
95
  - Version
96
96
  - Summary
97
97
  * - pytest
98
- -
98
+ -
99
99
  - pytest: simple powerful testing with Python
100
100
  * - pytest-cov
101
- -
101
+ -
102
102
  - Pytest plugin for measuring coverage.
103
103
  * - pytest-xvfb
104
- -
104
+ -
105
105
  - A pytest plugin to run Xvfb (or Xephyr/Xvnc) for tests.
@@ -20,12 +20,12 @@ External resources:
20
20
  .. _GitHub: https://github.com/PierreRaybaut/plotpy
21
21
  """
22
22
 
23
- __version__ = "2.1.1"
23
+ __version__ = "2.2.0"
24
24
  __VERSION__ = tuple([int(number) for number in __version__.split(".")])
25
25
 
26
26
  # --- Important note: DATAPATH and LOCALEPATH are used by guidata.configtools
27
27
  # --- to retrieve data and translation files paths
28
28
  #
29
29
  # Dear (Debian, RPM, ...) package makers, please feel free to customize the
30
- # following path to module's data (images) and translations:
30
+ # following path to module's data (e.g. icons) and translations:
31
31
  DATAPATH = LOCALEPATH = ""
@@ -45,7 +45,7 @@ from plotpy.styles import (
45
45
  update_style_attr,
46
46
  )
47
47
 
48
- if TYPE_CHECKING:
48
+ if TYPE_CHECKING: # pragma: no cover
49
49
  from typing import Callable
50
50
 
51
51
  CURVE_COUNT = 0
@@ -168,8 +168,8 @@ class ImageBuilder:
168
168
  filename: image filename. Default is None
169
169
  title: image title. Default is None
170
170
  alpha_function: function for LUT alpha channel.
171
- Default is :py:attr:`.LUTAlpha.NONE`
172
- (valid string values are 'none', 'constant', 'linear', 'sigmoid', 'tanh')
171
+ Default is :py:attr:`.LUTAlpha.NONE` (valid string values are 'none',
172
+ 'constant', 'linear', 'sigmoid', 'tanh' and 'step')
173
173
  alpha: alpha value. Default is None
174
174
  background_color: background color name. Default is None
175
175
  colormap: colormap name. Default is None
@@ -317,8 +317,8 @@ class ImageBuilder:
317
317
  filename: image filename. Default is None
318
318
  title: image title. Default is None
319
319
  alpha_function: function for LUT alpha channel.
320
- Default is :py:attr:`.LUTAlpha.NONE`
321
- (valid string values are 'none', 'constant', 'linear', 'sigmoid', 'tanh')
320
+ Default is :py:attr:`.LUTAlpha.NONE` (valid string values are 'none',
321
+ 'constant', 'linear', 'sigmoid', 'tanh' and 'step')
322
322
  alpha: alpha value. Default is 1.0
323
323
  xdata: x data. Default is [None, None]
324
324
  ydata: y data. Default is [None, None]
@@ -445,8 +445,8 @@ class ImageBuilder:
445
445
  mask: mask. Default is None
446
446
  title: image title. Default is None
447
447
  alpha_function: function for LUT alpha channel.
448
- Default is :py:attr:`.LUTAlpha.NONE`
449
- (valid string values are 'none', 'constant', 'linear', 'sigmoid', 'tanh')
448
+ Default is :py:attr:`.LUTAlpha.NONE` (valid string values are 'none',
449
+ 'constant', 'linear', 'sigmoid', 'tanh' and 'step')
450
450
  alpha: alpha value. Default is 1.0
451
451
  background_color: background color. Default is None
452
452
  colormap: colormap. Default is None
@@ -519,8 +519,8 @@ class ImageBuilder:
519
519
  filename: filename. Default is None
520
520
  title: image title. Default is None
521
521
  alpha_function: function for LUT alpha channel.
522
- Default is :py:attr:`.LUTAlpha.NONE`
523
- (valid string values are 'none', 'constant', 'linear', 'sigmoid', 'tanh')
522
+ Default is :py:attr:`.LUTAlpha.NONE` (valid string values are 'none',
523
+ 'constant', 'linear', 'sigmoid', 'tanh' and 'step')
524
524
  alpha: alpha value. Default is 1.0
525
525
  xdata: x data. Default is [None, None]
526
526
  ydata: y data. Default is [None, None]
@@ -584,8 +584,8 @@ class ImageBuilder:
584
584
  Z: data
585
585
  title: image title. Default is None
586
586
  alpha_function: function for LUT alpha channel.
587
- Default is :py:attr:`.LUTAlpha.NONE`
588
- (valid string values are 'none', 'constant', 'linear', 'sigmoid', 'tanh')
587
+ Default is :py:attr:`.LUTAlpha.NONE` (valid string values are 'none',
588
+ 'constant', 'linear', 'sigmoid', 'tanh' and 'step')
589
589
  alpha: alpha value. Default is None
590
590
  colormap: colormap. Default is None
591
591
  interpolation: interpolation method. Default is 'linear'
@@ -662,8 +662,8 @@ class ImageBuilder:
662
662
  filename: filename. Default is None
663
663
  title: image title. Default is None
664
664
  alpha_function: function for LUT alpha channel.
665
- Default is :py:attr:`.LUTAlpha.NONE`
666
- (valid string values are 'none', 'constant', 'linear', 'sigmoid', 'tanh')
665
+ Default is :py:attr:`.LUTAlpha.NONE` (valid string values are 'none',
666
+ 'constant', 'linear', 'sigmoid', 'tanh' and 'step')
667
667
  alpha: alpha value. Default is None
668
668
  background_color: background color. Default is None
669
669
  colormap: colormap. Default is None
@@ -743,8 +743,8 @@ class ImageBuilder:
743
743
  data: data
744
744
  title: image title. Default is None
745
745
  alpha_function: function for LUT alpha channel.
746
- Default is :py:attr:`.LUTAlpha.NONE`
747
- (valid string values are 'none', 'constant', 'linear', 'sigmoid', 'tanh')
746
+ Default is :py:attr:`.LUTAlpha.NONE` (valid string values are 'none',
747
+ 'constant', 'linear', 'sigmoid', 'tanh' and 'step')
748
748
  alpha: alpha value. Default is None
749
749
  background_color: background color. Default is None
750
750
  colormap: colormap. Default is None
@@ -28,7 +28,7 @@ def make_title(basename, count):
28
28
 
29
29
 
30
30
  APP_PATH = osp.dirname(__file__)
31
- add_image_module_path("plotpy", "images")
31
+ add_image_module_path("plotpy", "data/icons")
32
32
  _ = get_translation("plotpy")
33
33
 
34
34
  DEFAULTS = {