create dialog body. return widget that should have initial focus. This method should be overridden, and is called by the __init__ method.
(self, master)
| 154 | # construction hooks |
| 155 | |
| 156 | def body(self, master): |
| 157 | '''create dialog body. |
| 158 | |
| 159 | return widget that should have initial focus. |
| 160 | This method should be overridden, and is called |
| 161 | by the __init__ method. |
| 162 | ''' |
| 163 | pass |
| 164 | |
| 165 | def buttonbox(self): |
| 166 | '''add standard button box. |