This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Allow the user to change font sizes with the text pane of turtledemo
Type: behavior Stage: resolved
Components: Versions: Python 3.4, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: Lita.Cho, jesstess, ned.deily, python-dev, serhiy.storchaka, terry.reedy
Priority: normal Keywords: patch

Created on 2014-07-07 15:18 by Lita.Cho, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
window_pane_font_size.patch Lita.Cho, 2014-07-22 01:54
window_pane_font_size_v2.patch Lita.Cho, 2014-07-23 01:35
window_pane_font_size_v3.patch Lita.Cho, 2014-07-24 22:36
tdemo-font-34.diff terry.reedy, 2014-07-27 03:24 review
tdemo-font-34_lita.diff Lita.Cho, 2014-07-27 04:47 review
tdemo-font-34-t2.diff terry.reedy, 2014-07-27 07:04 review
tdemo-font-34-t3.patch ned.deily, 2014-07-28 02:53 review
tfont_with_gui.patch Lita.Cho, 2014-07-29 21:57 review
turtledemo_change_font_size.patch serhiy.storchaka, 2014-09-04 14:09 review
turtledemo_change_font_size2.patch terry.reedy, 2014-09-04 17:53 move rest of bindings review
Messages (36)
msg222466 - (view) Author: Lita Cho (Lita.Cho) * Date: 2014-07-07 15:18
Currently, the turtledemo doesn't allow you to change font sizes of the demo code, and the default font size is really small.

