-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bpo-34548: IDLE: use configured theme colors in TextView #9008
bpo-34548: IDLE: use configured theme colors in TextView #9008
Conversation
@csabella perhaps you'd like to review this? |
Lib/idlelib/colorizer.py
Outdated
@@ -32,10 +32,10 @@ def make_pat(): | |||
idprog = re.compile(r"\s+(\w+)", re.S) | |||
|
|||
def color_config(text): # Called from htest, Editor, and Turtle Demo. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This inline comment wouldn't be true anymore after this change.
@taleinat Thanks for asking me to take a look at this PR. This is certainly an interesting change to consider, especially with issue33397 and Terry's idea to use that font resizing class for all windows. Since the TextView is currently used for help_about and the help button on config dialog, I'm lumping it in with the other Help screens (and the current change addressed in issue33397), but I also think Terry wanted to expand the use of TextView into other areas, which makes me think consistency across the app for fg and bg would also be a goal. When we notice something like this that should be changed, Terry usually opens a master bug tracker issue to make sure any related changes are also done. For example, this doesn't address the help.py window because it's not a TextView, but perhaps the overarching project would be to make all the colors and all the fonts consistent across the app. Also, I noticed that this My thought without having Terry's input is the A lot of the recent work on IDLE has been small changes (sometimes behind the scenes) to get the modules ready for a user-facing change. Based on that, even though your change is a good idea, I'm not sure if it should be step one or if colorizer needs some work first. Or if a new text_config module will be added that will handle both fg/bg color and resizing for text. |
As far as the project as it is now, I do think you should add tests for the colors. If this gets added to other modules for consistency, then the tests would be able to show that consistency, that is, before the change is made, the assert would fail and then after use |
@@ -0,0 +1 @@ | |||
Make TextView use the text colors from the main IDLE configuration. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Terry will probably adjust the blurb to be clearer when he merges this (he has uncanny knack for writing succinctly and accurately). However, I think it should say something more like 'use the colors from the selected configuration theme.'
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tal is a core developer and may be the one who merges this, making the final choice of blurb (usually aimed at users) and commit message (aimed at other developers and future IDLE maintainers, including ourselves.
In the meanwhile, I replaced the above with "Use user-selected color theme for read-only text views." I don't like 'Make' when another verb is available. Since this change is visible to users, I replaced the internal name 'TextView'.
If I write decent blurbs, it is because I edit and rewrite. I sometimes rewrite again before committing to the IDLE news file viewable from About IDLE.
In bpo-27117, I extracted the color_config code from |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I cannot help but be pleased that the factoring_out of color_config make this TODO so trivial. Tal, thanks for noticing.
Cheryl, thank you for the review. bpo-33396 is the master issue for the help viewer. I just added item 9 about further upgrades to text viewer. I included consistency in using a proportional font for non-code text, at least for read-only text. (Help viewer already does this.)
Given that color_config has been tested in use, and that it works with the About IDLE files, including colorizing selections the same as in the editor, I approve of merging without other tests.
Thanks @taleinat for the PR 🌮🎉.. I'm working now to backport this PR to: 3.6, 3.7. |
https://bugs.python.org/issue34548 (cherry picked from commit c87d9f4) Co-authored-by: Tal Einat <taleinat+github@gmail.com>
GH-9513 is a backport of this pull request to the 3.7 branch. |
https://bugs.python.org/issue34548 (cherry picked from commit c87d9f4) Co-authored-by: Tal Einat <taleinat+github@gmail.com>
GH-9514 is a backport of this pull request to the 3.6 branch. |
I'm not backporting this to 2.7 since @terryjreedy's refactoring out of |
https://bugs.python.org/issue34548 (cherry picked from commit c87d9f4) Co-authored-by: Tal Einat <taleinat+github@gmail.com>
https://bugs.python.org/issue34548 (cherry picked from commit c87d9f4) Co-authored-by: Tal Einat <taleinat+github@gmail.com>
https://bugs.python.org/issue34548