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