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.

Author terry.reedy
Recipients terry.reedy
Date 2016-07-10.20:19:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1468181977.57.0.555586182066.issue27477@psf.upfronthosting.co.za>
In-reply-to
Content
Scrollbars and the new query module now use ttk widgets.  Time to convert the other dialogs.

Changing imports is straightforward.

Use of an option that can only be changed in the style may be harder.  There was one instance of this among the scrollbars (converted in #24750) and I just skipped the minor tweak, and let the scrollbar in question look like all the rest.

The most difficult issue is changes in allowed methods.  For instance, the state of tk checkbuttons and radiobuttons can be controlled by either setting a control variable or by calling methods.  For ttk, the methods are gone. 

First are the search dialog modules: searchbase, search, replace, and grep.  The tk-only 'anchor' option is used but has no effect since the 'width' option is not used to allocate extra space for the buttons.  The tk-only select method is used, but at least in searchbase, it has no effect, as it always sets the button to the state it already had.  Its use in test files, however, has to be replaced, not deleted.

IDLE does not control the common dialogs.  But we could choose to replace them,  I would not do that for the os file dialogs, but already replaced the 'ask' messagebox used for Open Module for behavioral reasons (#27380).
History
Date User Action Args
2016-07-10 20:19:37terry.reedysetrecipients: + terry.reedy
2016-07-10 20:19:37terry.reedysetmessageid: <1468181977.57.0.555586182066.issue27477@psf.upfronthosting.co.za>
2016-07-10 20:19:37terry.reedylinkissue27477 messages
2016-07-10 20:19:37terry.reedycreate