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 cheryl.sabella, terry.reedy
Date 2017-07-30.21:50:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1501451403.71.0.908658123964.issue31083@psf.upfronthosting.co.za>
In-reply-to
Content
We are in the process of moving blocks of ConfigDialog methods pertaining to one tab page to a separate class. FontPage is more or less done.  GenPage is in process.  This issue is about documenting the generic structure of the classes in a comment block.  The following is extracted from msg299519 of #31050.

# class TabPage(Frame):
#    def __init__(self, master):
#        super().__init__(master)
#        self.create_page_tab()
#        self.load_tab_cfg()
#    def create_page_tab():
# ...
 
The rest will be an adaptation of the description of the old design in the same message plus what we have actually done so far.

This issue includes editing FontPage to conform to the documented design.
History
Date User Action Args
2017-07-30 21:50:03terry.reedysetrecipients: + terry.reedy, cheryl.sabella
2017-07-30 21:50:03terry.reedysetmessageid: <1501451403.71.0.908658123964.issue31083@psf.upfronthosting.co.za>
2017-07-30 21:50:03terry.reedylinkissue31083 messages
2017-07-30 21:50:03terry.reedycreate