(self, master=None, cnf={}, **kw)
| 548 | Subwidgets are the buttons added with the add method. |
| 549 | """ |
| 550 | def __init__(self, master=None, cnf={}, **kw): |
| 551 | TixWidget.__init__(self, master, 'tixButtonBox', |
| 552 | ['orientation', 'options'], cnf, kw) |
| 553 | |
| 554 | def add(self, name, cnf={}, **kw): |
| 555 | """Add a button with given name to box.""" |