Skip to content
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

Conversation

taleinat
Copy link
Contributor

@taleinat taleinat commented Aug 30, 2018

@taleinat
Copy link
Contributor Author

@csabella perhaps you'd like to review this?

@@ -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.
Copy link
Contributor

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.

@csabella
Copy link
Contributor

@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 color_config method was just added two years ago. I'm not familiar with all the intended changes for the colorizer, but it seems like this function doesn't really fit in with the other comment in the docstring for that method - 'Should be called whenever ColorDelegator is called. ' In the case of adding this to TextView, you aren't calling ColorDelegator. Not that this affects your change because I think you are using the method in the way it was intended, but the color_config method just doesn't seem to be defined quite exactly in the way it should be used. Either it needs to change (in the docstring) for your usage or else you shouldn't be using it. I hope that makes sense.

My thought without having Terry's input is the color_config should live somewhere else. It's setting up a text widget, not really being used as part of the delegator, but maybe that's a wrong assumption because I haven't spent a lot of time with it.

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.

@csabella
Copy link
Contributor

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 color_config to set the color, the assert would pass.

@@ -0,0 +1 @@
Make TextView use the text colors from the main IDLE configuration.
Copy link
Contributor

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.'

Copy link
Member

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.

@terryjreedy
Copy link
Member

terryjreedy commented Sep 23, 2018

In bpo-27117, I extracted the color_config code from Editor_Window.__init__ so that configured colors could be used with any text widget. The use then was for turtledemo (which uses colorizer) and the colorizer htest. I will modify the docstring. (I think the function is OK where it is ;-).

Copy link
Member

@terryjreedy terryjreedy left a 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.

@taleinat taleinat changed the title bpo-34548: IDLE: Make TextView use the configured theme colors bpo-34548: IDLE: use configured theme colors in TextView Sep 23, 2018
@miss-islington miss-islington merged commit c87d9f4 into python:master Sep 23, 2018
@miss-islington
Copy link
Contributor

Thanks @taleinat for the PR 🌮🎉.. I'm working now to backport this PR to: 3.6, 3.7.
🐍🍒⛏🤖

miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Sep 23, 2018
https://bugs.python.org/issue34548
(cherry picked from commit c87d9f4)

Co-authored-by: Tal Einat <taleinat+github@gmail.com>
@bedevere-bot
Copy link

GH-9513 is a backport of this pull request to the 3.7 branch.

miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Sep 23, 2018
https://bugs.python.org/issue34548
(cherry picked from commit c87d9f4)

Co-authored-by: Tal Einat <taleinat+github@gmail.com>
@bedevere-bot
Copy link

GH-9514 is a backport of this pull request to the 3.6 branch.

@taleinat
Copy link
Contributor Author

I'm not backporting this to 2.7 since @terryjreedy's refactoring out of color_config() wasn't backported to it, and this PR depends on that.

miss-islington added a commit that referenced this pull request Sep 23, 2018
https://bugs.python.org/issue34548
(cherry picked from commit c87d9f4)

Co-authored-by: Tal Einat <taleinat+github@gmail.com>
miss-islington added a commit that referenced this pull request Sep 23, 2018
https://bugs.python.org/issue34548
(cherry picked from commit c87d9f4)

Co-authored-by: Tal Einat <taleinat+github@gmail.com>
@taleinat taleinat deleted the issue34548/IDLE_text_view_use_configured_colors branch September 23, 2018 13:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants