[issue17642] IDLE add font resizing hot keys and wheel

2019-11-17 Thread Tal Einat
Change by Tal Einat : -- nosy: +taleinat ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.

[issue17642] IDLE add font resizing hot keys and wheel

2019-11-13 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue17642] IDLE add font resizing hot keys and wheel

2019-11-11 Thread Terry J. Reedy
Terry J. Reedy added the comment: #33397 add a FontSizer class to textview.py and uses it there and for the doc viewer in help.py. It should be used for this issue also. -- ___ Python tracker _

[issue17642] IDLE add font resizing hot keys and wheel

2019-11-10 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +16613 pull_request: https://github.com/python/cpython/pull/17107 ___ Python tracker ___ ___

[issue17642] IDLE add font resizing hot keys and wheel

2019-08-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: I want this too, and part of it should be simple. Given that I have had a never empty backlog of PRs to review for 2 1/2 years, it got forgotten. There was also a tk problem that seemed to block implementation. Specification for hotkey: Cntl/Cmd - -+= decr

[issue17642] IDLE add font resizing hot keys and wheel

2019-08-23 Thread Raymond Hettinger
Raymond Hettinger added the comment: > Key or wheel patches will probably be 3.6 only. I still have hopes that this will happen. Am I correct in thinking that it wouldn't be difficult to map CMD-plus and CMD-minus (or for Windows Cntl-plus and Cntl-minus) to a function that increases or dec

[issue17642] IDLE add font resizing hot keys and wheel

2016-08-30 Thread Terry J. Reedy
Terry J. Reedy added the comment: I intend to backport the simple list expansion to 3.5. Key or wheel patches will probably be 3.6 only. -- ___ Python tracker ___ _

[issue17642] IDLE add font resizing hot keys and wheel

2016-08-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset f478f9b88319 by Terry Jan Reedy in branch '2.7': Issue #17642: add larger font sizes for classroom projection. https://hg.python.org/cpython/rev/f478f9b88319 New changeset c9d59e6cc1e4 by Terry Jan Reedy in branch 'default': Issue #17642: add larger

[issue17642] IDLE add font resizing hot keys and wheel

2016-08-25 Thread Terry J. Reedy
Terry J. Reedy added the comment: https://stackoverflow.com/questions/39155656/i-need-bigger-font-in-python-idle/39156068#39156068 is about getting a larger font size than 22 for classroom projection. I think configdialog.py should be extended something as follows (about line 1000). self.

[issue17642] IDLE add font resizing hot keys

2015-08-06 Thread Mark Roseman
Changes by Mark Roseman : -- nosy: +markroseman ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue17642] IDLE add font resizing hot keys

2014-09-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: #21933 added font resizing hotkeys to turtle demo: Control/Command minus, underscore, equal, minus. The OS difference was handled by defining the prefix for the system. shortcut = 'Command' if darwin else 'Control' widget.bind_all('<%s-minus>' % shortcu

[issue17642] IDLE add font resizing hot keys

2013-07-12 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- assignee: -> roger.serwy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue17642] IDLE add font resizing hot keys

2013-05-13 Thread Roger Serwy
Roger Serwy added the comment: @Abhishek: I'd rather not require extensions to have a new method for resetting font sizes. Instead, a virtual event can be bound to a callback by the extension if it needs to know about a font change. @Alejandro: It looks like there's a bug in ZoomFont.py where

[issue17642] IDLE add font resizing hot keys

2013-05-13 Thread Alejandro Rodas
Alejandro Rodas added the comment: I have merged the two patches: Now it queries the font size as I did in the original patch, and it also stores the position of the cursor based on Abhishek Kumar's modification of ZoomFont.py. -- Added file: http://bugs.python.org/file30251/ZoomInOut.

[issue17642] IDLE add font resizing hot keys

