summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/configdialog.py
Commit message (Collapse)AuthorAgeFilesLines
* [3.6] bpo-31649: Make IDLE's _htest, _utest parameters keyword-only. ↵Terry Jan Reedy2017-09-301-1/+1
| | | | | (GH-3839) (#3841) (cherry picked from commit bfebfd8)
* [3.6] bpo-31500: Removed fixed size of IDLE config dialog. (GH-3664) (#3665)Miss Islington (bot)2017-09-191-1/+1
| | | | This one line of Serhiy Storchacka's bpo-31500 patch for is needed for other issues. (cherry picked from commit d6e2f26f3f7c62a4ddbf668027d3ba27cb0e1eca)
* [3.6] bpo-31502: IDLE Configdialog again deletes custom themes and keysets. ↵Miss Islington (bot)2017-09-181-2/+2
| | | | | | (GH-3634) (#3636) This reverses a never-released regression resulting from bpo-31287. (cherry picked from commit 0efc7c67a2f8a184e93f9a491305c81ef2e24250)
* [3.6] bpo-31488: IDLE - update former extensions when options change. ↵Miss Islington (bot)2017-09-161-0/+8
| | | | | | | (GH-3612) (#3613) When apply ConfigDialog changes, call .reload on each class with non-key options. Change ParenMatch so that updates affect current instances. (cherry picked from commit 5777ecc438790f3d324d52f2ccdad56e667e0cb3)
* [3.6] bpo-30781: IDLE: Fix help button on configdialog (GH-3238) (#3489)Miss Islington (bot)2017-09-111-3/+3
| | | | | This fixes an omission in the ttk conversion patch for this issue, hence no new news. Patch by Cheryl Sabella. (cherry picked from commit 3866d9bbcf808cea98b3d00007f9f246b83858ce)
* [3.6] bpo-27099: IDLE - Convert built-in extensions to regular features ↵Terry Jan Reedy2017-09-111-17/+99
| | | | | | | | | | | | | | | | | | | | | | | (GH-2494) (#3487) About 10 IDLE features were implemented as supposedly optional extensions. Their different behavior could be confusing or worse for users and not good for maintenance. Hence the conversion. The main difference for users is that user configurable key bindings for builtin features are now handled uniformly. Now, editing a binding in a keyset only affects its value in the keyset. All bindings are defined together in the system-specific default keysets in config- extensions.def. All custom keysets are saved as a whole in config- extension.cfg. All take effect as soon as one clicks Apply or Ok. The affected events are '<<force-open-completions>>', '<<expand-word>>', '<<force-open-calltip>>', '<<flash-paren>>', '<<format-paragraph>>', '<<run-module>>', '<<check-module>>', and '<<zoom-height>>'. Any (global) customizations made before 3.6.3 will not affect their keyset- specific customization after 3.6.3. and vice versa. Inital patch by Charles Wohlganger, revised by Terry Jan Reedy. (cherry picked from commit 58fc71c)
* [3.6] bpo-31051: Rearrange IDLE condigdialog GenPage into Window, Editor, ↵Terry Jan Reedy2017-08-301-38/+45
| | | | | and Help sections. (GH-3239) (#3240) (cherry picked from commit 390ead)
* [3.6] bpo-31287: IDLE - do not alter tkinter.messagebox in configdialog ↵Terry Jan Reedy2017-08-271-3/+11
| | | | | tests. (GH-3220) (#3221) (cherry picked from commit 3457f42)
* [3.6] bpo-30781: IDLE - use ttk widgets in configdialog (GH-2654) (#3214)Terry Jan Reedy2017-08-261-55/+54
| | | | Patch by Cheryl Sabella. (cherry picked from commit 7028e59)
* [3.6] bpo-31206: IDLE: Factor HighPage class from ConfigDialog (GH-3160) (#3162)Cheryl Sabella2017-08-201-657/+0
| | | | Part 3 of 3. Remove old highlight functions and load_config as this functionality is now contained within classes. Patch by Cheryl Sabella. (cherry picked from commit 4bfebc63012f0f4e00f6a98c3d96e1c0ebe93408)
* [3.6] bpo-31206: IDLE: Factor HighPage class from ConfigDialog (GH-3156) (#3159)Cheryl Sabella2017-08-201-11/+9
| | | | Patch 2 of 3, to avoid horrendous diff. Create highlights page from new HighPage class instead of old ConfigDialog methods and change tests to match. Patch by Cheryl Sabella. (cherry picked from commit 8f7a798edbdbca9a400105e3225463e59b334666)
* [3.6] bpo-31206: IDLE: Factor HighPage class from ConfigDialog (GH-3141) (#3154)Cheryl Sabella2017-08-191-0/+643
| | | | This is the first half of a patch similar to the one for for bpo-31205. It is being split into 2 PRs to avoid what happened with PR-3096 -- an incomprehensible diff that could not be cleanly backported to 3.6. This half copies several methods of ConfigDialog and turns them into a new class. Patch by Cheryl Sabella. (cherry picked from commit a32e40561a24de373d1c5a437a8aa329758ba8e4)
* [3.6] bpo-31001: IDLE: Add tests for configdialog highlight tab (GH-3123) ↵Terry Jan Reedy2017-08-181-156/+221
| | | | | (#3124) (cherry picked from commit 82aff62)
* [3.6] bpo-31205: IDLE: Factor KeysPage class from ConfigDialog (GH-3096) (#3097)Terry Jan Reedy2017-08-151-430/+436
| | | | | | | | | | | | | * bpo-31205: IDLE: Factor KeysPage class from ConfigDialog (#3096) The slightly modified tests continue to pass. Patch by Cheryl Sabella. (cherry picked from commit e36d9f5568093b3885da62a0bf0fdfbe3771672b) * [3.6] bpo-31205: IDLE: Factor KeysPage class from ConfigDialog (GH-3096) The slightly modified tests continue to pass. Patch by Cheryl Sabella.. (cherry picked from commit e36d9f5568093b3885da62a0bf0fdfbe3771672b)
* [3.6] bpo-31002: IDLE: Add tests for configdialog keys tab (GH-2996) (#3092)Terry Jan Reedy2017-08-151-183/+225
| | | | Patch by Cheryl Sabella. (cherry picked from commit 2f89646)
* [3.6] bpo-31130: IDLE -- stop leaks in test_configdialog. (GH-3016) (#3018)Terry Jan Reedy2017-08-071-0/+1
| | | | Initial patch by Victor Stinner. (cherry picked from commit 733d0f6)
* [3.6] bpo-31083: IDLE: Describe the Page classes in configdialog (GH-2965) ↵Terry Jan Reedy2017-08-011-15/+27
| | | | | | | (#2973) Add template as comment. Update existing classes to match outline. Initial patch by Cheryl Sabella. (cherry picked from commit 6f446be)
* [3.6] bpo-31050: IDLE: Factor GenPage class from ConfigDialog (GH-2952) (#2955)Terry Jan Reedy2017-07-301-258/+240
| | | | | The slightly modified tests for the General tab continue to pass. Patch by Cheryl Sabella. (cherry picked from commit e8eb17b)
* [3.6] bpo-31004: IDLE: Factor out FontPage class from configdialog (step 1) ↵Terry Jan Reedy2017-07-301-211/+227
| | | | | | | | (GH-2905) (#2950) The slightly modified tests continue to pass. The General test broken by the switch to Notebook is fixed. Patch mostly by Cheryl Sabella. (cherry picked from commit 9397e2a)
* [3.6] bpo-30781: IDLE - Use ttk Notebook in ConfigDialog (GH-2938) (#2944)Terry Jan Reedy2017-07-291-29/+32
| | | | | | The notebook looks a bit better. It will work better with separate page classes. Traversal of widgets by Tab works better. Switching tabs with keys becomes possible. The font sample box works better at large font sizes. One of the two simulated click tests no longer works. This will be investigated while fixing a bug with the widget itself. (cherry picked from commit b331f80)
* [3.6] bpo-30853: IDLE - touch-up configdialog.VarTrace and tests. (GH-2936) ↵Terry Jan Reedy2017-07-281-5/+5
| | | | | | | (#2937) Add clear method for tests. Adjust tests to use global instance. Remove unneeded ConfigDialog method. (cherry picked from commit 5d0f30a)
* [3.6] bpo-30853: IDLE: Convert font and general vars to use VarTrace ↵Terry Jan Reedy2017-07-281-62/+42
| | | | | | | | (GH-2914) (#2935) Instance tracers manages pairs consisting of a tk variable and a callback function. When tracing is turned on, setting the variable calls the function. Test coverage for the new class is 100%. (cherry picked from commit 5b59154)
* [3.6] bpo-31060: IDLE: Finish regrouping ConfigDialog methods (GH-2908) (#2925)Terry Jan Reedy2017-07-281-768/+772
| | | | Finish resorting the 72 ConfigDialog methods into 7 groups that represent the dialog, action buttons, and font, highlight, keys, general, and extension pages. This will help with continuing to add tests and improve the pages. It will enable splitting ConfigDialog into 6 or 7 more comprehensible classes. (cherry picked from commit b166080)
* [3.6] bpo-31003: IDLE - Add more tests for General tab (GH-2859) (#2906)Terry Jan Reedy2017-07-271-188/+191
| | | | | | | * In configdialog: Document causal pathways in create_page_general. Move related functions to follow this. Simplify some attribute names. * In test_configdialog: Add tests for load and helplist functions. Coverage for the general tab is now complete, and 63% overall. (cherry picked from commit 2bc8f0e)
* [3.6] bpo-30853: IDLE: Factor a VarTrace class from ↵Terry Jan Reedy2017-07-271-0/+55
| | | | | | | configdialog.ConfigDialog. (GH-2872) (#2903) The new class manages pairs of tk Variables and trace callbacks. It is completely covered by new tests. (cherry picked from commit 45bf723)
* [3.6] bpo-30993: IDLE - Improve configdialog font page and tests. (GH-2831) ↵Terry Jan Reedy2017-07-241-116/+105
| | | | | | | | (#2834) In configdialog: Document causal pathways in create_font_tab docstring. Simplify some attribute names. Move set_samples calls to var_changed_font (idea from Cheryl Sabella). Move related functions to positions after the create widgets function. In test_configdialog: Fix test_font_set so not order dependent. Fix renamed test_indent_scale so it tests the widget. Adjust tests for movement of set_samples call. Add tests for load functions. Put all font tests in one class and tab indent tests in another. Except for two lines, these tests completely cover the related functions. (cherry picked from commit 77e97ca)
* [3.6] bpo-30993: IDLE - Improve configdialog font page and tests. (GH-2818) ↵Terry Jan Reedy2017-07-231-48/+51
| | | | | | | | | | (#2826) * Document causal event pathways in docstring. * Simplify some attribute names. * Rename test_bold_toggle_set_samples to make test_font_set fail. * Fix test_font_set so not order dependent. * Fix renamed test_indent_scale so it tests the widget. (cherry picked from commit 07ba305)
* [3.6] bpo-30981: IDLE -- Add more configdialog font page tests. (GH-… (#2796)Terry Jan Reedy2017-07-221-46/+37
| | | | | | | | Verify that clicking the bold checkbutton and calling its command, set_samples, changes the bold setting of both samples. Simplify some names in configdialog. (cherry picked from commit d0969d6) (Incorporates changes and fixes from PRs 2798, 7c5798e, and 2810, 616ecf1) * Fix broken test with PR2798 and PR2810 changes.
* [3.6] bpo-28523: IDLE: Use 'color' instead of 'colour'. (GH-2787) (#2791)Terry Jan Reedy2017-07-211-54/+54
| | | (cherry picked from commit a54a8f1)
* [3.6] bpo-30913: IDLE: Document tk vars, attributes, and methods for ↵terryjreedy2017-07-141-45/+437
| | | | | | | ConfigDialog (GH-2697) (#2702) The will help writing dialog improvements and splitting the class into multiple classes. Original patch by Cheryl Sabella. (cherry picked from commit 36329a4)
* [3.6] bpo-30870: IDLE: Add configdialog fontlist selection unittest ↵terryjreedy2017-07-141-2/+3
| | | | | | (GH-2666) (#2701) Initial patch by Louie Lu. (cherry picked from commit 9b622fb)
* [3.6] bpo-30779: IDLE: fix changes.delete_section calls in configdialog ↵terryjreedy2017-07-111-2/+2
| | | | | | | (GH-2667) (#2674) Also improve test of config.ConfigChanges.delete_section. Original patch by Cheryl Sabella. (cherry picked from commit 6d13b22)
* [3.6] bpo-30870: IDLE -- fix logic error in eae2537. (GH-2660) (#2661)terryjreedy2017-07-111-2/+5
| | | (cherry picked from commit 5b62b35)
* [3.6] bpo-30851: IDLE: Remove unused tk variables in configdialog. (GH-2626) ↵terryjreedy2017-07-101-22/+1
| | | | | | | (#2648) One is a duplicate, one is set but cannot be altered by users. Patch by Cheryl Sabella. (cherry picked from commit aa8d0a2)
* [3.6] bpo-30870: IDLE: Change sample font when select by key-up/down ↵terryjreedy2017-07-091-26/+26
| | | | | | (GH-2617) (#2640) Patch by Louie Lu. (cherry picked from commit bb2bae8)
* [3.6] bpo-30779: IDLE -- Factor ConfigChanges class from configdialog, put ↵terryjreedy2017-07-071-118/+51
| | | | | | | | | | | | in config; test. (GH-2612) (#2625) * In config, put dump test code in a function; run it and unittest in 'if __name__ == '__main__'. * Add class config.ConfigChanges based on changes_class_v4.py on bpo issue. * Add class test_config.ChangesTest, partly based on configdialog_tests_v1.py on bpo issue. * Revise configdialog to use ConfigChanges, mostly as specified in tracker msg297804. * Revise test_configdialog to match configdialog changes. All tests pass in both files. * Remove configdialog functions unused or moved to ConfigChanges. Cheryl Sabella contributed parts of the patch. (cherry picked from commit 349abd9)
* [3.6] bpo-30777: IDLE: configdialog - add docstrings and improve comments ↵terryjreedy2017-07-051-128/+297
| | | | | | (GH-2440) (#2577) Patch by Cheryl Sabella. (cherry picked from commit 7eb5883)
* [3.6] bpo-30723: IDLE -- Enhance parenmatch; add style, flash, and help ↵terryjreedy2017-06-281-0/+15
| | | | | | | | | | | (GH-2306) (#2460) * Add 'parens' style to highlight both opener and closer. * Make 'default' style, which is not default, a synonym for 'opener'. * Make time-delay work the same with all styles. * Add help for config dialog extensions tab, including parenmatch. * Add new tests. Original patch by Charles Wohlganger. (cherry picked from commit fae2c35)
* [3.6] bpo-30728: IDLE: Refactor configdialog to PEP8 names (GH-2307) (#2421)terryjreedy2017-06-271-810/+815
| | | | | Also, change '*' in the tkinter import to an explicit list of names. Patch by Cheryl Sabella. (cherry picked from commit bac7d33)
* Issue #28572: Add 10% to coverage of IDLE's test_configdialog.Terry Jan Reedy2016-11-071-16/+16
| | | | Update and augment description of the configuration system.
* Issue #27891: Consistently group and sort imports within idlelib modules.Terry Jan Reedy2016-08-311-3/+3
|
* Issue #17642: add larger font sizes for classroom projection.Terry Jan Reedy2016-08-311-1/+2
|
* Issue #27173: Add 'IDLE Modern Unix' to the built-in key sets.Terry Jan Reedy2016-07-101-9/+35
| | | | | Make the default key set depend on the platform. Add tests for changes to the config module.
* Issue #27380: IDLE: add query.HelpSource class and tests.Terry Jan Reedy2016-07-081-13/+14
| | | | Remove modules that are combined in new module.
* Issue #27380: IDLE: add base Query dialog, with ttk widgets and subclassTerry Jan Reedy2016-06-271-3/+3
| | | | | | SectionName. These split class GetCfgSectionNameDialog from configSectionNameDialog.py, temporarily renamed config_sec.py in 3.7.9a2. More Query subclasses are planned.
* Issue #22115: Added methods trace_add, trace_remove and trace_info in theSerhiy Storchaka2016-06-261-19/+19
| | | | | | tkinter.Variable class. They replace old methods trace_variable, trace, trace_vdelete and trace_vinfo that use obsolete Tcl commands and might not work in future versions of Tcl.
* Issue #27245: revert temporary renameTerry Jan Reedy2016-06-141-0/+1439
|
* Issue #27245: temporary rename for merge.Terry Jan Reedy2016-06-141-1435/+0
|
* Issue *24750: Switch all scrollbars in IDLE to ttk versions.Terry Jan Reedy2016-06-101-0/+1
| | | | Where needed, add minimal tests to cover changes.
* Issue #24225: Within idlelib files, update idlelib module names.Terry Jan Reedy2016-05-281-8/+8
| | | | | | | | | | | | | | | | This follows the previous patch that changed idlelib file names. Class names that matched old module names are not changed. Change idlelib imports in turtledemo.__main__. Exception: config-extensions.def. Previously, extension section names, file names, and class names had to match. Changing section names would create cross-version conflicts in config-extensions.cfg (user customizations). Instead map old names to new file names at point of import in editor.EditorWindow.load_extension. Patch extensively tested with test_idle, idle_test.htest.py, a custom import-all test, running IDLE in a console to catch messages, and testing each menu item. Based on a patch by Al Sweigart.