msg320646 - (view) |
Author: Mark Roseman (markroseman) * |
Date: 2018-06-28 04:02 |
When adding a bunch of ttk widgets into a toplevel window, there needs to be an intervening ttk.Frame to ensure the background of the widgets matches the overall background. The reason is the 'toplevel' is part of the classic tk widgets and not ttk, so it isn't guaranteed to have the same background. In practice, the only platform where the toplevel and ttk.Frame have different backgrounds is macOS. Check out topframe.png for an example, top is without the intervening ttk.Frame, bottom adds it in. (Adding bug mainly so we have a place to store a concrete example of what this looks like) |
|
|
msg320800 - (view) |
Author: Terry J. Reedy (terry.reedy) *  |
Date: 2018-06-30 18:08 |
The image could have been attached to #27477, but a new issue for a new PR is needed anyway. I will make this a dependency of that issue. I did not at first see the difference in the screen-capture images on my monitor in Firefox with the room lighting and my eye condition as it was then, but today I do. On Mac, the defaulf ttk background is slightly darker than the default tk background. (No so on Windows.) It looks subtlely tacky. I imagine this effect might be more obvious and annoying on the live screen. As I mentioned elsewhere, this is a second reason to insert a frame inside Toplevel, but it is a reason to do this *now*. Please submit a PR for this addition to searchbase: a new ttk Frame, with a bit of space added. Please call it self.frame as in query or perhaps self.searchframe, analogous to viewframe in textview. When SearchDialogBase is renamed SearchFrameBase(Frame) and the toplevel stuff moved to another class, self.???frame in the Frame subclass will become self, so the name will only appear in the toplevel class. In test_searchbase.SearchDialogBaseTest.test_open_and_close, adding self.assertEqual(self.dialog.frame.state(), 'normal') will test the change, failing now, passing with it. I don't know of any other changes needed in files other than searchbase. configdialog needs a similar PR. config_key needs a complete ttk conversion. |
|
|
msg332837 - (view) |
Author: Terry J. Reedy (terry.reedy) *  |
Date: 2018-12-31 22:08 |
The change is trivial and there was already a Frame test, which initially failed. I will open another issue about similar changes needed elsewhere. |
|
|
msg332839 - (view) |
Author: Terry J. Reedy (terry.reedy) *  |
Date: 2018-12-31 22:30 |
We don't really need a new issue. Mark's opening post was generic. I grepped for ttk to get existing ttk imports and am making Frame and LabelFrame the first item or items for each import. I won't worry about whether any background is visible, as this could change. Cheryl, please note the import convention and review the diff when posted. |
|
|
msg332904 - (view) |
Author: Terry J. Reedy (terry.reedy) *  |
Date: 2019-01-03 03:04 |
New changeset aff0adabf3ace62073076f4ce875ff568f2d3180 by Terry Jan Reedy in branch 'master': bpo-33987: IDLE - use ttk Frame for ttk widgets (GH-11395) https://github.com/python/cpython/commit/aff0adabf3ace62073076f4ce875ff568f2d3180 |
|
|
msg332905 - (view) |
Author: miss-islington (miss-islington) |
Date: 2019-01-03 03:22 |
New changeset b364caa39999658e843151602356e527851d6c68 by Miss Islington (bot) in branch '3.7': bpo-33987: IDLE - use ttk Frame for ttk widgets (GH-11395) https://github.com/python/cpython/commit/b364caa39999658e843151602356e527851d6c68 |
|
|
msg379321 - (view) |
Author: Terry J. Reedy (terry.reedy) *  |
Date: 2020-10-22 18:57 |
I closed this prematurely. Cheryl's PR 11433 converts frames for help and statusbar. My patch also omitted searchbase, perhaps because this I wanted to refactor at the same time. In any case, the macOS appearance bug that motivated Mark's post remains, and a patch will have to make sure that the derived dialogs add frames inside the new master frame instead of the toplevel. The message I deleted meant to say #35598 converted config_key to ttk, including a ttk frame inside toplevel. |
|
|
msg379324 - (view) |
Author: Terry J. Reedy (terry.reedy) *  |
Date: 2020-10-22 19:14 |
New changeset facb522d44fceaf15de6bc95de1cd680c4621c2a by Cheryl Sabella in branch 'master': bpo-33987: IDLE: Use ttk Frame on doc window and statusbar (GH-11433) https://github.com/python/cpython/commit/facb522d44fceaf15de6bc95de1cd680c4621c2a |
|
|
msg379331 - (view) |
Author: Terry J. Reedy (terry.reedy) *  |
Date: 2020-10-22 19:58 |
New changeset 25687bbe0da160ebdd3cd422a01d677ce467e72e by Miss Skeleton (bot) in branch '3.9': bpo-33987: IDLE: Use ttk Frame on doc window and statusbar (GH-11433) (GH-22899) https://github.com/python/cpython/commit/25687bbe0da160ebdd3cd422a01d677ce467e72e |
|
|
msg379332 - (view) |
Author: Terry J. Reedy (terry.reedy) *  |
Date: 2020-10-22 19:58 |
New changeset 06c9e01c651c35c2e058eca0f7073dd405578f78 by Miss Skeleton (bot) in branch '3.8': bpo-33987: IDLE: Use ttk Frame on doc window and statusbar (GH-11433) (GH-22900) https://github.com/python/cpython/commit/06c9e01c651c35c2e058eca0f7073dd405578f78 |
|
|
msg379544 - (view) |
Author: Terry J. Reedy (terry.reedy) *  |
Date: 2020-10-24 23:32 |
New changeset e53e54425d9b7b9b7b082817da104d60bb25e3a2 by Mark Roseman in branch 'master': bpo-33987: Use ttk Label on IDLE statusbar (GH-22941) https://github.com/python/cpython/commit/e53e54425d9b7b9b7b082817da104d60bb25e3a2 |
|
|
msg379545 - (view) |
Author: Terry J. Reedy (terry.reedy) *  |
Date: 2020-10-24 23:45 |
New changeset c579ad14d3b5bb9a45d7b9cc708eaf0bf4884c50 by Mark Roseman in branch 'master': bpo-33987: Use master ttk Frame for IDLE config dialog (GH-22943) https://github.com/python/cpython/commit/c579ad14d3b5bb9a45d7b9cc708eaf0bf4884c50 |
|
|
msg379547 - (view) |
Author: miss-islington (miss-islington) |
Date: 2020-10-24 23:51 |
New changeset c1b620eecc2ca0f9ae9d5ee2d973e823db295ad2 by Miss Skeleton (bot) in branch '3.8': bpo-33987: Use ttk Label on IDLE statusbar (GH-22941) https://github.com/python/cpython/commit/c1b620eecc2ca0f9ae9d5ee2d973e823db295ad2 |
|
|
msg379548 - (view) |
Author: miss-islington (miss-islington) |
Date: 2020-10-24 23:53 |
New changeset 4efd2defb899c5c45334814234c842f8f513879e by Miss Skeleton (bot) in branch '3.9': bpo-33987: Use ttk Label on IDLE statusbar (GH-22941) https://github.com/python/cpython/commit/4efd2defb899c5c45334814234c842f8f513879e |
|
|
msg379549 - (view) |
Author: miss-islington (miss-islington) |
Date: 2020-10-25 00:03 |
New changeset 253c8eb40ec5a87aa539f913fcd83d1759069981 by Miss Skeleton (bot) in branch '3.8': bpo-33987: Use master ttk Frame for IDLE config dialog (GH-22943) https://github.com/python/cpython/commit/253c8eb40ec5a87aa539f913fcd83d1759069981 |
|
|
msg379551 - (view) |
Author: miss-islington (miss-islington) |
Date: 2020-10-25 01:08 |
New changeset 2d493893c7aa9af633c4ebeb56ecce42e3a82e9f by Miss Skeleton (bot) in branch '3.9': bpo-33987: Use master ttk Frame for IDLE config dialog (GH-22943) https://github.com/python/cpython/commit/2d493893c7aa9af633c4ebeb56ecce42e3a82e9f |
|
|
msg379557 - (view) |
Author: Terry J. Reedy (terry.reedy) *  |
Date: 2020-10-25 03:14 |
New changeset 5df6c99cb450fe2f30be681dbf68cd1d34d3bbe4 by Mark Roseman in branch 'master': bpo-33987: Add master ttk Frame to IDLE search dialogs (GH-22942) https://github.com/python/cpython/commit/5df6c99cb450fe2f30be681dbf68cd1d34d3bbe4 |
|
|
msg379558 - (view) |
Author: miss-islington (miss-islington) |
Date: 2020-10-25 03:36 |
New changeset 9cf26b00e42787bc668c62f1b5dde814f8307259 by Miss Skeleton (bot) in branch '3.9': bpo-33987: Add master ttk Frame to IDLE search dialogs (GH-22942) https://github.com/python/cpython/commit/9cf26b00e42787bc668c62f1b5dde814f8307259 |
|
|
msg379559 - (view) |
Author: miss-islington (miss-islington) |
Date: 2020-10-25 03:41 |
New changeset 8485d3b911c3cb73ed6217a47c7720f9277efc01 by Miss Skeleton (bot) in branch '3.8': bpo-33987: Add master ttk Frame to IDLE search dialogs (GH-22942) https://github.com/python/cpython/commit/8485d3b911c3cb73ed6217a47c7720f9277efc01 |
|
|
msg379561 - (view) |
Author: Terry J. Reedy (terry.reedy) *  |
Date: 2020-10-25 03:58 |
Thanks for hopefully finishing this issue. |
|
|