2013-04-29 Thread Abhishek Kumar
Abhishek Kumar added the comment: Thanks Roger, for the feedback especially the licence part. I have least idea about licences but will take care in future. One question: Is it right to change IdleConf on Ctrl+ and Ctrl- ? I mean to change font for all open windows? It happens with most text e

[issue17642] IDLE add font resizing hot keys

2013-04-29 Thread Roger Serwy
Roger Serwy added the comment: Abhishek, Alejandro, welcome to IDLE development! If you can, please sign a contributor agreement. We have two patches to create this enhancement, both are good. I suggest that we figure out how to merge the solutions. The zoom-out binding should also include Ct

[issue17642] IDLE add font resizing hot keys

2013-04-29 Thread Alejandro Rodas
Changes by Alejandro Rodas : Added file: http://bugs.python.org/file30074/ZoomInOut.patch ___ Python tracker ___ ___ Python-bugs-list mailing

[issue17642] IDLE add font resizing hot keys

2013-04-28 Thread Alejandro Rodas
Alejandro Rodas added the comment: Sorry, I submitted a patch which only works on Windows. This one has been tested on Ubuntu too. -- ___ Python tracker ___

[issue17642] IDLE add font resizing hot keys

2013-04-28 Thread Alejandro Rodas
Changes by Alejandro Rodas : Removed file: http://bugs.python.org/file30053/ZoomInOut.patch ___ Python tracker ___ ___ Python-bugs-list mailin

[issue17642] IDLE add font resizing hot keys

2013-04-28 Thread Alejandro Rodas
Alejandro Rodas added the comment: I have uploaded my patch as well, it doesn't make use of tkfont (just vanilla Tkinter methods) and it works both in Python 2.7 and 3.4 without the need of any import. I think the main difference with Abhishek Kumar's version is that mine does not use idleCon

[issue17642] IDLE add font resizing hot keys

2013-04-28 Thread Abhishek Kumar
Abhishek Kumar added the comment: I have submitted a patch that is working fine on Windows and on Ubuntu. I have used ZoomFont.py of IdleX. On pressing Ctrl+ or Ctrl- it changes the user configuration and updates the font of all open windows as there is a common user configuration for all win

[issue17642] IDLE add font resizing hot keys

2013-04-28 Thread Alejandro Rodas
Alejandro Rodas added the comment: I have made a patch to zoom in and out with and events, respectively. I'll upload it soon since the test suite is giving me an error in test_multiprocessing, even before writing the patch. I have taken a look at ZoomFont.py of IdleX and it also has the opti

[issue17642] IDLE add font resizing hot keys

2013-04-19 Thread Todd Rovito
Changes by Todd Rovito : -- nosy: +Todd.Rovito ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue17642] IDLE add font resizing hot keys

2013-04-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: On Windows, cntl-+. cntl-- Could we use the tk event system by defining font change events and event handlers? -- nosy: +terry.reedy versions: -Python 3.1, Python 3.2 ___ Python tracker

[issue17642] IDLE add font resizing hot keys

2013-04-06 Thread Roger Serwy
Roger Serwy added the comment: IdleX provides this with the ZoomFont.py extension. (See http://idlex.sourceforge.net/extensions.html#Misc) It is useful for showing code on a projector so that students can easily read the screen. The implementation in ZoomFont.py does not change the font size f

[issue17642] IDLE add font resizing hot keys

2013-04-06 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' : -- nosy: +giampaolo.rodola ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue17642] IDLE add font resizing hot keys

2013-04-06 Thread Edmond Burnett
Changes by Edmond Burnett : -- nosy: +edmond.burnett ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue17642] IDLE add font resizing hot keys

2013-04-05 Thread Raymond Hettinger
New submission from Raymond Hettinger: Add the standard hot keys for resizing fonts (i.e. on a Mac, CMD-plus and CMD-minus). -- components: IDLE keywords: easy messages: 186118 nosy: rhettinger priority: normal severity: normal stage: needs patch status: open title: IDLE add font resizi