gh-152325: Add curses.has_mouse() and curses.window.mouse_trafo()#152484
Merged
Conversation
has_mouse() reports whether the mouse driver was successfully initialized. window.mouse_trafo(y, x, to_screen) converts a coordinate pair between window-relative and screen-relative coordinates, returning the (y, x) pair or None if it lies outside the window. Together these complete the curses mouse interface. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Documentation build overview
|
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add the two remaining pieces of the curses mouse interface.
curses.has_mouse()reports whether the mouse driver was successfully initialized.curses.window.mouse_trafo(y, x, to_screen)converts a coordinate pair between window-relative and screen-relative (stdscr-relative) coordinates, returning the converted(y, x)tuple, orNoneif the point lies outside the window. Modeled on the existingwindow.enclose(), with the sameNCURSES_MOUSE_VERSIONguard.🤖 Generated with Claude Code