Title: [MNT]: Deprecate `onselect`/`onmove_callback` of selectors · Issue #21929 · matplotlib/matplotlib · GitHub
Open Graph Title: [MNT]: Deprecate `onselect`/`onmove_callback` of selectors · Issue #21929 · matplotlib/matplotlib
X Title: [MNT]: Deprecate `onselect`/`onmove_callback` of selectors · Issue #21929 · matplotlib/matplotlib
Description: Summary If I remember correctly, at some point, @anntzer suggested to deprecate onselect argument for selectors. Now, that I understand better what he meant at the time, I think it makes a lot of sense, because the behaviour of the "buil...
Open Graph Description: Summary If I remember correctly, at some point, @anntzer suggested to deprecate onselect argument for selectors. Now, that I understand better what he meant at the time, I think it makes a lot of s...
X Description: Summary If I remember correctly, at some point, @anntzer suggested to deprecate onselect argument for selectors. Now, that I understand better what he meant at the time, I think it makes a lot of s...
Opengraph URL: https://github.com/matplotlib/matplotlib/issues/21929
X: @github
Domain: github.com
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"[MNT]: Deprecate `onselect`/`onmove_callback` of selectors","articleBody":"### Summary\n\nIf I remember correctly, at some point, @anntzer suggested to deprecate `onselect` argument for selectors. Now, that I understand better what he meant at the time, I think it makes a lot of sense, because the behaviour of the \"builtin\" selector callback is contentious and inconsistent between selectors.\r\n\n\n### Proposed fix\n\n\r\nThe alternative would be something along the lines of:\r\n```python\r\nimport matplotlib.pyplot as plt\r\nfrom matplotlib.widgets import RectangleSelector\r\nimport functools\r\n\r\n_, ax = plt.subplots()\r\nax.plot([1, 2, 3])\r\n\r\n\r\ndef dummy_callback(*args):\r\n pass\r\n\r\n\r\ndef onselect_callback(event, selector):\r\n print('## onselect callback ##')\r\n if not selector.ignore(event):\r\n print(' ', selector.extents)\r\n return\r\n print(' event ignored')\r\n\r\n\r\ndef onmove_callback(event, selector):\r\n print('## onmove callback ##')\r\n if not selector.ignore(event) and selector._eventpress:\r\n print(' ', selector.extents)\r\n return\r\n print(' event ignored')\r\n\r\n\r\ntool = RectangleSelector(ax, dummy_callback, interactive=True,\r\n drag_from_anywhere=True,)\r\ntool.extents = (1.2, 2.0, 1.0, 1.6)\r\n\r\n# alternative to onselect\r\nrectangle_onselect_callback = functools.partial(onselect_callback, selector=tool)\r\ntool.connect_event('button_release_event', rectangle_onselect_callback)\r\n\r\n# alternative to onmove_callback (SpanSelector only)\r\nrectangle_onmove_callback = functools.partial(onmove_callback, selector=tool)\r\ntool.connect_event('motion_notify_event', rectangle_onmove_callback)\r\n\r\n```\r\n\r\nIn my opinion, the reasons to deprecate are:\r\n- provide consistent API between selectors\r\n- leave the user define what is the expected behaviour - anyway, I don't think the current API is obvious to use\r\n- fix https://github.com/matplotlib/matplotlib/issues/9608 (see #20611 for more discussion)\r\n- simplify maintenance\r\n\r\nProposed fix:\r\n- Deprecate the `onselect`/`onmove` arguments of the selectors, as per example above\r\n- improve the API to ignore events (the example above uses a private API to reproduce the `onmove_callback` of the `SpanSelector`)\r\n- update example, improve documentation on the use of callback registry.","author":{"url":"https://github.com/ericpre","@type":"Person","name":"ericpre"},"datePublished":"2021-12-11T12:49:58.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":5},"url":"https://github.com/21929/matplotlib/issues/21929"}
| route-pattern | /_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format) |
| route-controller | voltron_issues_fragments |
| route-action | issue_layout |
| fetch-nonce | v2:02cb1668-3503-8983-58df-a054d67c5111 |
| current-catalog-service-hash | 81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114 |
| request-id | A0EC:118815:28F6EB2:3A54A39:6A51051C |
| html-safe-nonce | dd83fed9fcda50b12b381bfaf000a5e1e8da3412bbcf137019a8620450f7b280 |
| visitor-payload | eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBMEVDOjExODgxNToyOEY2RUIyOjNBNTRBMzk6NkE1MTA1MUMiLCJ2aXNpdG9yX2lkIjoiNjY5MzE0MjUxNzQ5NDM4MzkwMCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9 |
| visitor-hmac | d5a8f788c99c8c4ce8a62ee1eefc0803abbaba72d6a0a97d56a99bbd1316e0eb |
| hovercard-subject-tag | issue:1077528917 |
| github-keyboard-shortcuts | repository,issues,copilot |
| google-site-verification | Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I |
| octolytics-url | https://collector.github.com/github/collect |
| analytics-location | / |
| fb:app_id | 1401488693436528 |
| apple-itunes-app | app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/matplotlib/matplotlib/21929/issue_layout |
| twitter:image | https://opengraph.githubassets.com/67edb7e1a654ea78eb610c0363f77cccd046b3287ac868b76373abe7d1ee13b4/matplotlib/matplotlib/issues/21929 |
| twitter:card | summary_large_image |
| og:image | https://opengraph.githubassets.com/67edb7e1a654ea78eb610c0363f77cccd046b3287ac868b76373abe7d1ee13b4/matplotlib/matplotlib/issues/21929 |
| og:image:alt | Summary If I remember correctly, at some point, @anntzer suggested to deprecate onselect argument for selectors. Now, that I understand better what he meant at the time, I think it makes a lot of s... |
| og:image:width | 1200 |
| og:image:height | 600 |
| og:site_name | GitHub |
| og:type | object |
| og:author:username | ericpre |
| hostname | github.com |
| expected-hostname | github.com |
| None | 38906a4da4e3e9fd88dfeacee232f5932c0c5f7495de3b4efc53ddfac7173d12 |
| turbo-cache-control | no-preview |
| go-import | github.com/matplotlib/matplotlib git https://github.com/matplotlib/matplotlib.git |
| octolytics-dimension-user_id | 215947 |
| octolytics-dimension-user_login | matplotlib |
| octolytics-dimension-repository_id | 1385122 |
| octolytics-dimension-repository_nwo | matplotlib/matplotlib |
| octolytics-dimension-repository_public | true |
| octolytics-dimension-repository_is_fork | false |
| octolytics-dimension-repository_network_root_id | 1385122 |
| octolytics-dimension-repository_network_root_nwo | matplotlib/matplotlib |
| turbo-body-classes | logged-out env-production page-responsive |
| disable-turbo | false |
| browser-stats-url | https://api.github.com/_private/browser/stats |
| browser-errors-url | https://api.github.com/_private/browser/errors |
| release | 90441ea9b98e7491aa6ebcd135fccce4e2396f48 |
| ui-target | full |
| theme-color | #1e2327 |
| color-scheme | light dark |
Links:
Viewport: width=device-width