I can work on creating a patch to fix this. Best option be to have control-mousewheel change size, as is standard in browsers, as well as Ctrl + and Ctrl - to change sizes (since laptops don't have a mousewheel). 

If tk has a problem with that, a second choice would be a menu entry "Font size with choices such as the current size (9?), 10, 12, 14.

Also, update the Help Text of this new feature.
msg223619 - (view) Author: Lita Cho (Lita.Cho) * Date: 2014-07-22 01:01
I have  a version of this working with Ctrl-plus and Ctrl-minus. However, there is a bug with Tk 8.5.9 where binding to MouseWheel  crashes Tkinter for Macs (issue10731), which I am running into. I need to update Tkinter to see if this works.
msg223620 - (view) Author: Lita Cho (Lita.Cho) * Date: 2014-07-22 01:54
Here is a patch for changing the font size using the scroll wheel. I also added the shortcuts "Ctrl-plus" to increase the font size and "Ctrl-minus" to decrease the font size.

However, since the MouseWheel is now bound to changing the font
size, the canvas won't scroll. I can try to fix this so that the mousewheel only changes the font size if the text pane is highlighted. But that might not be intuitive. Thoughts?

Note, this patch also includes the window sash (issue21597). They are sort of dependent since I am also redefining the onResize method, so I clumped all the bindings to one method. But if you want that to be separate, I can try to make it into two separate patches.
msg223628 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2014-07-22 06:10
I plan to commit the sash patch before reviewing this. I would wait until then to do a separate patch.
msg223629 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2014-07-22 06:35
MOUSEWHEEL should continue to scroll.
CONTROL+MOUSEWHEEL should change font size, as you said at the beginning.
At least on Windows, this seems pretty standard: Internet Explorer, Firefox, Notepad++, LibreOffice (and, I imagin, OpenOffice, and Word), Thunderbird.  The only exception I can find that has a font size setting but ignores ^wheel is Command Prompt, which breaks multiple UI rules.  Notepad does not allow font resizing.

Get ^wheel to work right and I would like to add it to Idle, where ^wheel scrolls along with wheel.

^+ and ^- are pretty standard also, though LibreOffice does not recognize them. Perhaps this is because it is explicit cross platform.

We can conditionally not bind wheel events on Mac setups where it fails. Does #10731 have enough info to do that? In not... I have not yet looked into generating key/mouse events from code, but perhaps it would be possible to generate a wheel event inside try: except and unbind if there is an exception.
msg223630 - (view) Author: Lita Cho (Lita.Cho) * Date: 2014-07-22 06:46
Sounds good. I can wait till the sash code gets incorporated in order to
add in the font code.

I would have to generate a MOUSEWHEEL event and see if it fails. I have
generated mouse clicks before. I'll try to see if I can generate a
MOUSEWHEEL event and if it errors, not bind to it. Although it might be
hard for me to test, as I just updated my tcl/tk.

I will also try to figure out how to bind to Ctrl+MOUSEWHEEL and not just
MOUSEWHEEL.

Lita

On Mon, Jul 21, 2014 at 11:35 PM, Terry J. Reedy <report@bugs.python.org>
wrote:

>
> Terry J. Reedy added the comment:
>
> MOUSEWHEEL should continue to scroll.
> CONTROL+MOUSEWHEEL should change font size, as you said at the beginning.
> At least on Windows, this seems pretty standard: Internet Explorer,
> Firefox, Notepad++, LibreOffice (and, I imagin, OpenOffice, and Word),
> Thunderbird.  The only exception I can find that has a font size setting
> but ignores ^wheel is Command Prompt, which breaks multiple UI rules.
>  Notepad does not allow font resizing.
>
> Get ^wheel to work right and I would like to add it to Idle, where ^wheel
> scrolls along with wheel.
>
> ^+ and ^- are pretty standard also, though LibreOffice does not recognize
> them. Perhaps this is because it is explicit cross platform.
>
> We can conditionally not bind wheel events on Mac setups where it fails.
> Does #10731 have enough info to do that? In not... I have not yet looked
> into generating key/mouse events from code, but perhaps it would be
> possible to generate a wheel event inside try: except and unbind if there
> is an exception.
>
> ----------
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <http://bugs.python.org/issue21933>
> _______________________________________
>
msg223631 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2014-07-22 06:52
Lita, I tried the patch.  From the perspective of an OS X user, while I might expect that using the zoom gesture on a mousepad or using a mousewheel (the equivalent) to increase or decrease the font size, I would even more expect scrolling to work especially if scrollbars are present.  Clearly, scrolling is more important so, if it is not possible to bind Tk mousewheel events without affecting scrolling, I would abandon the mousewheel.  On OS X, the standard way to provide size adjustment (of fonts or images) is to provide "Bigger" or "Smaller" menu items with the standard keyboard shortcuts of Command-Shift-Equal (and Command-Equal) which is displayed as "Command +" (so the user on a US keyboard just presses the Command key and the =/+ key) and Command-Hyphen ("Command -").  The Apple OS X Human Interface Guidelines go into more detail and you can see these shortcuts in action in many standard OS X applications (TextEdit, Mail, Safari, etc).  As it stands today, turtledemo does not use the standard OS X menu bar where these commands would normally be placed.  And that's a bit of a separate problem because since turtledemo doesn't change the root menu it defaults to a Tk-provided one which includes things "Run Widget Demo" under the file menu.  To be a proper OS X app, turtledemo should customize the menu, at least removing the widget demo item and then it could add the Bigger and Smaller menu items to a Format menu.  Actually, the turtledemo Examples and Help pulldown options would ideally also be available in the standard menu hierarchy.  I'm not suggesting that is a requirement but that's what I think an OS X user would expect and what the Apple HIG would require.

https://developer.apple.com/library/mac/documentation/userexperience/conceptual/applehiguidelines/KeyboardShortcuts/KeyboardShortcuts.html
https://developer.apple.com/library/mac/documentation/userexperience/conceptual/applehiguidelines/Menus/Menus.html
msg223632 - (view) Author: Lita Cho (Lita.Cho) * Date: 2014-07-22 07:06
I completely agree about the mousewheel. However, would it make sense for
OS X to combine command with mousewheel? I have never seen that before. I
am not sure if I can bind the zoom gesture with tkinter, but I can find
out.

I also think the shortcuts are not intuitive as an OS X user, as command
should be used instead of Ctrl.

What I can do check the operating system and define the font shortcuts
accordingly. I am not sure about redefining the Menu shortcuts as that
seems like a separate issue.

On Mon, Jul 21, 2014 at 11:52 PM, Ned Deily <report@bugs.python.org> wrote:

>
> Ned Deily added the comment:
>
> Lita, I tried the patch.  From the perspective of an OS X user, while I
> might expect that using the zoom gesture on a mousepad or using a
> mousewheel (the equivalent) to increase or decrease the font size, I would
> even more expect scrolling to work especially if scrollbars are present.
>  Clearly, scrolling is more important so, if it is not possible to bind Tk
> mousewheel events without affecting scrolling, I would abandon the
> mousewheel.  On OS X, the standard way to provide size adjustment (of fonts
> or images) is to provide "Bigger" or "Smaller" menu items with the standard
> keyboard shortcuts of Command-Shift-Equal (and Command-Equal) which is
> displayed as "Command +" (so the user on a US keyboard just presses the
> Command key and the =/+ key) and Command-Hyphen ("Command -").  The Apple
> OS X Human Interface Guidelines go into more detail and you can see these
> shortcuts in action in many standard OS X applications (TextEdit, Mail,
> Safari, etc).  As it stands today, turtledemo does not use the standard OS
> X menu bar where these commands would normally be placed.  And that's a bit
> of a separate problem because since turtledemo doesn't change the root menu
> it defaults to a Tk-provided one which includes things "Run Widget Demo"
> under the file menu.  To be a proper OS X app, turtledemo should customize
> the menu, at least removing the widget demo item and then it could add the
> Bigger and Smaller menu items to a Format menu.  Actually, the turtledemo
> Examples and Help pulldown options would ideally also be available in the
> standard menu hierarchy.  I'm not suggesting that is a requirement but
> that's what I think an OS X user would expect and what the Apple HIG would
> require.
>
>
> https://developer.apple.com/library/mac/documentation/userexperience/conceptual/applehiguidelines/KeyboardShortcuts/KeyboardShortcuts.html
>
> https://developer.apple.com/library/mac/documentation/userexperience/conceptual/applehiguidelines/Menus/Menus.html
>
> ----------
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <http://bugs.python.org/issue21933>
> _______________________________________
>
msg223635 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2014-07-22 07:18
On OS X, the actions associated with trackpad gestures are controlled by the Trackpad panel of System Preferences.  The default settings map the "pinch with two fingers" gesture to "Zoom in or out" which Tk apps see as Mousewheel events: no programming needed!
msg223637 - (view) Author: Lita Cho (Lita.Cho) * Date: 2014-07-22 07:22
What really? That is so awesome! I will check that out!

However, I figure I still need to create separate bindings for Linux,
Windows and Mac, right? Or does Tkinter unify all the mousewheel events?

Lita

On Tue, Jul 22, 2014 at 12:18 AM, Ned Deily <report@bugs.python.org> wrote:

>
> Ned Deily added the comment:
>
> On OS X, the actions associated with trackpad gestures are controlled by
> the Trackpad panel of System Preferences.  The default settings map the
> "pinch with two fingers" gesture to "Zoom in or out" which Tk apps see as
> Mousewheel events: no programming needed!
>
> ----------
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <http://bugs.python.org/issue21933>
> _______________________________________
>
msg223639 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2014-07-22 07:35
"However, I figure I still need to create separate bindings for Linux,
"Windows and Mac, right? Or does Tkinter unify all the mousewheel events?

I'm not sure I understand: I think that Tk only provides one MouseWheel event binding.  Keyboard or menu items might differ, yes, e.g. Cmd-+ vs Ctrl-+.

http://www.tcl.tk/man/tcl8.5/TkCmd/bind.htm#M9
msg223646 - (view) Author: Lita Cho (Lita.Cho) * Date: 2014-07-22 08:36
Oh I see. And then pinch on the trackpad just generates a overall MouseWheel event, not a specific zoom-in event. For some reason, I thought there was a different event depending on operating systems. Before, Linux would trigger <Button-4> and <Button-5> events and not MouseWheel.

On Jul 22, 2014, at 12:35 AM, Ned Deily <report@bugs.python.org> wrote:

> 
> Ned Deily added the comment:
> 
> "However, I figure I still need to create separate bindings for Linux,
> "Windows and Mac, right? Or does Tkinter unify all the mousewheel events?
> 
> I'm not sure I understand: I think that Tk only provides one MouseWheel event binding.  Keyboard or menu items might differ, yes, e.g. Cmd-+ vs Ctrl-+.
> 
> http://www.tcl.tk/man/tcl8.5/TkCmd/bind.htm#M9
> 
> ----------
> 
> _______________________________________
> Python tracker <report@bugs.python.org>
> <http://bugs.python.org/issue21933>
> _______________________________________
msg223713 - (view) Author: Lita Cho (Lita.Cho) * Date: 2014-07-23 01:35
I've added it so that if the OS is Mac, it will use Command-minus and Command-=. If it is on Windows, it uses Ctrl-minus and Ctrl-= (I wasn't sure if Windows uses shift sa well, but I don't think it does.)

When I tried the "pinch" movement in Mac, the MouseWheel event didn't trigger at all. It is only when I did the scroll (for me two fingers moving downward or upward) movement is when that event triggered. 

I currently have it so that when Control+MouseWheel makes the font size move. Let me know what you think.

I can also try adding a widget so that the user can change the font through the GUI.
msg223720 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2014-07-23 04:33
On windows, new patch gives this:
Traceback (most recent call last):
  File "F:\Python\dev\4\py34\Lib\turtledemo\__main__.py", line 295, in <module>
    demo = DemoWindow()
  File "F:\Python\dev\4\py34\Lib\turtledemo\__main__.py", line 73, in __init__
    graph_frame = self.makeGraphFrame(pane)
  File "F:\Python\dev\4\py34\Lib\turtledemo\__main__.py", line 115, in makeGraphFrame
    self._makeBindings(turtle._Screen._canvas._rootwindow)
  File "F:\Python\dev\4\py34\Lib\turtledemo\__main__.py", line 130, in _makeBindings
    root_window.bind_all('<%s-minus>' % shortcut, self._decreaseFont)
  File "F:\Python\dev\4\py34\lib\tkinter\__init__.py", line 1049, in bind_all
    return self._bind(('bind', 'all'), sequence, func, add, 0)
  File "F:\Python\dev\4\py34\lib\tkinter\__init__.py", line 992, in _bind
    self.tk.call(what + (sequence, cmd))
_tkinter.TclError: bad event type or keysym "Ctrl"

/Ctrl/Control in "shortcut = 'Control" and demo runs.

        root_window.bind_all('<%s-minus>' % shortcut, self._decreaseFont)
        root_window.bind_all('<%s-=>' % shortcut, self._increaseFont)

^- shrinks on -_ key and num keypad.
&+ enlarges on =+ key but not num keypad.  Fix by adding
        root_window.bind_all('<%s-plus>' % shortcut, self._increaseFont)

^wheel either way maked giant type -- evt.delta on my machine is +-120!
        self.txtfont['size'] += evt.delta // 120
works like expected. And please spell out 'event'. 

Out general policy is one patch per issue. The one for #21587 already fixes two issues. After we finish that (see questions), produce a small patch for this.
msg223721 - (view) Author: Lita Cho (Lita.Cho) * Date: 2014-07-23 04:38
Sounds good. I will wait till #21587 and create a small patch afterwards.
Thanks!

On Tue, Jul 22, 2014 at 9:33 PM, Terry J. Reedy <report@bugs.python.org>
wrote:

>
> Terry J. Reedy added the comment:
>
> On windows, new patch gives this:
> Traceback (most recent call last):
>   File "F:\Python\dev\4\py34\Lib\turtledemo\__main__.py", line 295, in
> <module>
>     demo = DemoWindow()
>   File "F:\Python\dev\4\py34\Lib\turtledemo\__main__.py", line 73, in
> __init__
>     graph_frame = self.makeGraphFrame(pane)
>   File "F:\Python\dev\4\py34\Lib\turtledemo\__main__.py", line 115, in
> makeGraphFrame
>     self._makeBindings(turtle._Screen._canvas._rootwindow)
>   File "F:\Python\dev\4\py34\Lib\turtledemo\__main__.py", line 130, in
> _makeBindings
>     root_window.bind_all('<%s-minus>' % shortcut, self._decreaseFont)
>   File "F:\Python\dev\4\py34\lib\tkinter\__init__.py", line 1049, in
> bind_all
>     return self._bind(('bind', 'all'), sequence, func, add, 0)
>   File "F:\Python\dev\4\py34\lib\tkinter\__init__.py", line 992, in _bind
>     self.tk.call(what + (sequence, cmd))
> _tkinter.TclError: bad event type or keysym "Ctrl"
>
> /Ctrl/Control in "shortcut = 'Control" and demo runs.
>
>         root_window.bind_all('<%s-minus>' % shortcut, self._decreaseFont)
>         root_window.bind_all('<%s-=>' % shortcut, self._increaseFont)
>
> ^- shrinks on -_ key and num keypad.
> &+ enlarges on =+ key but not num keypad.  Fix by adding
>         root_window.bind_all('<%s-plus>' % shortcut, self._increaseFont)
>
> ^wheel either way maked giant type -- evt.delta on my machine is +-120!
>         self.txtfont['size'] += evt.delta // 120
> works like expected. And please spell out 'event'.
>
> Out general policy is one patch per issue. The one for #21587 already
> fixes two issues. After we finish that (see questions), produce a small
> patch for this.
>
> ----------
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <http://bugs.python.org/issue21933>
> _______________________________________
>
msg223730 - (view) Author: Lita Cho (Lita.Cho) * Date: 2014-07-23 09:25
Oops! I was suppose to add 'Control' not 'Ctrl'. I can fix that quickly but I will wait till the other patch goes through.
msg223906 - (view) Author: Lita Cho (Lita.Cho) * Date: 2014-07-24 22:36
Here is an updated version of the patch now that Terry submitted the changes from issue21597.
msg224093 - (view) Author: Lita Cho (Lita.Cho) * Date: 2014-07-27 00:24
I was going to add a dropdown menu to change the font size as well, but I am going to wait till Serhiy's patch gets committed in issue22065 before I submit my patch.
msg224099 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2014-07-27 03:24
v3 missed 3 of the 4 fixes I requested. I would like to commit the attached simplified version of v3 that includes all fixes, leaves txtfont global as a list, and uses subscripting consistently instead of .config.  But I would first like confirmation that this version works well enough on Mac to do do.

Ned, with this binding, (ignored on Mac?)
        widget.bind_all('<Control-MouseWheel>', self._updateFont)
plain wheel moves scroll as desired while Control-wheel changes font sizes. This is standard behavior on Windows.

I am not sure a menu entry is needed, but if one were added, you are right that it should follow Serhiy's menu patch

Serhiy, a question partly for you: various places specify a tuple when a font is specified by family, size, style. By experiment, tkinter.font.Font requires a tuple for such a sequence. However, a list seems to work fine in 2.7 and 3.x when setting the font attribute of text:
   text['font'] = txtfont 
Does tkinter or _tkinter convert to tuple? Can we depend on this, or is it an accident? To  be safe, for now, I am leaving tuple(txtfont), but I wonder if it is needed.
msg224104 - (view) Author: Lita Cho (Lita.Cho) * Date: 2014-07-27 04:47
Hi Terry,

I originally had txtfont as a list, but I guess I was worried about readability and accessing attributes by indices being unpythonic. But I might have been over-doing it for this case. :)

In Mac, you don't need to divide event.delta by 120, only Windows and X11 systems. This is according to a Stackoverflow answer: http://stackoverflow.com/questions/17355902/python-tkinter-binding-mousewheel-to-scrollbar

But maybe I'm wrong? I've attached my small change.
msg224106 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2014-07-27 07:04
While we are at it, lets compute "sys.platform == 'darwin'" just once and use conditional expressions.  (I just condensed config_gui() with conditional expressions, but avoided changing the context for the patches here.)
msg224109 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2014-07-27 07:54
In 3.5 lists should work as fine as tuples. But in earlier version it would be 
safer to convert list to tuple.

Configure's value is preprocessed in Misc._options. If it is a tuple or a list 
with only int and str items, it will stringified. But if a list contains non-
int or non-str items, it will passed as is, and _tkinter in pre-3.5 will fail 
because lists are not supported.
msg224150 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2014-07-28 02:53
Several review comments on tdemo-font-34-t2.diff:

- Terry's question:
>Ned, with this binding, (ignored on Mac?)
>        widget.bind_all('<Control-MouseWheel>', self._updateFont)
>plain wheel moves scroll as desired while Control-wheel changes font sizes. >This is standard behavior on Windows.

That seems to work on OS X as well (with both the Cocoa and Carbon Tks), although IMO having a control-mousescroll affect the font size is not something an OS X user would expect; I know of no other GUI application on OS X with that behavior.  But it doesn't hurt.

- That said, the "sign" of the mousescroll is reversed on OS X (as Kevin Walzer's comment implies here (http://wiki.tcl.tk/3893): note the minus sign).

- AFAICT, "=" is not a legal Tk keysym (http://www.tcl.tk/man/tcl8.6/TkCmd/keysyms.htm), some Tk variants either ignore it, others (e.g. OS X X11) raise an exception.  Should be "equal".

- If the user repeatedly decrements the font size (either with the control(or command) "-" or with control-mousescroll, txtfont[1] can go negative but it appears Tk effectively uses its absolute value.  So the font decreases to near invisibility then starts to increase again.  Suggest adding a "minimum font size" (perhaps 8) and not allow txtfont[1] to decrease below it.

Attached patch tdemo-font-34-t3.patch addresses the above issues.

Someone should test this all with a Linux X11 setup with a mouse wheel and/or trackpad.  The OS X X11 Tk variant does not seem to support the mouse wheel events and there are hints in the above Tk mousewheel link that no X11 Tk's do without some hackery.  The documentation for turtledemo should be clear about which platforms are supported.
msg224157 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2014-07-28 09:00
On X11 <Button-4> and <Button-5> events are generated on mouse wheel roll. So you should add

        widget.bind('<Control-Button-4>', self._increaseFont)
        widget.bind('<Control-Button-5>', self._decreaseFont)

But mouse wheel events still are sent to widget and text is scrolled together with font size changing.
msg224261 - (view) Author: Lita Cho (Lita.Cho) * Date: 2014-07-29 21:57
Hi Terry,

I've added to the patch, so that the user is able to change the font size through the GUI. I tried to match Google Doc's behaviour. I also added a max font size. I choose 400 since that is what Google Docs limits their font size.

If you prefer to split out the GUI functionaly out of this patch and submit a new patch after this has been committed, that's totally cool!
msg225323 - (view) Author: Lita Cho (Lita.Cho) * Date: 2014-08-14 23:19
ping!
msg225330 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2014-08-15 03:36
I am working on backporting the #10291 patch and re-synchronizing 3.4 and 3.5 so revised version of this patch, including help change, and of #22065 patch can merge forward properly.
msg226319 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-09-03 20:19
New changeset ce14092430b6 by Terry Jan Reedy in branch '3.4':
Issue #21933: Users can now change the font size for example code.
http://hg.python.org/cpython/rev/ce14092430b6

New changeset e2e0c9f90a81 by Terry Jan Reedy in branch 'default':
Issue #21933: Merge with 3.4
http://hg.python.org/cpython/rev/e2e0c9f90a81
msg226321 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2014-09-03 20:48
I refactored the callbacks to eliminate duplication. I had to redo the menu addition to work with the new menu. This works great on Windows.  I am confident I did not change the logic, but it would still be good if someone tried font changing again on linux and mac.

I am not going to backport this to the 2.7 Demo version, as backporting has always been a nuisance and now the help and menu redesigns have also not been backported.
msg226325 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2014-09-03 21:21
Lita, thank you for sticking with this. #17642 is about doing something similar for Idle. The issue is necessarily more complicated, but what we learned here about system difference and tk behavior oddities will be needed for Idle too.  I am making 'what we learned' comments there.
msg226336 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2014-09-04 06:16
Unfortunately the bug on X11 is still here. Ctrl+mouse wheel not only changes font, but scrolls a text.
msg226347 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2014-09-04 08:11
I am aware of this because the Windows has the same behavior. As I noted in my post to #17642, I consider this behavior a tolerable glitch rather than a patch-blocking bug for turtledemo because the text is relatively short and read only, so there is no issue of needing to keep a cursor in place and visible. The issue would be different for Idle if indeed this is a tk rather than turtle problem. Also, people would typically only move a few clicks up or down, and scrolling up when already at the top of the file has no effect.  So I do not regard this as a bug for this issue and regard this as still closed unless you happen to have thought of a workaround.

If you don't have a fix now, you could open a separate issue to investigate whether the linkage is a tk, tkinter, or turtle bug.

As part of #17535, I discovered that when a Text widgets change the font size, they scroll up, down too far (or down and up too far), and back to where they should be.  This is not visible with small files like the turtle examples, but is with 3000-line files like idlelib/EditorWindow.py, especially when line numbers are enabled.  My test script attached to #17535 shows that Text indeed calls scrollbar.set 3 times.  I regard this as a tk bug.  My point here is that Text widget font size changes are a bit flaky even without the mousewheel issue.
msg226360 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2014-09-04 14:09
Here is a patch which should fix this bug. In additional it fixes a bug on MacOS: mouse wheel only increased font size.
msg226368 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2014-09-04 17:53
Great. That works better on Windows too. Attached is an augmented patch to also move the other size bindings to text (I verified that 'bind_all' is needed), move the resize binding back to where it was, delete the now-empty binding function, and add a not to the docstring that the mousewheel only resizes when the mouse is over the text.  Please verify that this also works for non-windows.
msg226369 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2014-09-04 18:33
This works on X11 (Linux).

Actually it doesn't matter for what widget you call bind_all(). It works globally.
msg226394 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-09-05 01:01
New changeset ecc98ea50bc3 by Terry Jan Reedy in branch '3.4':
Issue #21933: Make Control-Mousewhell only change font size and not also scroll.
http://hg.python.org/cpython/rev/ecc98ea50bc3
History
Date User Action Args
2022-04-11 14:58:05adminsetgithub: 66132
2014-09-05 01:02:05terry.reedysetstatus: open -> closed
resolution: fixed
stage: resolved
2014-09-05 01:01:15python-devsetmessages: + msg226394
2014-09-04 18:33:17serhiy.storchakasetmessages: + msg226369
2014-09-04 17:53:52terry.reedysetfiles: + turtledemo_change_font_size2.patch

messages: + msg226368
2014-09-04 14:09:04serhiy.storchakasetfiles: + turtledemo_change_font_size.patch

messages: + msg226360
2014-09-04 08:11:45terry.reedysetmessages: + msg226347
2014-09-04 06:16:24serhiy.storchakasetstatus: closed -> open
resolution: fixed -> (no value)
messages: + msg226336

stage: resolved -> (no value)
2014-09-03 21:21:54terry.reedysetmessages: + msg226325
2014-09-03 20:48:08terry.reedysetstatus: open -> closed
versions: - Python 2.7
messages: + msg226321

resolution: fixed
stage: commit review -> resolved
2014-09-03 20:19:00python-devsetnosy: + python-dev
messages: + msg226319
2014-08-15 03:36:38terry.reedysetmessages: + msg225330
2014-08-14 23:19:40Lita.Chosetmessages: + msg225323
2014-07-29 21:57:13Lita.Chosetfiles: + tfont_with_gui.patch

messages: + msg224261
2014-07-28 09:00:22serhiy.storchakasetmessages: + msg224157
2014-07-28 02:53:50ned.deilysetfiles: + tdemo-font-34-t3.patch

messages: + msg224150
2014-07-27 07:54:10serhiy.storchakasetmessages: + msg224109
2014-07-27 07:04:40terry.reedysetfiles: + tdemo-font-34-t2.diff

messages: + msg224106
2014-07-27 04:47:44Lita.Chosetfiles: + tdemo-font-34_lita.diff

messages: + msg224104
2014-07-27 03:25:01terry.reedysetfiles: + tdemo-font-34.diff

nosy: + serhiy.storchaka
messages: + msg224099

type: behavior
stage: commit review
2014-07-27 00:24:48Lita.Chosetmessages: + msg224093
2014-07-24 22:36:26Lita.Chosetfiles: + window_pane_font_size_v3.patch

messages: + msg223906
2014-07-23 20:11:55terry.reedylinkissue14117 dependencies
2014-07-23 09:25:04Lita.Chosetmessages: + msg223730
2014-07-23 04:38:30Lita.Chosetmessages: + msg223721
2014-07-23 04:33:03terry.reedysetmessages: + msg223720
2014-07-23 01:35:05Lita.Chosetfiles: + window_pane_font_size_v2.patch

messages: + msg223713
2014-07-22 08:36:28Lita.Chosetmessages: + msg223646
2014-07-22 07:35:00ned.deilysetmessages: + msg223639
2014-07-22 07:22:04Lita.Chosetmessages: + msg223637
2014-07-22 07:18:09ned.deilysetmessages: + msg223635
2014-07-22 07:06:47Lita.Chosetmessages: + msg223632
2014-07-22 06:52:12ned.deilysetmessages: + msg223631
2014-07-22 06:46:36Lita.Chosetmessages: + msg223630
2014-07-22 06:35:23terry.reedysetmessages: + msg223629
2014-07-22 06:10:41terry.reedysetmessages: + msg223628
2014-07-22 01:54:17Lita.Chosetfiles: + window_pane_font_size.patch
keywords: + patch
messages: + msg223620
2014-07-22 01:01:03Lita.Chosetmessages: + msg223619
2014-07-07 15:18:15Lita.Chocreate